Repository: oblador/react-native-vector-icons Branch: master Commit: e0bbfad52ea7 Files: 821 Total size: 6.3 MB Directory structure: gitextract_vddmqzha/ ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── funding.yml │ └── workflows/ │ ├── codemod-tests.yaml │ ├── deploy.yaml │ ├── issue-handling.yml │ ├── lint.yaml │ └── tests.yaml ├── .gitignore ├── .knip.jsonc ├── .nxignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MIGRATION.md ├── README.md ├── TODO.md ├── biome.jsonc ├── docs/ │ ├── CREATE_FONT_PACKAGE.md │ ├── SETUP-EXPO.md │ ├── SETUP-REACT-NATIVE.md │ └── SETUP-WEB.md ├── lefthook.yml ├── nx.json ├── package.json ├── packages/ │ ├── ant-design/ │ │ ├── .fontcustom-manifest.json │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsAntDesignPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── AntDesign.json │ │ ├── package.json │ │ ├── react-native-vector-icons-ant-design.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── codemod/ │ │ ├── CHANGELOG.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── 11.0/ │ │ │ │ ├── icon-style-transform.ts │ │ │ │ ├── import-transform.ts │ │ │ │ ├── index.ts │ │ │ │ ├── info-plist.ts │ │ │ │ ├── package-json.ts │ │ │ │ ├── remove-fonts.ts │ │ │ │ └── transform.ts │ │ │ ├── 12.0/ │ │ │ │ ├── index.ts │ │ │ │ ├── move-fonts.ts │ │ │ │ ├── package-json.ts │ │ │ │ └── transform.ts │ │ │ ├── __tests__/ │ │ │ │ ├── 11.0-transform.test.ts │ │ │ │ └── expo-import-transform.test.ts │ │ │ ├── checkGitStatus.ts │ │ │ ├── expo/ │ │ │ │ ├── import-transform.ts │ │ │ │ ├── index.ts │ │ │ │ ├── newFontImports.ts │ │ │ │ └── package-json.ts │ │ │ ├── getVersion.ts │ │ │ ├── index.ts │ │ │ └── readPackageDeps.ts │ │ └── tsconfig.json │ ├── common/ │ │ ├── .watchmanconfig │ │ ├── CHANGELOG.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── create-icon-set.tsx │ │ │ ├── create-icon-source-cache.ts │ │ │ ├── defaults.ts │ │ │ ├── dynamicLoading/ │ │ │ │ ├── dynamic-font-loading.ts │ │ │ │ ├── dynamic-loading-setting.ts │ │ │ │ └── types.ts │ │ │ ├── get-image-library.ts │ │ │ ├── get-image-source.ts │ │ │ ├── index.ts │ │ │ └── scripts/ │ │ │ ├── common.ts │ │ │ └── updatePlist.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── directory/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bin/ │ │ │ ├── generate-font-styles.mts │ │ │ └── generate-glyphmap-index.mts │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.js │ │ └── tsconfig.json │ ├── entypo/ │ │ ├── .fontcustom-manifest.json │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsEntypoPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── Entypo.json │ │ ├── package.json │ │ ├── react-native-vector-icons-entypo.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── evil-icons/ │ │ ├── .fontcustom-manifest.json │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsEvilIconsPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── EvilIcons.json │ │ ├── package.json │ │ ├── react-native-vector-icons-evil-icons.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── feather/ │ │ ├── .fontcustom-manifest.json │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFeatherPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── Feather.json │ │ ├── package.json │ │ ├── react-native-vector-icons-feather.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomePackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesome.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-common/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bin/ │ │ │ ├── fa-upgrade │ │ │ ├── fa-upgrade5 │ │ │ └── fa-upgrade6 │ │ ├── generators/ │ │ │ └── app/ │ │ │ └── templates/ │ │ │ └── src/ │ │ │ └── index.tsx │ │ ├── package.json │ │ └── scripts/ │ │ ├── fetch-pro.sh │ │ ├── generate-fontawesome-glyphmap.mts │ │ └── generate-fontawesome-metadata.js │ ├── fontawesome-free-brands/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeFreeBrandsPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeFreeBrands.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-free-brands.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-free-regular/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeFreeRegularPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeFreeRegular.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-free-regular.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-free-solid/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeFreeSolidPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeFreeSolid.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-free-solid.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-brands/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProBrandsPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProBrands.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-brands.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-duotone-light/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProDuotoneLightPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProDuotoneLight.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-duotone-light.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-duotone-regular/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProDuotoneRegularPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProDuotoneRegular.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-duotone-regular.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-duotone-solid/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProDuotoneSolidPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProDuotoneSolid.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-duotone-solid.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-duotone-thin/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProDuotoneThinPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProDuotoneThin.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-duotone-thin.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-light/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProLightPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProLight.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-light.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-regular/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProRegularPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProRegular.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-regular.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-sharp-duotone-light/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProSharpDuotoneLightPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProSharpDuotoneLight.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-sharp-duotone-light.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-sharp-duotone-regular/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProSharpDuotoneRegularPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProSharpDuotoneRegular.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-sharp-duotone-regular.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-sharp-duotone-solid/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProSharpDuotoneSolidPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProSharpDuotoneSolid.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-sharp-duotone-solid.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-sharp-duotone-thin/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProSharpDuotoneThinPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProSharpDuotoneThin.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-sharp-duotone-thin.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-sharp-light/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProSharpLightPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProSharpLight.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-sharp-light.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-sharp-regular/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProSharpRegularPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProSharpRegular.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-sharp-regular.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-sharp-solid/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProSharpSolidPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProSharpSolid.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-sharp-solid.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-sharp-thin/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProSharpThinPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProSharpThin.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-sharp-thin.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-solid/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProSolidPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProSolid.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-solid.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome-pro-thin/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesomeProThinPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── FontAwesomeProThin.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome-pro-thin.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome5/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesome5Package.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ ├── FontAwesome5.json │ │ │ ├── FontAwesome5_brand.json │ │ │ ├── FontAwesome5_meta.json │ │ │ ├── FontAwesome5_regular.json │ │ │ └── FontAwesome5_solid.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome5.podspec │ │ ├── src/ │ │ │ ├── index.tsx │ │ │ └── static.tsx │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome5-pro/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesome5ProPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ ├── FontAwesome5Pro.json │ │ │ ├── FontAwesome5Pro_brand.json │ │ │ ├── FontAwesome5Pro_duotone.json │ │ │ ├── FontAwesome5Pro_light.json │ │ │ ├── FontAwesome5Pro_meta.json │ │ │ ├── FontAwesome5Pro_regular.json │ │ │ └── FontAwesome5Pro_solid.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome5-pro.podspec │ │ ├── src/ │ │ │ ├── index.tsx │ │ │ └── static.tsx │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome6/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesome6Package.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ ├── FontAwesome6.json │ │ │ ├── FontAwesome6_brand.json │ │ │ ├── FontAwesome6_meta.json │ │ │ ├── FontAwesome6_regular.json │ │ │ └── FontAwesome6_solid.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome6.podspec │ │ ├── src/ │ │ │ ├── index.tsx │ │ │ └── static.tsx │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontawesome6-pro/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontAwesome6ProPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ ├── FontAwesome6Pro.json │ │ │ ├── FontAwesome6Pro_brand.json │ │ │ ├── FontAwesome6Pro_duotone-light.json │ │ │ ├── FontAwesome6Pro_duotone-regular.json │ │ │ ├── FontAwesome6Pro_duotone-thin.json │ │ │ ├── FontAwesome6Pro_duotone.json │ │ │ ├── FontAwesome6Pro_light.json │ │ │ ├── FontAwesome6Pro_meta.json │ │ │ ├── FontAwesome6Pro_regular.json │ │ │ ├── FontAwesome6Pro_sharp-duotone-light.json │ │ │ ├── FontAwesome6Pro_sharp-duotone-regular.json │ │ │ ├── FontAwesome6Pro_sharp-duotone-solid.json │ │ │ ├── FontAwesome6Pro_sharp-duotone-thin.json │ │ │ ├── FontAwesome6Pro_sharp.json │ │ │ ├── FontAwesome6Pro_sharpLight.json │ │ │ ├── FontAwesome6Pro_sharpSolid.json │ │ │ ├── FontAwesome6Pro_sharpThin.json │ │ │ ├── FontAwesome6Pro_solid.json │ │ │ └── FontAwesome6Pro_thin.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontawesome6-pro.podspec │ │ ├── src/ │ │ │ ├── index.tsx │ │ │ └── static.tsx │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontcustom-docker/ │ │ ├── CHANGELOG.md │ │ ├── Dockerfile │ │ ├── README.md │ │ └── package.json │ ├── fontello/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontelloPackage.kt │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── react-native-vector-icons-fontello.podspec │ │ ├── src/ │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── fontisto/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFontistoPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── Fontisto.json │ │ ├── package.json │ │ ├── react-native-vector-icons-fontisto.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── foundation/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsFoundationPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── Foundation.json │ │ ├── package.json │ │ ├── react-native-vector-icons-foundation.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── generator-react-native-vector-icons/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ └── app/ │ │ │ ├── fontforge/ │ │ │ │ └── correct-direction.py │ │ │ ├── generateGlyphmap.ts │ │ │ ├── index.ts │ │ │ └── templates/ │ │ │ ├── README.md │ │ │ ├── android/ │ │ │ │ ├── build.gradle │ │ │ │ └── src/ │ │ │ │ └── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── AndroidManifestNew.xml │ │ │ │ └── java/ │ │ │ │ └── Package.kt │ │ │ ├── babel.config.js │ │ │ ├── font.podspec │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── index.ts │ │ │ │ └── static.ts │ │ │ ├── tsconfig.build.json │ │ │ └── tsconfig.json │ │ └── tsconfig.json │ ├── get-image/ │ │ ├── .watchmanconfig │ │ ├── CHANGELOG.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ └── src/ │ │ │ ├── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── AndroidManifestNew.xml │ │ │ │ └── java/ │ │ │ │ └── com/ │ │ │ │ └── reactnativevectoricons/ │ │ │ │ └── get_image/ │ │ │ │ ├── VectorIconsModule.kt │ │ │ │ └── VectorIconsPackage.kt │ │ │ ├── newarch/ │ │ │ │ └── VectorIconsSpec.kt │ │ │ └── oldarch/ │ │ │ └── VectorIconsSpec.kt │ │ ├── babel.config.js │ │ ├── ios/ │ │ │ ├── VectorIcons.h │ │ │ └── VectorIcons.mm │ │ ├── package.json │ │ ├── react-native-vector-icons.podspec │ │ ├── react-native.config.js │ │ ├── src/ │ │ │ ├── NativeVectorIcons.ts │ │ │ ├── NativeVectorIcons.web.ts │ │ │ ├── ensure-native-module-available.ts │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── turbo.json │ ├── icomoon/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsIcomoonPackage.kt │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── react-native-vector-icons-icomoon.podspec │ │ ├── src/ │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── icon-explorer/ │ │ ├── .gitignore │ │ ├── .owl/ │ │ │ └── .gitignore │ │ ├── .watchmanconfig │ │ ├── README.md │ │ ├── __tests__/ │ │ │ └── App.owl.tsx │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ ├── gradle/ │ │ │ │ └── wrapper/ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradle.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── app.json │ │ ├── babel.config.js │ │ ├── configPlugin.js │ │ ├── index.js │ │ ├── index.test.js │ │ ├── ios/ │ │ │ └── Podfile │ │ ├── jest.config.js │ │ ├── macos/ │ │ │ └── Podfile │ │ ├── metro.config.js │ │ ├── owl.config.json │ │ ├── package.json │ │ ├── react-native.config.js │ │ ├── set-rn-version.sh │ │ ├── src/ │ │ │ ├── App.tsx │ │ │ ├── Home.tsx │ │ │ ├── IconList.tsx │ │ │ ├── TestMode.tsx │ │ │ ├── Types.tsx │ │ │ ├── animatable.tsx │ │ │ ├── configs/ │ │ │ │ ├── fontello.config.json │ │ │ │ └── icomoon.config.json │ │ │ └── icon-sets.tsx │ │ ├── tsconfig.json │ │ └── visionos/ │ │ └── Podfile │ ├── ionicons/ │ │ ├── .fontcustom-manifest.json │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsIoniconsPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── Ionicons.json │ │ ├── package.json │ │ ├── react-native-vector-icons-ionicons.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── lucide/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsLucidePackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── Lucide.json │ │ ├── package.json │ │ ├── react-native-vector-icons-lucide.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── material-design-icons/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsMaterialDesignIconsPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── MaterialDesignIcons.json │ │ ├── package.json │ │ ├── react-native-vector-icons-material-design-icons.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── material-icons/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsMaterialIconsPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── MaterialIcons.json │ │ ├── package.json │ │ ├── react-native-vector-icons-material-icons.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── octicons/ │ │ ├── .fontcustom-manifest.json │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsOcticonsPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── Octicons.json │ │ ├── package.json │ │ ├── react-native-vector-icons-octicons.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── simple-line-icons/ │ │ ├── .yo-rc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── android/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java/ │ │ │ └── VectorIconsSimpleLineIconsPackage.kt │ │ ├── babel.config.js │ │ ├── glyphmaps/ │ │ │ └── SimpleLineIcons.json │ │ ├── package.json │ │ ├── react-native-vector-icons-simple-line-icons.podspec │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── static.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ └── zocial/ │ ├── .yo-rc.json │ ├── CHANGELOG.md │ ├── README.md │ ├── android/ │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ ├── AndroidManifestNew.xml │ │ └── java/ │ │ └── VectorIconsZocialPackage.kt │ ├── babel.config.js │ ├── glyphmaps/ │ │ └── Zocial.json │ ├── package.json │ ├── react-native-vector-icons-zocial.podspec │ ├── src/ │ │ ├── index.ts │ │ └── static.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── pnpm-workspace.yaml ├── scripts/ │ ├── check-npm-publish-status.sh │ ├── fix-glyphmaps.mjs │ ├── generate-fonts.sh │ └── setup-npm-trust.sh └── tsconfig.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ # EditorConfig helps developers define and maintain consistent # coding styles between different editors and IDEs # editorconfig.org root = true [*] indent_style = space indent_size = 2 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] trim_trailing_whitespace = false ================================================ FILE: .eslintignore ================================================ ############## # yeoman ############## # Ignore the templates with <%= %> tags, we'll pickup the errors in the generated code packages/generator-react-native-vector-icons/src/app/templates/src/index.ts # Ignore yeomenan generated template packages/generator-react-native-vector-icons/generators packages/generator-react-native-vector-icons/src/app/templates packages/fontawesome-common/generators ############## # packages ############## # Ignore built code packages/*/lib packages/directory/build # Files we don't manage (react-native-test-app) packages/icon-explorer/metro.config.js packages/icon-explorer/react-native.config.js ================================================ FILE: .eslintrc.js ================================================ module.exports = { extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react/recommended'], env: { browser: true, es2021: true, jest: true, }, overrides: [ { files: ['*.ts', '*.js', '*.tsx', '*.jsx'], extends: ['biome'], }, { files: ['.eslintrc.{js,cjs}', '*.config.js', 'react-native.config.js', 'configPlugin.js'], env: { node: true, }, parserOptions: { sourceType: 'script', }, }, { files: '*.test.js', env: { jest: true, }, globals: { device: false, expect: false, waitFor: false, element: false, by: false, }, }, ], parser: '@typescript-eslint/parser', parserOptions: { ecmaVersion: 'latest', sourceType: 'module', }, plugins: ['@typescript-eslint', 'react', 'import', 'jsx-a11y'], settings: { react: { version: 'detect', }, 'import/resolver': { node: { extensions: ['.js', '.jsx', '.ts', '.tsx'], }, }, }, rules: { 'import/extensions': ['error', { js: 'never', jsx: 'never', ts: 'never', tsx: 'never', json: 'always' }], 'react/require-default-props': 'off', 'react/prop-types': 'off', 'react/jsx-props-no-spreading': 'off', 'react/jsx-filename-extension': ['error', { extensions: ['.jsx', '.tsx'] }], 'react/function-component-definition': ['error', { namedComponents: 'arrow-function' }], 'import/prefer-default-export': 'off', // Prefer the typescript unsed vars rule 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': ['error'], 'no-shadow': 'off', '@typescript-eslint/no-shadow': ['error'], 'react/react-in-jsx-scope': 'off', }, }; ================================================ FILE: .gitattributes ================================================ *.pbxproj -text # specific for windows script files *.bat text eol=crlf ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.yml ================================================ --- name: "\U0001F41B Bug report" description: Report a bug labels: ["bug", "triage"] body: - type: markdown attributes: value: | Thanks for taking the time to fill out this bug report! Before filing a bug report: - Review the documentation: https://github.com/react-native-vector-icons/react-native-vector-icons - Search for existing issues (including closed issues): https://github.com/oblador/react-native-vector-icons/issues?q=is%3Aissue+ - type: dropdown id: generation attributes: label: Which package are you using? options: - "@react-native-vector-icons/*" - react-native-vector-icons validations: required: true - type: dropdown attributes: label: What platform(s) does this occur on? multiple: true options: - Android - iOS - web validations: required: true - type: input attributes: label: Minimal reproducible example description: | A link to a GitHub repository containing a minimal reproducible example. This repository should include as little code as possible and not include extraneous dependencies. Either provide a link to the repo that reproduces the bug or provide your version of the `App.tsx` file that reproduces the issue and that we can copy-paste and see the issue. If a reproducible example is not provided, your issue is likely to be closed. [Learn more about creating a minimal reproducible example](https://stackoverflow.com/help/mcve). validations: required: true - type: textarea id: what-happened attributes: label: What happened? description: | Explain the issue and the steps we need to take to reproduce the issue. Include a video or screenshots if you think it may help. Clearly describe what the expected behavior is and what instead is actually happening. validations: required: true - type: textarea id: logs attributes: label: Relevant log output description: Copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. render: shell - type: textarea attributes: render: text label: Your computer environment description: Run the `npx react-native info` command and paste its output in the field below. validations: required: true ================================================ FILE: .github/ISSUE_TEMPLATE/config.yml ================================================ blank_issues_enabled: false contact_links: - name: Community Support url: https://github.com/oblador/react-native-vector-icons/discussions about: Please ask and answer questions here. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.yml ================================================ --- name: Feature request description: Suggest an idea for this project labels: ["feature request", "triage"] body: - type: markdown attributes: value: | Thanks for taking the time to suggest a new feature! Before requesting: - Search for existing issues (including closed issues): https://github.com/oblador/react-native-vector-icons/issues?q=is%3Aissue+ - type: textarea id: problem attributes: label: Is your feature request related to a problem? description: | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - type: textarea id: solution attributes: label: Describe the solution you'd like description: | A clear and concise description of what you want to happen. validations: required: true - type: textarea id: alternatives attributes: label: Describe alternatives you've considered description: | A clear and concise description of any alternative solutions or features you've considered. - type: textarea id: context attributes: label: Additional context description: | Add any other context or screenshots about the feature request here. ================================================ FILE: .github/funding.yml ================================================ github: [oblador] ================================================ FILE: .github/workflows/codemod-tests.yaml ================================================ --- name: Codemod Tests on: push: branches: - master paths: - ".github/workflows/codemod-tests.yaml" - "packages/codemod/**" pull_request: paths: - ".github/workflows/codemod-tests.yaml" - "packages/codemod/**" jobs: test: name: Unit Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: pnpm/action-setup@v5 with: run_install: false - uses: actions/setup-node@v6 with: node-version: lts/* cache: pnpm - run: pnpm install --ignore-scripts --filter @react-native-vector-icons/codemod - run: pnpm run --filter @react-native-vector-icons/codemod test ================================================ FILE: .github/workflows/deploy.yaml ================================================ name: Publish to NPM and Website on: workflow_dispatch: inputs: dry_run: description: Perform a dry run type: boolean action: type: choice description: What to publish options: - npm - website - npm-republish-failed packages: type: string description: 'Space-separated list of package dirs to republish (e.g. "codemod ionicons"). Only used with npm-republish-failed.' pre_release: type: boolean description: Create a pre-release permissions: id-token: write # For NPM trusted publishing contents: write # For git commits of Changelog jobs: npm: name: NPM runs-on: ubuntu-latest if: github.event.inputs.action == 'npm' steps: - name: Checkout repository uses: actions/checkout@v4 with: fetch-depth: 0 # Needed for changelogs and tag comparison # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands - name: Set up PNPM uses: pnpm/action-setup@v4 with: run_install: false - name: Set up Node.js uses: actions/setup-node@v4 with: node-version: lts/* cache: pnpm - name: Install dependencies run: pnpm install - name: Set commit author run: | git config --local user.name 'github-actions[bot]' git config --local user.email 'github-actions[bot]@users.noreply.github.com' # Ensure npm 11.5.1 or later is installed - name: Update npm run: | echo 'BEFORE' npm -v npm install -g npm@latest echo 'AFTER' npm -v - name: Publish to NPM if: github.event.inputs.pre_release != 'true' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | if [ "${{ github.event.inputs.dry_run }}" == "true" ]; then pnpm run release --dry-run else pnpm run release --yes fi - name: Publish pre-release to NPM if: github.event.inputs.pre_release == 'true' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | if [ "${{ github.event.inputs.dry_run }}" == "true" ]; then pnpm run prerelease --dry-run else pnpm run prerelease fi republish: name: Republish failed packages runs-on: ubuntu-latest if: github.event.inputs.action == 'npm-republish-failed' steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up PNPM uses: pnpm/action-setup@v4 with: run_install: false - name: Set up Node.js uses: actions/setup-node@v4 with: node-version: lts/* cache: pnpm - name: Install dependencies run: pnpm install - name: Update npm run: | echo 'BEFORE' npm -v npm install -g npm@latest echo 'AFTER' npm -v - name: Publish packages env: INPUT_PACKAGES: ${{ github.event.inputs.packages }} DRY_RUN: ${{ github.event.inputs.dry_run }} run: | if [ -z "$INPUT_PACKAGES" ]; then echo "Error: 'packages' input is required for npm-republish-failed" exit 1 fi FAILED=0 for pkg in $INPUT_PACKAGES; do echo "=========================================" echo "Publishing packages/$pkg" echo "=========================================" if [ "$DRY_RUN" == "true" ]; then pnpm publish "packages/$pkg" --no-git-checks --dry-run || FAILED=1 else pnpm publish "packages/$pkg" --no-git-checks || FAILED=1 fi echo "" done exit $FAILED website: name: Directory website runs-on: ubuntu-latest if: github.event.inputs.action == 'website' steps: - name: Checkout repository uses: actions/checkout@v4 # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands - name: Set up PNPM uses: pnpm/action-setup@v4 with: run_install: false - name: Set up Node.js uses: actions/setup-node@v4 with: node-version: lts/* cache: pnpm - name: Install dependencies run: pnpm install working-directory: packages/directory - name: Build directory working-directory: packages/directory run: | pnpm prepare pnpm run build - name: Publish static assets to GitHub Pages uses: JamesIves/github-pages-deploy-action@v4 with: branch: gh-pages folder: packages/directory/build ================================================ FILE: .github/workflows/issue-handling.yml ================================================ name: 'Support requests' on: issues: types: [labeled, unlabeled, reopened] jobs: support: runs-on: ubuntu-latest steps: - uses: dessant/support-requests@v4 with: github-token: ${{ github.token }} support-label: 'missing-repro' issue-comment: > :wave: @{issue-author}, sorry you're having an issue. As the issue template explains, it's required that you provide a runnable example that reproduces your issue (see the [issue template](https://github.com/oblador/react-native-vector-icons/blob/master/.github/ISSUE_TEMPLATE/bug_report.yml)). The reason is that a bug report is not actionable without a reproducer. Try to minimize the superfluous code and focus only on reproducing the bug. Please create a new issue with this and one of the maintainers will do their best to review it! close-issue: true lock-issue: true ================================================ FILE: .github/workflows/lint.yaml ================================================ name: Lint on: push: branches: - master pull_request: jobs: eslint: name: eslint runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands - uses: pnpm/action-setup@v4 with: run_install: false - uses: actions/setup-node@v4 with: node-version: lts/* cache: pnpm - name: Build run: pnpm install - name: Lint files run: pnpm run lint:eslint biome: name: biome runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands - uses: pnpm/action-setup@v4 with: run_install: false - uses: actions/setup-node@v4 with: node-version: lts/* cache: pnpm - name: Build run: pnpm install - name: Lint files run: pnpm run lint:biome types: name: types runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands - uses: pnpm/action-setup@v4 with: run_install: false - uses: actions/setup-node@v4 with: node-version: lts/* cache: pnpm - name: Build run: pnpm install - name: Typecheck files run: pnpm run lint:types knip: name: knip runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands - uses: pnpm/action-setup@v4 with: run_install: false - uses: actions/setup-node@v4 with: node-version: lts/* cache: pnpm - name: Build run: pnpm install - name: Check for unused things run: pnpm run lint:knip ================================================ FILE: .github/workflows/tests.yaml ================================================ --- name: Tests on: push: branches: - master paths: - ".github/workflows/tests.yaml" - "packages/**" - "!packages/directory/**" - "!packages/codemod/**" - "scripts/**" pull_request: paths: - ".github/workflows/tests.yaml" - "packages/**" - "!packages/directory/**" - "!packages/codemod/**" - "scripts/**" workflow_dispatch: inputs: all_versions: description: Run tests against all versions type: boolean permissions: # AWS id-token: write # test-reporter contents: read actions: read checks: write jobs: android: name: Android runs-on: ubuntu-latest strategy: fail-fast: false matrix: api-level: [35] rn-version: ${{ github.event.inputs.all_versions && fromJSON('["0.80", "0.79", "0.78", "0.77", "0.76", "0.75", "0.74", "0.73"]') || fromJSON('["0.80", "0.79", "0.77"]') }} arch: ["new", "old"] steps: - uses: actions/checkout@v4 - uses: aws-actions/configure-aws-credentials@v4 if: always() # it fails for non maintainer PRs with: aws-region: us-east-2 role-to-assume: arn:aws:iam::119243932312:role/RNVI-S3-Buckert role-skip-session-tagging: true - name: Setup Java uses: actions/setup-java@v4 with: distribution: "temurin" java-version: "17" # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands - uses: pnpm/action-setup@v4 with: run_install: false - uses: actions/setup-node@v4 with: node-version: lts/* cache: pnpm - name: Gradle cache uses: gradle/actions/setup-gradle@v4 with: add-job-summary: on-failure # TODO: Remove this after we merge cache-read-only: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/per-package-copy' }} - name: AVD Deps run: | sudo apt update sudo apt-get install -y libpulse0 libgl1 - name: AVD cache uses: actions/cache@v4 id: avd-cache with: path: | ~/.android/avd/* ~/.android/adb* key: avd-${{ matrix.api-level }} - name: Enable KVM group perms run: | echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | \ sudo tee /etc/udev/rules.d/99-kvm4all.rules sudo udevadm control --reload-rules sudo udevadm trigger --name-match=kvm - name: create AVD and generate snapshot for caching if: steps.avd-cache.outputs.cache-hit != 'true' uses: reactivecircus/android-emulator-runner@v2 with: arch: x86_64 api-level: ${{ matrix.api-level }} force-avd-creation: false emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: false script: echo "Created cachable AVD" - name: Build run: | pnpm install - name: Set up RN version run: | cd packages/icon-explorer ./set-rn-version.sh ${{ matrix.arch }} ${{ matrix.rn-version }} - name: Build App run: | cd packages/icon-explorer mv .owl/baseline-${{ matrix.arch }} .owl/baseline # something strange where the owl build isn't generating the jni files if [ "${{ matrix.rn-version }}" == "0.80" -a "${{ matrix.arch }}" == "new" ]; then pnpm run android || true fi pnpm run test:android:build - name: Run test timeout-minutes: 3 id: tests uses: reactivecircus/android-emulator-runner@v2 with: arch: x86_64 api-level: ${{ matrix.api-level }} force-avd-creation: false emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true script: adb shell settings put secure immersive_mode_confirmations confirmed && cd packages/icon-explorer && pnpm run test:android:run - name: S3 Report if: always() run: | cd packages/icon-explorer sed -i.bak -e "s/Report/Report (RN: ${{ matrix.arch }} Arch: ${{ matrix.rn-version }}) $(date)/" .owl/report/index.html || true ID="${{ github.run_id }}-${{ github.run_attempt }}-${{ github.job }}-${{ matrix.arch }}-${{ matrix.rn-version }}" aws --region us-east-2 s3 sync .owl "s3://react-native-vector-icons/$ID" || true if [ "${{ steps.tests.outcome }}" == "failure" ]; then echo -n "* ❌ " >> $GITHUB_STEP_SUMMARY elif [ "${{ steps.tests.outcome }}" == "success" ]; then echo -n "* ✅ " >> $GITHUB_STEP_SUMMARY else exit 0 fi echo "[Report ${{ matrix.arch }} ${{ matrix.rn-version }}](http://react-native-vector-icons.s3-website.us-east-2.amazonaws.com/$ID/report/index.html)" >> $GITHUB_STEP_SUMMARY - uses: dorny/test-reporter@v2 if: always() with: name: JEST Tests android - ${{ matrix.arch }} ${{ matrix.rn-version }} path: packages/icon-explorer/.owl/report/*.xml reporter: jest-junit ios: name: iOS runs-on: macos-latest strategy: fail-fast: false matrix: rn-version: ${{ github.event.inputs.all_versions && fromJSON('["0.80", "0.79", "0.78", "0.77", "0.76", "0.75", "0.74", "0.73"]') || fromJSON('["0.80", "0.79", "0.77"]') }} arch: ["new", "old"] steps: - uses: actions/checkout@v4 - uses: aws-actions/configure-aws-credentials@v4 if: always() # it fails for non maintainer PRs with: aws-region: us-east-2 role-to-assume: arn:aws:iam::119243932312:role/RNVI-S3-Buckert role-skip-session-tagging: true - uses: actions/setup-java@v4 with: distribution: "temurin" java-version: "17" # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands - uses: pnpm/action-setup@v4 with: run_install: false - uses: actions/setup-node@v4 with: node-version: lts/* cache: pnpm - name: Build run: | pnpm install - name: Set up RN version run: | cd packages/icon-explorer ./set-rn-version.sh ${{ matrix.arch }} ${{ matrix.rn-version }} - name: Build App run: | cd packages/icon-explorer # Try and work around strange build bug mkdir -p /Users/runner/work/react-native-vector-icons/react-native-vector-icons/packages/icon-explorer/ios/build/Build/Products/Debug-iphonesimulator/ReactTestApp.app mkdir -p /Users/runner/work/react-native-vector-icons/react-native-vector-icons/packages/icon-explorer/ios/build/Build/Products/Release-iphonesimulator/ReactTestApp.app mv .owl/baseline-${{ matrix.arch }} .owl/baseline pnpm run test:ios:build - name: Run simulator id: simulator uses: futureware-tech/simulator-action@v3 with: os: "iOS" model: "iPhone 16" - name: Run tests timeout-minutes: 5 id: tests run: | cd packages/icon-explorer tmp=$(mktemp) jq '.ios.device = "${{ steps.simulator.outputs.udid }}"' owl.config.json > "$tmp" && mv "$tmp" owl.config.json pnpm run test:ios:run - name: S3 Report if: always() run: | cd packages/icon-explorer sed -i.bak -e "s/Report/Report (RN: ${{ matrix.arch }} Arch: ${{ matrix.rn-version }}) $(date)/" .owl/report/index.html || true ID="${{ github.run_id }}-${{ github.run_attempt }}-${{ github.job }}-${{ matrix.arch }}-${{ matrix.rn-version }}" aws --region us-east-2 s3 sync .owl "s3://react-native-vector-icons/$ID" || true if [ "${{ steps.tests.outcome }}" == "failure" ]; then echo -n "* ❌ " >> $GITHUB_STEP_SUMMARY elif [ "${{ steps.tests.outcome }}" == "success" ]; then echo -n "* ✅ " >> $GITHUB_STEP_SUMMARY else exit 0 fi echo "[Report ${{ matrix.arch }} ${{ matrix.rn-version }}](http://react-native-vector-icons.s3-website.us-east-2.amazonaws.com/$ID/report/index.html)" >> $GITHUB_STEP_SUMMARY - uses: dorny/test-reporter@v2 if: always() with: name: JEST Tests ios - ${{ matrix.arch }} ${{ matrix.rn-version }} path: packages/icon-explorer/.owl/report/*.xml reporter: jest-junit ================================================ FILE: .gitignore ================================================ # OSX .DS_Store # Xcode build/ *.pbxuser !default.pbxuser *.mode1v3 !default.mode1v3 *.mode2v3 !default.mode2v3 *.perspectivev3 !default.perspectivev3 xcuserdata *.xccheckout *.moved-aside DerivedData *.hmap *.ipa *.xcuserstate project.xcworkspace # Android/IJ .classpath .cxx .gradle .idea .project .settings local.properties android.iml # node.js node_modules/ # BUCK buck-out/ \.buckd/ android/app/libs android/keystores/debug.keystore # generated by bob lib/ # Turborepo .turbo/ # React Native Codegen ios/generated android/generated # Nx .nx/cache .nx/workspace-data # Diffenator diffenator ================================================ FILE: .knip.jsonc ================================================ { "$schema": "https://unpkg.com/knip@5/schema-jsonc.json", "ignore": ["**/*.web.ts"], "babel": true, "workspaces": { ".": { "ignoreDependencies": [ "yo", "eslint-config-airbnb-typescript", "generator-react-native-vector-icons", "@commitlint/config-conventional", "@nx/js", "@evilmartians/lefthook" ], "ignoreBinaries": ["scripts/generate-fonts.sh"] }, "packages/*": { "entry": [ "{index,cli,main}.{js,mjs,cjs,jsx,ts,tsx,mts,cts}!", "src/{index,cli,main}.{js,mjs,cjs,jsx,ts,tsx,mts,cts}!" ] }, "packages/common": { "entry": ["src/index.ts", "src/scripts/{getFonts,updatePlist}.ts"], "ignoreDependencies": ["@react-native/assets-registry", "@react-native-vector-icons/get-image"] }, "packages/get-image": { "entry": ["src/index.ts"], "ignoreDependencies": ["turbo"], "ignore": ["src/NativeVectorIcons.ts", "react-native.config.js"] }, "packages/fontawesome-common": { "entry": ["scripts/generate-fontawesome-metadata.js", "scripts/generate-fontawesome-glyphmap.mts"], "ignore": ["generators/app/templates/src/*"], "ignoreDependencies": ["@types/react"] }, "packages/codemod": { "entry": ["src/index.ts", "src/{11,12}.0/transform.ts"] }, "packages/directory": { "entry": [ "src/index.tsx", "src/App.test.tsx", "src/reportWebVitals.ts", "src/setupTests.js", "bin/generate-font-styles.mts", "bin/generate-glyphmap-index.mts" ], "ignoreDependencies": ["@testing-library/user-event"], "ignoreBinaries": ["bin/generate-font-styles.mts", "bin/generate-glyphmap-index.mts"] }, "packages/icon-explorer": { "entry": ["index.js", "react-native.config.js", "configPlugin.js", "src/Types.tsx"], "ignore": ["metro.config.js"], "ignoreDependencies": [ "@react-native-vector-icons/get-image", "@babel/preset-env", "@react-native/eslint-config", "@rnx-kit/align-deps", "react-test-renderer", "@types/react-test-renderer", "@react-native-community/cli", "@react-native-community/cli-platform-android", "@react-native-community/cli-platform-ios" ] }, "packages/generator-react-native-vector-icons": { "entry": ["src/app/index.ts"], "ignore": ["src/app/templates/**", "generators/app/templates/**"], "ignoreDependencies": ["oslllo-svg-fixer"] }, "packages/ant-design": { "ignore": ["src/NativeVectorIconsAntDesign.ts"], "ignoreDependencies": ["@ant-design/icons-svg"] }, "packages/entypo": { "ignore": ["src/NativeVectorIconsEntypo.ts"], "ignoreDependencies": ["@entypo-icons/core"] }, "packages/evil-icons": { "ignore": ["src/NativeVectorIconsEvilIcons.ts"], "ignoreDependencies": ["evil-icons"] }, "packages/feather": { "ignore": ["src/NativeVectorIconsFeather.ts"], "ignoreDependencies": ["feather-icons"] }, "packages/fontawesome": { "ignore": ["src/NativeVectorIconsFontAwesome.ts"], "ignoreDependencies": ["font-awesome"] }, "packages/fontawesome-free-brands": { "ignoreDependencies": ["@fortawesome/fontawesome-free"] }, "packages/fontawesome-free-regular": { "ignoreDependencies": ["@fortawesome/fontawesome-free"] }, "packages/fontawesome-free-solid": { "ignoreDependencies": ["@fortawesome/fontawesome-free"] }, "packages/fontawesome5": { "ignore": ["src/NativeVectorIconsFontAwesome5.ts"], "ignoreDependencies": ["@fortawesome/fontawesome-free"] }, "packages/fontawesome5-pro": { "ignore": ["src/NativeVectorIconsFontAwesome5Pro.ts"], "ignoreDependencies": ["@react-native-vector-icons/fontawesome-common"] }, "packages/fontawesome6": { "ignore": ["src/NativeVectorIconsFontAwesome6.ts"], "ignoreDependencies": ["@fortawesome/fontawesome-free"] }, "packages/fontawesome6-pro": { "ignore": ["src/NativeVectorIconsFontAwesome6Pro.ts"], "ignoreDependencies": ["@react-native-vector-icons/fontawesome-common"] }, "packages/fontello": { "ignore": ["src/NativeVectorIconsFontello.ts"] }, "packages/fontisto": { "ignore": ["src/NativeVectorIconsFontisto.ts"], "ignoreDependencies": ["fontisto"] }, "packages/foundation": { "ignore": ["src/NativeVectorIconsFoundation.ts"], "ignoreDependencies": ["foundation-icons"] }, "packages/icomoon": { "ignore": ["src/NativeVectorIconsIcomoon.ts"] }, "packages/ionicons": { "ignore": ["src/NativeVectorIconsIonicons.ts"], "ignoreDependencies": ["ionicons"] }, "packages/lucide": { "ignore": ["src/NativeVectorIconsLucide.ts"], "ignoreDependencies": ["lucide-static"] }, "packages/material-design-icons": { "ignore": ["src/NativeVectorIconsMaterialDesignIcons.ts"], "ignoreDependencies": ["@mdi/font"] }, "packages/material-icons": { "ignore": ["src/NativeVectorIconsMaterialIcons.ts"] }, "packages/simple-line-icons": { "ignore": ["src/NativeVectorIconsSimpleLineIcons.ts"], "ignoreDependencies": ["simple-line-icons"] }, "packages/octicons": { "ignore": ["src/NativeVectorIconsOcticons.ts"], "ignoreDependencies": ["@primer/octicons"] }, "packages/zocial": { "ignore": ["src/NativeVectorIconsZocial.ts"], "ignoreDependencies": ["css-social-buttons"] } } } ================================================ FILE: .nxignore ================================================ # Files that shouldn't cause new versions to be created pnpm-lock.yaml README.md ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ## Our Standards Examples of behavior that contributes to a positive environment for our community include: * Demonstrating empathy and kindness toward other people * Being respectful of differing opinions, viewpoints, and experiences * Giving and gracefully accepting constructive feedback * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience * Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of any kind * Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or email address, without their explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [INSERT CONTACT METHOD]. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. ## Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: ### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. ### 2. Warning **Community Impact**: A violation through a single incident or series of actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. ### 3. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1, available at [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder][Mozilla CoC]. For answers to common questions about this code of conduct, see the FAQ at [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at [https://www.contributor-covenant.org/translations][translations]. [homepage]: https://www.contributor-covenant.org [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html [Mozilla CoC]: https://github.com/mozilla/diversity [FAQ]: https://www.contributor-covenant.org/faq [translations]: https://www.contributor-covenant.org/translations ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing Contributions are always welcome, no matter how large or small! We want this community to be friendly and respectful to each other. Please follow it in all your interactions with the project. Before contributing, please read the [code of conduct](./CODE_OF_CONDUCT.md). If you have found an issue or would like to request a new feature, simply create a new issue. Be sure to fill out as much information as possible. ## Reporting Bugs & Feature Requests If you would like to submit a feature request or report a bug, we encourage you to first look through the [issues](https://github.com/oblador/react-native-vector-icons/issues) and [pull requests](https://github.com/oblador/react-native-vector-icons/pulls) before filing a new issue. ## Submitting a Pull Request If you wish to submit a pull request for a new feature or issue, you should start by forking this repository first. This should get you setup on your local machine: ## Development workflow This project is a monorepo managed using [pnpm workspaces](https://pnpm.io/workspaces). It contains the following packages: - The library packages in `packages/common` and `packages/get-image` - Example apps in `packages/icon-explorer` and `packages/directory` - Fonts in `packages/fontname` e.g. `packages/fontawesome6` To get started with the project, run `pnpm install` in the root directory to install the required dependencies for each package: ```sh pnpm install ``` > Since the project relies on pnpm workspaces, you cannot use [`npm`](https://github.com/npm/cli) for development. [IconExplorer](/packages/icon-explorer/) demonstrates usage of the library. You need to run it to test any changes you make. It is configured to use the local version of the library, so any changes you make to the library's source code will be reflected in the example app. Changes to the library's JavaScript code will be reflected in the example app without a rebuild, but native code changes will require a rebuild of the example app. If you want to use Android Studio or XCode to edit the native code, you can open the `packages/IconExplorer/android` or `packages/IconExplorer/ios` directories respectively in those editors. To edit the Objective-C or Swift files, open `packages/IconExplorer/ios/IconExplorer.xcworkspace` in XCode and find the source files at `Pods > Development Pods > @react-native-vector-icons/ant-design`. To edit the Java or Kotlin files, open `packages/icon-explorer/android` in Android studio and find the source files at `react-native-vector-icons` under `Android`. You can use various commands from the root directory to work with the project. To start the packager: ```sh pnpm run example start ``` To run the example app on Android: ```sh pnpm run example android ``` To run the example app on iOS: ```sh pnpm run example ios ``` By default, the example is configured to build with the old architecture. To run the example with the new architecture, you can do the following: 1. For Android, run: ```sh ORG_GRADLE_PROJECT_newArchEnabled=true pnpm run example android ``` 2. For iOS, run: ```sh RCT_NEW_ARCH_ENABLED=1 pod install example/ios pnpm run example ios ``` If you are building for a different architecture than your previous build, make sure to remove the build folders first. You can run the following command to cleanup all build folders: ```sh pnpm run clean ``` To confirm that the app is running with the new architecture, you can check the Metro logs for a message like this: ```sh Running "IconExplorer" with {"fabric":true,"initialProps":{"concurrentRoot":true},"rootTag":1} ``` Note the `"fabric":true` and `"concurrentRoot":true` properties. Make sure your code passes all of our linting. Run the following to verify: ```sh pnpm run lint ``` To fix formatting errors, run the following: ```sh pnpm run lint:biome --fix ``` Remember to add tests for your change if possible. Run the unit tests by: ```sh pnpm run test ``` ### Tests We run tests again `new` and `old` architecture against the last 3 versions of React Native automatically via CI. To run the these tests manually you should create an avd called test which is based on the Pixel 6 Pro profile. This is essential for the screenshot diffs to work ```sh sdkmanager --install 'system-images;android-31;default;x86_64' --channel=0 avdmanager create avd --force -n test --abi 'default/x86_64' --package 'system-images;android-31;default;x86_64' --device 'pixel_6_pro' ``` You can then run the tests ``` cd packages/icon-explorer pnpm run run test:android:build pnpm run run test:android:run pnpm run run test:ios:build pnpm run run test:ios:run ``` You can switch versions of react native before running the tests with ``` cd packages/icon-explorer # ./set-rn-version ./set-rn-version new 0.74 ./set-rn-version old 0.79 ``` ### Commit message convention We follow the [conventional commits specification](https://www.conventionalcommits.org/en) for our commit messages: - `fix`: bug fixes, e.g. fix crash due to deprecated method. - `feat`: new features, e.g. add new method to the module. - `refactor`: code refactor, e.g. migrate from class components to hooks. - `docs`: changes into documentation, e.g. add usage example for the module.. - `test`: adding or updating tests, e.g. add integration tests using detox. - `chore`: tooling changes, e.g. change CI config. Our pre-commit hooks verify that your commit message matches this format when committing. ### Linting and tests [ESLint](https://eslint.org/), [Prettier](https://prettier.io/), [TypeScript](https://www.typescriptlang.org/) We use [TypeScript](https://www.typescriptlang.org/) for type checking, [ESLint](https://eslint.org/) with [Prettier](https://prettier.io/) for linting and formatting the code, and [Jest](https://jestjs.io/) for testing. Our pre-commit hooks verify that the linter and tests pass when committing. ### Publishing to npm We use `nx` to make it easier to publish new versions. It handles common tasks like bumping version based on semver, creating tags and releases etc. To publish new versions, use the github action [release.yml](.github/workflows/deploy.yml) which is triggered manually. ### Scripts The `package.json` file contains various scripts for common tasks: - `pnpm i`: setup project by installing dependencies. - `pnpm run lint:typecheck`: type-check files with TypeScript. - `pnpm run lint:eslint`: lint files with ESLint. - `pnpm run lint:biome`: lint files with Biome. ### Sending a pull request > **Working on your first pull request?** You can learn how from this _free_ series: [How to Contribute to an Open Source Project on GitHub](https://app.egghead.io/playlists/how-to-contribute-to-an-open-source-project-on-github). When you're sending a pull request: - Prefer small pull requests focused on one change. - Verify that linters and tests are passing. - Review the documentation to make sure it looks good. - Follow the pull request template when opening a pull request. - For pull requests that change the API or implementation, discuss with maintainers first by opening an issue. ### Font generation All the font packages are automatically generated using a `yeoman` generator. This is driven by a `.yo-rc.json` file in the root of each font. To make changes to common font files, edit the files in `packages/generator-react-native-vector-icons/src/app/templates/` and then at the root run: ```sh # Generate all fonts pnpm generate # Generate a single font pnpm generate ant-design ``` ### Font versioning Font package versions are now independent of upstream font versions, and we track the mapping in the README.md of each font ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2015 Joel Arvidsson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: MIGRATION.md ================================================ # Major version migration instructions We provide a `codemod` to help migrate your code and settings between major versions. > [!IMPORTANT] > Make sure your code is committed to git or backed up before executing the codemod and review all changes before committing them. ```sh npx @react-native-vector-icons/codemod ``` ## Expo To migrate from `@expo/vector-icons`, run the codemod in your Expo project. If you use `createIconSetFromIcoMoon` or `createIconSetFromFontello`, there may be some manual steps required after running the codemod: ```diff -import createIconSetFromFontello from '@expo/vector-icons/createIconSetFromFontello'; +import createIconSetFromFontello from '@react-native-vector-icons/fontello'; -createIconSetFromFontello(fontelloConfig, 'fontello', require('path/to/fontello.ttf')); +createIconSetFromFontello(fontelloConfig, { + fontSource: require('path/to/fontello.ttf') +}); ``` ## React Native CLI projects The codemod attempts to execute many of the manual steps listed below. Thoroughly check each section below for any steps that aren't automatically handled. > [!NOTE] > The codemod is a best effort, read through all the manual steps to ensure they have been completed. ## Migration from react-native-vector-icons to @react-native-vector-icons/\* v12.0+ In v12, the library has been simplified to require very little setup and does not require the explicit installation of `@react-native-vector-icons/common` package. ### package.json Unless you are using `createIconSet` directly with your own font, remove `@react-native-vector-icons/common` from your `package.json`. If it's not there, go to the next step. ```sh npm uninstall @react-native-vector-icons/common ``` ### Move FontAwesome Pro, icomoon and fontello fonts > [!WARNING] > Only FontAwesome Pro fonts are supported by the codemod These fonts should be in `rnvi-fonts` or a folder you defined in `package.json` They need to be moved to a subfolder of `rnvi-fonts` with the name of the font package. - fontawesome5-pro - fontawesome6-pro - fontello - icomoon ### package.json Remove `react-native-vector-icons` from your dependencies and replace with the fonts you intend to use, e.g. `@react-native-vector-icons/fontisto`. ### imports Update your import statements to use the new library names ```js // Old import Fontisto from "react-native-vector-icons"; // New import { Fontisto } from "@react-native-vector-icons/fontisto"; ``` ### Move to new props for Fontawesome 5 and 6 The FontAwesome 5 and 6 fonts now take an `iconType` prop instead of a style name prop ```jsx // Old // New ``` Note: The codemod assumes you used the naming from the old README for your component e.g. `FontAwesome5` or `Icon` If you have imported the component with another name you will need to modify the codemod or make the changes yourself. ### Remove unused fonts from Info.plist You still need to add fonts in `Info.plist` - but only those which you have installed. Check the [React Native Setup](./docs/SETUP-REACT-NATIVE.md) instructions for instructions on how to update it with our included script. ### iOS > [!WARNING] > This is not supported by the codemod If you aren't using any other fonts, remove the `Fonts` folder and any fonts you have added. Select your project in the navigator, choose your app's target, go to the Build Phases tab, and under Copy Bundle Resources, remove any fonts. Remove any entries in `react-native.config.js`: ```js // react-native.config.js; module.exports = { dependencies: { // Remove any entries like this "react-native-vector-icons": { platforms: { ios: null, }, }, }, }; ``` ================================================ FILE: README.md ================================================ ![Vector Icons for React Native](https://cloud.githubusercontent.com/assets/378279/12009887/33f4ae1c-ac8d-11e5-8666-7a87458753ee.png) [![npm](https://img.shields.io/npm/v/@react-native-vector-icons/common.svg)](https://npmjs.com/package/@react-native-vector-icons/common) [![npm](https://img.shields.io/npm/dm/@react-native-vector-icons/common.svg)](https://npmjs.com/package/@react-native-vector-icons/common) # React Native Vector Icons Elevate your React Native applications with the power of customizable vector icons. Ideal for embellishing buttons, logos, and navigation or tab bars, these icons seamlessly integrate into your projects. Their versatility makes extension and styling effortless. For the integration of `.svg` files natively, you can explore [`react-native-vector-image`](https://github.com/oblador/react-native-vector-image). > [!TIP] > If you are still using the old single package `react-native-vector-icons` visit . To migrate to the package-per-icon-set approach, see [MIGRATION.md](MIGRATION.md). ## Table of Contents - [Sponsorship](#sponsorship) - [Available Icon Sets](#available-icon-sets) - [Installation](#installation) - [Setup](#setup) - [Icon Component](#icon-component) - [Usage as PNG Image/Source Object](#usage-as-png-imagesource-object) - [Multi-Style Fonts](#multi-style-fonts) - [Custom Fonts](#custom-fonts) - [Animation](#animation) - [Dynamic icon font loading](#dynamic-icon-font-loading) - [Usage Examples](#usage-examples) - [Changelog](https://github.com/react-native-vector-icons/react-native-vector-icons/releases) - [License](#license) ## Sponsorship Should you find this library beneficial, kindly contemplate the option of [sponsoring](https://github.com/sponsors/oblador). ## Available Icon Sets [Explore all icons](https://oblador.github.io/react-native-vector-icons/). RNVI comes with the following supported icons. You can [search NPM](https://www.npmjs.com/search?q=keywords%3Areact-native-vector-icons-icon) for third party icons. ### Actively maintained - [`AntDesign`](https://ant.design/components/icon) from Ant Group (v4.4.2 with _449_ icons) - [`Feather`](http://feathericons.com) created by Cole Bemis & Contributors (v4.29.2 featuring _287_ icons) - [`FontAwesome`](https://fontawesome.com/search) designed by Fonticons, Inc. (v7.2.0 featuring _2,806_ free and _75,767_ pro icons) - [`Foundation`](http://zurb.com/playground/foundation-icon-fonts-3) by ZURB, Inc. (v3.0 with _283_ icons) - [`Ionicons`](https://ionic.io/ionicons) crafted by Ionic (v8.0.9 containing _1,357_ icons) - [`MaterialDesignIcons`](https://pictogrammers.com/library/mdi/) from MaterialDesignIcons.com (v7.4.47 including _7448_ icons) - [`Octicons`](https://primer.style/foundations/icons) designed by GitHub, Inc. (v19.22.0 with _339_ icons) - [`Lucide`](https://lucide.dev/) designed by Lucide, (v0.576.0 with _1,639_ icons) ### No longer maintained upstream - [`Entypo`](http://entypo.com) by Daniel Bruce (v1.0.1 with _411_ icons) - [`EvilIcons`](http://evil-icons.io) designed by Alexander Madyankin & Roman Shamin (v1.10.1 with _70_ icons) - [`FontAwesome 4`](https://fontawesome.com/v4/icons) by Fonticons, Inc. (v4.7.0 containing _785_ icons) - [`FontAwesome 5`](https://fontawesome.com/v5/search) from Fonticons, Inc. (v5.15.4 offering _1611_ free and _7869_ pro icons) - [`FontAwesome 6`](https://fontawesome.com/search) designed by Fonticons, Inc. (v6.7.2 featuring _2060_ free and _52663_ pro icons) - [`Fontisto`](https://github.com/kenangundogan/fontisto) created by Kenan Gündoğan (v3.0.4 featuring _617_ icons) - [`MaterialIcons`](https://fonts.google.com/icons?icon.set=Material+Icons) by Google, Inc. (v4.0.0 featuring _2234_ icons) - [`SimpleLineIcons`](https://simplelineicons.github.io/) crafted by Sabbir & Contributors (v2.5.5 with _189_ icons) - [`Zocial`](https://smcllns.github.io/css-social-buttons) by Sam Collins (v1.1.1 with _100_ icons) ## Migration See [MIGRATION.md](MIGRATION.md) if you are migrating from `react-native-vector-icons` to the package-per-icon-set approach or between major versions. ## Installation 1. Install the packages for the icons you want to use ```sh npm install @react-native-vector-icons/fontawesome-free-solid @react-native-vector-icons/evil-icons ``` 2. Depending on the platform you're targeting (iOS/Android/Windows), follow the appropriate setup instructions below. 3. If you are using one of the following fonts, refer to their guides for further instructions - [Fontello](packages/fontello/README.md) - [Icomoon](packages/icomoon/README.md) ## Setup Refer to the guide for [Expo](./docs/SETUP-EXPO.md), [React Native](./docs/SETUP-REACT-NATIVE.md) or [Web](./docs/SETUP-WEB.md) for further instructions. ### Font location customisation For fonts like the FontAwesome Pro as well as Fontello and Icomoon where you provide the fonts, the default location for the font files is `rnvi-fonts` in the same directory as your package.json. This can be customized by setting the `fontDir` property in your `package.json` file. ```json { "reactNativeVectorIcons": { "fontDir": "src/rnvi-fonts" } } ``` ## `Icon` Component You can either use one of the bundled icons above or roll your own custom font. ```js import { FontAwesomeFreeSolid } from "@react-native-vector-icons/fontawesome-free-solid"; // or use the static version if you don't need [dynamic font loading](#dynamic-icon-font-loading) to get a slightly smaller bundle size import { FontAwesomeFreeSolid } from "@react-native-vector-icons/fontawesome-free-solid/static"; ; ``` ### Props Any [Text props](https://reactnative.dev/docs/text.html#props) and the following: | Prop | Description | Default | | ----------- | ----------------------------------------------------------------------- | ----------- | | **`size`** | Size of the icon, can also be passed as `fontSize` in the style object. | `12` | | **`name`** | What icon to show, see Icon Explorer app or one of the links above. | _None_ | | **`color`** | Color of the icon. | _Inherited_ | ### Styling Since `Icon` builds on top of the `Text` component, most [style properties](https://reactnative.dev/docs/style.html) will work as expected, you might find it useful to play around with these: - `backgroundColor` - `borderWidth` - `borderColor` - `borderRadius` - `padding` - `margin` - `color` - `fontSize` By combining some of these you can create for example : ![type](https://cloud.githubusercontent.com/assets/378279/7667570/33817554-fc0d-11e4-9ad7-4eb60139cfb7.png) ![star](https://cloud.githubusercontent.com/assets/378279/7667569/3010dd7e-fc0d-11e4-9696-cb721fe8e98d.png) ## Usage as PNG Image/Source Object Convenient way to plug this in into other components that rely on bitmap images rather than scalable vector icons. Takes the arguments `name`, `size` and `color` as described above. You need to install `@react-native-vector-icons/get-image` to use this feature. ```jsx const source = Icon.getImageSourceSync('user', 20, 'red'); return ; ``` Alternatively you may use the async method `Icon.getImageSource`. Keep in mind that `Icon.getImageSourceSync` is blocking and might incur performance penalties. Subsequent calls will use cache however. ### Static methods All static methods from `Icon` are supported by multi-styled fonts. | Prop | Description | | ------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **`getImageSource`** | Returns a promise that resolving to the source of a bitmap version of the icon for use with `Image` component et al. Usage: `const source = await Icon.getImageSource(name, size, color)` | | **`getImageSourceSync`** | Same as `getImageSource` but synchronous. Usage: `const source = Icon.getImageSourceSync(name, size, color)` | ## Custom Fonts The best approach is to use our icon generator to create your own icon package. See [CREATE_FONT_PACKAGE.md](./docs/CREATE_FONT_PACKAGE.md) to learn how to create your own font packages. You can also use `createIconSet()` directly in your project. This returns your own custom font based on the `glyphMap` where the key is the icon name and the value is either a UTF-8 character or its character code. `postScriptName` is the name of the postscript font. Open the font in , Font Book.app or similar to learn the name. Also pass the `fontFileName` argument for Android support. ```js import { createIconSet } from "@react-native-vector-icons/common"; const glyphMap = { "icon-name": 1234, test: "∆" }; // use createIconSet() with object parameter // or use positional parameters for compatibility with version <= 10: `createIconSet(glyphMap, fontFamily[, fontFile])` const Icon = createIconSet(glyphMap, { postScriptName: "FontName", fontFileName: "font-name.ttf", fontSource: require("../fonts/font-name.ttf"), // optional, for dynamic loading. Can also be a local file uri. }); ``` If you aren't using dynamic font loading you need to make sure your font is copied into your bundle. ## Animation React Native comes with an amazing animation library called [`Animated`](https://reactnative.dev/docs/animated.html). To use it with an icon, simply create an animated component with this line: `const AnimatedIcon = Animated.createAnimatedComponent(Icon)`. You can also use the higher level animation library [react-native-animatable](https://github.com/oblador/react-native-animatable). ## Dynamic icon font loading > Dynamic loading is supported on all platforms if you use Expo ([Expo Go](https://expo.dev/go) or a [development build](https://docs.expo.dev/develop/development-builds/introduction/)). In the future, it should become available for all React Native projects via React Native core. Fonts can be available in an app statically (since build time) or loaded dynamically at runtime. The latter can be useful e.g. for apps that use over-the-air updates and want to [load](https://docs.expo.dev/versions/latest/sdk/font/#loadasyncfontfamilyorfontmap-source) new fonts with an update, or when you need to use a font from a remote location. If you don't use dynamic loading, use the `/static` imports (e.g. `"@react-native-vector-icons/ionicons/static"`). Dynamic loading in `@react-native-vector-icons` is currently limited to those fonts that are bundled within the provided packages: it doesn't support Pro fonts (such as FontAwesome Pro). However, loading of custom fonts is not difficult to implement: use `createIconSet` as seen in [custom fonts](#custom-fonts) paragraph to obtain a icon font family with dynamic font loading enabled. See any of the free font packages for reference. By default, dynamic loading is enabled if you run Expo SDK >= 52. It doesn't change the way you work with the package: If rendering an icon requires a font that is not known to the app, it will be loaded automatically and icon will render as expected. `@react-native-vector-icons/common` exports several functions which you can use to control dynamic loading: - `isDynamicLoadingEnabled`: Returns whether dynamic loading is enabled. - `isDynamicLoadingSupported`: Returns whether dynamic loading is supported by your runtime (checks that necessary Expo features are present). - `setDynamicLoadingEnabled`: Enables or disables dynamic loading. - `setDynamicLoadingErrorCallback`: Sets a callback that is called (in the unlikely case) when an error occurs during dynamic loading. An example of when an error might happen is loading a misconfigured OTA update which doesn't include a necessary font file. ## Usage Examples ### Icon Explorer Try the `IconExplorer` project in `Examples/IconExplorer` folder, there you can also search for any icon. ![Screenshot of IconExplorer](https://cloud.githubusercontent.com/assets/378279/8903470/a9fe6b46-3458-11e5-901f-98b7b676d0d3.png) ### Basic Example ```js import { IonIcons } from "@react-native-vector-icons/ionicons/static"; const ExampleView = () => ( ); ``` ### Inline Icons ```js import { Text } from "react-native"; import { IonIcons } from "@react-native-vector-icons/ionicons/static"; const ExampleView = (props) => ( Lorem Ipsum ); ``` ## Testing When running tests with `jest` you will need to mock out the native code loading to prevent errors. In `jest.config.js` add ```js // Mock out font loading moduleNameMapper: { '\\.(ttf)$': '/__mocks__/file-mock.js', } ``` Create `__mocks__/file-mock.js`: ```js module.exports = {}; ``` Create `__mocks__/@react-native-vector-icons/common.js`: ```js // Mock the entire common library so there are no native module loading errors module.exports = { createIconSet: () => "icon", }; ``` ## [Changelog](https://github.com/oblador/react-native-vector-icons/releases) ## License This project is licenced under the [MIT License](http://opensource.org/licenses/mit-license.html). Any bundled fonts are copyright to their respective authors and mostly under MIT or [SIL OFL](http://scripts.sil.org/OFL). ================================================ FILE: TODO.md ================================================ # TODO * Test the other targets * macOS * windows * web * When we stop supporting 0.73 move to generating codegen artifcats and shipping them in libraries ================================================ FILE: biome.jsonc ================================================ { "$schema": "https://biomejs.dev/schemas/2.3.0/schema.json", "files": { "includes": [ "**", // pnpm keeps these formatted "!**/package.json", "!**/packages/**/*/package.json", // nx keeps this formatted "!**/tsconfig.json", "!**/packages/**/*/tsconfig.json", "!nx.json", // Files auto generated by us "!**/packages/**/.yo-rc.json", "!**/packages/**/*/lib", "!**/packages/**/*/glyphmaps", "!**/packages/generator-react-native-vector-icons/generators", "!**/packages/**/*/.fontcustom-manifest.json", "!**/packages/**/*/android/build", "!**/packages/directory/src/generated", "!**/packages/directory/build", "!**/packages/icon-explorer/.owl", "!**/.nx", // Templates that have ejs "!**/packages/fontawesome-common/generators/app/templates/src", "!**/packages/generator-react-native-vector-icons/src/app/templates/src", // Upstream files "!**/packages/icon-explorer/src/configs/icomoon.config.json", // native files "!**/packages/icon-explorer/ios", "!**/packages/icon-explorer/android", "!**/packages/common/android", "!**/packages/common/ios" ] }, "assist": { "actions": { "source": { "organizeImports": { "level": "on", "options": { "groups": [ ":NODE:", ":BLANK_LINE:", ["react", "react-native", "react-dom/client"], ":BLANK_LINE:", [":PACKAGE:"], ":BLANK_LINE:", [":PATH:", "!**/glyphmaps/*_meta.json"], ":BLANK_LINE:", ["**/glyphmaps/*_meta.json"] ] } } } } }, "linter": { "enabled": true, "rules": { "recommended": true, "complexity": { "noForEach": "off" } } }, "formatter": { "enabled": true, "indentStyle": "space", "lineWidth": 120 }, "javascript": { "formatter": { "quoteStyle": "single" } } } ================================================ FILE: docs/CREATE_FONT_PACKAGE.md ================================================ # Creating a font package You can create a new font package either via a PR to this repository or by publishing your own font package on NPM. We use a yeoman generator to fully automate the generation the fonts from a configuration file. In the future the idea is to automate this to automatically release new fonts in line with upstream. Below we describe how to create a font in this monorepo, the process for creating your own package would be quite similar. > **Note**: Before contributing a new font package, please read our [Contributing Guidelines](../CONTRIBUTING.md) and follow the [development workflow](../CONTRIBUTING.md#development-workflow) described there. ## Quick Start 1. **Set up development environment** (see [CONTRIBUTING.md](../CONTRIBUTING.md#development-workflow)): ```sh pnpm install ``` 2. **Create font package directory and config**: ```sh mkdir packages/my-font vi packages/my-font/.yo-rc.json git add packages/my-font/.yo-rc.json ``` 3. **Generate the font package**: ```sh # Generate single font pnpm generate my-font # Or generate all fonts pnpm generate ``` ## Configuration Reference The `.yo-rc.json` file contains all configuration for the font package generation. Here's the complete structure: For most fonts you should be able to set the packageName and most other variaables will be derived from them, but you can adjust with the optional propertires when necessary. ### Required Properties #### packageName - **Type**: `string` - **Description**: The name of the node package and directory name - **Example**: `"material-symbols"` - **Note**: Currently assumes package will live in `@react-native-vector-icons` namespace ### Optional Properties #### name - **Type**: `string` - **Description**: The name in capitalised sentence from - **Default**: Title Case of packageName - **Example**: `"Material Symbols"` (from `material-symbols`) #### className - **Type**: `string` - **Description**: Class name for generated components - **Default**: PascalCase of packageName - **Example**: `"MaterialSymbols"` (from `material-symbols`) #### postScriptName - **Type**: `string` - **Description**: PostScript name for the font - **Default**: Same as className - **Example**: `"MaterialSymbols"` #### fontFileName - **Type**: `string` - **Description**: Base filename for generated fonts - **Default**: Same as className - **Example**: `"MaterialSymbols"` #### upstreamFont - **Type**: `string | object` - **Description**: The upstream font package dependency where the font comes from a node module - **String format**: `"package-name"` - fetches latest version from npm - **Object format**: ```json { "packageName": "@fortawesome/fontawesome-free", "versionRange": "^6", "registry": "https://registry.npmjs.org", "versionOnly": false } ``` #### customSrc - **Type**: `string | boolean` - **Description**: Path to custom source template or `true` to skip generation - **Example**: `"../../../../fontawesome-common/generators/app/templates/src/index.tsx"` #### customReadme - **Type**: `boolean` - **Description**: Skip README.md generation - **Default**: `false` #### copyCustomFonts - **Type**: `boolean` - **Description**: Copy custom font files instead of generating - **Default**: `false` #### commonPackage - **Type**: `string` - **Description**: Path to common package for shared functionality - **Default**: `"common"` - **Example**: `"fontawesome-common/fontawesome6"` #### meta - **Type**: `object` - **Description**: Metadata for multi-style fonts - **Example**: ```json { "defaultStyleName": "regular", "styleNames": ["regular", "solid", "brand"], "styles": { "regular": { "family": "FontAwesome6Free-Regular", "name": "FontAwesome6_Regular.ttf", "weight": 400 } } } ``` #### versions - **Type**: `array` - **Description**: Version history tracking. Updated when a new upstream font version is released. - **Example**: ```json [ { "rnvi": "12.0.0", "upstream": "4.29.2" }, { "rnvi": "12.0.1", "upstream": "4.30.0" } ] ``` ### Build Steps The `buildSteps` object defines the font generation pipeline. Steps are executed in this order: #### preScript Execute shell commands before font generation ```json { "preScript": { "script": "mkdir -p fonts\ncurl https://example.com/font.ttf > fonts/font.ttf" } } ``` #### renameSVGs Rename and filter SVG files ```json { "renameSVGs": { "location": "../../node_modules/@primer/octicons/build/svg", "keepPostfix": "-16" } } ``` - **location**: Source directory containing SVGs - **keepPostfix**: Only keep files ending with this postfix, remove it from output #### fixSVGPaths Fix SVG path issues using oslllo-svg-fixer ```json { "fixSVGPaths": { "location": "../../node_modules/ionicons/dist/svg", "cleanup": true } } ``` - **location**: Source directory or `"renamedSVGs"` if after renameSVGs - **cleanup**: Remove source directory after processing #### fontCustom Generate font TTF from SVGs using FontCustom ```json { "fontCustom": { "location": "fixedSvg", "cleanup": true } } ``` - **location**: Directory containing SVG files - **cleanup**: Remove source directory after processing #### fontforgeScript Run FontForge script for font post-processing ```json { "fontforgeScript": { "script": "correct-direction.py" } } ``` - **script**: Script name in the generator's fontforge directory #### glyphmap Generate icon mapping files ```json { "glyphmap": { "mode": "css", "location": "FontAwesome.css", "prefix": ".fa-", "cleanup": true } } ``` - **mode**: `"css"` or `"codepoints"` - **location**: Source file or array of `[source, output]` pairs - **prefix**: CSS class prefix (css mode only) - **cleanup**: Remove source files after processing #### copyFont Copy existing font files ```json { "copyFont": { "location": "../../node_modules/font-awesome/fonts/fontawesome-webfont.ttf" } } ``` - **location**: Source file path or array of `[source, output]` pairs #### postScript Execute shell commands after font generation ```json { "postScript": { "script": "node ../scripts/generate-metadata.js" } } ``` ## Configuration Examples ### SVG to Font Generation (Feather Icons) ```json { "generator-react-native-vector-icons": { "packageName": "feather", "upstreamFont": "feather-icons", "buildSteps": { "fontCustom": { "location": "node_modules/feather-icons/dist/icons" }, "glyphmap": { "mode": "css", "cleanup": true } }, "versions": [{ "rnvi": "12.0.0", "upstream": "4.29.2" }] } } ``` ### CSS-based Font (FontAwesome) ```json { "generator-react-native-vector-icons": { "packageName": "fontawesome", "postScriptName": "FontAwesome", "fontFileName": "FontAwesome", "className": "FontAwesome", "upstreamFont": "font-awesome", "buildSteps": { "glyphmap": { "location": "../../node_modules/font-awesome/css/font-awesome.css", "mode": "css", "prefix": ".fa-" }, "copyFont": { "location": "../../node_modules/font-awesome/fonts/fontawesome-webfont.ttf" } }, "versions": [{ "rnvi": "12.0.0", "upstream": "4.7.0" }] } } ``` ### Codepoints-based Font (Material Icons) ```json { "generator-react-native-vector-icons": { "packageName": "material-icons", "postScriptName": "MaterialIcons-Regular", "buildSteps": { "preScript": { "script": "mkdir -p fonts\nREF='f7bd4f25f3764883717c09a1fd867f560c9a9581'\ncurl https://raw.githubusercontent.com/google/material-design-icons/$REF/font/MaterialIcons-Regular.codepoints -Ls > MaterialIcons-Regular.codepoints\ncurl https://raw.githubusercontent.com/google/material-design-icons/$REF/font/MaterialIcons-Regular.ttf -Ls > fonts/MaterialIcons.ttf" }, "glyphmap": { "location": "MaterialIcons-Regular.codepoints", "mode": "codepoints", "prefix": ".mdi-", "cleanup": true } }, "versions": [{ "rnvi": "12.0.0", "upstream": "0.0.1" }] } } ``` ### Multi-style Font (FontAwesome 6) ```json { "generator-react-native-vector-icons": { "packageName": "fontawesome6", "className": "FontAwesome6", "commonPackage": "fontawesome-common/fontawesome6", "customSrc": "../../../../fontawesome-common/generators/app/templates/src/index.tsx", "customReadme": true, "upstreamFont": { "packageName": "@fortawesome/fontawesome-free", "versionRange": "^6" }, "meta": { "defaultStyleName": "regular", "styleNames": ["regular", "solid", "brand"], "styles": { "regular": { "family": "FontAwesome6Free-Regular", "name": "FontAwesome6_Regular.ttf", "weight": 400 }, "solid": { "family": "FontAwesome6Free-Solid", "name": "FontAwesome6_Solid.ttf", "weight": 900 }, "brand": { "family": "FontAwesome6Brands-Regular", "name": "FontAwesome6_Brands.ttf", "weight": 400 } } }, "buildSteps": { "glyphmap": { "location": "node_modules/@fortawesome/fontawesome-free/css/all.css", "mode": "css", "prefix": ".fa-" }, "copyFont": { "location": [ ["node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf", "FontAwesome6_Brands"], ["node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf", "FontAwesome6_Regular"], ["node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf", "FontAwesome6_Solid"] ] }, "postScript": { "script": "node ../fontawesome-common/scripts/generate-fontawesome-metadata --path node_modules/@fortawesome/fontawesome-free --output glyphmaps/FontAwesome6_meta.json" } }, "versions": [{ "rnvi": "12.0.0", "upstream": "6.7.2" }] } } ``` ### SVG Processing with Fixes (Ionicons) ```json { "generator-react-native-vector-icons": { "packageName": "ionicons", "upstreamFont": "ionicons", "buildSteps": { "fixSVGPaths": { "location": "../../node_modules/ionicons/dist/svg" }, "fontCustom": { "location": "fixedSvg", "cleanup": true }, "fontforgeScript": { "script": "correct-direction.py" }, "glyphmap": { "mode": "css", "cleanup": true } }, "versions": [{ "rnvi": "12.0.0", "upstream": "7.4.0" }, { "rnvi": "12.0.1", "upstream": "8.0.8" }] } } ``` ### Custom Font Package (Fontello) ```json { "generator-react-native-vector-icons": { "packageName": "fontello", "customReadme": true, "customSrc": true, "copyCustomFonts": true } } ``` ## Build Process 1. **Install Dependencies**: The generator installs upstream font packages 2. **Template Generation**: Creates package.json, TypeScript files, Android/iOS config 3. **Build Steps Execution**: Runs configured build steps in order 4. **Font Generation**: Uses FontCustom in Docker container if needed 5. **Glyph Mapping**: Generates JSON mapping files for icons ## Testing Your Font Package After generating your font package, test it in the example app: ```sh # Start the example app (see CONTRIBUTING.md for details) pnpm run example start pnpm run example android # or ios ``` ## Development Workflow For ongoing development and testing: 1. **Make template changes** to `packages/generator-react-native-vector-icons/src/app/templates/` 2. **Regenerate fonts**: ```sh pnpm generate my-font ``` 3. **Test changes** in the IconExplorer app 4. **Run linting and tests** (see [CONTRIBUTING.md](../CONTRIBUTING.md#linting-and-tests)): ```sh pnpm run lint pnpm run test ``` ## Submitting Your Font Package When ready to contribute your font package: 1. **Follow commit conventions** described in [CONTRIBUTING.md](../CONTRIBUTING.md#commit-message-convention) 2. **Create a pull request** following the [PR guidelines](../CONTRIBUTING.md#sending-a-pull-request) 3. **Include documentation** updates if needed 4. **Ensure all tests pass** in CI ## Font Versioning Font package versions are independent of upstream font versions. We track the mapping in each font's README.md file as described in [CONTRIBUTING.md](../CONTRIBUTING.md#font-versioning). ## Manual Generator Execution If needed, you can run the generator manually: ```sh cd packages/my-font npx yo react-native-vector-icons --current-version=1.0.0 ``` > **Note**: The `pnpm generate` command is the preferred method as it handles version management automatically. ================================================ FILE: docs/SETUP-EXPO.md ================================================ # Setup guide for Expo Apps > If you use React Native without Expo, please follow [this guide](./SETUP-REACT-NATIVE.md) instead. This guide applies to Expo apps only. Icon packages from `@react-native-vector-icons` work out of the box with Expo, across all platforms. No additional configuration is required. > [!WARNING] > Avoid Manual Font Duplication: do not add fonts from `node_modules/@react-native-vector-icons/some-font` to `expo-font` plugin configuration unless you have a specific advanced use case. ================================================ FILE: docs/SETUP-REACT-NATIVE.md ================================================ # Setup guide for React Native Apps > If you use Expo, please follow [this guide](./SETUP-EXPO.md) instead. This guide applies to vanilla React Native apps only. ### Android 1. Rebuild your app. No extra steps needed for Android. ### iOS > [!TIP] > You will need to follow these instructions any time you add a new font 1. To use the icon packages you previously installed on iOS, run: ```sh npx rnvi-update-plist package.json ios/AppName/Info.plist ``` 2. Open `ios/Info.plist` and verify that the property called **Fonts provided by application** (or **UIAppFonts** if opening the file in a text editor) is present and contains the expected entries. For example:
List of all available fonts that could be present in Info.plist ```xml UIAppFonts FontAwesome6_Brands.ttf FontAwesome6_Regular.ttf FontAwesome6_Solid.ttf Octicons.ttf ```
3. Run `pod install` in the ios directory ```sh cd ios && pod install ``` 4. Rebuild your app ### macOS This needs more work, see details in [#1624](https://github.com/oblador/react-native-vector-icons/issues/1624) ### Windows 1. Copy the needed fonts from `node_modules/react-native-vector-icons/Fonts/*` to `windows//Assets/*` 2. Open your solution on Visual Studio, right click on Assets, add Add Assets, then select your fonts, save and quit Visual Studio. 3. Rebuild your project ================================================ FILE: docs/SETUP-WEB.md ================================================ # Setup guide for Web Apps > This guide can probably be improved, please feel free to contribute. ### React-native-web Setup To port a react-native mobile app to web using `react-native-web` you just need to ensure the fonts are known on the web-app side. You will need add the font-family for each font you use to your css. You can debug missing font-families by looking in the Developer console in your web browser when debugging your web app. NOTE: if you're using webpack or similar you *may* need to configure webpack to handle loading of ttf fonts, using url-loader or file-loader. See [Web Setup](#web-setup) for more details. In your `App.css` or similar add the font-family specifications: ```css @font-face { src: url(path/to/fonts/Ionicons.ttf); font-family: "Ionicons"; } @font-face { src: url(path/to/fonts/FontAwesome.ttf); font-family: "FontAwesome"; } @font-face { src: url(path/to/fonts/FontAwesome5_Brands.ttf); font-family: "FontAwesome5_Brands"; font-weight: 400; /* Regular weight */ font-style: normal; } @font-face { src: url(path/to/fonts/FontAwesome5_Regular.ttf); font-family: "FontAwesome5_Regular"; font-weight: 400; /* Regular weight */ font-style: normal; } @font-face { src: url(path/to/fonts/FontAwesome5_Solid.ttf); font-family: "FontAwesome5_Solid"; font-weight: 900; /* Bold weight for solid */ font-style: normal; } @font-face { src: url(path/to/fonts/MaterialIcons.ttf); font-family: "MaterialIcons"; } @font-face { src: url(path/to/fonts/Feather.ttf); font-family: "Feather"; } @font-face { src: url(path/to/fonts/MaterialCommunityIcons.ttf); font-family: "MaterialCommunityIcons"; } /* TODO: Add other icons fonts here */ ``` ### Web Setup To integrate the library with your web project using [webpack](https://webpack.js.org/), follow these steps: 1. In your webpack configuration file, add a section to handle TTF files using `url-loader` or `file-loader`: ```js { test: /\.ttf$/, loader: "url-loader", // or directly file-loader include: path.resolve(__dirname, "node_modules/react-native-vector-icons"), } ``` 2. In your JavaScript entry point, consume the font files and inject the necessary style tag: ```js import Icon from '@react-native-vector-icons/fontAwesome'; // Generate the required CSS import iconFont from '@react-native-vector-icons/fontawesome/fonts/FontAwesome.ttf'; const iconFontStyles = `@font-face { src: url(${iconFont}); font-family: FontAwesome; }`; // Create a stylesheet const style = document.createElement('style'); style.type = 'text/css'; // Append the iconFontStyles to the stylesheet if (style.styleSheet) { style.styleSheet.cssText = iconFontStyles; } else { style.appendChild(document.createTextNode(iconFontStyles)); } // Inject the stylesheet into the document head document.head.appendChild(style); ``` By following these steps, you will seamlessly integrate the vector icons library into your web project using [webpack](https://webpack.js.org/), enabling you to effortlessly use the icons within your web application. ================================================ FILE: lefthook.yml ================================================ pre-commit: parallel: true commands: eslint: run: pnpm run lint:eslint biome: run: pnpm run lint:biome # NOTE: Disabled because it is too slow # types: # glob: "*.{json,js,ts,tsx}" # run: npm run lint:types commit-msg: parallel: true commands: commitlint: run: npx commitlint --edit ================================================ FILE: nx.json ================================================ { "$schema": "./node_modules/nx/schemas/nx-schema.json", "targetDefaults": { "clean": { "dependsOn": [ "^clean" ] }, "prepare": { "dependsOn": [ "^prepare" ] }, "prepack": { "dependsOn": [ "^prepack" ] }, "postpack": { "dependsOn": [ "^postpack" ] } }, "defaultBase": "master", "release": { "projects": [ "*", "!@react-native-vector-icons/icon-explorer", "!@react-native-vector-icons/fontcustom-docker", "!@react-native-vector-icons/directory" ], "projectsRelationship": "independent", "changelog": { "projectChangelogs": { "createRelease": "github" }, "workspaceChangelog": { "createRelease": "github" } }, "version": { "conventionalCommits": true, "NOTE": "We want auto but it's overzealous for our purposes, see https://github.com/nrwl/nx/discussions/29135", "updateDependents": "never" } } } ================================================ FILE: package.json ================================================ { "private": true, "version": "0.0.1", "scripts": { "generate": "scripts/generate-fonts.sh", "clean": "nx run-many -t clean", "prepare": "nx run-many -t prepare", "test": "nx run-many -t test", "lint:eslint": "eslint .", "lint:biome": "biome check .", "lint:knip": "knip", "lint:types": "bash -c 'for i in packages/*; do if [ -f $i/tsconfig.json ]; then tsc --noEmit -p $i/tsconfig.json; fi; done'", "lint": "pnpm run '/^lint:.*/'", "release": "nx release" }, "devDependencies": { "@biomejs/biome": "^2.3.0", "@commitlint/config-conventional": "^20.0.0", "@evilmartians/lefthook": "^2.0.1", "@nx/js": "^22.5.2", "@types/eslint": "^8.56.12", "@types/node": "^20.19.23", "@typescript-eslint/eslint-plugin": "^8.46.2", "@typescript-eslint/parser": "^8.46.2", "commitlint": "^20.1.0", "eslint": "^8.57.1", "eslint-config-biome": "^1.9.4", "eslint-plugin-import": "^2.32.0", "eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-react": "^7.37.5", "eslint-plugin-react-hooks": "^5.1.0", "generator-react-native-vector-icons": "workspace:*", "knip": "^5.66.2", "nx": "^22.5.2", "typescript": "^5.9.3", "yo": "^5.1.0" }, "engines": { "node": ">= 18.0.0" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "repository": { "url": "https://github.com/oblador/react-native-vector-icons", "type": "git" }, "packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6" } ================================================ FILE: packages/ant-design/.fontcustom-manifest.json ================================================ { "checksum": { "previous": "3a17bffd6a624425af737b4664e295508c3c5b8c76ebe37f1f393aa65105d542", "current": "3a17bffd6a624425af737b4664e295508c3c5b8c76ebe37f1f393aa65105d542" }, "fonts": [ "AntDesign/AntDesign.ttf", "AntDesign/AntDesign.svg", "AntDesign/AntDesign.woff", "AntDesign/AntDesign.eot", "AntDesign/AntDesign.woff2" ], "glyphs": { "account-book": { "codepoint": 62454, "source": "fixedSvg/account-book.svg" }, "aim": { "codepoint": 62455, "source": "fixedSvg/aim.svg" }, "alert": { "codepoint": 62456, "source": "fixedSvg/alert.svg" }, "alibaba": { "codepoint": 62457, "source": "fixedSvg/alibaba.svg" }, "align-center": { "codepoint": 62458, "source": "fixedSvg/align-center.svg" }, "align-left": { "codepoint": 61701, "source": "fixedSvg/align-left.svg" }, "align-right": { "codepoint": 61702, "source": "fixedSvg/align-right.svg" }, "alipay": { "codepoint": 62459, "source": "fixedSvg/alipay.svg" }, "alipay-circle": { "codepoint": 62460, "source": "fixedSvg/alipay-circle.svg" }, "aliwangwang": { "codepoint": 62461, "source": "fixedSvg/aliwangwang.svg" }, "aliyun": { "codepoint": 62462, "source": "fixedSvg/aliyun.svg" }, "amazon": { "codepoint": 62463, "source": "fixedSvg/amazon.svg" }, "android": { "codepoint": 62464, "source": "fixedSvg/android.svg" }, "ant-cloud": { "codepoint": 62465, "source": "fixedSvg/ant-cloud.svg" }, "ant-design": { "codepoint": 62466, "source": "fixedSvg/ant-design.svg" }, "apartment": { "codepoint": 62467, "source": "fixedSvg/apartment.svg" }, "api": { "codepoint": 62468, "source": "fixedSvg/api.svg" }, "apple": { "codepoint": 62469, "source": "fixedSvg/apple.svg" }, "appstore": { "codepoint": 62470, "source": "fixedSvg/appstore.svg" }, "appstore-add": { "codepoint": 62471, "source": "fixedSvg/appstore-add.svg" }, "area-chart": { "codepoint": 62472, "source": "fixedSvg/area-chart.svg" }, "arrow-down": { "codepoint": 61717, "source": "fixedSvg/arrow-down.svg" }, "arrow-left": { "codepoint": 61718, "source": "fixedSvg/arrow-left.svg" }, "arrow-right": { "codepoint": 61719, "source": "fixedSvg/arrow-right.svg" }, "arrow-up": { "codepoint": 61720, "source": "fixedSvg/arrow-up.svg" }, "arrows-alt": { "codepoint": 62473, "source": "fixedSvg/arrows-alt.svg" }, "audio": { "codepoint": 62474, "source": "fixedSvg/audio.svg" }, "audio-muted": { "codepoint": 62475, "source": "fixedSvg/audio-muted.svg" }, "audit": { "codepoint": 62476, "source": "fixedSvg/audit.svg" }, "backward": { "codepoint": 62477, "source": "fixedSvg/backward.svg" }, "baidu": { "codepoint": 62801, "source": "fixedSvg/baidu.svg" }, "bank": { "codepoint": 62478, "source": "fixedSvg/bank.svg" }, "bar-chart": { "codepoint": 62479, "source": "fixedSvg/bar-chart.svg" }, "barcode": { "codepoint": 62480, "source": "fixedSvg/barcode.svg" }, "bars": { "codepoint": 62481, "source": "fixedSvg/bars.svg" }, "behance": { "codepoint": 61730, "source": "fixedSvg/behance.svg" }, "behance-square": { "codepoint": 62482, "source": "fixedSvg/behance-square.svg" }, "bell": { "codepoint": 61732, "source": "fixedSvg/bell.svg" }, "bg-colors": { "codepoint": 62483, "source": "fixedSvg/bg-colors.svg" }, "bilibili": { "codepoint": 62802, "source": "fixedSvg/bilibili.svg" }, "block": { "codepoint": 61734, "source": "fixedSvg/block.svg" }, "bold": { "codepoint": 62484, "source": "fixedSvg/bold.svg" }, "book": { "codepoint": 61736, "source": "fixedSvg/book.svg" }, "border": { "codepoint": 62485, "source": "fixedSvg/border.svg" }, "border-bottom": { "codepoint": 62486, "source": "fixedSvg/border-bottom.svg" }, "border-horizontal": { "codepoint": 62487, "source": "fixedSvg/border-horizontal.svg" }, "border-inner": { "codepoint": 62488, "source": "fixedSvg/border-inner.svg" }, "border-left": { "codepoint": 62489, "source": "fixedSvg/border-left.svg" }, "border-outer": { "codepoint": 62490, "source": "fixedSvg/border-outer.svg" }, "border-right": { "codepoint": 62491, "source": "fixedSvg/border-right.svg" }, "border-top": { "codepoint": 62492, "source": "fixedSvg/border-top.svg" }, "border-verticle": { "codepoint": 62493, "source": "fixedSvg/border-verticle.svg" }, "borderless-table": { "codepoint": 62494, "source": "fixedSvg/borderless-table.svg" }, "box-plot": { "codepoint": 62495, "source": "fixedSvg/box-plot.svg" }, "branches": { "codepoint": 62496, "source": "fixedSvg/branches.svg" }, "bug": { "codepoint": 61749, "source": "fixedSvg/bug.svg" }, "build": { "codepoint": 62497, "source": "fixedSvg/build.svg" }, "bulb": { "codepoint": 62498, "source": "fixedSvg/bulb.svg" }, "calculator": { "codepoint": 61752, "source": "fixedSvg/calculator.svg" }, "calendar": { "codepoint": 61753, "source": "fixedSvg/calendar.svg" }, "camera": { "codepoint": 61754, "source": "fixedSvg/camera.svg" }, "car": { "codepoint": 62499, "source": "fixedSvg/car.svg" }, "caret-down": { "codepoint": 62500, "source": "fixedSvg/caret-down.svg" }, "caret-left": { "codepoint": 62501, "source": "fixedSvg/caret-left.svg" }, "caret-right": { "codepoint": 62502, "source": "fixedSvg/caret-right.svg" }, "caret-up": { "codepoint": 62503, "source": "fixedSvg/caret-up.svg" }, "carry-out": { "codepoint": 62504, "source": "fixedSvg/carry-out.svg" }, "check": { "codepoint": 61761, "source": "fixedSvg/check.svg" }, "check-circle": { "codepoint": 62505, "source": "fixedSvg/check-circle.svg" }, "check-square": { "codepoint": 62506, "source": "fixedSvg/check-square.svg" }, "chrome": { "codepoint": 62507, "source": "fixedSvg/chrome.svg" }, "ci": { "codepoint": 62508, "source": "fixedSvg/ci.svg" }, "ci-circle": { "codepoint": 62509, "source": "fixedSvg/ci-circle.svg" }, "clear": { "codepoint": 62510, "source": "fixedSvg/clear.svg" }, "clock-circle": { "codepoint": 62511, "source": "fixedSvg/clock-circle.svg" }, "close": { "codepoint": 62512, "source": "fixedSvg/close.svg" }, "close-circle": { "codepoint": 62513, "source": "fixedSvg/close-circle.svg" }, "close-square": { "codepoint": 62514, "source": "fixedSvg/close-square.svg" }, "cloud": { "codepoint": 61772, "source": "fixedSvg/cloud.svg" }, "cloud-download": { "codepoint": 62515, "source": "fixedSvg/cloud-download.svg" }, "cloud-server": { "codepoint": 62516, "source": "fixedSvg/cloud-server.svg" }, "cloud-sync": { "codepoint": 62517, "source": "fixedSvg/cloud-sync.svg" }, "cloud-upload": { "codepoint": 62518, "source": "fixedSvg/cloud-upload.svg" }, "cluster": { "codepoint": 62519, "source": "fixedSvg/cluster.svg" }, "code": { "codepoint": 61778, "source": "fixedSvg/code.svg" }, "code-sandbox": { "codepoint": 62520, "source": "fixedSvg/code-sandbox.svg" }, "codepen": { "codepoint": 62521, "source": "fixedSvg/codepen.svg" }, "codepen-circle": { "codepoint": 62522, "source": "fixedSvg/codepen-circle.svg" }, "coffee": { "codepoint": 62523, "source": "fixedSvg/coffee.svg" }, "column-height": { "codepoint": 62524, "source": "fixedSvg/column-height.svg" }, "column-width": { "codepoint": 62525, "source": "fixedSvg/column-width.svg" }, "comment": { "codepoint": 62526, "source": "fixedSvg/comment.svg" }, "compass": { "codepoint": 61786, "source": "fixedSvg/compass.svg" }, "compress": { "codepoint": 62527, "source": "fixedSvg/compress.svg" }, "console-sql": { "codepoint": 62528, "source": "fixedSvg/console-sql.svg" }, "contacts": { "codepoint": 62529, "source": "fixedSvg/contacts.svg" }, "container": { "codepoint": 62530, "source": "fixedSvg/container.svg" }, "control": { "codepoint": 62531, "source": "fixedSvg/control.svg" }, "copy": { "codepoint": 61792, "source": "fixedSvg/copy.svg" }, "copyright": { "codepoint": 62532, "source": "fixedSvg/copyright.svg" }, "copyright-circle": { "codepoint": 62533, "source": "fixedSvg/copyright-circle.svg" }, "credit-card": { "codepoint": 61795, "source": "fixedSvg/credit-card.svg" }, "crown": { "codepoint": 62534, "source": "fixedSvg/crown.svg" }, "customer-service": { "codepoint": 62535, "source": "fixedSvg/customer-service.svg" }, "dash": { "codepoint": 62536, "source": "fixedSvg/dash.svg" }, "dashboard": { "codepoint": 62537, "source": "fixedSvg/dashboard.svg" }, "database": { "codepoint": 61800, "source": "fixedSvg/database.svg" }, "delete": { "codepoint": 62538, "source": "fixedSvg/delete.svg" }, "delete-column": { "codepoint": 62539, "source": "fixedSvg/delete-column.svg" }, "delete-row": { "codepoint": 62540, "source": "fixedSvg/delete-row.svg" }, "delivered-procedure": { "codepoint": 62541, "source": "fixedSvg/delivered-procedure.svg" }, "deployment-unit": { "codepoint": 62542, "source": "fixedSvg/deployment-unit.svg" }, "desktop": { "codepoint": 62543, "source": "fixedSvg/desktop.svg" }, "diff": { "codepoint": 62544, "source": "fixedSvg/diff.svg" }, "dingding": { "codepoint": 62545, "source": "fixedSvg/dingding.svg" }, "dingtalk": { "codepoint": 62546, "source": "fixedSvg/dingtalk.svg" }, "disconnect": { "codepoint": 62547, "source": "fixedSvg/disconnect.svg" }, "discord": { "codepoint": 62803, "source": "fixedSvg/discord.svg" }, "dislike": { "codepoint": 62548, "source": "fixedSvg/dislike.svg" }, "docker": { "codepoint": 62804, "source": "fixedSvg/docker.svg" }, "dollar": { "codepoint": 62549, "source": "fixedSvg/dollar.svg" }, "dollar-circle": { "codepoint": 62550, "source": "fixedSvg/dollar-circle.svg" }, "dot-chart": { "codepoint": 62551, "source": "fixedSvg/dot-chart.svg" }, "dot-net": { "codepoint": 62805, "source": "fixedSvg/dot-net.svg" }, "double-left": { "codepoint": 62552, "source": "fixedSvg/double-left.svg" }, "double-right": { "codepoint": 62553, "source": "fixedSvg/double-right.svg" }, "down": { "codepoint": 62554, "source": "fixedSvg/down.svg" }, "down-circle": { "codepoint": 62555, "source": "fixedSvg/down-circle.svg" }, "down-square": { "codepoint": 62556, "source": "fixedSvg/down-square.svg" }, "download": { "codepoint": 61820, "source": "fixedSvg/download.svg" }, "drag": { "codepoint": 62557, "source": "fixedSvg/drag.svg" }, "dribbble": { "codepoint": 61822, "source": "fixedSvg/dribbble.svg" }, "dribbble-square": { "codepoint": 62558, "source": "fixedSvg/dribbble-square.svg" }, "dropbox": { "codepoint": 61824, "source": "fixedSvg/dropbox.svg" }, "edit": { "codepoint": 61825, "source": "fixedSvg/edit.svg" }, "ellipsis": { "codepoint": 62559, "source": "fixedSvg/ellipsis.svg" }, "enter": { "codepoint": 62560, "source": "fixedSvg/enter.svg" }, "environment": { "codepoint": 62561, "source": "fixedSvg/environment.svg" }, "euro": { "codepoint": 62562, "source": "fixedSvg/euro.svg" }, "euro-circle": { "codepoint": 62563, "source": "fixedSvg/euro-circle.svg" }, "exception": { "codepoint": 62564, "source": "fixedSvg/exception.svg" }, "exclamation": { "codepoint": 62565, "source": "fixedSvg/exclamation.svg" }, "exclamation-circle": { "codepoint": 62566, "source": "fixedSvg/exclamation-circle.svg" }, "expand": { "codepoint": 62567, "source": "fixedSvg/expand.svg" }, "expand-alt": { "codepoint": 62568, "source": "fixedSvg/expand-alt.svg" }, "experiment": { "codepoint": 62569, "source": "fixedSvg/experiment.svg" }, "export": { "codepoint": 61837, "source": "fixedSvg/export.svg" }, "eye": { "codepoint": 61838, "source": "fixedSvg/eye.svg" }, "eye-invisible": { "codepoint": 62570, "source": "fixedSvg/eye-invisible.svg" }, "facebook": { "codepoint": 61840, "source": "fixedSvg/facebook.svg" }, "fall": { "codepoint": 62571, "source": "fixedSvg/fall.svg" }, "fast-backward": { "codepoint": 62572, "source": "fixedSvg/fast-backward.svg" }, "fast-forward": { "codepoint": 62573, "source": "fixedSvg/fast-forward.svg" }, "field-binary": { "codepoint": 62574, "source": "fixedSvg/field-binary.svg" }, "field-number": { "codepoint": 62575, "source": "fixedSvg/field-number.svg" }, "field-string": { "codepoint": 62576, "source": "fixedSvg/field-string.svg" }, "field-time": { "codepoint": 62577, "source": "fixedSvg/field-time.svg" }, "file": { "codepoint": 62578, "source": "fixedSvg/file.svg" }, "file-add": { "codepoint": 62579, "source": "fixedSvg/file-add.svg" }, "file-done": { "codepoint": 62580, "source": "fixedSvg/file-done.svg" }, "file-excel": { "codepoint": 62581, "source": "fixedSvg/file-excel.svg" }, "file-exclamation": { "codepoint": 62582, "source": "fixedSvg/file-exclamation.svg" }, "file-gif": { "codepoint": 62583, "source": "fixedSvg/file-gif.svg" }, "file-image": { "codepoint": 62584, "source": "fixedSvg/file-image.svg" }, "file-jpg": { "codepoint": 62585, "source": "fixedSvg/file-jpg.svg" }, "file-markdown": { "codepoint": 62586, "source": "fixedSvg/file-markdown.svg" }, "file-pdf": { "codepoint": 62587, "source": "fixedSvg/file-pdf.svg" }, "file-ppt": { "codepoint": 62588, "source": "fixedSvg/file-ppt.svg" }, "file-protect": { "codepoint": 62589, "source": "fixedSvg/file-protect.svg" }, "file-search": { "codepoint": 62590, "source": "fixedSvg/file-search.svg" }, "file-sync": { "codepoint": 62591, "source": "fixedSvg/file-sync.svg" }, "file-text": { "codepoint": 62592, "source": "fixedSvg/file-text.svg" }, "file-unknown": { "codepoint": 62593, "source": "fixedSvg/file-unknown.svg" }, "file-word": { "codepoint": 62594, "source": "fixedSvg/file-word.svg" }, "file-zip": { "codepoint": 62595, "source": "fixedSvg/file-zip.svg" }, "filter": { "codepoint": 62596, "source": "fixedSvg/filter.svg" }, "fire": { "codepoint": 62597, "source": "fixedSvg/fire.svg" }, "flag": { "codepoint": 61868, "source": "fixedSvg/flag.svg" }, "folder": { "codepoint": 61869, "source": "fixedSvg/folder.svg" }, "folder-add": { "codepoint": 62598, "source": "fixedSvg/folder-add.svg" }, "folder-open": { "codepoint": 62599, "source": "fixedSvg/folder-open.svg" }, "folder-view": { "codepoint": 62600, "source": "fixedSvg/folder-view.svg" }, "font-colors": { "codepoint": 62601, "source": "fixedSvg/font-colors.svg" }, "font-size": { "codepoint": 62602, "source": "fixedSvg/font-size.svg" }, "fork": { "codepoint": 62603, "source": "fixedSvg/fork.svg" }, "form": { "codepoint": 62604, "source": "fixedSvg/form.svg" }, "format-painter": { "codepoint": 62605, "source": "fixedSvg/format-painter.svg" }, "forward": { "codepoint": 61878, "source": "fixedSvg/forward.svg" }, "frown": { "codepoint": 62606, "source": "fixedSvg/frown.svg" }, "fullscreen": { "codepoint": 62607, "source": "fixedSvg/fullscreen.svg" }, "fullscreen-exit": { "codepoint": 62608, "source": "fixedSvg/fullscreen-exit.svg" }, "function": { "codepoint": 62609, "source": "fixedSvg/function.svg" }, "fund": { "codepoint": 62610, "source": "fixedSvg/fund.svg" }, "fund-projection-screen": { "codepoint": 62611, "source": "fixedSvg/fund-projection-screen.svg" }, "fund-view": { "codepoint": 62612, "source": "fixedSvg/fund-view.svg" }, "funnel-plot": { "codepoint": 62613, "source": "fixedSvg/funnel-plot.svg" }, "gateway": { "codepoint": 62614, "source": "fixedSvg/gateway.svg" }, "gif": { "codepoint": 62615, "source": "fixedSvg/gif.svg" }, "gift": { "codepoint": 62616, "source": "fixedSvg/gift.svg" }, "github": { "codepoint": 61890, "source": "fixedSvg/github.svg" }, "gitlab": { "codepoint": 62617, "source": "fixedSvg/gitlab.svg" }, "global": { "codepoint": 62618, "source": "fixedSvg/global.svg" }, "gold": { "codepoint": 62619, "source": "fixedSvg/gold.svg" }, "google": { "codepoint": 62620, "source": "fixedSvg/google.svg" }, "google-plus": { "codepoint": 62621, "source": "fixedSvg/google-plus.svg" }, "group": { "codepoint": 62622, "source": "fixedSvg/group.svg" }, "harmony-o-s": { "codepoint": 62806, "source": "fixedSvg/harmony-o-s.svg" }, "harmony-os": { "codepoint": 62807, "source": "fixedSvg/harmony-os.svg" }, "hdd": { "codepoint": 62623, "source": "fixedSvg/hdd.svg" }, "heart": { "codepoint": 61898, "source": "fixedSvg/heart.svg" }, "heat-map": { "codepoint": 62624, "source": "fixedSvg/heat-map.svg" }, "highlight": { "codepoint": 62625, "source": "fixedSvg/highlight.svg" }, "history": { "codepoint": 62626, "source": "fixedSvg/history.svg" }, "holder": { "codepoint": 62627, "source": "fixedSvg/holder.svg" }, "home": { "codepoint": 61903, "source": "fixedSvg/home.svg" }, "hourglass": { "codepoint": 62628, "source": "fixedSvg/hourglass.svg" }, "html5": { "codepoint": 62629, "source": "fixedSvg/html5.svg" }, "idcard": { "codepoint": 62630, "source": "fixedSvg/idcard.svg" }, "ie": { "codepoint": 62631, "source": "fixedSvg/ie.svg" }, "import": { "codepoint": 62632, "source": "fixedSvg/import.svg" }, "inbox": { "codepoint": 61909, "source": "fixedSvg/inbox.svg" }, "info": { "codepoint": 61910, "source": "fixedSvg/info.svg" }, "info-circle": { "codepoint": 62633, "source": "fixedSvg/info-circle.svg" }, "insert-row-above": { "codepoint": 62634, "source": "fixedSvg/insert-row-above.svg" }, "insert-row-below": { "codepoint": 62635, "source": "fixedSvg/insert-row-below.svg" }, "insert-row-left": { "codepoint": 62636, "source": "fixedSvg/insert-row-left.svg" }, "insert-row-right": { "codepoint": 62637, "source": "fixedSvg/insert-row-right.svg" }, "instagram": { "codepoint": 61916, "source": "fixedSvg/instagram.svg" }, "insurance": { "codepoint": 62638, "source": "fixedSvg/insurance.svg" }, "interaction": { "codepoint": 62639, "source": "fixedSvg/interaction.svg" }, "issues-close": { "codepoint": 62640, "source": "fixedSvg/issues-close.svg" }, "italic": { "codepoint": 62641, "source": "fixedSvg/italic.svg" }, "java": { "codepoint": 62808, "source": "fixedSvg/java.svg" }, "java-script": { "codepoint": 62809, "source": "fixedSvg/java-script.svg" }, "key": { "codepoint": 61921, "source": "fixedSvg/key.svg" }, "kubernetes": { "codepoint": 62810, "source": "fixedSvg/kubernetes.svg" }, "laptop": { "codepoint": 61922, "source": "fixedSvg/laptop.svg" }, "layout": { "codepoint": 62642, "source": "fixedSvg/layout.svg" }, "left": { "codepoint": 62643, "source": "fixedSvg/left.svg" }, "left-circle": { "codepoint": 62644, "source": "fixedSvg/left-circle.svg" }, "left-square": { "codepoint": 62645, "source": "fixedSvg/left-square.svg" }, "like": { "codepoint": 62646, "source": "fixedSvg/like.svg" }, "line": { "codepoint": 62647, "source": "fixedSvg/line.svg" }, "line-chart": { "codepoint": 62648, "source": "fixedSvg/line-chart.svg" }, "line-height": { "codepoint": 62649, "source": "fixedSvg/line-height.svg" }, "link": { "codepoint": 61931, "source": "fixedSvg/link.svg" }, "linkedin": { "codepoint": 61932, "source": "fixedSvg/linkedin.svg" }, "linux": { "codepoint": 62811, "source": "fixedSvg/linux.svg" }, "loading": { "codepoint": 62650, "source": "fixedSvg/loading.svg" }, "loading-3-quarters": { "codepoint": 62651, "source": "fixedSvg/loading-3-quarters.svg" }, "lock": { "codepoint": 61935, "source": "fixedSvg/lock.svg" }, "login": { "codepoint": 61936, "source": "fixedSvg/login.svg" }, "logout": { "codepoint": 62652, "source": "fixedSvg/logout.svg" }, "mac-command": { "codepoint": 62653, "source": "fixedSvg/mac-command.svg" }, "mail": { "codepoint": 61939, "source": "fixedSvg/mail.svg" }, "man": { "codepoint": 61940, "source": "fixedSvg/man.svg" }, "medicine-box": { "codepoint": 62654, "source": "fixedSvg/medicine-box.svg" }, "medium": { "codepoint": 61942, "source": "fixedSvg/medium.svg" }, "medium-workmark": { "codepoint": 62655, "source": "fixedSvg/medium-workmark.svg" }, "meh": { "codepoint": 62656, "source": "fixedSvg/meh.svg" }, "menu": { "codepoint": 61945, "source": "fixedSvg/menu.svg" }, "menu-fold": { "codepoint": 62657, "source": "fixedSvg/menu-fold.svg" }, "menu-unfold": { "codepoint": 62658, "source": "fixedSvg/menu-unfold.svg" }, "merge": { "codepoint": 62812, "source": "fixedSvg/merge.svg" }, "merge-cells": { "codepoint": 62659, "source": "fixedSvg/merge-cells.svg" }, "message": { "codepoint": 61949, "source": "fixedSvg/message.svg" }, "minus": { "codepoint": 61950, "source": "fixedSvg/minus.svg" }, "minus-circle": { "codepoint": 62660, "source": "fixedSvg/minus-circle.svg" }, "minus-square": { "codepoint": 62661, "source": "fixedSvg/minus-square.svg" }, "mobile": { "codepoint": 61953, "source": "fixedSvg/mobile.svg" }, "money-collect": { "codepoint": 62662, "source": "fixedSvg/money-collect.svg" }, "monitor": { "codepoint": 62663, "source": "fixedSvg/monitor.svg" }, "moon": { "codepoint": 62813, "source": "fixedSvg/moon.svg" }, "more": { "codepoint": 62664, "source": "fixedSvg/more.svg" }, "muted": { "codepoint": 62814, "source": "fixedSvg/muted.svg" }, "node-collapse": { "codepoint": 62665, "source": "fixedSvg/node-collapse.svg" }, "node-expand": { "codepoint": 62666, "source": "fixedSvg/node-expand.svg" }, "node-index": { "codepoint": 62667, "source": "fixedSvg/node-index.svg" }, "notification": { "codepoint": 61960, "source": "fixedSvg/notification.svg" }, "number": { "codepoint": 62668, "source": "fixedSvg/number.svg" }, "one-to-one": { "codepoint": 62669, "source": "fixedSvg/one-to-one.svg" }, "open-a-i": { "codepoint": 62815, "source": "fixedSvg/open-a-i.svg" }, "open-ai": { "codepoint": 62816, "source": "fixedSvg/open-ai.svg" }, "ordered-list": { "codepoint": 62670, "source": "fixedSvg/ordered-list.svg" }, "paper-clip": { "codepoint": 62671, "source": "fixedSvg/paper-clip.svg" }, "partition": { "codepoint": 62672, "source": "fixedSvg/partition.svg" }, "pause": { "codepoint": 62673, "source": "fixedSvg/pause.svg" }, "pause-circle": { "codepoint": 62674, "source": "fixedSvg/pause-circle.svg" }, "pay-circle": { "codepoint": 62675, "source": "fixedSvg/pay-circle.svg" }, "percentage": { "codepoint": 62676, "source": "fixedSvg/percentage.svg" }, "phone": { "codepoint": 61970, "source": "fixedSvg/phone.svg" }, "pic-center": { "codepoint": 62677, "source": "fixedSvg/pic-center.svg" }, "pic-left": { "codepoint": 62678, "source": "fixedSvg/pic-left.svg" }, "pic-right": { "codepoint": 62679, "source": "fixedSvg/pic-right.svg" }, "picture": { "codepoint": 62680, "source": "fixedSvg/picture.svg" }, "pie-chart": { "codepoint": 61975, "source": "fixedSvg/pie-chart.svg" }, "pinterest": { "codepoint": 62817, "source": "fixedSvg/pinterest.svg" }, "play-circle": { "codepoint": 62681, "source": "fixedSvg/play-circle.svg" }, "play-square": { "codepoint": 62682, "source": "fixedSvg/play-square.svg" }, "plus": { "codepoint": 61978, "source": "fixedSvg/plus.svg" }, "plus-circle": { "codepoint": 62683, "source": "fixedSvg/plus-circle.svg" }, "plus-square": { "codepoint": 62684, "source": "fixedSvg/plus-square.svg" }, "pound": { "codepoint": 62685, "source": "fixedSvg/pound.svg" }, "pound-circle": { "codepoint": 62686, "source": "fixedSvg/pound-circle.svg" }, "poweroff": { "codepoint": 62687, "source": "fixedSvg/poweroff.svg" }, "printer": { "codepoint": 62688, "source": "fixedSvg/printer.svg" }, "product": { "codepoint": 62818, "source": "fixedSvg/product.svg" }, "profile": { "codepoint": 62689, "source": "fixedSvg/profile.svg" }, "project": { "codepoint": 62690, "source": "fixedSvg/project.svg" }, "property-safety": { "codepoint": 62691, "source": "fixedSvg/property-safety.svg" }, "pull-request": { "codepoint": 62692, "source": "fixedSvg/pull-request.svg" }, "pushpin": { "codepoint": 62693, "source": "fixedSvg/pushpin.svg" }, "python": { "codepoint": 62819, "source": "fixedSvg/python.svg" }, "qq": { "codepoint": 61990, "source": "fixedSvg/qq.svg" }, "qrcode": { "codepoint": 62694, "source": "fixedSvg/qrcode.svg" }, "question": { "codepoint": 62695, "source": "fixedSvg/question.svg" }, "question-circle": { "codepoint": 62696, "source": "fixedSvg/question-circle.svg" }, "radar-chart": { "codepoint": 62697, "source": "fixedSvg/radar-chart.svg" }, "radius-bottomleft": { "codepoint": 62698, "source": "fixedSvg/radius-bottomleft.svg" }, "radius-bottomright": { "codepoint": 62699, "source": "fixedSvg/radius-bottomright.svg" }, "radius-setting": { "codepoint": 62700, "source": "fixedSvg/radius-setting.svg" }, "radius-upleft": { "codepoint": 62701, "source": "fixedSvg/radius-upleft.svg" }, "radius-upright": { "codepoint": 62702, "source": "fixedSvg/radius-upright.svg" }, "read": { "codepoint": 62703, "source": "fixedSvg/read.svg" }, "reconciliation": { "codepoint": 62704, "source": "fixedSvg/reconciliation.svg" }, "red-envelope": { "codepoint": 62705, "source": "fixedSvg/red-envelope.svg" }, "reddit": { "codepoint": 62706, "source": "fixedSvg/reddit.svg" }, "redo": { "codepoint": 62707, "source": "fixedSvg/redo.svg" }, "reload": { "codepoint": 62708, "source": "fixedSvg/reload.svg" }, "rest": { "codepoint": 62709, "source": "fixedSvg/rest.svg" }, "retweet": { "codepoint": 62007, "source": "fixedSvg/retweet.svg" }, "right": { "codepoint": 62710, "source": "fixedSvg/right.svg" }, "right-circle": { "codepoint": 62711, "source": "fixedSvg/right-circle.svg" }, "right-square": { "codepoint": 62712, "source": "fixedSvg/right-square.svg" }, "rise": { "codepoint": 62713, "source": "fixedSvg/rise.svg" }, "robot": { "codepoint": 62714, "source": "fixedSvg/robot.svg" }, "rocket": { "codepoint": 62013, "source": "fixedSvg/rocket.svg" }, "rollback": { "codepoint": 62715, "source": "fixedSvg/rollback.svg" }, "rotate-left": { "codepoint": 62716, "source": "fixedSvg/rotate-left.svg" }, "rotate-right": { "codepoint": 62717, "source": "fixedSvg/rotate-right.svg" }, "ruby": { "codepoint": 62820, "source": "fixedSvg/ruby.svg" }, "safety": { "codepoint": 62718, "source": "fixedSvg/safety.svg" }, "safety-certificate": { "codepoint": 62719, "source": "fixedSvg/safety-certificate.svg" }, "save": { "codepoint": 62019, "source": "fixedSvg/save.svg" }, "scan": { "codepoint": 62720, "source": "fixedSvg/scan.svg" }, "schedule": { "codepoint": 62721, "source": "fixedSvg/schedule.svg" }, "scissor": { "codepoint": 62722, "source": "fixedSvg/scissor.svg" }, "search": { "codepoint": 62723, "source": "fixedSvg/search.svg" }, "security-scan": { "codepoint": 62724, "source": "fixedSvg/security-scan.svg" }, "select": { "codepoint": 62725, "source": "fixedSvg/select.svg" }, "send": { "codepoint": 62726, "source": "fixedSvg/send.svg" }, "setting": { "codepoint": 62727, "source": "fixedSvg/setting.svg" }, "shake": { "codepoint": 62728, "source": "fixedSvg/shake.svg" }, "share-alt": { "codepoint": 62729, "source": "fixedSvg/share-alt.svg" }, "shop": { "codepoint": 62030, "source": "fixedSvg/shop.svg" }, "shopping": { "codepoint": 62730, "source": "fixedSvg/shopping.svg" }, "shopping-cart": { "codepoint": 62032, "source": "fixedSvg/shopping-cart.svg" }, "shrink": { "codepoint": 62731, "source": "fixedSvg/shrink.svg" }, "signature": { "codepoint": 62821, "source": "fixedSvg/signature.svg" }, "sisternode": { "codepoint": 62732, "source": "fixedSvg/sisternode.svg" }, "sketch": { "codepoint": 62733, "source": "fixedSvg/sketch.svg" }, "skin": { "codepoint": 62734, "source": "fixedSvg/skin.svg" }, "skype": { "codepoint": 62037, "source": "fixedSvg/skype.svg" }, "slack": { "codepoint": 62735, "source": "fixedSvg/slack.svg" }, "slack-square": { "codepoint": 62736, "source": "fixedSvg/slack-square.svg" }, "sliders": { "codepoint": 62737, "source": "fixedSvg/sliders.svg" }, "small-dash": { "codepoint": 62738, "source": "fixedSvg/small-dash.svg" }, "smile": { "codepoint": 62739, "source": "fixedSvg/smile.svg" }, "snippets": { "codepoint": 62740, "source": "fixedSvg/snippets.svg" }, "solution": { "codepoint": 62741, "source": "fixedSvg/solution.svg" }, "sort-ascending": { "codepoint": 62742, "source": "fixedSvg/sort-ascending.svg" }, "sort-descending": { "codepoint": 62743, "source": "fixedSvg/sort-descending.svg" }, "sound": { "codepoint": 62047, "source": "fixedSvg/sound.svg" }, "split-cells": { "codepoint": 62744, "source": "fixedSvg/split-cells.svg" }, "spotify": { "codepoint": 62822, "source": "fixedSvg/spotify.svg" }, "star": { "codepoint": 62049, "source": "fixedSvg/star.svg" }, "step-backward": { "codepoint": 62745, "source": "fixedSvg/step-backward.svg" }, "step-forward": { "codepoint": 62746, "source": "fixedSvg/step-forward.svg" }, "stock": { "codepoint": 62747, "source": "fixedSvg/stock.svg" }, "stop": { "codepoint": 62748, "source": "fixedSvg/stop.svg" }, "strikethrough": { "codepoint": 62749, "source": "fixedSvg/strikethrough.svg" }, "subnode": { "codepoint": 62750, "source": "fixedSvg/subnode.svg" }, "sun": { "codepoint": 62823, "source": "fixedSvg/sun.svg" }, "swap": { "codepoint": 62056, "source": "fixedSvg/swap.svg" }, "swap-left": { "codepoint": 62751, "source": "fixedSvg/swap-left.svg" }, "swap-right": { "codepoint": 62752, "source": "fixedSvg/swap-right.svg" }, "switcher": { "codepoint": 62753, "source": "fixedSvg/switcher.svg" }, "sync": { "codepoint": 62754, "source": "fixedSvg/sync.svg" }, "table": { "codepoint": 62755, "source": "fixedSvg/table.svg" }, "tablet": { "codepoint": 62062, "source": "fixedSvg/tablet.svg" }, "tag": { "codepoint": 62063, "source": "fixedSvg/tag.svg" }, "tags": { "codepoint": 62756, "source": "fixedSvg/tags.svg" }, "taobao": { "codepoint": 62757, "source": "fixedSvg/taobao.svg" }, "taobao-circle": { "codepoint": 62758, "source": "fixedSvg/taobao-circle.svg" }, "team": { "codepoint": 62759, "source": "fixedSvg/team.svg" }, "thunderbolt": { "codepoint": 62760, "source": "fixedSvg/thunderbolt.svg" }, "tik-tok": { "codepoint": 62824, "source": "fixedSvg/tik-tok.svg" }, "to-top": { "codepoint": 62761, "source": "fixedSvg/to-top.svg" }, "tool": { "codepoint": 62762, "source": "fixedSvg/tool.svg" }, "trademark": { "codepoint": 62763, "source": "fixedSvg/trademark.svg" }, "trademark-circle": { "codepoint": 62764, "source": "fixedSvg/trademark-circle.svg" }, "transaction": { "codepoint": 62765, "source": "fixedSvg/transaction.svg" }, "translation": { "codepoint": 62766, "source": "fixedSvg/translation.svg" }, "trophy": { "codepoint": 62075, "source": "fixedSvg/trophy.svg" }, "truck": { "codepoint": 62825, "source": "fixedSvg/truck.svg" }, "twitch": { "codepoint": 62826, "source": "fixedSvg/twitch.svg" }, "twitter": { "codepoint": 62076, "source": "fixedSvg/twitter.svg" }, "underline": { "codepoint": 62767, "source": "fixedSvg/underline.svg" }, "undo": { "codepoint": 62768, "source": "fixedSvg/undo.svg" }, "ungroup": { "codepoint": 62769, "source": "fixedSvg/ungroup.svg" }, "unlock": { "codepoint": 62770, "source": "fixedSvg/unlock.svg" }, "unordered-list": { "codepoint": 62771, "source": "fixedSvg/unordered-list.svg" }, "up": { "codepoint": 62772, "source": "fixedSvg/up.svg" }, "up-circle": { "codepoint": 62773, "source": "fixedSvg/up-circle.svg" }, "up-square": { "codepoint": 62774, "source": "fixedSvg/up-square.svg" }, "upload": { "codepoint": 62085, "source": "fixedSvg/upload.svg" }, "usb": { "codepoint": 62775, "source": "fixedSvg/usb.svg" }, "user": { "codepoint": 62087, "source": "fixedSvg/user.svg" }, "user-add": { "codepoint": 62776, "source": "fixedSvg/user-add.svg" }, "user-delete": { "codepoint": 62777, "source": "fixedSvg/user-delete.svg" }, "user-switch": { "codepoint": 62778, "source": "fixedSvg/user-switch.svg" }, "usergroup-add": { "codepoint": 62779, "source": "fixedSvg/usergroup-add.svg" }, "usergroup-delete": { "codepoint": 62780, "source": "fixedSvg/usergroup-delete.svg" }, "verified": { "codepoint": 62781, "source": "fixedSvg/verified.svg" }, "vertical-align-bottom": { "codepoint": 62782, "source": "fixedSvg/vertical-align-bottom.svg" }, "vertical-align-middle": { "codepoint": 62783, "source": "fixedSvg/vertical-align-middle.svg" }, "vertical-align-top": { "codepoint": 62784, "source": "fixedSvg/vertical-align-top.svg" }, "vertical-left": { "codepoint": 62785, "source": "fixedSvg/vertical-left.svg" }, "vertical-right": { "codepoint": 62786, "source": "fixedSvg/vertical-right.svg" }, "video-camera": { "codepoint": 62099, "source": "fixedSvg/video-camera.svg" }, "video-camera-add": { "codepoint": 62787, "source": "fixedSvg/video-camera-add.svg" }, "wallet": { "codepoint": 62101, "source": "fixedSvg/wallet.svg" }, "warning": { "codepoint": 62102, "source": "fixedSvg/warning.svg" }, "wechat": { "codepoint": 62788, "source": "fixedSvg/wechat.svg" }, "wechat-work": { "codepoint": 62827, "source": "fixedSvg/wechat-work.svg" }, "weibo": { "codepoint": 62789, "source": "fixedSvg/weibo.svg" }, "weibo-circle": { "codepoint": 62790, "source": "fixedSvg/weibo-circle.svg" }, "weibo-square": { "codepoint": 62791, "source": "fixedSvg/weibo-square.svg" }, "whats-app": { "codepoint": 62792, "source": "fixedSvg/whats-app.svg" }, "wifi": { "codepoint": 62793, "source": "fixedSvg/wifi.svg" }, "windows": { "codepoint": 62794, "source": "fixedSvg/windows.svg" }, "woman": { "codepoint": 62795, "source": "fixedSvg/woman.svg" }, "x": { "codepoint": 62828, "source": "fixedSvg/x.svg" }, "yahoo": { "codepoint": 62796, "source": "fixedSvg/yahoo.svg" }, "youtube": { "codepoint": 62112, "source": "fixedSvg/youtube.svg" }, "yuque": { "codepoint": 62797, "source": "fixedSvg/yuque.svg" }, "zhihu": { "codepoint": 62798, "source": "fixedSvg/zhihu.svg" }, "zoom-in": { "codepoint": 62799, "source": "fixedSvg/zoom-in.svg" }, "zoom-out": { "codepoint": 62800, "source": "fixedSvg/zoom-out.svg" } }, "options": { "autowidth": false, "config": false, "copyright": "", "css3": false, "css_selector": ".icon-{{glyph}}", "debug": false, "font_ascent": 448, "font_descent": 64, "font_design_size": 16, "font_em": 512, "font_name": "AntDesign", "force": true, "input": { "templates": "fixedSvg", "vectors": "fixedSvg" }, "no_hash": true, "output": { "css": "AntDesign", "fonts": "AntDesign", "preview": "AntDesign" }, "preprocessor_path": null, "quiet": false, "templates": [ "css" ] }, "templates": [ "AntDesign/AntDesign.css" ] } ================================================ FILE: packages/ant-design/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "ant-design", "upstreamFont": "@ant-design/icons-svg", "buildSteps": { "fixSVGPaths": { "location": "../../node_modules/@ant-design/icons-svg/inline-namespaced-svg/outlined" }, "fontCustom": { "location": "fixedSvg", "cleanup": true }, "glyphmap": { "mode": "css", "cleanup": true } }, "versions": [ { "rnvi": "12.0.0", "upstream": "4.4.2" } ] } } ================================================ FILE: packages/ant-design/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/ant-design/README.md ================================================ # React Native Vector Icons - Ant Design Ant Design font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/ant-design ``` ## Usage ```jsx import { AntDesign } from '@react-native-vector-icons/ant-design'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 4.4.2 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/ant-design/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.ant_design" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsAntDesign" codegenJavaPackageName = "com.reactnativevectoricons.ant_design" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-ant-design") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-ant-design/fonts" eachFile { println "(RNVI:ant-design) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/ant-design/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/ant-design/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/ant-design/android/src/main/java/VectorIconsAntDesignPackage.kt ================================================ package com.reactnativevectoricons.ant_design import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsAntDesignPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/ant-design/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/ant-design/glyphmaps/AntDesign.json ================================================ { "account-book": 62454, "aim": 62455, "alert": 62456, "alibaba": 62457, "align-center": 62458, "align-left": 61701, "align-right": 61702, "alipay": 62459, "alipay-circle": 62460, "aliwangwang": 62461, "aliyun": 62462, "amazon": 62463, "android": 62464, "ant-cloud": 62465, "ant-design": 62466, "apartment": 62467, "api": 62468, "apple": 62469, "appstore": 62470, "appstore-add": 62471, "area-chart": 62472, "arrow-down": 61717, "arrow-left": 61718, "arrow-right": 61719, "arrow-up": 61720, "arrows-alt": 62473, "audio": 62474, "audio-muted": 62475, "audit": 62476, "backward": 62477, "baidu": 62801, "bank": 62478, "bar-chart": 62479, "barcode": 62480, "bars": 62481, "behance": 61730, "behance-square": 62482, "bell": 61732, "bg-colors": 62483, "bilibili": 62802, "block": 61734, "bold": 62484, "book": 61736, "border": 62485, "border-bottom": 62486, "border-horizontal": 62487, "border-inner": 62488, "border-left": 62489, "border-outer": 62490, "border-right": 62491, "border-top": 62492, "border-verticle": 62493, "borderless-table": 62494, "box-plot": 62495, "branches": 62496, "bug": 61749, "build": 62497, "bulb": 62498, "calculator": 61752, "calendar": 61753, "camera": 61754, "car": 62499, "caret-down": 62500, "caret-left": 62501, "caret-right": 62502, "caret-up": 62503, "carry-out": 62504, "check": 61761, "check-circle": 62505, "check-square": 62506, "chrome": 62507, "ci": 62508, "ci-circle": 62509, "clear": 62510, "clock-circle": 62511, "close": 62512, "close-circle": 62513, "close-square": 62514, "cloud": 61772, "cloud-download": 62515, "cloud-server": 62516, "cloud-sync": 62517, "cloud-upload": 62518, "cluster": 62519, "code": 61778, "code-sandbox": 62520, "codepen": 62521, "codepen-circle": 62522, "coffee": 62523, "column-height": 62524, "column-width": 62525, "comment": 62526, "compass": 61786, "compress": 62527, "console-sql": 62528, "contacts": 62529, "container": 62530, "control": 62531, "copy": 61792, "copyright": 62532, "copyright-circle": 62533, "credit-card": 61795, "crown": 62534, "customer-service": 62535, "dash": 62536, "dashboard": 62537, "database": 61800, "delete": 62538, "delete-column": 62539, "delete-row": 62540, "delivered-procedure": 62541, "deployment-unit": 62542, "desktop": 62543, "diff": 62544, "dingding": 62545, "dingtalk": 62546, "disconnect": 62547, "discord": 62803, "dislike": 62548, "docker": 62804, "dollar": 62549, "dollar-circle": 62550, "dot-chart": 62551, "dot-net": 62805, "double-left": 62552, "double-right": 62553, "down": 62554, "down-circle": 62555, "down-square": 62556, "download": 61820, "drag": 62557, "dribbble": 61822, "dribbble-square": 62558, "dropbox": 61824, "edit": 61825, "ellipsis": 62559, "enter": 62560, "environment": 62561, "euro": 62562, "euro-circle": 62563, "exception": 62564, "exclamation": 62565, "exclamation-circle": 62566, "expand": 62567, "expand-alt": 62568, "experiment": 62569, "export": 61837, "eye": 61838, "eye-invisible": 62570, "facebook": 61840, "fall": 62571, "fast-backward": 62572, "fast-forward": 62573, "field-binary": 62574, "field-number": 62575, "field-string": 62576, "field-time": 62577, "file": 62578, "file-add": 62579, "file-done": 62580, "file-excel": 62581, "file-exclamation": 62582, "file-gif": 62583, "file-image": 62584, "file-jpg": 62585, "file-markdown": 62586, "file-pdf": 62587, "file-ppt": 62588, "file-protect": 62589, "file-search": 62590, "file-sync": 62591, "file-text": 62592, "file-unknown": 62593, "file-word": 62594, "file-zip": 62595, "filter": 62596, "fire": 62597, "flag": 61868, "folder": 61869, "folder-add": 62598, "folder-open": 62599, "folder-view": 62600, "font-colors": 62601, "font-size": 62602, "fork": 62603, "form": 62604, "format-painter": 62605, "forward": 61878, "frown": 62606, "fullscreen": 62607, "fullscreen-exit": 62608, "function": 62609, "fund": 62610, "fund-projection-screen": 62611, "fund-view": 62612, "funnel-plot": 62613, "gateway": 62614, "gif": 62615, "gift": 62616, "github": 61890, "gitlab": 62617, "global": 62618, "gold": 62619, "google": 62620, "google-plus": 62621, "group": 62622, "harmony-o-s": 62806, "harmony-os": 62807, "hdd": 62623, "heart": 61898, "heat-map": 62624, "highlight": 62625, "history": 62626, "holder": 62627, "home": 61903, "hourglass": 62628, "html5": 62629, "idcard": 62630, "ie": 62631, "import": 62632, "inbox": 61909, "info": 61910, "info-circle": 62633, "insert-row-above": 62634, "insert-row-below": 62635, "insert-row-left": 62636, "insert-row-right": 62637, "instagram": 61916, "insurance": 62638, "interaction": 62639, "issues-close": 62640, "italic": 62641, "java": 62808, "java-script": 62809, "key": 61921, "kubernetes": 62810, "laptop": 61922, "layout": 62642, "left": 62643, "left-circle": 62644, "left-square": 62645, "like": 62646, "line": 62647, "line-chart": 62648, "line-height": 62649, "link": 61931, "linkedin": 61932, "linux": 62811, "loading": 62650, "loading-3-quarters": 62651, "lock": 61935, "login": 61936, "logout": 62652, "mac-command": 62653, "mail": 61939, "man": 61940, "medicine-box": 62654, "medium": 61942, "medium-workmark": 62655, "meh": 62656, "menu": 61945, "menu-fold": 62657, "menu-unfold": 62658, "merge": 62812, "merge-cells": 62659, "message": 61949, "minus": 61950, "minus-circle": 62660, "minus-square": 62661, "mobile": 61953, "money-collect": 62662, "monitor": 62663, "moon": 62813, "more": 62664, "muted": 62814, "node-collapse": 62665, "node-expand": 62666, "node-index": 62667, "notification": 61960, "number": 62668, "one-to-one": 62669, "open-a-i": 62815, "open-ai": 62816, "ordered-list": 62670, "paper-clip": 62671, "partition": 62672, "pause": 62673, "pause-circle": 62674, "pay-circle": 62675, "percentage": 62676, "phone": 61970, "pic-center": 62677, "pic-left": 62678, "pic-right": 62679, "picture": 62680, "pie-chart": 61975, "pinterest": 62817, "play-circle": 62681, "play-square": 62682, "plus": 61978, "plus-circle": 62683, "plus-square": 62684, "pound": 62685, "pound-circle": 62686, "poweroff": 62687, "printer": 62688, "product": 62818, "profile": 62689, "project": 62690, "property-safety": 62691, "pull-request": 62692, "pushpin": 62693, "python": 62819, "qq": 61990, "qrcode": 62694, "question": 62695, "question-circle": 62696, "radar-chart": 62697, "radius-bottomleft": 62698, "radius-bottomright": 62699, "radius-setting": 62700, "radius-upleft": 62701, "radius-upright": 62702, "read": 62703, "reconciliation": 62704, "red-envelope": 62705, "reddit": 62706, "redo": 62707, "reload": 62708, "rest": 62709, "retweet": 62007, "right": 62710, "right-circle": 62711, "right-square": 62712, "rise": 62713, "robot": 62714, "rocket": 62013, "rollback": 62715, "rotate-left": 62716, "rotate-right": 62717, "ruby": 62820, "safety": 62718, "safety-certificate": 62719, "save": 62019, "scan": 62720, "schedule": 62721, "scissor": 62722, "search": 62723, "security-scan": 62724, "select": 62725, "send": 62726, "setting": 62727, "shake": 62728, "share-alt": 62729, "shop": 62030, "shopping": 62730, "shopping-cart": 62032, "shrink": 62731, "signature": 62821, "sisternode": 62732, "sketch": 62733, "skin": 62734, "skype": 62037, "slack": 62735, "slack-square": 62736, "sliders": 62737, "small-dash": 62738, "smile": 62739, "snippets": 62740, "solution": 62741, "sort-ascending": 62742, "sort-descending": 62743, "sound": 62047, "split-cells": 62744, "spotify": 62822, "star": 62049, "step-backward": 62745, "step-forward": 62746, "stock": 62747, "stop": 62748, "strikethrough": 62749, "subnode": 62750, "sun": 62823, "swap": 62056, "swap-left": 62751, "swap-right": 62752, "switcher": 62753, "sync": 62754, "table": 62755, "tablet": 62062, "tag": 62063, "tags": 62756, "taobao": 62757, "taobao-circle": 62758, "team": 62759, "thunderbolt": 62760, "tik-tok": 62824, "to-top": 62761, "tool": 62762, "trademark": 62763, "trademark-circle": 62764, "transaction": 62765, "translation": 62766, "trophy": 62075, "truck": 62825, "twitch": 62826, "twitter": 62076, "underline": 62767, "undo": 62768, "ungroup": 62769, "unlock": 62770, "unordered-list": 62771, "up": 62772, "up-circle": 62773, "up-square": 62774, "upload": 62085, "usb": 62775, "user": 62087, "user-add": 62776, "user-delete": 62777, "user-switch": 62778, "usergroup-add": 62779, "usergroup-delete": 62780, "verified": 62781, "vertical-align-bottom": 62782, "vertical-align-middle": 62783, "vertical-align-top": 62784, "vertical-left": 62785, "vertical-right": 62786, "video-camera": 62099, "video-camera-add": 62787, "wallet": 62101, "warning": 62102, "wechat": 62788, "wechat-work": 62827, "weibo": 62789, "weibo-circle": 62790, "weibo-square": 62791, "whats-app": 62792, "wifi": 62793, "windows": 62794, "woman": 62795, "x": 62828, "yahoo": 62796, "youtube": 62112, "yuque": 62797, "zhihu": 62798, "zoom-in": 62799, "zoom-out": 62800 } ================================================ FILE: packages/ant-design/package.json ================================================ { "name": "@react-native-vector-icons/ant-design", "version": "12.5.0", "description": "Ant Design font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "ant-design" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/ant-design" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "@ant-design/icons-svg": "4.4.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/ant-design/react-native-vector-icons-ant-design.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-ant-design' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/ant-design/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * AntDesign icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/AntDesign.json'; export const AntDesign = createIconSet(glyphMap, { postScriptName: 'AntDesign', fontFileName: 'AntDesign.ttf', fontSource: require('../fonts/AntDesign.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type AntDesignIconName = keyof typeof glyphMap; /** @alias */ export default AntDesign; ================================================ FILE: packages/ant-design/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * AntDesign icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/AntDesign.json'; export const AntDesign = createIconSet(glyphMap, { postScriptName: 'AntDesign', fontFileName: 'AntDesign.ttf', }); export type AntDesignIconName = keyof typeof glyphMap; /** @alias */ export default AntDesign; ================================================ FILE: packages/ant-design/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/ant-design/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/codemod/CHANGELOG.md ================================================ ## 12.3.2 (2026-03-20) ### 🚀 Features - **codemod:** support static imports ([#1884](https://github.com/oblador/react-native-vector-icons/pull/1884)) ### ❤️ Thank You - John Ferlito @johnf - Vojtech Novak @vonovak ## 12.3.1 (2026-03-10) ### 🩹 Fixes - **codemod:** update provenance details ([#1871](https://github.com/oblador/react-native-vector-icons/pull/1871)) ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-11-01) ### 🩹 Fixes - update codemod simple-line-icon repository name ([#1856](https://github.com/oblador/react-native-vector-icons/pull/1856)) ### ❤️ Thank You - Mark @feyst ## 12.2.0 (2025-08-03) ### 🚀 Features - **codemod:** add codemod for expo/vector-icons ([#1815](https://github.com/oblador/react-native-vector-icons/pull/1815)) ### 🩹 Fixes - **codemod:** add git status check, use npx expo install to add deps ([#1818](https://github.com/oblador/react-native-vector-icons/pull/1818)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) This was a version bump only for @react-native-vector-icons/codemod to align it with other projects, there were no code changes. ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### ❤️ Thank You - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/codemod/package.json ================================================ { "name": "@react-native-vector-icons/codemod", "version": "12.3.2", "description": "Tool to help users migrate from react-native-vector-icons to @react-native-vector-icons/*", "main": "lib/commonjs/index", "module": "lib/module/index", "types": "lib/typescript/src/index.d.ts", "source": "src/index", "bin": { "react-native-vector-icons-codemod": "./lib/commonjs/index.js" }, "files": [ "src", "lib", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli lib", "prepare": "bob build", "test": "jest", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "transform": { "^.+\\.tsx?$": [ "ts-jest", { "tsconfig": { "verbatimModuleSyntax": false } } ] } }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "migration" ], "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "homepage": "https://github.com/react-native-vector-icons/react-native-vector-icons", "bugs": { "url": "https://github.com/react-native-vector-icons/react-native-vector-icons/issues" }, "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/codemod" }, "license": "MIT", "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "dependencies": { "jscodeshift": "^17.1.1", "plist": "^3.1.0", "resolve-from": "^5.0.0", "semver": "^7.7.1" }, "devDependencies": { "@types/jest": "^30.0.0", "@types/jscodeshift": "^0.12.0", "@types/plist": "^3.0.5", "@types/semver": "^7", "del-cli": "^6.0.0", "jest": "^29.7.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "ts-jest": "^29.2.5", "typescript": "^5.7.2" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ "commonjs", "module", [ "typescript", { "project": "tsconfig.json" } ] ] } } ================================================ FILE: packages/codemod/src/11.0/icon-style-transform.ts ================================================ import type { Collection, JSCodeshift, JSXAttribute } from 'jscodeshift'; const componentNames = ['FontAwesome5', 'FontAwesome6', 'FontAwesome5Pro', 'FontAwesome6Pro', 'Icon']; const iconStyles = ['brand', 'solid', 'light', 'thin', 'duotone', 'sharp', 'sharpSolid', 'sharpLight']; export default (j: JSCodeshift, root: Collection) => root .find(j.JSXOpeningElement) .forEach((path) => { if (path.node.name.type !== 'JSXIdentifier') { return; } if (!componentNames.includes(path.node.name.name)) { return; } const { node } = path; iconStyles.forEach((style) => { const styleAttr = node.attributes?.find((attr) => attr.type === 'JSXAttribute' && attr.name.name === style) as | JSXAttribute | undefined; if (!styleAttr) { return; } styleAttr.name = j.jsxIdentifier('iconStyle'); styleAttr.value = j.stringLiteral(style); }); }) .toSource(); ================================================ FILE: packages/codemod/src/11.0/import-transform.ts ================================================ import type { Collection, JSCodeshift } from 'jscodeshift'; const imports: [string, string][] = [ ['react-native-vector-icons/AntDesign', '@react-native-vector-icons/ant-design/static'], ['react-native-vector-icons/Entypo', '@react-native-vector-icons/entypo/static'], ['react-native-vector-icons/EvilIcons', '@react-native-vector-icons/evil-icons/static'], ['react-native-vector-icons/Feather', '@react-native-vector-icons/feather/static'], ['react-native-vector-icons/FontAwesome5', '@react-native-vector-icons/fontawesome5/static'], ['react-native-vector-icons/FontAwesome5Pro', '@react-native-vector-icons/fontawesome5-pro/static'], ['react-native-vector-icons/FontAwesome6', '@react-native-vector-icons/fontawesome6/static'], ['react-native-vector-icons/FontAwesome6Pro', '@react-native-vector-icons/fontawesome6-pro/static'], ['react-native-vector-icons/FontAwesome', '@react-native-vector-icons/fontawesome/static'], ['react-native-vector-icons/Fontisto', '@react-native-vector-icons/fontisto/static'], ['react-native-vector-icons/Foundation', '@react-native-vector-icons/foundation/static'], ['react-native-vector-icons/Ionicons', '@react-native-vector-icons/ionicons/static'], ['react-native-vector-icons/MaterialCommunityIcons', '@react-native-vector-icons/material-design-icons/static'], ['react-native-vector-icons/MaterialIcons', '@react-native-vector-icons/material-icons/static'], ['react-native-vector-icons/Octicons', '@react-native-vector-icons/octicons/static'], ['react-native-vector-icons/SimpleLineIcons', '@react-native-vector-icons/SimpleLineIcons/static'], ['react-native-vector-icons/Zocial', '@react-native-vector-icons/zocial/static'], ]; export default (j: JSCodeshift, root: Collection, r: (msg: string) => void) => { const pkgs = new Set(); root .find(j.ImportDeclaration) .forEach((path) => { imports.forEach(([from, to]) => { if (path.node.source.value === from) { path.node.source.value = to; pkgs.add(to); } }); }) .toSource(); // biome-ignore lint/suspicious/useIterableCallbackReturn: biome bug?? pkgs.forEach((pkg) => r(`DEP_FOUND: ${pkg}`)); }; ================================================ FILE: packages/codemod/src/11.0/index.ts ================================================ #!/usr/bin/env node /* eslint-disable no-console */ import { exec } from 'node:child_process'; import path from 'node:path'; import infoPlistTransform from './info-plist'; import packageJsonTransform from './package-json'; import removeFonts from './remove-fonts'; const dir = process.argv[2]; if (!dir) { console.error('Please specify a directory to transform'); process.exit(1); } const transformFilePath = path.join(__dirname, 'transform.js'); const cmd = `jscodeshift --transform ${transformFilePath} --extensions js,ts,jsx,tsx --parser tsx --ignore-pattern '**/node_modules/**' ${dir}`; const proc = exec(cmd, { env: { ...process.env, FORCE_COLOR: 'true' } }); const pkgs = new Set(); proc.stdout?.on('data', (data: string) => { console.log(data); const lines = data.split('\n'); lines.forEach((line) => { if (line.match('DEP_FOUND: ')) { pkgs.add(line.replace(/.*DEP_FOUND: /, '').trim()); } }); }); proc.stderr?.on('data', (data) => { console.error(data); }); proc.on('exit', () => { packageJsonTransform(pkgs); infoPlistTransform(); removeFonts(); }); ================================================ FILE: packages/codemod/src/11.0/info-plist.ts ================================================ import { execSync } from 'node:child_process'; import fs from 'node:fs'; import plist from 'plist'; const fonts = [ 'AntDesign.ttf', 'Entypo.ttf', 'EvilIcons.ttf', 'Feather.ttf', 'FontAwesome5_Brands.ttf', 'FontAwesome5_Regular.ttf', 'FontAwesome5_Solid.ttf', 'FontAwesome6_Brands.ttf', 'FontAwesome6_Regular.ttf', 'FontAwesome6_Solid.ttf', 'FontAwesome.ttf', 'Fontisto.ttf', 'Foundation.ttf', 'Ionicons.ttf', 'MaterialCommunityIcons.ttf', 'MaterialIcons.ttf', 'Octicons.ttf', 'SimpleLineIcons.ttf', 'Zocial.ttf', 'FontAwesome5_Pro_Light.ttf', 'FontAwesome5_Pro_Brands.ttf', 'FontAwesome5_Pro_Regular.ttf', 'FontAwesome5_Pro_Solid.ttf"', 'FontAwesome6_Pro_Light.ttf', 'FontAwesome6_Pro_Brands.ttf', 'FontAwesome6_Pro_Regular.ttf', 'FontAwesome6_Pro_Solid.ttf', 'FontAwesome6_Pro_Duotone.ttf', 'FontAwesome6_Pro_Thin.ttf', 'FontAwesome6_Pro_Sharp_Solid.ttf', 'FontAwesome6_Pro_Sharp_Light.ttf', 'FontAwesome6_Pro_Sharp_Regular.ttf', ]; export default () => { const file = execSync('find ios -name Info.plist | grep -v Tests').toString().trim(); const obj = plist.parse(fs.readFileSync(file, 'utf8')) as { UIAppFonts: string[] }; // delete fonts that match list obj.UIAppFonts = obj.UIAppFonts.filter((font) => !fonts.includes(font)); fs.writeFileSync(file, plist.build(obj)); }; ================================================ FILE: packages/codemod/src/11.0/package-json.ts ================================================ import fs from 'node:fs'; import { getVersion } from '../getVersion'; export default async (pkgs: Set) => { const packageJson = JSON.parse(fs.readFileSync('package.json', 'utf8')); const { dependencies } = packageJson; const versionPromises = Array.from(pkgs).map(async (pkg) => { if (!dependencies[pkg]) { dependencies[pkg] = await getVersion(pkg); } }); await Promise.all(versionPromises); if (pkgs.size > 0 && dependencies['react-native-vector-icons']) { dependencies['react-native-vector-icons'] = undefined; dependencies['@react-native-vector-icons/common'] = await getVersion('@react-native-vector-icons/common'); fs.writeFileSync('package.json', JSON.stringify(packageJson, null, 2)); } }; ================================================ FILE: packages/codemod/src/11.0/remove-fonts.ts ================================================ /* eslint-disable no-console */ import { execSync } from 'node:child_process'; import fs from 'node:fs'; const deletableFonts = [ 'AntDesign.ttf', 'Entypo.ttf', 'EvilIcons.ttf', 'Feather.ttf', 'FontAwesome5_Brands.ttf', 'FontAwesome5_Regular.ttf', 'FontAwesome5_Solid.ttf', 'FontAwesome6_Brands.ttf', 'FontAwesome6_Regular.ttf', 'FontAwesome6_Solid.ttf', 'FontAwesome.ttf', 'Fontisto.ttf', 'Foundation.ttf', 'Ionicons.ttf', 'MaterialCommunityIcons.ttf', 'MaterialIcons.ttf', 'Octicons.ttf', 'SimpleLineIcons.ttf', 'Zocial.ttf', ]; const moveableFonts = [ 'FontAwesome5_Pro_Light.ttf', 'FontAwesome5_Pro_Brands.ttf', 'FontAwesome5Pro_Brands.ttf', 'FontAwesome5_Pro_Regular.ttf', 'FontAwesome5_Pro_Solid.ttf"', 'FontAwesome6_Pro_Light.ttf', 'FontAwesome6_Pro_Brands.ttf', 'FontAwesome6_Pro_Regular.ttf', 'FontAwesome6_Pro_Solid.ttf', 'FontAwesome6_Pro_Duotone.ttf', 'FontAwesome6_Pro_Thin.ttf', 'FontAwesome6_Pro_Sharp_Solid.ttf', 'FontAwesome6_Pro_Sharp_Light.ttf', 'FontAwesome6_Pro_Sharp_Regular.ttf', ]; export default () => { const files = execSync('find android/app/src/main/assets/fonts -name "*.ttf"') .toString() .split('\n') .map((line) => line.trim()); console.log('Removing unused fonts'); const toDelete = files.filter((file) => deletableFonts.includes(file.replace(/.*\//, ''))); toDelete.forEach((file) => { console.log(` - Removing ${file}`); fs.rmSync(file); }); console.log('Moving Pro fonts'); const toMove = files.filter((file) => moveableFonts.includes(file.replace(/.*\//, ''))); fs.mkdirSync('rnvi-fonts', { recursive: true }); toMove.forEach((file) => { console.log(` - Removing ${file}`); fs.renameSync(file, `rnvi-fonts/${file.replace(/.*\//, '')}`); }); }; ================================================ FILE: packages/codemod/src/11.0/transform.ts ================================================ import type { API, FileInfo } from 'jscodeshift'; import iconStyleTransform from './icon-style-transform'; import importTransform from './import-transform'; export default (file: FileInfo, api: API) => { const j = api.jscodeshift; const r = api.report; const root = j(file.source); // Apply each transform importTransform(j, root, r); iconStyleTransform(j, root); return root.toSource(); }; ================================================ FILE: packages/codemod/src/12.0/index.ts ================================================ #!/usr/bin/env node /* eslint-disable no-console */ import { exec } from 'node:child_process'; import path from 'node:path'; import moveFonts from './move-fonts'; import packageJsonTransform from './package-json'; const dir = process.argv[2]; if (!dir) { console.error('Please specify a directory to transform'); process.exit(1); } const transformFilePath = path.join(__dirname, 'transform.js'); const cmd = `jscodeshift --transform ${transformFilePath} --extensions js,ts,jsx,tsx --parser tsx --ignore-pattern '**/node_modules/**' ${dir}`; const proc = exec(cmd, { env: { ...process.env, FORCE_COLOR: 'true' } }); proc.stdout?.on('data', (data: string) => { console.log(data); }); proc.stderr?.on('data', (data) => { console.error(data); }); proc.on('exit', () => { packageJsonTransform(); moveFonts(dir); }); ================================================ FILE: packages/codemod/src/12.0/move-fonts.ts ================================================ /* eslint-disable no-console */ import fs, { mkdirSync, readdirSync } from 'node:fs'; import path from 'node:path'; const moveableFonts: Record = { 'FontAwesome5_Pro_Light.ttf': 'fontawesome5-pro', 'FontAwesome5_Pro_Brands.ttf': 'fontawesome5-pro', 'FontAwesome5Pro_Brands.ttf': 'fontawesome5-pro', 'FontAwesome5_Pro_Regular.ttf': 'fontawesome5-pro', 'FontAwesome5_Pro_Solid.ttf"': 'fontawesome5-pro', 'FontAwesome6_Pro_Light.ttf': 'fontawesome5-pro', 'FontAwesome6_Pro_Brands.ttf': 'fontawesome6-pro', 'FontAwesome6_Pro_Regular.ttf': 'fontawesome6-pro', 'FontAwesome6_Pro_Solid.ttf': 'fontawesome6-pro', 'FontAwesome6_Pro_Duotone.ttf': 'fontawesome6-pro', 'FontAwesome6_Pro_Thin.ttf': 'fontawesome6-pro', 'FontAwesome6_Pro_Sharp_Solid.ttf': 'fontawesome6-pro', 'FontAwesome6_Pro_Sharp_Light.ttf': 'fontawesome6-pro', 'FontAwesome6_Pro_Sharp_Regular.ttf': 'fontawesome6-pro', }; export default (rootDir: string) => { const packageJsonPath = path.join(rootDir, 'package.json'); const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8')); const rnviConfig = packageJson.reactNativeVectorIcons || { fontDir: 'rnvi-fonts' }; const fontDir = rnviConfig.fontDir || 'rnvi-fonts'; const files = readdirSync(fontDir); console.log('Moving Pro fonts'); files.forEach((file) => { const fontPath = path.join(fontDir, file); const dir = moveableFonts[file]; if (!dir) { console.log(` - Skipping ${file}`); return; } console.log(` - Moving ${file} to ${dir}`); mkdirSync(path.join(fontDir, dir), { recursive: true }); fs.renameSync(fontPath, `${fontDir}/${dir}/${file}`); }); }; ================================================ FILE: packages/codemod/src/12.0/package-json.ts ================================================ import fs from 'node:fs'; export default () => { const packageJson = JSON.parse(fs.readFileSync('package.json', 'utf8')); const { dependencies } = packageJson; if (dependencies['@react-native-vector-icons/common']) { dependencies['@react-native-vector-icons/common'] = undefined; fs.writeFileSync('package.json', JSON.stringify(packageJson, null, 2)); } }; ================================================ FILE: packages/codemod/src/12.0/transform.ts ================================================ import type { API, FileInfo } from 'jscodeshift'; export default (file: FileInfo, api: API) => { const j = api.jscodeshift; // const r = api.report; const root = j(file.source); // Apply each transform return root.toSource(); }; ================================================ FILE: packages/codemod/src/__tests__/11.0-transform.test.ts ================================================ import type { API, FileInfo } from 'jscodeshift'; import jscodeshift from 'jscodeshift'; import transform from '../11.0/transform'; function applyTransform(source: string) { const reported: string[] = []; const fileInfo: FileInfo = { path: 'test.tsx', source }; const api: API = { jscodeshift: jscodeshift.withParser('tsx'), j: jscodeshift.withParser('tsx'), stats: () => {}, report: (msg: string) => reported.push(msg), }; const output = transform(fileInfo, api); return { output, reported }; } describe('11.0 transform', () => { it('transforms an import and reports the dependency', () => { const input = `import Ionicons from 'react-native-vector-icons/Ionicons';`; const { output, reported } = applyTransform(input); expect(output).toBe('import Ionicons from "@react-native-vector-icons/ionicons/static";'); expect(reported).toContain('DEP_FOUND: @react-native-vector-icons/ionicons/static'); }); it('transforms multiple imports from different icon sets', () => { const input = [ `import Ionicons from 'react-native-vector-icons/Ionicons';`, `import FontAwesome from 'react-native-vector-icons/FontAwesome';`, ].join('\n'); const { output, reported } = applyTransform(input); expect(output).toContain('from "@react-native-vector-icons/ionicons/static"'); expect(output).toContain('from "@react-native-vector-icons/fontawesome/static"'); expect(reported).toHaveLength(2); }); it('transforms renamed packages correctly', () => { const cases: [string, string][] = [ ['MaterialCommunityIcons', 'material-design-icons'], ['MaterialIcons', 'material-icons'], ['AntDesign', 'ant-design'], ['EvilIcons', 'evil-icons'], ]; for (const [oldName, newName] of cases) { const input = `import Icon from 'react-native-vector-icons/${oldName}';`; const { output } = applyTransform(input); expect(output).toContain(`from "@react-native-vector-icons/${newName}/static"`); } }); it('preserves the local import name', () => { const input = `import MyIcons from 'react-native-vector-icons/Entypo';`; const { output } = applyTransform(input); expect(output).toContain('import MyIcons from'); }); it('does not transform unrelated imports', () => { const input = `import React from 'react';`; const { output, reported } = applyTransform(input); expect(output).toBe(input); expect(reported).toHaveLength(0); }); it('converts FontAwesome icon style boolean props to iconStyle', () => { const input = ` import FontAwesome5 from 'react-native-vector-icons/FontAwesome5'; const App = () => ; `; const { output } = applyTransform(input); expect(output).toContain('iconStyle="solid"'); expect(output).not.toContain(' solid />'); }); it('converts brand prop to iconStyle on FontAwesome6', () => { const input = ` import FontAwesome6 from 'react-native-vector-icons/FontAwesome6'; const App = () => ; `; const { output } = applyTransform(input); expect(output).toContain('iconStyle="brand"'); expect(output).toContain('from "@react-native-vector-icons/fontawesome6/static"'); }); it('converts pro icon styles (light, thin, duotone, sharp)', () => { const styles = ['light', 'thin', 'duotone', 'sharp', 'sharpSolid', 'sharpLight']; for (const style of styles) { const input = ` import FontAwesome6Pro from 'react-native-vector-icons/FontAwesome6Pro'; const App = () => ; `; const { output } = applyTransform(input); expect(output).toContain(`iconStyle="${style}"`); } }); it('does not convert icon style props on non-FontAwesome components', () => { const input = ` import Ionicons from 'react-native-vector-icons/Ionicons'; const App = () => ; `; const { output } = applyTransform(input); // solid should remain untouched since Ionicons is not a FA component expect(output).toContain('solid'); expect(output).not.toContain('iconStyle'); }); it('handles import transform and icon style transform together', () => { const input = ` import FontAwesome5 from 'react-native-vector-icons/FontAwesome5'; import Ionicons from 'react-native-vector-icons/Ionicons'; const App = () => ( <> ); `; const { output, reported } = applyTransform(input); // imports transformed expect(output).toContain('from "@react-native-vector-icons/fontawesome5/static"'); expect(output).toContain('from "@react-native-vector-icons/ionicons/static"'); // icon style transformed on FA5 only expect(output).toContain('iconStyle="solid"'); // deps reported expect(reported).toHaveLength(2); }); }); ================================================ FILE: packages/codemod/src/__tests__/expo-import-transform.test.ts ================================================ import type { API, FileInfo, Options } from 'jscodeshift'; import jscodeshift from 'jscodeshift'; import transform from '../expo/import-transform'; // Mock newFontImports to avoid file system side effects jest.mock('../expo/newFontImports', () => ({ addNewFontImport: jest.fn(), })); function applyTransform(source: string, options: Options = {}): string | undefined { const fileInfo: FileInfo = { path: 'test.tsx', source, }; const api: API = { jscodeshift: jscodeshift.withParser('tsx'), j: jscodeshift.withParser('tsx'), stats: () => {}, report: () => {}, }; return transform(fileInfo, api, options); } describe('expo import-transform', () => { describe('named imports from @expo/vector-icons', () => { it('splits named imports into multiple default imports', () => { const input = `import { Ionicons, MaterialIcons } from '@expo/vector-icons';`; const output = applyTransform(input); expect(output).toContain('import Ionicons from "@react-native-vector-icons/ionicons"'); expect(output).toContain('import MaterialIcons from "@react-native-vector-icons/material-icons"'); }); it('appends /static when useStatic is true', () => { const input = `import { Ionicons, MaterialIcons } from '@expo/vector-icons';`; const output = applyTransform(input, { useStatic: true }); expect(output).toContain('import Ionicons from "@react-native-vector-icons/ionicons/static"'); expect(output).toContain('import MaterialIcons from "@react-native-vector-icons/material-icons/static"'); }); }); describe('default imports from @expo/vector-icons/', () => { it('transforms a default import from a specific family', () => { const input = `import Ionicons from '@expo/vector-icons/Ionicons';`; const output = applyTransform(input); expect(output).toBe('import Ionicons from "@react-native-vector-icons/ionicons";'); }); it('transforms a default import with /static when useStatic is true', () => { const input = `import Feather from '@expo/vector-icons/Feather';`; const output = applyTransform(input, { useStatic: true }); expect(output).toBe('import Feather from "@react-native-vector-icons/feather/static";'); }); it('strips /build/ from import paths', () => { const input = `import Ionicons from '@expo/vector-icons/build/Ionicons';`; const output = applyTransform(input); expect(output).toBe('import Ionicons from "@react-native-vector-icons/ionicons";'); }); }); describe('non-icon-family imports', () => { it('transforms createIconSetFromIcoMoon', () => { const input = `import createIconSetFromIcoMoon from '@expo/vector-icons/createIconSetFromIcoMoon';`; const output = applyTransform(input); expect(output).toBe('import createIconSetFromIcoMoon from "@react-native-vector-icons/icomoon";'); }); it('transforms createIconSetFromFontello', () => { const input = `import createIconSetFromFontello from '@expo/vector-icons/createIconSetFromFontello';`; const output = applyTransform(input); expect(output).toBe('import createIconSetFromFontello from "@react-native-vector-icons/fontello";'); }); }); describe('edge cases', () => { it('returns undefined when no @expo/vector-icons imports are found', () => { const input = `import React from 'react';`; const output = applyTransform(input); expect(output).toBeUndefined(); }); it('preserves the local import name for default imports', () => { const input = `import MyIcons from '@expo/vector-icons/Entypo';`; const output = applyTransform(input); expect(output).toBe('import MyIcons from "@react-native-vector-icons/entypo";'); }); it('transforms all supported icon families', () => { const families = [ ['AntDesign', 'ant-design'], ['Entypo', 'entypo'], ['EvilIcons', 'evil-icons'], ['Feather', 'feather'], ['FontAwesome', 'fontawesome'], ['FontAwesome5', 'fontawesome5'], ['FontAwesome6', 'fontawesome6'], ['Fontisto', 'fontisto'], ['Foundation', 'foundation'], ['Ionicons', 'ionicons'], ['MaterialCommunityIcons', 'material-design-icons'], ['MaterialIcons', 'material-icons'], ['Octicons', 'octicons'], ['SimpleLineIcons', 'simple-line-icons'], ['Zocial', 'zocial'], ]; for (const [oldName, newName] of families) { const input = `import Icon from '@expo/vector-icons/${oldName}';`; const output = applyTransform(input); expect(output).toContain(`from "@react-native-vector-icons/${newName}"`); } }); it('throws for unknown icon family in named import', () => { const input = `import { UnknownFont } from '@expo/vector-icons';`; expect(() => applyTransform(input)).toThrow('No mapping found for @expo/vector-icons/UnknownFont'); }); it('throws for unknown icon family in default import', () => { const input = `import UnknownFont from '@expo/vector-icons/UnknownFont';`; expect(() => applyTransform(input)).toThrow('No mapping found for @expo/vector-icons/UnknownFont'); }); }); }); ================================================ FILE: packages/codemod/src/checkGitStatus.ts ================================================ /* eslint-disable no-console */ import { execSync } from 'node:child_process'; export function checkGitStatus(dir: string): void { try { // Check if the directory is a git repository execSync('git rev-parse --git-dir', { cwd: dir, stdio: 'pipe' }); // Check if there are any uncommitted changes const status = execSync('git status --porcelain', { cwd: dir, encoding: 'utf8', }); if (status.trim()) { console.error('❌ Git working directory not clean. Commit or stash your changes before running the codemod.'); console.error('Uncommitted changes:'); console.error(status); process.exit(1); } console.log('✅ Git repository is clean'); } catch { // If git rev-parse fails, the directory is not a git repository console.log('! Directory is not a git repository. Proceeding without git status check.'); } } ================================================ FILE: packages/codemod/src/expo/import-transform.ts ================================================ import type { API, FileInfo, Options } from 'jscodeshift'; import { addNewFontImport } from './newFontImports'; const importsMap: Record = { '@expo/vector-icons/AntDesign': '@react-native-vector-icons/ant-design', '@expo/vector-icons/Entypo': '@react-native-vector-icons/entypo', '@expo/vector-icons/EvilIcons': '@react-native-vector-icons/evil-icons', '@expo/vector-icons/Feather': '@react-native-vector-icons/feather', '@expo/vector-icons/FontAwesome5': '@react-native-vector-icons/fontawesome5', '@expo/vector-icons/FontAwesome5Pro': '@react-native-vector-icons/fontawesome5-pro', '@expo/vector-icons/FontAwesome6': '@react-native-vector-icons/fontawesome6', '@expo/vector-icons/FontAwesome6Pro': '@react-native-vector-icons/fontawesome6-pro', '@expo/vector-icons/FontAwesome': '@react-native-vector-icons/fontawesome', '@expo/vector-icons/Fontisto': '@react-native-vector-icons/fontisto', '@expo/vector-icons/Foundation': '@react-native-vector-icons/foundation', '@expo/vector-icons/Ionicons': '@react-native-vector-icons/ionicons', '@expo/vector-icons/MaterialCommunityIcons': '@react-native-vector-icons/material-design-icons', '@expo/vector-icons/MaterialIcons': '@react-native-vector-icons/material-icons', '@expo/vector-icons/Octicons': '@react-native-vector-icons/octicons', '@expo/vector-icons/SimpleLineIcons': '@react-native-vector-icons/simple-line-icons', '@expo/vector-icons/Zocial': '@react-native-vector-icons/zocial', // non-icon-family imports '@expo/vector-icons/createIconSetFromIcoMoon': '@react-native-vector-icons/icomoon', '@expo/vector-icons/createIconSetFromFontello': '@react-native-vector-icons/fontello', }; // prefer transforms to default imports as they are easier to get right than named imports export default function transform(fileInfo: FileInfo, api: API, options: Options) { const j = api.jscodeshift; const root = j(fileInfo.source); const useStatic = options.useStatic === true; const newFontImports = new Set(); const resolveImportPath = (basePath: string): string => { return useStatic ? `${basePath}/static` : basePath; }; // Transform import statements from @expo/vector-icons root.find(j.ImportDeclaration).forEach((path) => { const { source } = path.value; // Handle named imports: import { Ionicons, MaterialIcons } from '@expo/vector-icons' if (source.type === 'StringLiteral' && source.value === '@expo/vector-icons') { const { specifiers } = path.value; if (specifiers) { const newImports = specifiers .map((spec) => { if (spec.type === 'ImportSpecifier') { const fontName = spec.imported.name; // Find the correct mapping for this font const oldName = `@expo/vector-icons/${fontName}`; const newFontPath = importsMap[oldName]; if (!newFontPath) { throw new Error(`No mapping found for ${oldName}. Migrate this import manually.`); } newFontImports.add(newFontPath); return j.importDeclaration( [j.importDefaultSpecifier(j.identifier(fontName))], j.literal(resolveImportPath(newFontPath)), ); } return null; }) .filter(Boolean); // Replace the original import with new imports if (newImports.length > 0) { j(path).replaceWith(newImports); } } } // Handle default imports: import Ionicons from '@expo/vector-icons/Ionicons' // or 'import Ionicons from '@expo/vector-icons/build/Ionicons' if ( source.type === 'StringLiteral' && typeof source.value === 'string' && source.value.startsWith('@expo/vector-icons/') ) { const importPath = source.value.replace('/build/', '/'); const newFontPath = importsMap[importPath]; if (!newFontPath) { throw new Error(`No mapping found for ${source.value}. Migrate this import manually.`); } newFontImports.add(newFontPath); // Replace with new import source.value = resolveImportPath(newFontPath); } }); if (newFontImports.size > 0) { addNewFontImport(Array.from(newFontImports)); } return newFontImports.size > 0 ? root.toSource() : undefined; } ================================================ FILE: packages/codemod/src/expo/index.ts ================================================ /* eslint-disable no-console */ import { run as jscodeshift } from 'jscodeshift/src/Runner'; import resolveFrom from 'resolve-from'; import { updatePackageJson } from './package-json'; async function shouldUseStaticImports(dir: string): Promise { const hasExpoDevClient = resolveFrom.silent(dir, 'expo-dev-client/package.json') != null; if (hasExpoDevClient) { console.log( '\nDetected expo-dev-client. Defaulting to /static imports (e.g. @react-native-vector-icons/material-icons/static).', ); } else { console.log( '\nNo expo-dev-client detected (assuming Expo Go). Using default imports (e.g. @react-native-vector-icons/material-icons).', ); } return hasExpoDevClient; } export async function runExpoMigration(dir: string) { const transformPath = require.resolve('./import-transform'); process.chdir(dir); console.log(`Running Expo codemod in directory: ${dir}`); const useStatic = await shouldUseStaticImports(dir); await jscodeshift(transformPath, ['.'], { verbose: process.env.VERBOSE === 'true' || process.env.VERBOSE === '1', extensions: 'js,jsx,ts,tsx', parser: 'tsx', ignorePattern: '**/node_modules/**', useStatic, }); await updatePackageJson(dir); } ================================================ FILE: packages/codemod/src/expo/newFontImports.ts ================================================ import fs from 'node:fs'; import os from 'node:os'; import path from 'node:path'; const tmpFile = path.join(os.tmpdir(), 'rnvi-codemod-new-imports.txt'); export function addNewFontImport(fontNames: string[]) { // this should be atomic and safe to call from multiple processes fs.appendFileSync(tmpFile, fontNames.join(os.EOL) + os.EOL); } export function getNewFontImports(): string[] { if (!fs.existsSync(tmpFile)) { return []; } const content = fs.readFileSync(tmpFile, 'utf8'); fs.unlinkSync(tmpFile); return Array.from(new Set(content.split(os.EOL).filter(Boolean))); } ================================================ FILE: packages/codemod/src/expo/package-json.ts ================================================ /* eslint-disable no-console */ import { execSync } from 'node:child_process'; import fs from 'node:fs'; import os from 'node:os'; import path from 'node:path'; import { getNewFontImports } from './newFontImports'; export async function updatePackageJson(dir: string) { const packageJsonPath = path.join(dir, 'package.json'); if (!fs.existsSync(packageJsonPath)) { console.error('package.json not found'); return; } const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8')); if (!packageJson) { console.error('package.json is not valid'); return; } if (packageJson.dependencies?.['@expo/vector-icons']) { delete packageJson.dependencies['@expo/vector-icons']; } if (!packageJson.dependencies) { packageJson.dependencies = {}; } const newFontImports = getNewFontImports(); fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2) + os.EOL); execSync(`npx expo install ${newFontImports.join(' ')}`, { cwd: dir, stdio: 'inherit', }); console.log( `@expo/vector-icons was removed from package.json. As a replacement, the following ${newFontImports.length} packages were added: ${newFontImports.join(', ')}.`, ); console.log('If you need to, you can add @expo/vector-icons back by running `npx expo install @expo/vector-icons`'); } ================================================ FILE: packages/codemod/src/getVersion.ts ================================================ export const getVersion = async (pkg: string) => { const packageJson = await fetch(`https://registry.npmjs.org/${pkg}/latest`).then( (res) => res.json() as unknown as { version: string }, ); return `^${packageJson.version}`; }; ================================================ FILE: packages/codemod/src/index.ts ================================================ #!/usr/bin/env node /* eslint-disable no-console */ import path from 'node:path'; import semver from 'semver'; import { checkGitStatus } from './checkGitStatus'; import { runExpoMigration } from './expo'; import { readPackageDeps } from './readPackageDeps'; async function main() { const dir = process.argv[2]; if (!dir) { console.error('Specify a directory in which to run the codemod'); process.exit(1); } checkGitStatus(dir); const { dependencies, error } = readPackageDeps(dir); if (error) { console.error(`Unable to read package.json in ${dir}: ${error.message}`); process.exit(1); } let version: string | undefined; const expoVectorIcons = dependencies['@expo/vector-icons']; if (expoVectorIcons) { await runExpoMigration(dir); } else { console.log('Running codemod in', dir); if (dependencies['react-native-vector-icons']) { version = '11.x'; await import('./11.0'); } else { const currentVersion = dependencies['@react-native-vector-icons/common']; if (currentVersion) { if (semver.satisfies(currentVersion, '12.x')) { version = '12.x'; await import('./12.0'); } else { console.error('Unsupported version of react-native-vector-icons'); process.exit(1); } } } if (!version) { console.error( `Have not found anything to migrate. Do you have "react-native-vector-icons" or "@expo/vector-icons" at ${path.join(dir, 'package.json')}?`, ); process.exit(1); } console.log(` Transform complete! Upgraded to version ${version} NOTE: You may need to run again to upgrade to the next version. NOTE: You may need to run 'npm install' to install new dependencies. Check https://github.com/react-native-vector-icons/react-native-vector-icons/blob/master/MIGRATION.md for any manual steps `); } } main().catch((e) => { console.error(e); process.exit(1); }); ================================================ FILE: packages/codemod/src/readPackageDeps.ts ================================================ import fs from 'node:fs'; import path from 'node:path'; type Result = | { dependencies: Record; error: null; } | { dependencies: null; error: Error; }; export const readPackageDeps = (dir: string): Result => { try { const packageJsonPath = path.join(dir, 'package.json'); const { dependencies: pkgDependencies } = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8')) as { dependencies: Record; }; return { dependencies: pkgDependencies || {}, error: null, }; } catch (err) { return { dependencies: null, error: err as Error }; } }; ================================================ FILE: packages/codemod/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react", "lib": ["esnext"], "module": "esnext", "moduleResolution": "node", "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "esnext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/common/.watchmanconfig ================================================ {} ================================================ FILE: packages/common/CHANGELOG.md ================================================ ## 12.4.2 (2026-03-17) ### 🩹 Fixes - simplify createIconSourceCache and remove error caching ([#1883](https://github.com/oblador/react-native-vector-icons/pull/1883)) ### ❤️ Thank You - Vojtech Novak ## 12.4.1 (2026-03-10) ### 🩹 Fixes - make expo modules detection lazy ([#1867](https://github.com/oblador/react-native-vector-icons/pull/1867)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.0 (2025-11-01) ### 🩹 Fixes - allow string values in glyphmap ([#1850](https://github.com/oblador/react-native-vector-icons/pull/1850)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/get-image to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.3.1 (2025-10-21) ### 🩹 Fixes - supported node version range ([#1840](https://github.com/oblador/react-native-vector-icons/pull/1840)) - correct required node version ([#1837](https://github.com/oblador/react-native-vector-icons/pull/1837)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.3.0 (2025-08-03) ### 🩹 Fixes - remove @react-native-commmunity/cli as a dependency ([#1812](https://github.com/oblador/react-native-vector-icons/pull/1812)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/get-image to 12.2.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.2.0 (2025-07-20) ### 🚀 Features - allow dynamic font loading with expo on web ([#1807](https://github.com/oblador/react-native-vector-icons/pull/1807)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - allow using expo font for getImageSource ([#1788](https://github.com/oblador/react-native-vector-icons/pull/1788)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/get-image to 12.1.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) - **common:** use postscript name for font family on the web #1737 ([#1740](https://github.com/oblador/react-native-vector-icons/pull/1740), [#1737](https://github.com/oblador/react-native-vector-icons/issues/1737)) ### ❤️ Thank You - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) With v12.0 you can remove `@react-native-vector-icons/common` from your `package.json` - unless you use it directly. ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - make the extra font warning yellow ([#1707](https://github.com/oblador/react-native-vector-icons/pull/1707)) - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/common/babel.config.js ================================================ module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/common/package.json ================================================ { "name": "@react-native-vector-icons/common", "version": "12.4.2", "description": "Customizable Icons for React Native with support for image source and full styling.", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } } }, "files": [ "src", "lib", "android", "ios", "cpp", "*.podspec", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli lib", "prepare": "bob build && chmod +x lib/commonjs/scripts/updatePlist.js", "prepack": "cp ../../README.md .", "postpack": "rm README.md", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "bin": { "rnvi-update-plist": "lib/commonjs/scripts/updatePlist.js" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/common" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "dependencies": { "find-up": "^7.0.0", "picocolors": "^1.1.1", "plist": "^3.1.0" }, "devDependencies": { "@types/plist": "^3.0.5", "@types/react": "^19.0.12", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "@react-native-vector-icons/get-image": "workspace:^", "react": "*", "react-native": "*" }, "peerDependenciesMeta": { "@react-native-vector-icons/get-image": { "optional": true } }, "engines": { "node": ">=20.19.0 <21.0.0 || >=22.0.0" }, "jest": { "preset": "react-native", "modulePathIgnorePatterns": [ "/example/node_modules", "/lib/" ] }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" }, "nx": { "targets": { "build": { "dependsOn": [ "@react-native-vector-icons/get-image:build" ] } } } } ================================================ FILE: packages/common/src/create-icon-set.tsx ================================================ // eslint-disable-next-line import/no-extraneous-dependencies import React, { forwardRef, type Ref, useEffect } from 'react'; // eslint-disable-next-line import/no-extraneous-dependencies import { Platform, Text, type TextProps, type TextStyle } from 'react-native'; import { createIconSourceCache } from './create-icon-source-cache'; import { DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from './defaults'; import { dynamicLoader } from './dynamicLoading/dynamic-font-loading'; import { isDynamicLoadingEnabled } from './dynamicLoading/dynamic-loading-setting'; import type { FontSource } from './dynamicLoading/types'; import { getImageSource as getImageSourceImpl, getImageSourceSync as getImageSourceSyncImpl } from './get-image-source'; type ValueData = { uri: string; scale: number }; type GetImageSourceSyncIconFunc = (name: GM, size?: number, color?: TextStyle['color']) => ValueData | undefined; type GetImageSourceIconFunc = ( name: GM, size?: number, color?: TextStyle['color'], ) => Promise; export type IconProps = TextProps & { name: T; size?: number; color?: TextStyle['color']; innerRef?: Ref; }; type GlyphMap = Record; export type IconComponent = React.FC< TextProps & { name: keyof GM; size?: number; color?: TextStyle['color']; innerRef?: Ref; } & React.RefAttributes > & { getImageSource: GetImageSourceIconFunc; getImageSourceSync: GetImageSourceSyncIconFunc; }; export type CreateIconSetOptions = { postScriptName: string; fontFileName: string; fontSource?: FontSource; fontStyle?: TextProps['style']; }; export function createIconSet( glyphMap: GM, postScriptName: string, fontFileName: string, fontStyle?: TextProps['style'], ): IconComponent; export function createIconSet(glyphMap: GM, options: CreateIconSetOptions): IconComponent; export function createIconSet( glyphMap: GM, postScriptNameOrOptions: string | CreateIconSetOptions, fontFileNameParam?: string, fontStyleParam?: TextProps['style'], ): IconComponent { const { postScriptName, fontFileName, fontStyle } = typeof postScriptNameOrOptions === 'string' ? { postScriptName: postScriptNameOrOptions, fontFileName: fontFileNameParam, fontStyle: fontStyleParam, } : postScriptNameOrOptions; const fontBasename = fontFileName ? fontFileName.replace(/\.(otf|ttf)$/, '') : postScriptName; const fontReference = Platform.select({ windows: `/Assets/${fontFileName}#${postScriptName}`, android: fontBasename, default: postScriptName, }); const styleOverrides: TextProps['style'] = { fontFamily: fontReference, fontWeight: 'normal', fontStyle: 'normal', }; const resolveGlyph = (name: keyof GM): string => { const glyph = glyphMap[name] || '?'; if (typeof glyph === 'number') { return String.fromCodePoint(glyph); } return glyph; }; const Icon = ({ name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR, style, children, allowFontScaling = false, innerRef, ...props }: IconProps) => { const [isFontLoaded, setIsFontLoaded] = React.useState( isDynamicLoadingEnabled() ? dynamicLoader.isLoaded(fontReference) : true, ); const glyph = isFontLoaded && name ? resolveGlyph(name) : ''; // biome-ignore lint/correctness/useExhaustiveDependencies: the dependencies never change useEffect(() => { let isMounted = true; if ( !isFontLoaded && typeof postScriptNameOrOptions === 'object' && typeof postScriptNameOrOptions.fontSource !== 'undefined' ) { dynamicLoader.loadFontAsync(fontReference, postScriptNameOrOptions.fontSource).finally(() => { if (isMounted) { setIsFontLoaded(true); } }); } return () => { isMounted = false; }; }, []); const styleDefaults = { fontSize: size, color, }; const newProps: TextProps = { ...props, style: [styleDefaults, style, styleOverrides, fontStyle || {}], allowFontScaling, }; return ( {glyph} {children} ); }; const WrappedIcon = forwardRef>((props, ref) => ( )); WrappedIcon.displayName = `Icon(${postScriptName})`; const imageSourceCache = createIconSourceCache(); const getImageSource: GetImageSourceIconFunc = async (name, size, color) => { if (typeof postScriptNameOrOptions === 'object' && typeof postScriptNameOrOptions.fontSource !== 'undefined') { await dynamicLoader.loadFontAsync(fontReference, postScriptNameOrOptions.fontSource); } return getImageSourceImpl(imageSourceCache, fontReference, resolveGlyph(name), size, color); }; const getImageSourceSync: GetImageSourceSyncIconFunc = (name, size, color) => getImageSourceSyncImpl(imageSourceCache, fontReference, resolveGlyph(name), size, color); const IconNamespace = Object.assign(WrappedIcon, { getImageSource, getImageSourceSync, }); return IconNamespace; } ================================================ FILE: packages/common/src/create-icon-source-cache.ts ================================================ type ValueData = { uri: string; scale: number }; export function createIconSourceCache() { const cache = new Map(); const setValue = (key: string, value: ValueData) => cache.set(key, value); const get = (key: string) => cache.get(key); return { setValue, get }; } ================================================ FILE: packages/common/src/defaults.ts ================================================ export const DEFAULT_ICON_SIZE = 12; export const DEFAULT_ICON_COLOR = 'black'; ================================================ FILE: packages/common/src/dynamicLoading/dynamic-font-loading.ts ================================================ /* * The following imports are always present when react native is installed * in the future, more explicit apis will be exposed by the core, including typings * */ import { Image, Platform } from 'react-native'; // @ts-expect-error missing types // eslint-disable-next-line import/no-extraneous-dependencies,import/no-unresolved import { getAssetByID } from '@react-native/assets-registry/registry'; import { assertExpoModulesPresent, getErrorCallback, type LoadAsyncAsset } from './dynamic-loading-setting'; import type { DynamicLoader, FontSource } from './types'; const loadPromises: { [fontSource: string]: Promise } = {}; const loadFontAsync = async (fontFamily: string, fontSource: FontSource): Promise => { const globalRef = globalThis; assertExpoModulesPresent(globalRef); const expoModules = globalRef.expo.modules; if (loadPromises[fontFamily]) { return loadPromises[fontFamily]; } loadPromises[fontFamily] = (async function LoadFont() { try { const localUri = await (() => { if (typeof fontSource === 'string') { // a local filesystem uri return fontSource; } // a module id const { uri, type, hash } = getLocalFontUrl(fontSource, fontFamily); return expoModules.ExpoAsset.downloadAsync(uri, hash, type); })(); const asset = Platform.select({ web: { uri: localUri, display: 'auto' }, default: localUri, }); await expoModules.ExpoFontLoader.loadAsync(fontFamily, asset); } catch (error) { console.error(`Failed to load font ${fontFamily}`, error); // eslint-disable-line no-console getErrorCallback()?.({ error: error as Error, fontFamily, fontSource, }); } finally { delete loadPromises[fontFamily]; } })(); return loadPromises[fontFamily]; }; type AssetRegistryEntry = { name: string; httpServerLocation: string; hash: string; type: string; // file extension }; const getLocalFontUrl = (fontModuleId: number, fontFamily: string) => { const assetMeta: AssetRegistryEntry = getAssetByID(fontModuleId); if (!assetMeta) { throw new Error(`no asset found for font family "${fontFamily}", moduleId: ${String(fontModuleId)}`); } const assetSource = Image.resolveAssetSource(fontModuleId); return { ...assetMeta, ...assetSource }; }; const loadedFontsCache: { [name: string]: boolean } = {}; const isLoadedNative = (fontFamily: string) => { if (fontFamily in loadedFontsCache) { return true; } const globalRef = globalThis; assertExpoModulesPresent(globalRef); const loadedNativeFonts = globalRef.expo.modules.ExpoFontLoader.getLoadedFonts(); loadedNativeFonts.forEach((font) => { loadedFontsCache[font] = true; }); return fontFamily in loadedFontsCache; }; export const dynamicLoader: DynamicLoader = { isLoaded: isLoadedNative, loadFontAsync, }; ================================================ FILE: packages/common/src/dynamicLoading/dynamic-loading-setting.ts ================================================ import { Platform } from 'react-native'; import type { FontSource } from './types'; type ExpoAssetModule = { // definition from // https://github.com/expo/expo/blob/1f5a5991d14aad09282d1ce1612b44d30e7e7d3d/packages/expo-asset/ios/AssetModule.swift#L23 downloadAsync: (uri: string, hash: string | undefined, type: string) => Promise; }; // this is a file:// uri on native, or an object with uri and display on web export type LoadAsyncAsset = string | { uri: string; display: string }; type ExpoFontLoaderModule = { // definition from // https://github.com/expo/expo/blob/1f5a5991d14aad09282d1ce1612b44d30e7e7d3d/packages/expo-font/ios/FontLoaderModule.swift#L18 getLoadedFonts: () => string[]; loadAsync: (fontFamilyAlias: string, asset: LoadAsyncAsset) => Promise; }; // RenderToImageResult needs to be usable as the `source` prop for image, // so it must stay compatible with ImageURISource type type RenderToImageResult = { /** * The file uri to the image. */ uri: string; /** * Image width in dp. */ width: number; /** * Image height in dp. */ height: number; /** * Scale factor of the image. Multiply the dp dimensions by this value to get the dimensions in pixels. * */ scale: number; }; type ExpoFontUtilsModule = { renderToImageAsync: ( glyph: string, options: { fontFamily?: string; size?: number; color?: number; }, ) => Promise; }; declare global { interface ExpoGlobal { modules: { ExpoAsset?: ExpoAssetModule; ExpoFontLoader?: ExpoFontLoaderModule; ExpoFontUtils?: ExpoFontUtilsModule; }; } // eslint-disable-next-line vars-on-top var expo: ExpoGlobal | undefined; } type ExpoGlobalType = { modules: { ExpoAsset: ExpoAssetModule; ExpoFontLoader: ExpoFontLoaderModule; }; }; // biome-ignore lint/suspicious/noExplicitAny: this is used internally with globalThis function getIsDynamicLoadingSupported(globalObj: any): globalObj is { expo: ExpoGlobalType; } { return ( globalObj?.expo && (Platform.OS === 'web' || typeof globalObj.expo.modules?.ExpoAsset?.downloadAsync === 'function') && typeof globalObj.expo.modules?.ExpoFontLoader?.getLoadedFonts === 'function' && typeof globalObj.expo.modules?.ExpoFontLoader?.loadAsync === 'function' ); } // biome-ignore lint/suspicious/noExplicitAny: this is used internally with globalThis export function getIsRenderToImageSupported(globalObj: any): globalObj is { expo: { modules: { ExpoFontUtils: ExpoFontUtilsModule; }; }; } { return globalObj?.expo && typeof globalObj.expo.modules?.ExpoFontUtils?.renderToImageAsync === 'function'; } export function assertExpoModulesPresent(globalObj: unknown): asserts globalObj is { expo: ExpoGlobalType } { if (!getIsDynamicLoadingSupported(globalObj)) { throw new Error('Dynamic font loading not supported. Upgrade to latest expo and expo-font.'); } } // Detection of Expo modules is deferred to first use so that import order // doesn't matter. By the time a component renders, all imports (including Expo) // have been evaluated and globalThis.expo is available. let dynamicFontLoadingOverride: boolean | null = null; export const isDynamicLoadingSupported = () => getIsDynamicLoadingSupported(globalThis); /** * Set whether dynamic loading of fonts is enabled. * Currently, the presence of Expo Asset and Font Loader modules is a prerequisite for enabling. * In the future, React Native core apis will be used for dynamic font loading. * * @param value - whether dynamic loading of fonts is enabled * @returns `true` if dynamic loading of fonts was successfully set. `false` otherwise. * */ export const setDynamicLoadingEnabled = (value: boolean): boolean => { if (!getIsDynamicLoadingSupported(globalThis)) { if (process.env.NODE_ENV !== 'production' && !!value) { const hasNecessaryExpoModules = (Platform.OS === 'web' || !!globalThis.expo?.modules?.ExpoAsset) && !!globalThis.expo?.modules?.ExpoFontLoader; const message = hasNecessaryExpoModules ? 'Expo is installed, but does not support dynamic font loading. Make sure to use Expo SDK 54 or newer.' : 'Necessary Expo modules not found. Dynamic font loading is not available when necessary Expo modules are not present.'; console.error(message); // eslint-disable-line no-console } return false; } dynamicFontLoadingOverride = !!value; return true; }; /** * Whether dynamic loading of fonts is enabled. * */ export const isDynamicLoadingEnabled = (): boolean => dynamicFontLoadingOverride ?? getIsDynamicLoadingSupported(globalThis); type ErrorCallback = (args: { error: Error; fontFamily: string; fontSource: FontSource }) => void; let dynamicLoadingErrorCallback: undefined | ErrorCallback; /** * Set a callback to be called when an error occurs during dynamic font loading. * */ export const setDynamicLoadingErrorCallback = (callback: ErrorCallback) => { dynamicLoadingErrorCallback = callback; }; export const getErrorCallback = () => dynamicLoadingErrorCallback; ================================================ FILE: packages/common/src/dynamicLoading/types.ts ================================================ // the result of calling require('path') type ModuleId = number; type LocalFileSystemUri = string; export type FontSource = ModuleId | LocalFileSystemUri; export type DynamicLoader = { loadFontAsync: (fontFamily: string, fontSource: FontSource) => Promise; isLoaded: (fontFamily: string) => boolean; }; ================================================ FILE: packages/common/src/get-image-library.ts ================================================ import { getIsRenderToImageSupported } from './dynamicLoading/dynamic-loading-setting'; // eslint-disable-next-line import/no-mutable-exports let NativeIconAPI: typeof import('@react-native-vector-icons/get-image') | null = null; try { // eslint-disable-next-line global-require,import/no-extraneous-dependencies,@typescript-eslint/no-require-imports NativeIconAPI = require('@react-native-vector-icons/get-image'); } catch { // if this fails, it's likely due to: // "Invariant Violation: TurboModuleRegistry.getEnforcing(...): 'VectorIcons' could not be found. ..." // No warning at this stage. } const globalRef = globalThis; const hasExpoRenderToImage = getIsRenderToImageSupported(globalRef); export const ensureGetImageAvailable = () => { if (NativeIconAPI) { NativeIconAPI.ensureNativeModuleAvailable(); return NativeIconAPI; } if (hasExpoRenderToImage) { const { ExpoFontUtils } = globalRef.expo.modules; return { getImageForFont: async (fontReference: string, glyph: string, size: number, color: number) => { const result = await ExpoFontUtils.renderToImageAsync(glyph, { fontFamily: fontReference, size, color, }); return result.uri; }, getImageForFontSync: () => { throw new Error( 'You attempted to call `getImageForFontSync`. Expo dev client with `@react-native-vector-icons/get-image` installed is required for this. Alternatively, call `getImageForFont` or generate the image yourself and bundle it with the app.', ); }, }; } throw new Error( 'Error in getImageSource / getImageSourceSync: You need to either (1) install `@react-native-vector-icons/get-image` or (2) use Expo SDK 54+ (Expo dev client or Expo Go). Check your setup and rebuild the app.', ); }; ================================================ FILE: packages/common/src/get-image-source.ts ================================================ import type { TextStyle } from 'react-native'; import { PixelRatio, processColor } from 'react-native'; import type { createIconSourceCache } from './create-icon-source-cache'; import { DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from './defaults'; import { ensureGetImageAvailable } from './get-image-library'; export const getImageSourceSync = ( imageSourceCache: ReturnType, fontReference: string, glyph: string, size = DEFAULT_ICON_SIZE, color: TextStyle['color'] = DEFAULT_ICON_COLOR, ) => { const NativeIconAPI = ensureGetImageAvailable(); const processedColor = processColor(color); const cacheKey = `${glyph}:${size}:${String(processedColor)}`; const maybeCachedValue = imageSourceCache.get(cacheKey); if (maybeCachedValue !== undefined) { return maybeCachedValue; } const imagePath = NativeIconAPI.getImageForFontSync( fontReference, glyph, size, processedColor as number, // FIXME what if a non existent colour was passed in?, ); const value = { uri: imagePath, scale: PixelRatio.get() }; imageSourceCache.setValue(cacheKey, value); return value; }; export const getImageSource = async ( imageSourceCache: ReturnType, fontReference: string, glyph: string, size = DEFAULT_ICON_SIZE, color: TextStyle['color'] = DEFAULT_ICON_COLOR, ) => { const NativeIconAPI = ensureGetImageAvailable(); const processedColor = processColor(color); const cacheKey = `${glyph}:${size}:${String(processedColor)}`; const maybeCachedValue = imageSourceCache.get(cacheKey); if (maybeCachedValue !== undefined) { return maybeCachedValue; } const imagePath = await NativeIconAPI.getImageForFont(fontReference, glyph, size, processedColor as number); const value = { uri: imagePath, scale: PixelRatio.get() }; imageSourceCache.setValue(cacheKey, value); return value; }; ================================================ FILE: packages/common/src/index.ts ================================================ export type { CreateIconSetOptions, IconComponent, IconProps } from './create-icon-set'; export { createIconSet } from './create-icon-set'; export { DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from './defaults'; export { isDynamicLoadingEnabled, isDynamicLoadingSupported, setDynamicLoadingEnabled, setDynamicLoadingErrorCallback, } from './dynamicLoading/dynamic-loading-setting'; ================================================ FILE: packages/common/src/scripts/common.ts ================================================ import fs from 'node:fs'; import path from 'node:path'; import { findUpSync } from 'find-up'; /** * Source vendored and simplified from @react-native-community/cli */ const resolveNodeModuleDir = (root: string, pkgName: string) => { const packageDir = findUpSync(path.join('node_modules', pkgName), { cwd: root, type: 'directory', }); return packageDir; }; const getPackageJson = (filename: string) => { const packageData = fs.readFileSync(filename, 'utf-8'); const packageJson = JSON.parse(packageData); return packageJson; }; const getPackageFontDirectories = (packageJsonFilename: string) => { const rootPackageJson = getPackageJson(packageJsonFilename); const dependencies = Object.keys(rootPackageJson.dependencies || {}); const packageDirs: string[] = []; dependencies.forEach((dependency) => { const dir = resolveNodeModuleDir(packageJsonFilename, dependency); const packageJson = getPackageJson(`${dir}/package.json`); if (packageJson.keywords?.includes?.('react-native-vector-icons-icon')) { packageDirs.push(`${dir}/fonts`); } }); return packageDirs; }; const getLocalFontsDir = (packageJsonFilename: string) => { const rootPackageJson = getPackageJson(packageJsonFilename); const config = rootPackageJson.reactNativeVectorIcons || {}; return `${path.dirname(packageJsonFilename)}/${config.fontDir || 'rnvi-fonts'}`; }; const getFonts = (fontDir: string) => { if (!fs.existsSync(fontDir)) { return []; } const fonts = fs.readdirSync(fontDir); const fontPaths = fonts.map((font) => `${fontDir}/${font}`); return fontPaths; }; export const getFontPaths = (packageJsonFilename: string) => { const packageDirs = getPackageFontDirectories(packageJsonFilename); packageDirs.push(getLocalFontsDir(packageJsonFilename)); const fonts = packageDirs.map(getFonts); return fonts.flat(); }; ================================================ FILE: packages/common/src/scripts/updatePlist.ts ================================================ #!/usr/bin/env node /* eslint-disable no-console */ import fs from 'node:fs'; import * as path from 'node:path'; import pc from 'picocolors'; import * as plist from 'plist'; import { getFontPaths } from './common'; const getFontName = (fontPath: string) => path.basename(fontPath); const packageJsonFilename = process.argv[2]; if (!packageJsonFilename) { throw new Error('Need the path to the root package.json as the first argument'); } const infoPlistFilename = process.argv[3]; if (!infoPlistFilename) { throw new Error('Need the path to the Info.plist as the second argument'); } const fonts = getFontPaths(packageJsonFilename); console.log(`Found ${fonts.length} fonts`); const infoPlistContent = fs.readFileSync(infoPlistFilename, 'utf8'); const infoPlist = plist.parse(infoPlistContent) as Record; const plistFonts = new Set(infoPlist.UIAppFonts || []); const providedFonts = new Set(fonts.map(getFontName)); let hasChanges = false; // Check for missing fonts and add them providedFonts.forEach((font) => { if (!plistFonts.has(font)) { plistFonts.add(font); console.log(pc.green(`Added ${font}`)); hasChanges = true; } else { console.log(`Existing ${font}`); } }); // Check for extra fonts in Info.plist plistFonts.forEach((font) => { if (!providedFonts.has(font)) { console.log(pc.yellow(`Extra ${font} (Please remove manually if not needed)`)); } }); // Update Info.plist if there were changes if (hasChanges) { infoPlist.UIAppFonts = Array.from(plistFonts); const updatedInfoPlistContent = plist.build(infoPlist).replace(/^ {2}/gm, '').replace(/ {2}/gm, '\t'); fs.writeFileSync(infoPlistFilename, updatedInfoPlistContent, 'utf8'); } ================================================ FILE: packages/common/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/common/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/directory/.gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies /node_modules /.pnp .pnp.js # testing /coverage # production /build # misc .DS_Store .env.local .env.development.local .env.test.local .env.production.local npm-debug.log* generated ================================================ FILE: packages/directory/CHANGELOG.md ================================================ ================================================ FILE: packages/directory/README.md ================================================ # Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `pnpm run start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in the browser. The page will reload if you make edits.\ You will also see any lint errors in the console. ### `pnpm run test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `pnpm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `pnpm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ================================================ FILE: packages/directory/bin/generate-font-styles.mts ================================================ #!/usr/bin/env -S node --experimental-strip-types --disable-warning=ExperimentalWarning import path from 'node:path'; import { globSync } from 'glob'; const customFontMap = { 'FontAwesome5_Solid.ttf': 'FontAwesome5', 'FontAwesome5_Brands.ttf': 'FontAwesome5Brands', 'FontAwesome6_Solid.ttf': 'FontAwesome6', 'FontAwesome6_Brands.ttf': 'FontAwesome6Brands', }; const fontFiles = globSync('src/generated/fonts/*.ttf'); const styles = fontFiles .map((file) => path.basename(file)) .map((file) => ({ file, fontFamily: customFontMap[file] || path.basename(file, '.ttf'), })) .map( ({ file, fontFamily }) => ` @font-face { font-family: '${fontFamily}'; src: url('./fonts/${file}') format('truetype'); } `, ) .join('\n'); process.stdout.write(styles); ================================================ FILE: packages/directory/bin/generate-glyphmap-index.mts ================================================ #!/usr/bin/env -S node --experimental-strip-types --disable-warning=ExperimentalWarning import path from 'node:path'; import { globSync } from 'glob'; const glyphMapFiles = globSync('../*/glyphmaps/*.json', { ignore: '../fontawesome[56]*/**' }); const fontAwesome5Glyphmap = ( await import(path.join(import.meta.dirname, '../../fontawesome5/glyphmaps/', 'FontAwesome5.json'), { with: { type: 'json' }, }) ).default; const fontAwesome5Meta = ( await import(path.join(import.meta.dirname, '../../fontawesome5/glyphmaps/', 'FontAwesome5_meta.json'), { with: { type: 'json' }, }) ).default; const fontAwesome6Glyphmap = ( await import(path.join(import.meta.dirname, '../../fontawesome6/glyphmaps/', 'FontAwesome6.json'), { with: { type: 'json' }, }) ).default; const fontAwesome6Meta = ( await import(path.join(import.meta.dirname, '../../fontawesome6/glyphmaps/', 'FontAwesome6_meta.json'), { with: { type: 'json' }, }) ).default; const pickGlyps = (glyps: string[], glyphmap: Record) => // eslint-disable-next-line implicit-arrow-linebreak glyps.reduce((acc, glyp) => { acc[glyp] = glyphmap[glyp]; return acc; }, {}); const index: Record = { FontAwesome5: pickGlyps(fontAwesome5Meta.solid, fontAwesome5Glyphmap), FontAwesome5Brands: pickGlyps(fontAwesome5Meta.brand, fontAwesome5Glyphmap), FontAwesome6: pickGlyps(fontAwesome6Meta.solid, fontAwesome6Glyphmap), FontAwesome6Brands: pickGlyps(fontAwesome6Meta.brand, fontAwesome6Glyphmap), }; // eslint-disable-next-line no-restricted-syntax for (const file of glyphMapFiles) { const name = path.basename(file, '.json'); // eslint-disable-next-line no-await-in-loop const jsonModule = await import(path.join(import.meta.dirname, '..', file), { with: { type: 'json' }, }); index[name] = jsonModule.default; } process.stdout.write(JSON.stringify(index, null, 2)); ================================================ FILE: packages/directory/package.json ================================================ { "name": "@react-native-vector-icons/directory", "version": "12.0.0-alpha.20", "private": true, "homepage": "https://oblador.github.io/react-native-vector-icons", "dependencies": { "@testing-library/dom": "^10.4.0", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.3.0", "@testing-library/user-event": "^13.5.0", "@types/jest": "^27.5.2", "@types/node": "^20.17.11", "@types/react": "^19.1.0", "@types/react-dom": "^19.1.0", "glob": "^11.0.0", "react": "^19.1.0", "react-dom": "^19.1.0", "react-scripts": "5.0.1", "typescript": "^5.7.2", "web-vitals": "^4.2.4" }, "scripts": { "start": "FAST_REFRESH=false react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject", "generate-glyphmap-index": "mkdir -p src/generated && bin/generate-glyphmap-index.mts > src/generated/glyphmapIndex.json", "generate-font-index": "mkdir -p src/generated/fonts && cp ../*/fonts/*.ttf src/generated/fonts && bin/generate-font-styles.mts > src/generated/fonts.css", "prepare": "rm -rf src/generated && pnpm run generate-glyphmap-index && pnpm run generate-font-index" }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } } ================================================ FILE: packages/directory/public/index.html ================================================ react-native-vector-icons directory
================================================ FILE: packages/directory/public/manifest.json ================================================ { "short_name": "Directory", "name": "React Native Vector Icons Directory", "icons": [ { "src": "favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" }, { "src": "logo192.png", "type": "image/png", "sizes": "192x192" }, { "src": "logo512.png", "type": "image/png", "sizes": "512x512" } ], "start_url": ".", "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" } ================================================ FILE: packages/directory/public/robots.txt ================================================ # https://www.robotstxt.org/robotstxt.html User-agent: * Disallow: ================================================ FILE: packages/directory/src/App.css ================================================ @import url(./generated/fonts.css); * { -webkit-box-sizing: border-box; box-sizing: border-box; } body { overflow-x: hidden; overflow-y: auto; } .App { width: 100%; } .Header-Container { padding: 20px 20px 0 20px; background-color: #23527c; color: #fff; } .Header-Content { max-width: 1200px; margin: 0 auto; } .Header-Title { margin: 0; font-size: 18px; font-weight: normal; } .Search-Container { padding: 20px; background-color: #23527c; color: #fff; } .Search-Content { max-width: 1200px; margin: 0 auto; } .Search-Form { display: flex; background-color: #fff; color: #333; border-radius: 3px; } .Search-Label { padding: 10px; border-right: 1px solid #eee; } .Search-Input { flex-grow: 1; padding: 10px; border: 0; border-radius: 0 3px 3px 0; font-size: inherit; } .Search-Input:focus { outline: none; } .Container { max-width: 1200px; margin: 0 auto; padding-top: 60px; } .Result-Row { margin-bottom: 60px; } .Result-Title { position: sticky; top: 0; z-index: 1; margin: 0; padding: 1em 20px; border-radius: 3px 3px 0 0; font-size: 200%; font-weight: normal; color: #fff; background-color: #f66; } .Result-Title > a, .Result-Title > a:link { color: #fff; } .Result-List { display: flex; flex-wrap: wrap; } .Result-Icon-Container { width: 50%; padding: 20px; text-align: center; outline: 1px solid #eee; background-color: #fff; } @media (min-width: 480px) { .Result-Icon-Container { width: 33%; } } @media (min-width: 600px) { .Result-Icon-Container { width: 25%; } } @media (min-width: 768px) { .Result-Icon-Container { width: 20%; } } @media (min-width: 992px) { .Result-Icon-Container { width: 14.27%; } } .Result-Icon { font-size: 35px; } .Result-Icon-Name { font-size: 14px; font-weight: normal; opacity: 0.8; margin: 10px 0 0 0; } .Family-Links-Container { padding: 10px 20px 20px 20px; background-color: #23527c; } .Family-Links-Content { max-width: 1200px; margin: 0 auto; } .Family-Links-Title { color: #fff; font-size: 18px; margin-top: 0; } .Family-Links-Link, .Family-Links-Link:link { color: #fff; font-size: 16px; } .Family-Links-List { display: flex; flex-wrap: wrap; gap: 0.5rem; } ================================================ FILE: packages/directory/src/App.test.tsx ================================================ import { render, screen } from '@testing-library/react'; import App from './App'; test('renders directory link', () => { render(); const linkElement = screen.getByText(/react-native-vector-icons directory/i); expect(linkElement).toBeInTheDocument(); }); ================================================ FILE: packages/directory/src/App.tsx ================================================ import { type ChangeEvent, type FormEvent, type HTMLProps, memo, useCallback, useLayoutEffect, useRef, useState, } from 'react'; import './App.css'; import IconFamilies from './generated/glyphmapIndex.json'; // eslint-disable-line import/no-unresolved const WAITING_INTERVAL = 300; type Match = { family: string; names: string[] }; const Icon = memo(function Icon({ family, name, ...props }: { family: string; name: string } & HTMLProps) { return ( {String.fromCodePoint( IconFamilies[family as keyof typeof IconFamilies][ name as keyof (typeof IconFamilies)[keyof typeof IconFamilies] ], )} ); }); const FamiliesLinks = ({ matches = [] }: { matches: Match[] }) => (

Icon Families:

{matches.map((match) => { const { family } = match; return ( {family} ); })}
); const HeaderBar = () => (

react-native-vector-icons directory

); const SearchBar = ({ onSubmit }: { onSubmit: (text?: string) => void }) => { const inputRef = useRef(null); const timerRef = useRef | null>(null); const handleSubmit = useCallback( (e: FormEvent) => { e.preventDefault(); if (inputRef.current?.value) { onSubmit(inputRef.current.value); } }, [onSubmit], ); const handleChange = useCallback( (e: ChangeEvent) => { e.preventDefault(); if (timerRef.current) { clearInterval(timerRef.current); } timerRef.current = setTimeout(() => onSubmit(inputRef.current?.value), WAITING_INTERVAL); }, [onSubmit], ); return (
{/* Clicking the Label focuses the cursor onto the form input */} {/* eslint-disable-next-line jsx-a11y/label-has-associated-control */}
); }; const renderIcon = (family: string, name: string) => (

{name}

); const renderMatch = ({ family, names }: Match) => (

{family}

{names.map((name) => renderIcon(family, name))}
); const renderNotFound = () => (

Icon not found.

); const getMatches = (query: string) => Object.keys(IconFamilies) .sort() .map((family) => { const icons = IconFamilies[family as keyof typeof IconFamilies]; const names = Object.keys(icons); const results = names.filter((name) => name.indexOf(query) >= 0); return { family, names: results }; }) .filter(({ names }) => names.length); const App = () => { const [matches, setMatches] = useState([]); const handleSubmit = useCallback((text = '') => { setMatches(getMatches(text)); }, []); useLayoutEffect(() => handleSubmit(''), [handleSubmit]); return (
{matches.length === 0 ? renderNotFound() : matches.map(renderMatch)}
); }; export default App; ================================================ FILE: packages/directory/src/index.css ================================================ body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } code { font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; } ================================================ FILE: packages/directory/src/index.tsx ================================================ import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; import reportWebVitals from './reportWebVitals'; import './index.css'; const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement); root.render( , ); // If you want to start measuring performance in your app, pass a function // to log results (for example: reportWebVitals(console.log)) // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals reportWebVitals(); ================================================ FILE: packages/directory/src/react-app-env.d.ts ================================================ /// ================================================ FILE: packages/directory/src/reportWebVitals.ts ================================================ import type { MetricType } from 'web-vitals'; const reportWebVitals = (onPerfEntry?: (metric: MetricType) => void) => { if (onPerfEntry && onPerfEntry instanceof Function) { import('web-vitals').then(({ onCLS, onINP, onFCP, onLCP, onTTFB }) => { onCLS(onPerfEntry); onINP(onPerfEntry); onFCP(onPerfEntry); onLCP(onPerfEntry); onTTFB(onPerfEntry); }); } }; export default reportWebVitals; ================================================ FILE: packages/directory/src/setupTests.js ================================================ // jest-dom adds custom jest matchers for asserting on DOM nodes. // allows you to do things like: // expect(element).toHaveTextContent(/react/i) // learn more: https://github.com/testing-library/jest-dom import '@testing-library/jest-dom'; ================================================ FILE: packages/directory/tsconfig.json ================================================ { "compilerOptions": { "target": "es5", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, "module": "esnext", "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "jsx": "react-jsx" }, "include": ["src"] } ================================================ FILE: packages/entypo/.fontcustom-manifest.json ================================================ { "checksum": { "previous": "dd613052d4c6a03cd2d91507156628cd6c0c4fb1c5a820ff7c6958c0fabdcef0", "current": "dd613052d4c6a03cd2d91507156628cd6c0c4fb1c5a820ff7c6958c0fabdcef0" }, "fonts": [ "Entypo/Entypo.ttf", "Entypo/Entypo.svg", "Entypo/Entypo.woff", "Entypo/Entypo.eot", "Entypo/Entypo.woff2" ], "glyphs": { "500px": { "codepoint": 61696, "source": "node_modules/@entypo-icons/core/icons/500px.svg" }, "500px-with-circle": { "codepoint": 61697, "source": "node_modules/@entypo-icons/core/icons/500px-with-circle.svg" }, "add-to-list": { "codepoint": 61698, "source": "node_modules/@entypo-icons/core/icons/add-to-list.svg" }, "add-user": { "codepoint": 61699, "source": "node_modules/@entypo-icons/core/icons/add-user.svg" }, "address": { "codepoint": 61700, "source": "node_modules/@entypo-icons/core/icons/address.svg" }, "adjust": { "codepoint": 61701, "source": "node_modules/@entypo-icons/core/icons/adjust.svg" }, "air": { "codepoint": 61702, "source": "node_modules/@entypo-icons/core/icons/air.svg" }, "aircraft": { "codepoint": 61703, "source": "node_modules/@entypo-icons/core/icons/aircraft.svg" }, "aircraft-landing": { "codepoint": 61704, "source": "node_modules/@entypo-icons/core/icons/aircraft-landing.svg" }, "aircraft-take-off": { "codepoint": 61705, "source": "node_modules/@entypo-icons/core/icons/aircraft-take-off.svg" }, "align-bottom": { "codepoint": 61706, "source": "node_modules/@entypo-icons/core/icons/align-bottom.svg" }, "align-horizontal-middle": { "codepoint": 61707, "source": "node_modules/@entypo-icons/core/icons/align-horizontal-middle.svg" }, "align-left": { "codepoint": 61708, "source": "node_modules/@entypo-icons/core/icons/align-left.svg" }, "align-right": { "codepoint": 61709, "source": "node_modules/@entypo-icons/core/icons/align-right.svg" }, "align-top": { "codepoint": 61710, "source": "node_modules/@entypo-icons/core/icons/align-top.svg" }, "align-vertical-middle": { "codepoint": 61711, "source": "node_modules/@entypo-icons/core/icons/align-vertical-middle.svg" }, "app-store": { "codepoint": 61712, "source": "node_modules/@entypo-icons/core/icons/app-store.svg" }, "archive": { "codepoint": 61713, "source": "node_modules/@entypo-icons/core/icons/archive.svg" }, "area-graph": { "codepoint": 61714, "source": "node_modules/@entypo-icons/core/icons/area-graph.svg" }, "arrow-bold-down": { "codepoint": 61715, "source": "node_modules/@entypo-icons/core/icons/arrow-bold-down.svg" }, "arrow-bold-left": { "codepoint": 61716, "source": "node_modules/@entypo-icons/core/icons/arrow-bold-left.svg" }, "arrow-bold-right": { "codepoint": 61717, "source": "node_modules/@entypo-icons/core/icons/arrow-bold-right.svg" }, "arrow-bold-up": { "codepoint": 61718, "source": "node_modules/@entypo-icons/core/icons/arrow-bold-up.svg" }, "arrow-down": { "codepoint": 61719, "source": "node_modules/@entypo-icons/core/icons/arrow-down.svg" }, "arrow-left": { "codepoint": 61720, "source": "node_modules/@entypo-icons/core/icons/arrow-left.svg" }, "arrow-long-down": { "codepoint": 61721, "source": "node_modules/@entypo-icons/core/icons/arrow-long-down.svg" }, "arrow-long-left": { "codepoint": 61722, "source": "node_modules/@entypo-icons/core/icons/arrow-long-left.svg" }, "arrow-long-right": { "codepoint": 61723, "source": "node_modules/@entypo-icons/core/icons/arrow-long-right.svg" }, "arrow-long-up": { "codepoint": 61724, "source": "node_modules/@entypo-icons/core/icons/arrow-long-up.svg" }, "arrow-right": { "codepoint": 61725, "source": "node_modules/@entypo-icons/core/icons/arrow-right.svg" }, "arrow-up": { "codepoint": 61726, "source": "node_modules/@entypo-icons/core/icons/arrow-up.svg" }, "arrow-with-circle-down": { "codepoint": 61727, "source": "node_modules/@entypo-icons/core/icons/arrow-with-circle-down.svg" }, "arrow-with-circle-left": { "codepoint": 61728, "source": "node_modules/@entypo-icons/core/icons/arrow-with-circle-left.svg" }, "arrow-with-circle-right": { "codepoint": 61729, "source": "node_modules/@entypo-icons/core/icons/arrow-with-circle-right.svg" }, "arrow-with-circle-up": { "codepoint": 61730, "source": "node_modules/@entypo-icons/core/icons/arrow-with-circle-up.svg" }, "attachment": { "codepoint": 61731, "source": "node_modules/@entypo-icons/core/icons/attachment.svg" }, "awareness-ribbon": { "codepoint": 61732, "source": "node_modules/@entypo-icons/core/icons/awareness-ribbon.svg" }, "back": { "codepoint": 61733, "source": "node_modules/@entypo-icons/core/icons/back.svg" }, "back-in-time": { "codepoint": 61734, "source": "node_modules/@entypo-icons/core/icons/back-in-time.svg" }, "baidu": { "codepoint": 61735, "source": "node_modules/@entypo-icons/core/icons/baidu.svg" }, "bar-graph": { "codepoint": 61736, "source": "node_modules/@entypo-icons/core/icons/bar-graph.svg" }, "basecamp": { "codepoint": 61737, "source": "node_modules/@entypo-icons/core/icons/basecamp.svg" }, "battery": { "codepoint": 61738, "source": "node_modules/@entypo-icons/core/icons/battery.svg" }, "beamed-note": { "codepoint": 61739, "source": "node_modules/@entypo-icons/core/icons/beamed-note.svg" }, "behance": { "codepoint": 61740, "source": "node_modules/@entypo-icons/core/icons/behance.svg" }, "bell": { "codepoint": 61741, "source": "node_modules/@entypo-icons/core/icons/bell.svg" }, "blackboard": { "codepoint": 61742, "source": "node_modules/@entypo-icons/core/icons/blackboard.svg" }, "block": { "codepoint": 61743, "source": "node_modules/@entypo-icons/core/icons/block.svg" }, "book": { "codepoint": 61744, "source": "node_modules/@entypo-icons/core/icons/book.svg" }, "bookmark": { "codepoint": 61745, "source": "node_modules/@entypo-icons/core/icons/bookmark.svg" }, "bookmarks": { "codepoint": 61746, "source": "node_modules/@entypo-icons/core/icons/bookmarks.svg" }, "bowl": { "codepoint": 61747, "source": "node_modules/@entypo-icons/core/icons/bowl.svg" }, "box": { "codepoint": 61748, "source": "node_modules/@entypo-icons/core/icons/box.svg" }, "briefcase": { "codepoint": 61749, "source": "node_modules/@entypo-icons/core/icons/briefcase.svg" }, "browser": { "codepoint": 61750, "source": "node_modules/@entypo-icons/core/icons/browser.svg" }, "brush": { "codepoint": 61751, "source": "node_modules/@entypo-icons/core/icons/brush.svg" }, "bucket": { "codepoint": 61752, "source": "node_modules/@entypo-icons/core/icons/bucket.svg" }, "bug": { "codepoint": 61753, "source": "node_modules/@entypo-icons/core/icons/bug.svg" }, "cake": { "codepoint": 61754, "source": "node_modules/@entypo-icons/core/icons/cake.svg" }, "calculator": { "codepoint": 61755, "source": "node_modules/@entypo-icons/core/icons/calculator.svg" }, "calendar": { "codepoint": 61756, "source": "node_modules/@entypo-icons/core/icons/calendar.svg" }, "camera": { "codepoint": 61757, "source": "node_modules/@entypo-icons/core/icons/camera.svg" }, "ccw": { "codepoint": 61758, "source": "node_modules/@entypo-icons/core/icons/ccw.svg" }, "chat": { "codepoint": 61759, "source": "node_modules/@entypo-icons/core/icons/chat.svg" }, "check": { "codepoint": 61760, "source": "node_modules/@entypo-icons/core/icons/check.svg" }, "chevron-down": { "codepoint": 61761, "source": "node_modules/@entypo-icons/core/icons/chevron-down.svg" }, "chevron-left": { "codepoint": 61762, "source": "node_modules/@entypo-icons/core/icons/chevron-left.svg" }, "chevron-right": { "codepoint": 61763, "source": "node_modules/@entypo-icons/core/icons/chevron-right.svg" }, "chevron-small-down": { "codepoint": 61764, "source": "node_modules/@entypo-icons/core/icons/chevron-small-down.svg" }, "chevron-small-left": { "codepoint": 61765, "source": "node_modules/@entypo-icons/core/icons/chevron-small-left.svg" }, "chevron-small-right": { "codepoint": 61766, "source": "node_modules/@entypo-icons/core/icons/chevron-small-right.svg" }, "chevron-small-up": { "codepoint": 61767, "source": "node_modules/@entypo-icons/core/icons/chevron-small-up.svg" }, "chevron-thin-down": { "codepoint": 61768, "source": "node_modules/@entypo-icons/core/icons/chevron-thin-down.svg" }, "chevron-thin-left": { "codepoint": 61769, "source": "node_modules/@entypo-icons/core/icons/chevron-thin-left.svg" }, "chevron-thin-right": { "codepoint": 61770, "source": "node_modules/@entypo-icons/core/icons/chevron-thin-right.svg" }, "chevron-thin-up": { "codepoint": 61771, "source": "node_modules/@entypo-icons/core/icons/chevron-thin-up.svg" }, "chevron-up": { "codepoint": 61772, "source": "node_modules/@entypo-icons/core/icons/chevron-up.svg" }, "chevron-with-circle-down": { "codepoint": 61773, "source": "node_modules/@entypo-icons/core/icons/chevron-with-circle-down.svg" }, "chevron-with-circle-left": { "codepoint": 61774, "source": "node_modules/@entypo-icons/core/icons/chevron-with-circle-left.svg" }, "chevron-with-circle-right": { "codepoint": 61775, "source": "node_modules/@entypo-icons/core/icons/chevron-with-circle-right.svg" }, "chevron-with-circle-up": { "codepoint": 61776, "source": "node_modules/@entypo-icons/core/icons/chevron-with-circle-up.svg" }, "circle": { "codepoint": 61777, "source": "node_modules/@entypo-icons/core/icons/circle.svg" }, "circle-with-cross": { "codepoint": 61778, "source": "node_modules/@entypo-icons/core/icons/circle-with-cross.svg" }, "circle-with-minus": { "codepoint": 61779, "source": "node_modules/@entypo-icons/core/icons/circle-with-minus.svg" }, "circle-with-plus": { "codepoint": 61780, "source": "node_modules/@entypo-icons/core/icons/circle-with-plus.svg" }, "circular-graph": { "codepoint": 61781, "source": "node_modules/@entypo-icons/core/icons/circular-graph.svg" }, "clapperboard": { "codepoint": 61782, "source": "node_modules/@entypo-icons/core/icons/clapperboard.svg" }, "classic-computer": { "codepoint": 61783, "source": "node_modules/@entypo-icons/core/icons/classic-computer.svg" }, "clipboard": { "codepoint": 61784, "source": "node_modules/@entypo-icons/core/icons/clipboard.svg" }, "clock": { "codepoint": 61785, "source": "node_modules/@entypo-icons/core/icons/clock.svg" }, "cloud": { "codepoint": 61786, "source": "node_modules/@entypo-icons/core/icons/cloud.svg" }, "code": { "codepoint": 61787, "source": "node_modules/@entypo-icons/core/icons/code.svg" }, "cog": { "codepoint": 61788, "source": "node_modules/@entypo-icons/core/icons/cog.svg" }, "colours": { "codepoint": 61789, "source": "node_modules/@entypo-icons/core/icons/colours.svg" }, "compass": { "codepoint": 61790, "source": "node_modules/@entypo-icons/core/icons/compass.svg" }, "controller-fast-backward": { "codepoint": 61791, "source": "node_modules/@entypo-icons/core/icons/controller-fast-backward.svg" }, "controller-fast-forward": { "codepoint": 61792, "source": "node_modules/@entypo-icons/core/icons/controller-fast-forward.svg" }, "controller-jump-to-start": { "codepoint": 61793, "source": "node_modules/@entypo-icons/core/icons/controller-jump-to-start.svg" }, "controller-next": { "codepoint": 61794, "source": "node_modules/@entypo-icons/core/icons/controller-next.svg" }, "controller-paus": { "codepoint": 61795, "source": "node_modules/@entypo-icons/core/icons/controller-paus.svg" }, "controller-play": { "codepoint": 61796, "source": "node_modules/@entypo-icons/core/icons/controller-play.svg" }, "controller-record": { "codepoint": 61797, "source": "node_modules/@entypo-icons/core/icons/controller-record.svg" }, "controller-stop": { "codepoint": 61798, "source": "node_modules/@entypo-icons/core/icons/controller-stop.svg" }, "controller-volume": { "codepoint": 61799, "source": "node_modules/@entypo-icons/core/icons/controller-volume.svg" }, "copy": { "codepoint": 61800, "source": "node_modules/@entypo-icons/core/icons/copy.svg" }, "creative-cloud": { "codepoint": 61801, "source": "node_modules/@entypo-icons/core/icons/creative-cloud.svg" }, "creative-commons": { "codepoint": 61802, "source": "node_modules/@entypo-icons/core/icons/creative-commons.svg" }, "creative-commons-attribution": { "codepoint": 61803, "source": "node_modules/@entypo-icons/core/icons/creative-commons-attribution.svg" }, "creative-commons-noderivs": { "codepoint": 61804, "source": "node_modules/@entypo-icons/core/icons/creative-commons-noderivs.svg" }, "creative-commons-noncommercial-eu": { "codepoint": 61805, "source": "node_modules/@entypo-icons/core/icons/creative-commons-noncommercial-eu.svg" }, "creative-commons-noncommercial-us": { "codepoint": 61806, "source": "node_modules/@entypo-icons/core/icons/creative-commons-noncommercial-us.svg" }, "creative-commons-public-domain": { "codepoint": 61807, "source": "node_modules/@entypo-icons/core/icons/creative-commons-public-domain.svg" }, "creative-commons-remix": { "codepoint": 61808, "source": "node_modules/@entypo-icons/core/icons/creative-commons-remix.svg" }, "creative-commons-share": { "codepoint": 61809, "source": "node_modules/@entypo-icons/core/icons/creative-commons-share.svg" }, "creative-commons-sharealike": { "codepoint": 61810, "source": "node_modules/@entypo-icons/core/icons/creative-commons-sharealike.svg" }, "credit": { "codepoint": 61811, "source": "node_modules/@entypo-icons/core/icons/credit.svg" }, "credit-card": { "codepoint": 61812, "source": "node_modules/@entypo-icons/core/icons/credit-card.svg" }, "crop": { "codepoint": 61813, "source": "node_modules/@entypo-icons/core/icons/crop.svg" }, "cross": { "codepoint": 61814, "source": "node_modules/@entypo-icons/core/icons/cross.svg" }, "cup": { "codepoint": 61815, "source": "node_modules/@entypo-icons/core/icons/cup.svg" }, "cw": { "codepoint": 61816, "source": "node_modules/@entypo-icons/core/icons/cw.svg" }, "cycle": { "codepoint": 61817, "source": "node_modules/@entypo-icons/core/icons/cycle.svg" }, "database": { "codepoint": 61818, "source": "node_modules/@entypo-icons/core/icons/database.svg" }, "dial-pad": { "codepoint": 61819, "source": "node_modules/@entypo-icons/core/icons/dial-pad.svg" }, "direction": { "codepoint": 61820, "source": "node_modules/@entypo-icons/core/icons/direction.svg" }, "document": { "codepoint": 61821, "source": "node_modules/@entypo-icons/core/icons/document.svg" }, "document-landscape": { "codepoint": 61822, "source": "node_modules/@entypo-icons/core/icons/document-landscape.svg" }, "documents": { "codepoint": 61823, "source": "node_modules/@entypo-icons/core/icons/documents.svg" }, "dot-single": { "codepoint": 61824, "source": "node_modules/@entypo-icons/core/icons/dot-single.svg" }, "dots-three-horizontal": { "codepoint": 61825, "source": "node_modules/@entypo-icons/core/icons/dots-three-horizontal.svg" }, "dots-three-vertical": { "codepoint": 61826, "source": "node_modules/@entypo-icons/core/icons/dots-three-vertical.svg" }, "dots-two-horizontal": { "codepoint": 61827, "source": "node_modules/@entypo-icons/core/icons/dots-two-horizontal.svg" }, "dots-two-vertical": { "codepoint": 61828, "source": "node_modules/@entypo-icons/core/icons/dots-two-vertical.svg" }, "download": { "codepoint": 61829, "source": "node_modules/@entypo-icons/core/icons/download.svg" }, "dribbble": { "codepoint": 61830, "source": "node_modules/@entypo-icons/core/icons/dribbble.svg" }, "dribbble-with-circle": { "codepoint": 61831, "source": "node_modules/@entypo-icons/core/icons/dribbble-with-circle.svg" }, "drink": { "codepoint": 61832, "source": "node_modules/@entypo-icons/core/icons/drink.svg" }, "drive": { "codepoint": 61833, "source": "node_modules/@entypo-icons/core/icons/drive.svg" }, "drop": { "codepoint": 61834, "source": "node_modules/@entypo-icons/core/icons/drop.svg" }, "dropbox": { "codepoint": 61835, "source": "node_modules/@entypo-icons/core/icons/dropbox.svg" }, "edit": { "codepoint": 61836, "source": "node_modules/@entypo-icons/core/icons/edit.svg" }, "email": { "codepoint": 61837, "source": "node_modules/@entypo-icons/core/icons/email.svg" }, "emoji-flirt": { "codepoint": 61838, "source": "node_modules/@entypo-icons/core/icons/emoji-flirt.svg" }, "emoji-happy": { "codepoint": 61839, "source": "node_modules/@entypo-icons/core/icons/emoji-happy.svg" }, "emoji-neutral": { "codepoint": 61840, "source": "node_modules/@entypo-icons/core/icons/emoji-neutral.svg" }, "emoji-sad": { "codepoint": 61841, "source": "node_modules/@entypo-icons/core/icons/emoji-sad.svg" }, "erase": { "codepoint": 61842, "source": "node_modules/@entypo-icons/core/icons/erase.svg" }, "eraser": { "codepoint": 61843, "source": "node_modules/@entypo-icons/core/icons/eraser.svg" }, "evernote": { "codepoint": 61844, "source": "node_modules/@entypo-icons/core/icons/evernote.svg" }, "export": { "codepoint": 61845, "source": "node_modules/@entypo-icons/core/icons/export.svg" }, "eye": { "codepoint": 61846, "source": "node_modules/@entypo-icons/core/icons/eye.svg" }, "eye-with-line": { "codepoint": 61847, "source": "node_modules/@entypo-icons/core/icons/eye-with-line.svg" }, "facebook": { "codepoint": 61848, "source": "node_modules/@entypo-icons/core/icons/facebook.svg" }, "facebook-with-circle": { "codepoint": 61849, "source": "node_modules/@entypo-icons/core/icons/facebook-with-circle.svg" }, "feather": { "codepoint": 61850, "source": "node_modules/@entypo-icons/core/icons/feather.svg" }, "fingerprint": { "codepoint": 61851, "source": "node_modules/@entypo-icons/core/icons/fingerprint.svg" }, "flag": { "codepoint": 61852, "source": "node_modules/@entypo-icons/core/icons/flag.svg" }, "flash": { "codepoint": 61853, "source": "node_modules/@entypo-icons/core/icons/flash.svg" }, "flashlight": { "codepoint": 61854, "source": "node_modules/@entypo-icons/core/icons/flashlight.svg" }, "flat-brush": { "codepoint": 61855, "source": "node_modules/@entypo-icons/core/icons/flat-brush.svg" }, "flattr": { "codepoint": 61856, "source": "node_modules/@entypo-icons/core/icons/flattr.svg" }, "flickr": { "codepoint": 61857, "source": "node_modules/@entypo-icons/core/icons/flickr.svg" }, "flickr-with-circle": { "codepoint": 61858, "source": "node_modules/@entypo-icons/core/icons/flickr-with-circle.svg" }, "flow-branch": { "codepoint": 61859, "source": "node_modules/@entypo-icons/core/icons/flow-branch.svg" }, "flow-cascade": { "codepoint": 61860, "source": "node_modules/@entypo-icons/core/icons/flow-cascade.svg" }, "flow-line": { "codepoint": 61861, "source": "node_modules/@entypo-icons/core/icons/flow-line.svg" }, "flow-parallel": { "codepoint": 61862, "source": "node_modules/@entypo-icons/core/icons/flow-parallel.svg" }, "flow-tree": { "codepoint": 61863, "source": "node_modules/@entypo-icons/core/icons/flow-tree.svg" }, "flower": { "codepoint": 61864, "source": "node_modules/@entypo-icons/core/icons/flower.svg" }, "folder": { "codepoint": 61865, "source": "node_modules/@entypo-icons/core/icons/folder.svg" }, "folder-images": { "codepoint": 61866, "source": "node_modules/@entypo-icons/core/icons/folder-images.svg" }, "folder-music": { "codepoint": 61867, "source": "node_modules/@entypo-icons/core/icons/folder-music.svg" }, "folder-video": { "codepoint": 61868, "source": "node_modules/@entypo-icons/core/icons/folder-video.svg" }, "forward": { "codepoint": 61869, "source": "node_modules/@entypo-icons/core/icons/forward.svg" }, "foursquare": { "codepoint": 61870, "source": "node_modules/@entypo-icons/core/icons/foursquare.svg" }, "funnel": { "codepoint": 61871, "source": "node_modules/@entypo-icons/core/icons/funnel.svg" }, "game-controller": { "codepoint": 61872, "source": "node_modules/@entypo-icons/core/icons/game-controller.svg" }, "gauge": { "codepoint": 61873, "source": "node_modules/@entypo-icons/core/icons/gauge.svg" }, "github": { "codepoint": 61874, "source": "node_modules/@entypo-icons/core/icons/github.svg" }, "github-with-circle": { "codepoint": 61875, "source": "node_modules/@entypo-icons/core/icons/github-with-circle.svg" }, "globe": { "codepoint": 61876, "source": "node_modules/@entypo-icons/core/icons/globe.svg" }, "google-": { "codepoint": 61877, "source": "node_modules/@entypo-icons/core/icons/google+.svg" }, "google--with-circle": { "codepoint": 61878, "source": "node_modules/@entypo-icons/core/icons/google+-with-circle.svg" }, "google-drive": { "codepoint": 61879, "source": "node_modules/@entypo-icons/core/icons/google-drive.svg" }, "google-hangouts": { "codepoint": 61880, "source": "node_modules/@entypo-icons/core/icons/google-hangouts.svg" }, "google-play": { "codepoint": 61881, "source": "node_modules/@entypo-icons/core/icons/google-play.svg" }, "graduation-cap": { "codepoint": 61882, "source": "node_modules/@entypo-icons/core/icons/graduation-cap.svg" }, "grid": { "codepoint": 61883, "source": "node_modules/@entypo-icons/core/icons/grid.svg" }, "grooveshark": { "codepoint": 61884, "source": "node_modules/@entypo-icons/core/icons/grooveshark.svg" }, "hair-cross": { "codepoint": 61885, "source": "node_modules/@entypo-icons/core/icons/hair-cross.svg" }, "hand": { "codepoint": 61886, "source": "node_modules/@entypo-icons/core/icons/hand.svg" }, "heart": { "codepoint": 61887, "source": "node_modules/@entypo-icons/core/icons/heart.svg" }, "heart-outlined": { "codepoint": 61888, "source": "node_modules/@entypo-icons/core/icons/heart-outlined.svg" }, "help": { "codepoint": 61889, "source": "node_modules/@entypo-icons/core/icons/help.svg" }, "help-with-circle": { "codepoint": 61890, "source": "node_modules/@entypo-icons/core/icons/help-with-circle.svg" }, "home": { "codepoint": 61891, "source": "node_modules/@entypo-icons/core/icons/home.svg" }, "hour-glass": { "codepoint": 61892, "source": "node_modules/@entypo-icons/core/icons/hour-glass.svg" }, "houzz": { "codepoint": 61893, "source": "node_modules/@entypo-icons/core/icons/houzz.svg" }, "icloud": { "codepoint": 61894, "source": "node_modules/@entypo-icons/core/icons/icloud.svg" }, "image": { "codepoint": 61895, "source": "node_modules/@entypo-icons/core/icons/image.svg" }, "image-inverted": { "codepoint": 61896, "source": "node_modules/@entypo-icons/core/icons/image-inverted.svg" }, "images": { "codepoint": 61897, "source": "node_modules/@entypo-icons/core/icons/images.svg" }, "inbox": { "codepoint": 61898, "source": "node_modules/@entypo-icons/core/icons/inbox.svg" }, "infinity": { "codepoint": 61899, "source": "node_modules/@entypo-icons/core/icons/infinity.svg" }, "info": { "codepoint": 61900, "source": "node_modules/@entypo-icons/core/icons/info.svg" }, "info-with-circle": { "codepoint": 61901, "source": "node_modules/@entypo-icons/core/icons/info-with-circle.svg" }, "instagram": { "codepoint": 61902, "source": "node_modules/@entypo-icons/core/icons/instagram.svg" }, "instagram-with-circle": { "codepoint": 61903, "source": "node_modules/@entypo-icons/core/icons/instagram-with-circle.svg" }, "install": { "codepoint": 61904, "source": "node_modules/@entypo-icons/core/icons/install.svg" }, "key": { "codepoint": 61905, "source": "node_modules/@entypo-icons/core/icons/key.svg" }, "keyboard": { "codepoint": 61906, "source": "node_modules/@entypo-icons/core/icons/keyboard.svg" }, "lab-flask": { "codepoint": 61907, "source": "node_modules/@entypo-icons/core/icons/lab-flask.svg" }, "landline": { "codepoint": 61908, "source": "node_modules/@entypo-icons/core/icons/landline.svg" }, "language": { "codepoint": 61909, "source": "node_modules/@entypo-icons/core/icons/language.svg" }, "laptop": { "codepoint": 61910, "source": "node_modules/@entypo-icons/core/icons/laptop.svg" }, "lastfm": { "codepoint": 61911, "source": "node_modules/@entypo-icons/core/icons/lastfm.svg" }, "lastfm-with-circle": { "codepoint": 61912, "source": "node_modules/@entypo-icons/core/icons/lastfm-with-circle.svg" }, "layers": { "codepoint": 61913, "source": "node_modules/@entypo-icons/core/icons/layers.svg" }, "leaf": { "codepoint": 61914, "source": "node_modules/@entypo-icons/core/icons/leaf.svg" }, "level-down": { "codepoint": 61915, "source": "node_modules/@entypo-icons/core/icons/level-down.svg" }, "level-up": { "codepoint": 61916, "source": "node_modules/@entypo-icons/core/icons/level-up.svg" }, "lifebuoy": { "codepoint": 61917, "source": "node_modules/@entypo-icons/core/icons/lifebuoy.svg" }, "light-bulb": { "codepoint": 61918, "source": "node_modules/@entypo-icons/core/icons/light-bulb.svg" }, "light-down": { "codepoint": 61919, "source": "node_modules/@entypo-icons/core/icons/light-down.svg" }, "light-up": { "codepoint": 61920, "source": "node_modules/@entypo-icons/core/icons/light-up.svg" }, "line-graph": { "codepoint": 61921, "source": "node_modules/@entypo-icons/core/icons/line-graph.svg" }, "link": { "codepoint": 61922, "source": "node_modules/@entypo-icons/core/icons/link.svg" }, "linkedin": { "codepoint": 61923, "source": "node_modules/@entypo-icons/core/icons/linkedin.svg" }, "linkedin-with-circle": { "codepoint": 61924, "source": "node_modules/@entypo-icons/core/icons/linkedin-with-circle.svg" }, "list": { "codepoint": 61925, "source": "node_modules/@entypo-icons/core/icons/list.svg" }, "location": { "codepoint": 61926, "source": "node_modules/@entypo-icons/core/icons/location.svg" }, "location-pin": { "codepoint": 61927, "source": "node_modules/@entypo-icons/core/icons/location-pin.svg" }, "lock": { "codepoint": 61928, "source": "node_modules/@entypo-icons/core/icons/lock.svg" }, "lock-open": { "codepoint": 61929, "source": "node_modules/@entypo-icons/core/icons/lock-open.svg" }, "log-out": { "codepoint": 61930, "source": "node_modules/@entypo-icons/core/icons/log-out.svg" }, "login": { "codepoint": 61931, "source": "node_modules/@entypo-icons/core/icons/login.svg" }, "loop": { "codepoint": 61932, "source": "node_modules/@entypo-icons/core/icons/loop.svg" }, "magnet": { "codepoint": 61933, "source": "node_modules/@entypo-icons/core/icons/magnet.svg" }, "magnifying-glass": { "codepoint": 61934, "source": "node_modules/@entypo-icons/core/icons/magnifying-glass.svg" }, "mail": { "codepoint": 61935, "source": "node_modules/@entypo-icons/core/icons/mail.svg" }, "mail-with-circle": { "codepoint": 61936, "source": "node_modules/@entypo-icons/core/icons/mail-with-circle.svg" }, "man": { "codepoint": 61937, "source": "node_modules/@entypo-icons/core/icons/man.svg" }, "map": { "codepoint": 61938, "source": "node_modules/@entypo-icons/core/icons/map.svg" }, "mask": { "codepoint": 61939, "source": "node_modules/@entypo-icons/core/icons/mask.svg" }, "medal": { "codepoint": 61940, "source": "node_modules/@entypo-icons/core/icons/medal.svg" }, "medium": { "codepoint": 61941, "source": "node_modules/@entypo-icons/core/icons/medium.svg" }, "medium-with-circle": { "codepoint": 61942, "source": "node_modules/@entypo-icons/core/icons/medium-with-circle.svg" }, "megaphone": { "codepoint": 61943, "source": "node_modules/@entypo-icons/core/icons/megaphone.svg" }, "menu": { "codepoint": 61944, "source": "node_modules/@entypo-icons/core/icons/menu.svg" }, "merge": { "codepoint": 61945, "source": "node_modules/@entypo-icons/core/icons/merge.svg" }, "message": { "codepoint": 61946, "source": "node_modules/@entypo-icons/core/icons/message.svg" }, "mic": { "codepoint": 61947, "source": "node_modules/@entypo-icons/core/icons/mic.svg" }, "minus": { "codepoint": 61948, "source": "node_modules/@entypo-icons/core/icons/minus.svg" }, "mixi": { "codepoint": 61949, "source": "node_modules/@entypo-icons/core/icons/mixi.svg" }, "mobile": { "codepoint": 61950, "source": "node_modules/@entypo-icons/core/icons/mobile.svg" }, "modern-mic": { "codepoint": 61951, "source": "node_modules/@entypo-icons/core/icons/modern-mic.svg" }, "moon": { "codepoint": 61952, "source": "node_modules/@entypo-icons/core/icons/moon.svg" }, "mouse": { "codepoint": 61953, "source": "node_modules/@entypo-icons/core/icons/mouse.svg" }, "mouse-pointer": { "codepoint": 61954, "source": "node_modules/@entypo-icons/core/icons/mouse-pointer.svg" }, "music": { "codepoint": 61955, "source": "node_modules/@entypo-icons/core/icons/music.svg" }, "network": { "codepoint": 61956, "source": "node_modules/@entypo-icons/core/icons/network.svg" }, "new": { "codepoint": 61957, "source": "node_modules/@entypo-icons/core/icons/new.svg" }, "new-message": { "codepoint": 61958, "source": "node_modules/@entypo-icons/core/icons/new-message.svg" }, "news": { "codepoint": 61959, "source": "node_modules/@entypo-icons/core/icons/news.svg" }, "newsletter": { "codepoint": 61960, "source": "node_modules/@entypo-icons/core/icons/newsletter.svg" }, "note": { "codepoint": 61961, "source": "node_modules/@entypo-icons/core/icons/note.svg" }, "notification": { "codepoint": 61962, "source": "node_modules/@entypo-icons/core/icons/notification.svg" }, "notifications-off": { "codepoint": 61963, "source": "node_modules/@entypo-icons/core/icons/notifications-off.svg" }, "old-mobile": { "codepoint": 61964, "source": "node_modules/@entypo-icons/core/icons/old-mobile.svg" }, "old-phone": { "codepoint": 61965, "source": "node_modules/@entypo-icons/core/icons/old-phone.svg" }, "onedrive": { "codepoint": 61966, "source": "node_modules/@entypo-icons/core/icons/onedrive.svg" }, "open-book": { "codepoint": 61967, "source": "node_modules/@entypo-icons/core/icons/open-book.svg" }, "palette": { "codepoint": 61968, "source": "node_modules/@entypo-icons/core/icons/palette.svg" }, "paper-plane": { "codepoint": 61969, "source": "node_modules/@entypo-icons/core/icons/paper-plane.svg" }, "paypal": { "codepoint": 61970, "source": "node_modules/@entypo-icons/core/icons/paypal.svg" }, "pencil": { "codepoint": 61971, "source": "node_modules/@entypo-icons/core/icons/pencil.svg" }, "phone": { "codepoint": 61972, "source": "node_modules/@entypo-icons/core/icons/phone.svg" }, "picasa": { "codepoint": 61973, "source": "node_modules/@entypo-icons/core/icons/picasa.svg" }, "pie-chart": { "codepoint": 61974, "source": "node_modules/@entypo-icons/core/icons/pie-chart.svg" }, "pin": { "codepoint": 61975, "source": "node_modules/@entypo-icons/core/icons/pin.svg" }, "pinterest": { "codepoint": 61976, "source": "node_modules/@entypo-icons/core/icons/pinterest.svg" }, "pinterest-with-circle": { "codepoint": 61977, "source": "node_modules/@entypo-icons/core/icons/pinterest-with-circle.svg" }, "plus": { "codepoint": 61978, "source": "node_modules/@entypo-icons/core/icons/plus.svg" }, "popup": { "codepoint": 61979, "source": "node_modules/@entypo-icons/core/icons/popup.svg" }, "power-plug": { "codepoint": 61980, "source": "node_modules/@entypo-icons/core/icons/power-plug.svg" }, "price-ribbon": { "codepoint": 61981, "source": "node_modules/@entypo-icons/core/icons/price-ribbon.svg" }, "price-tag": { "codepoint": 61982, "source": "node_modules/@entypo-icons/core/icons/price-tag.svg" }, "print": { "codepoint": 61983, "source": "node_modules/@entypo-icons/core/icons/print.svg" }, "progress-empty": { "codepoint": 61984, "source": "node_modules/@entypo-icons/core/icons/progress-empty.svg" }, "progress-full": { "codepoint": 61985, "source": "node_modules/@entypo-icons/core/icons/progress-full.svg" }, "progress-one": { "codepoint": 61986, "source": "node_modules/@entypo-icons/core/icons/progress-one.svg" }, "progress-two": { "codepoint": 61987, "source": "node_modules/@entypo-icons/core/icons/progress-two.svg" }, "publish": { "codepoint": 61988, "source": "node_modules/@entypo-icons/core/icons/publish.svg" }, "qq": { "codepoint": 61989, "source": "node_modules/@entypo-icons/core/icons/qq.svg" }, "qq-with-circle": { "codepoint": 61990, "source": "node_modules/@entypo-icons/core/icons/qq-with-circle.svg" }, "quote": { "codepoint": 61991, "source": "node_modules/@entypo-icons/core/icons/quote.svg" }, "radio": { "codepoint": 61992, "source": "node_modules/@entypo-icons/core/icons/radio.svg" }, "raft": { "codepoint": 61993, "source": "node_modules/@entypo-icons/core/icons/raft.svg" }, "raft-with-circle": { "codepoint": 61994, "source": "node_modules/@entypo-icons/core/icons/raft-with-circle.svg" }, "rainbow": { "codepoint": 61995, "source": "node_modules/@entypo-icons/core/icons/rainbow.svg" }, "rdio": { "codepoint": 61996, "source": "node_modules/@entypo-icons/core/icons/rdio.svg" }, "rdio-with-circle": { "codepoint": 61997, "source": "node_modules/@entypo-icons/core/icons/rdio-with-circle.svg" }, "remove-user": { "codepoint": 61998, "source": "node_modules/@entypo-icons/core/icons/remove-user.svg" }, "renren": { "codepoint": 61999, "source": "node_modules/@entypo-icons/core/icons/renren.svg" }, "reply": { "codepoint": 62000, "source": "node_modules/@entypo-icons/core/icons/reply.svg" }, "reply-all": { "codepoint": 62001, "source": "node_modules/@entypo-icons/core/icons/reply-all.svg" }, "resize-100": { "codepoint": 62002, "source": "node_modules/@entypo-icons/core/icons/resize-100.svg" }, "resize-full-screen": { "codepoint": 62003, "source": "node_modules/@entypo-icons/core/icons/resize-full-screen.svg" }, "retweet": { "codepoint": 62004, "source": "node_modules/@entypo-icons/core/icons/retweet.svg" }, "rocket": { "codepoint": 62005, "source": "node_modules/@entypo-icons/core/icons/rocket.svg" }, "round-brush": { "codepoint": 62006, "source": "node_modules/@entypo-icons/core/icons/round-brush.svg" }, "rss": { "codepoint": 62007, "source": "node_modules/@entypo-icons/core/icons/rss.svg" }, "ruler": { "codepoint": 62008, "source": "node_modules/@entypo-icons/core/icons/ruler.svg" }, "save": { "codepoint": 62009, "source": "node_modules/@entypo-icons/core/icons/save.svg" }, "scissors": { "codepoint": 62010, "source": "node_modules/@entypo-icons/core/icons/scissors.svg" }, "scribd": { "codepoint": 62011, "source": "node_modules/@entypo-icons/core/icons/scribd.svg" }, "select-arrows": { "codepoint": 62012, "source": "node_modules/@entypo-icons/core/icons/select-arrows.svg" }, "share": { "codepoint": 62013, "source": "node_modules/@entypo-icons/core/icons/share.svg" }, "share-alternative": { "codepoint": 62014, "source": "node_modules/@entypo-icons/core/icons/share-alternative.svg" }, "shareable": { "codepoint": 62015, "source": "node_modules/@entypo-icons/core/icons/shareable.svg" }, "shield": { "codepoint": 62016, "source": "node_modules/@entypo-icons/core/icons/shield.svg" }, "shop": { "codepoint": 62017, "source": "node_modules/@entypo-icons/core/icons/shop.svg" }, "shopping-bag": { "codepoint": 62018, "source": "node_modules/@entypo-icons/core/icons/shopping-bag.svg" }, "shopping-basket": { "codepoint": 62019, "source": "node_modules/@entypo-icons/core/icons/shopping-basket.svg" }, "shopping-cart": { "codepoint": 62020, "source": "node_modules/@entypo-icons/core/icons/shopping-cart.svg" }, "shuffle": { "codepoint": 62021, "source": "node_modules/@entypo-icons/core/icons/shuffle.svg" }, "signal": { "codepoint": 62022, "source": "node_modules/@entypo-icons/core/icons/signal.svg" }, "sina-weibo": { "codepoint": 62023, "source": "node_modules/@entypo-icons/core/icons/sina-weibo.svg" }, "skype": { "codepoint": 62024, "source": "node_modules/@entypo-icons/core/icons/skype.svg" }, "skype-with-circle": { "codepoint": 62025, "source": "node_modules/@entypo-icons/core/icons/skype-with-circle.svg" }, "slideshare": { "codepoint": 62026, "source": "node_modules/@entypo-icons/core/icons/slideshare.svg" }, "smashing": { "codepoint": 62027, "source": "node_modules/@entypo-icons/core/icons/smashing.svg" }, "sound": { "codepoint": 62028, "source": "node_modules/@entypo-icons/core/icons/sound.svg" }, "sound-mix": { "codepoint": 62029, "source": "node_modules/@entypo-icons/core/icons/sound-mix.svg" }, "sound-mute": { "codepoint": 62030, "source": "node_modules/@entypo-icons/core/icons/sound-mute.svg" }, "soundcloud": { "codepoint": 62031, "source": "node_modules/@entypo-icons/core/icons/soundcloud.svg" }, "sports-club": { "codepoint": 62032, "source": "node_modules/@entypo-icons/core/icons/sports-club.svg" }, "spotify": { "codepoint": 62033, "source": "node_modules/@entypo-icons/core/icons/spotify.svg" }, "spotify-with-circle": { "codepoint": 62034, "source": "node_modules/@entypo-icons/core/icons/spotify-with-circle.svg" }, "spreadsheet": { "codepoint": 62035, "source": "node_modules/@entypo-icons/core/icons/spreadsheet.svg" }, "squared-cross": { "codepoint": 62036, "source": "node_modules/@entypo-icons/core/icons/squared-cross.svg" }, "squared-minus": { "codepoint": 62037, "source": "node_modules/@entypo-icons/core/icons/squared-minus.svg" }, "squared-plus": { "codepoint": 62038, "source": "node_modules/@entypo-icons/core/icons/squared-plus.svg" }, "star": { "codepoint": 62039, "source": "node_modules/@entypo-icons/core/icons/star.svg" }, "star-outlined": { "codepoint": 62040, "source": "node_modules/@entypo-icons/core/icons/star-outlined.svg" }, "stopwatch": { "codepoint": 62041, "source": "node_modules/@entypo-icons/core/icons/stopwatch.svg" }, "stumbleupon": { "codepoint": 62042, "source": "node_modules/@entypo-icons/core/icons/stumbleupon.svg" }, "stumbleupon-with-circle": { "codepoint": 62043, "source": "node_modules/@entypo-icons/core/icons/stumbleupon-with-circle.svg" }, "suitcase": { "codepoint": 62044, "source": "node_modules/@entypo-icons/core/icons/suitcase.svg" }, "swap": { "codepoint": 62045, "source": "node_modules/@entypo-icons/core/icons/swap.svg" }, "swarm": { "codepoint": 62046, "source": "node_modules/@entypo-icons/core/icons/swarm.svg" }, "sweden": { "codepoint": 62047, "source": "node_modules/@entypo-icons/core/icons/sweden.svg" }, "switch": { "codepoint": 62048, "source": "node_modules/@entypo-icons/core/icons/switch.svg" }, "tablet": { "codepoint": 62049, "source": "node_modules/@entypo-icons/core/icons/tablet.svg" }, "tablet-mobile-combo": { "codepoint": 62050, "source": "node_modules/@entypo-icons/core/icons/tablet-mobile-combo.svg" }, "tag": { "codepoint": 62051, "source": "node_modules/@entypo-icons/core/icons/tag.svg" }, "text": { "codepoint": 62052, "source": "node_modules/@entypo-icons/core/icons/text.svg" }, "text-document": { "codepoint": 62053, "source": "node_modules/@entypo-icons/core/icons/text-document.svg" }, "text-document-inverted": { "codepoint": 62054, "source": "node_modules/@entypo-icons/core/icons/text-document-inverted.svg" }, "thermometer": { "codepoint": 62055, "source": "node_modules/@entypo-icons/core/icons/thermometer.svg" }, "thumbs-down": { "codepoint": 62056, "source": "node_modules/@entypo-icons/core/icons/thumbs-down.svg" }, "thumbs-up": { "codepoint": 62057, "source": "node_modules/@entypo-icons/core/icons/thumbs-up.svg" }, "thunder-cloud": { "codepoint": 62058, "source": "node_modules/@entypo-icons/core/icons/thunder-cloud.svg" }, "ticket": { "codepoint": 62059, "source": "node_modules/@entypo-icons/core/icons/ticket.svg" }, "time-slot": { "codepoint": 62060, "source": "node_modules/@entypo-icons/core/icons/time-slot.svg" }, "tools": { "codepoint": 62061, "source": "node_modules/@entypo-icons/core/icons/tools.svg" }, "traffic-cone": { "codepoint": 62062, "source": "node_modules/@entypo-icons/core/icons/traffic-cone.svg" }, "trash": { "codepoint": 62063, "source": "node_modules/@entypo-icons/core/icons/trash.svg" }, "tree": { "codepoint": 62064, "source": "node_modules/@entypo-icons/core/icons/tree.svg" }, "triangle-down": { "codepoint": 62065, "source": "node_modules/@entypo-icons/core/icons/triangle-down.svg" }, "triangle-left": { "codepoint": 62066, "source": "node_modules/@entypo-icons/core/icons/triangle-left.svg" }, "triangle-right": { "codepoint": 62067, "source": "node_modules/@entypo-icons/core/icons/triangle-right.svg" }, "triangle-up": { "codepoint": 62068, "source": "node_modules/@entypo-icons/core/icons/triangle-up.svg" }, "tripadvisor": { "codepoint": 62069, "source": "node_modules/@entypo-icons/core/icons/tripadvisor.svg" }, "trophy": { "codepoint": 62070, "source": "node_modules/@entypo-icons/core/icons/trophy.svg" }, "tumblr": { "codepoint": 62071, "source": "node_modules/@entypo-icons/core/icons/tumblr.svg" }, "tumblr-with-circle": { "codepoint": 62072, "source": "node_modules/@entypo-icons/core/icons/tumblr-with-circle.svg" }, "tv": { "codepoint": 62073, "source": "node_modules/@entypo-icons/core/icons/tv.svg" }, "twitter": { "codepoint": 62074, "source": "node_modules/@entypo-icons/core/icons/twitter.svg" }, "twitter-with-circle": { "codepoint": 62075, "source": "node_modules/@entypo-icons/core/icons/twitter-with-circle.svg" }, "typing": { "codepoint": 62076, "source": "node_modules/@entypo-icons/core/icons/typing.svg" }, "uninstall": { "codepoint": 62077, "source": "node_modules/@entypo-icons/core/icons/uninstall.svg" }, "unread": { "codepoint": 62078, "source": "node_modules/@entypo-icons/core/icons/unread.svg" }, "untag": { "codepoint": 62079, "source": "node_modules/@entypo-icons/core/icons/untag.svg" }, "upload": { "codepoint": 62080, "source": "node_modules/@entypo-icons/core/icons/upload.svg" }, "upload-to-cloud": { "codepoint": 62081, "source": "node_modules/@entypo-icons/core/icons/upload-to-cloud.svg" }, "user": { "codepoint": 62082, "source": "node_modules/@entypo-icons/core/icons/user.svg" }, "users": { "codepoint": 62083, "source": "node_modules/@entypo-icons/core/icons/users.svg" }, "v-card": { "codepoint": 62084, "source": "node_modules/@entypo-icons/core/icons/v-card.svg" }, "video": { "codepoint": 62085, "source": "node_modules/@entypo-icons/core/icons/video.svg" }, "video-camera": { "codepoint": 62086, "source": "node_modules/@entypo-icons/core/icons/video-camera.svg" }, "vimeo": { "codepoint": 62087, "source": "node_modules/@entypo-icons/core/icons/vimeo.svg" }, "vimeo-with-circle": { "codepoint": 62088, "source": "node_modules/@entypo-icons/core/icons/vimeo-with-circle.svg" }, "vine": { "codepoint": 62089, "source": "node_modules/@entypo-icons/core/icons/vine.svg" }, "vine-with-circle": { "codepoint": 62090, "source": "node_modules/@entypo-icons/core/icons/vine-with-circle.svg" }, "vinyl": { "codepoint": 62091, "source": "node_modules/@entypo-icons/core/icons/vinyl.svg" }, "vk": { "codepoint": 62092, "source": "node_modules/@entypo-icons/core/icons/vk.svg" }, "vk-alternitive": { "codepoint": 62093, "source": "node_modules/@entypo-icons/core/icons/vk-alternitive.svg" }, "vk-with-circle": { "codepoint": 62094, "source": "node_modules/@entypo-icons/core/icons/vk-with-circle.svg" }, "voicemail": { "codepoint": 62095, "source": "node_modules/@entypo-icons/core/icons/voicemail.svg" }, "wallet": { "codepoint": 62096, "source": "node_modules/@entypo-icons/core/icons/wallet.svg" }, "warning": { "codepoint": 62097, "source": "node_modules/@entypo-icons/core/icons/warning.svg" }, "water": { "codepoint": 62098, "source": "node_modules/@entypo-icons/core/icons/water.svg" }, "windows-store": { "codepoint": 62099, "source": "node_modules/@entypo-icons/core/icons/windows-store.svg" }, "xing": { "codepoint": 62100, "source": "node_modules/@entypo-icons/core/icons/xing.svg" }, "xing-with-circle": { "codepoint": 62101, "source": "node_modules/@entypo-icons/core/icons/xing-with-circle.svg" }, "yelp": { "codepoint": 62102, "source": "node_modules/@entypo-icons/core/icons/yelp.svg" }, "youko": { "codepoint": 62103, "source": "node_modules/@entypo-icons/core/icons/youko.svg" }, "youko-with-circle": { "codepoint": 62104, "source": "node_modules/@entypo-icons/core/icons/youko-with-circle.svg" }, "youtube": { "codepoint": 62105, "source": "node_modules/@entypo-icons/core/icons/youtube.svg" }, "youtube-with-circle": { "codepoint": 62106, "source": "node_modules/@entypo-icons/core/icons/youtube-with-circle.svg" } }, "options": { "autowidth": false, "config": false, "copyright": "", "css3": false, "css_selector": ".icon-{{glyph}}", "debug": false, "font_ascent": 448, "font_descent": 64, "font_design_size": 16, "font_em": 512, "font_name": "Entypo", "force": true, "input": { "templates": "node_modules/@entypo-icons/core/icons", "vectors": "node_modules/@entypo-icons/core/icons" }, "no_hash": true, "output": { "css": "Entypo", "fonts": "Entypo", "preview": "Entypo" }, "preprocessor_path": null, "quiet": false, "templates": [ "css" ] }, "templates": [ "Entypo/Entypo.css" ] } ================================================ FILE: packages/entypo/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "entypo", "upstreamFont": "@entypo-icons/core", "buildSteps": { "fontCustom": { "location": "node_modules/@entypo-icons/core/icons" }, "glyphmap": { "mode": "css", "cleanup": true } }, "versions": [ { "rnvi": "12.0.0", "upstream": "1.0.1" } ] } } ================================================ FILE: packages/entypo/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/entypo/README.md ================================================ # React Native Vector Icons - Entypo Entypo font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/entypo ``` ## Usage ```jsx import { Entypo } from '@react-native-vector-icons/entypo'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 1.0.1 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/entypo/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.entypo" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsEntypo" codegenJavaPackageName = "com.reactnativevectoricons.entypo" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-entypo") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-entypo/fonts" eachFile { println "(RNVI:entypo) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/entypo/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/entypo/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/entypo/android/src/main/java/VectorIconsEntypoPackage.kt ================================================ package com.reactnativevectoricons.entypo import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsEntypoPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/entypo/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/entypo/glyphmaps/Entypo.json ================================================ { "500px": 61696, "500px-with-circle": 61697, "add-to-list": 61698, "add-user": 61699, "address": 61700, "adjust": 61701, "air": 61702, "aircraft": 61703, "aircraft-landing": 61704, "aircraft-take-off": 61705, "align-bottom": 61706, "align-horizontal-middle": 61707, "align-left": 61708, "align-right": 61709, "align-top": 61710, "align-vertical-middle": 61711, "app-store": 61712, "archive": 61713, "area-graph": 61714, "arrow-bold-down": 61715, "arrow-bold-left": 61716, "arrow-bold-right": 61717, "arrow-bold-up": 61718, "arrow-down": 61719, "arrow-left": 61720, "arrow-long-down": 61721, "arrow-long-left": 61722, "arrow-long-right": 61723, "arrow-long-up": 61724, "arrow-right": 61725, "arrow-up": 61726, "arrow-with-circle-down": 61727, "arrow-with-circle-left": 61728, "arrow-with-circle-right": 61729, "arrow-with-circle-up": 61730, "attachment": 61731, "awareness-ribbon": 61732, "back": 61733, "back-in-time": 61734, "baidu": 61735, "bar-graph": 61736, "basecamp": 61737, "battery": 61738, "beamed-note": 61739, "behance": 61740, "bell": 61741, "blackboard": 61742, "block": 61743, "book": 61744, "bookmark": 61745, "bookmarks": 61746, "bowl": 61747, "box": 61748, "briefcase": 61749, "browser": 61750, "brush": 61751, "bucket": 61752, "bug": 61753, "cake": 61754, "calculator": 61755, "calendar": 61756, "camera": 61757, "ccw": 61758, "chat": 61759, "check": 61760, "chevron-down": 61761, "chevron-left": 61762, "chevron-right": 61763, "chevron-small-down": 61764, "chevron-small-left": 61765, "chevron-small-right": 61766, "chevron-small-up": 61767, "chevron-thin-down": 61768, "chevron-thin-left": 61769, "chevron-thin-right": 61770, "chevron-thin-up": 61771, "chevron-up": 61772, "chevron-with-circle-down": 61773, "chevron-with-circle-left": 61774, "chevron-with-circle-right": 61775, "chevron-with-circle-up": 61776, "circle": 61777, "circle-with-cross": 61778, "circle-with-minus": 61779, "circle-with-plus": 61780, "circular-graph": 61781, "clapperboard": 61782, "classic-computer": 61783, "clipboard": 61784, "clock": 61785, "cloud": 61786, "code": 61787, "cog": 61788, "colours": 61789, "compass": 61790, "controller-fast-backward": 61791, "controller-fast-forward": 61792, "controller-jump-to-start": 61793, "controller-next": 61794, "controller-paus": 61795, "controller-play": 61796, "controller-record": 61797, "controller-stop": 61798, "controller-volume": 61799, "copy": 61800, "creative-cloud": 61801, "creative-commons": 61802, "creative-commons-attribution": 61803, "creative-commons-noderivs": 61804, "creative-commons-noncommercial-eu": 61805, "creative-commons-noncommercial-us": 61806, "creative-commons-public-domain": 61807, "creative-commons-remix": 61808, "creative-commons-share": 61809, "creative-commons-sharealike": 61810, "credit": 61811, "credit-card": 61812, "crop": 61813, "cross": 61814, "cup": 61815, "cw": 61816, "cycle": 61817, "database": 61818, "dial-pad": 61819, "direction": 61820, "document": 61821, "document-landscape": 61822, "documents": 61823, "dot-single": 61824, "dots-three-horizontal": 61825, "dots-three-vertical": 61826, "dots-two-horizontal": 61827, "dots-two-vertical": 61828, "download": 61829, "dribbble": 61830, "dribbble-with-circle": 61831, "drink": 61832, "drive": 61833, "drop": 61834, "dropbox": 61835, "edit": 61836, "email": 61837, "emoji-flirt": 61838, "emoji-happy": 61839, "emoji-neutral": 61840, "emoji-sad": 61841, "erase": 61842, "eraser": 61843, "evernote": 61844, "export": 61845, "eye": 61846, "eye-with-line": 61847, "facebook": 61848, "facebook-with-circle": 61849, "feather": 61850, "fingerprint": 61851, "flag": 61852, "flash": 61853, "flashlight": 61854, "flat-brush": 61855, "flattr": 61856, "flickr": 61857, "flickr-with-circle": 61858, "flow-branch": 61859, "flow-cascade": 61860, "flow-line": 61861, "flow-parallel": 61862, "flow-tree": 61863, "flower": 61864, "folder": 61865, "folder-images": 61866, "folder-music": 61867, "folder-video": 61868, "forward": 61869, "foursquare": 61870, "funnel": 61871, "game-controller": 61872, "gauge": 61873, "github": 61874, "github-with-circle": 61875, "globe": 61876, "google-": 61877, "google--with-circle": 61878, "google-drive": 61879, "google-hangouts": 61880, "google-play": 61881, "graduation-cap": 61882, "grid": 61883, "grooveshark": 61884, "hair-cross": 61885, "hand": 61886, "heart": 61887, "heart-outlined": 61888, "help": 61889, "help-with-circle": 61890, "home": 61891, "hour-glass": 61892, "houzz": 61893, "icloud": 61894, "image": 61895, "image-inverted": 61896, "images": 61897, "inbox": 61898, "infinity": 61899, "info": 61900, "info-with-circle": 61901, "instagram": 61902, "instagram-with-circle": 61903, "install": 61904, "key": 61905, "keyboard": 61906, "lab-flask": 61907, "landline": 61908, "language": 61909, "laptop": 61910, "lastfm": 61911, "lastfm-with-circle": 61912, "layers": 61913, "leaf": 61914, "level-down": 61915, "level-up": 61916, "lifebuoy": 61917, "light-bulb": 61918, "light-down": 61919, "light-up": 61920, "line-graph": 61921, "link": 61922, "linkedin": 61923, "linkedin-with-circle": 61924, "list": 61925, "location": 61926, "location-pin": 61927, "lock": 61928, "lock-open": 61929, "log-out": 61930, "login": 61931, "loop": 61932, "magnet": 61933, "magnifying-glass": 61934, "mail": 61935, "mail-with-circle": 61936, "man": 61937, "map": 61938, "mask": 61939, "medal": 61940, "medium": 61941, "medium-with-circle": 61942, "megaphone": 61943, "menu": 61944, "merge": 61945, "message": 61946, "mic": 61947, "minus": 61948, "mixi": 61949, "mobile": 61950, "modern-mic": 61951, "moon": 61952, "mouse": 61953, "mouse-pointer": 61954, "music": 61955, "network": 61956, "new": 61957, "new-message": 61958, "news": 61959, "newsletter": 61960, "note": 61961, "notification": 61962, "notifications-off": 61963, "old-mobile": 61964, "old-phone": 61965, "onedrive": 61966, "open-book": 61967, "palette": 61968, "paper-plane": 61969, "paypal": 61970, "pencil": 61971, "phone": 61972, "picasa": 61973, "pie-chart": 61974, "pin": 61975, "pinterest": 61976, "pinterest-with-circle": 61977, "plus": 61978, "popup": 61979, "power-plug": 61980, "price-ribbon": 61981, "price-tag": 61982, "print": 61983, "progress-empty": 61984, "progress-full": 61985, "progress-one": 61986, "progress-two": 61987, "publish": 61988, "qq": 61989, "qq-with-circle": 61990, "quote": 61991, "radio": 61992, "raft": 61993, "raft-with-circle": 61994, "rainbow": 61995, "rdio": 61996, "rdio-with-circle": 61997, "remove-user": 61998, "renren": 61999, "reply": 62000, "reply-all": 62001, "resize-100": 62002, "resize-full-screen": 62003, "retweet": 62004, "rocket": 62005, "round-brush": 62006, "rss": 62007, "ruler": 62008, "save": 62009, "scissors": 62010, "scribd": 62011, "select-arrows": 62012, "share": 62013, "share-alternative": 62014, "shareable": 62015, "shield": 62016, "shop": 62017, "shopping-bag": 62018, "shopping-basket": 62019, "shopping-cart": 62020, "shuffle": 62021, "signal": 62022, "sina-weibo": 62023, "skype": 62024, "skype-with-circle": 62025, "slideshare": 62026, "smashing": 62027, "sound": 62028, "sound-mix": 62029, "sound-mute": 62030, "soundcloud": 62031, "sports-club": 62032, "spotify": 62033, "spotify-with-circle": 62034, "spreadsheet": 62035, "squared-cross": 62036, "squared-minus": 62037, "squared-plus": 62038, "star": 62039, "star-outlined": 62040, "stopwatch": 62041, "stumbleupon": 62042, "stumbleupon-with-circle": 62043, "suitcase": 62044, "swap": 62045, "swarm": 62046, "sweden": 62047, "switch": 62048, "tablet": 62049, "tablet-mobile-combo": 62050, "tag": 62051, "text": 62052, "text-document": 62053, "text-document-inverted": 62054, "thermometer": 62055, "thumbs-down": 62056, "thumbs-up": 62057, "thunder-cloud": 62058, "ticket": 62059, "time-slot": 62060, "tools": 62061, "traffic-cone": 62062, "trash": 62063, "tree": 62064, "triangle-down": 62065, "triangle-left": 62066, "triangle-right": 62067, "triangle-up": 62068, "tripadvisor": 62069, "trophy": 62070, "tumblr": 62071, "tumblr-with-circle": 62072, "tv": 62073, "twitter": 62074, "twitter-with-circle": 62075, "typing": 62076, "uninstall": 62077, "unread": 62078, "untag": 62079, "upload": 62080, "upload-to-cloud": 62081, "user": 62082, "users": 62083, "v-card": 62084, "video": 62085, "video-camera": 62086, "vimeo": 62087, "vimeo-with-circle": 62088, "vine": 62089, "vine-with-circle": 62090, "vinyl": 62091, "vk": 62092, "vk-alternitive": 62093, "vk-with-circle": 62094, "voicemail": 62095, "wallet": 62096, "warning": 62097, "water": 62098, "windows-store": 62099, "xing": 62100, "xing-with-circle": 62101, "yelp": 62102, "youko": 62103, "youko-with-circle": 62104, "youtube": 62105, "youtube-with-circle": 62106 } ================================================ FILE: packages/entypo/package.json ================================================ { "name": "@react-native-vector-icons/entypo", "version": "12.5.0", "description": "Entypo font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "entypo" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/entypo" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "@entypo-icons/core": "1.0.1" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/entypo/react-native-vector-icons-entypo.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-entypo' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/entypo/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Entypo icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Entypo.json'; export const Entypo = createIconSet(glyphMap, { postScriptName: 'Entypo', fontFileName: 'Entypo.ttf', fontSource: require('../fonts/Entypo.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type EntypoIconName = keyof typeof glyphMap; /** @alias */ export default Entypo; ================================================ FILE: packages/entypo/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Entypo icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Entypo.json'; export const Entypo = createIconSet(glyphMap, { postScriptName: 'Entypo', fontFileName: 'Entypo.ttf', }); export type EntypoIconName = keyof typeof glyphMap; /** @alias */ export default Entypo; ================================================ FILE: packages/entypo/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/entypo/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/evil-icons/.fontcustom-manifest.json ================================================ { "checksum": { "previous": "79a1752fda5ce7dab8867765a9f1cfc076fddef04009d50daf870a670d42365d", "current": "79a1752fda5ce7dab8867765a9f1cfc076fddef04009d50daf870a670d42365d" }, "fonts": [ "EvilIcons/EvilIcons.ttf", "EvilIcons/EvilIcons.svg", "EvilIcons/EvilIcons.woff", "EvilIcons/EvilIcons.eot", "EvilIcons/EvilIcons.woff2" ], "glyphs": { "ei-archive": { "codepoint": 61696, "source": "node_modules/evil-icons/assets/icons/ei-archive.svg" }, "ei-arrow-down": { "codepoint": 61697, "source": "node_modules/evil-icons/assets/icons/ei-arrow-down.svg" }, "ei-arrow-left": { "codepoint": 61698, "source": "node_modules/evil-icons/assets/icons/ei-arrow-left.svg" }, "ei-arrow-right": { "codepoint": 61699, "source": "node_modules/evil-icons/assets/icons/ei-arrow-right.svg" }, "ei-arrow-up": { "codepoint": 61700, "source": "node_modules/evil-icons/assets/icons/ei-arrow-up.svg" }, "ei-bell": { "codepoint": 61701, "source": "node_modules/evil-icons/assets/icons/ei-bell.svg" }, "ei-calendar": { "codepoint": 61702, "source": "node_modules/evil-icons/assets/icons/ei-calendar.svg" }, "ei-camera": { "codepoint": 61703, "source": "node_modules/evil-icons/assets/icons/ei-camera.svg" }, "ei-cart": { "codepoint": 61704, "source": "node_modules/evil-icons/assets/icons/ei-cart.svg" }, "ei-chart": { "codepoint": 61705, "source": "node_modules/evil-icons/assets/icons/ei-chart.svg" }, "ei-check": { "codepoint": 61706, "source": "node_modules/evil-icons/assets/icons/ei-check.svg" }, "ei-chevron-down": { "codepoint": 61707, "source": "node_modules/evil-icons/assets/icons/ei-chevron-down.svg" }, "ei-chevron-left": { "codepoint": 61708, "source": "node_modules/evil-icons/assets/icons/ei-chevron-left.svg" }, "ei-chevron-right": { "codepoint": 61709, "source": "node_modules/evil-icons/assets/icons/ei-chevron-right.svg" }, "ei-chevron-up": { "codepoint": 61710, "source": "node_modules/evil-icons/assets/icons/ei-chevron-up.svg" }, "ei-clock": { "codepoint": 61711, "source": "node_modules/evil-icons/assets/icons/ei-clock.svg" }, "ei-close": { "codepoint": 61712, "source": "node_modules/evil-icons/assets/icons/ei-close.svg" }, "ei-close-o": { "codepoint": 61713, "source": "node_modules/evil-icons/assets/icons/ei-close-o.svg" }, "ei-comment": { "codepoint": 61714, "source": "node_modules/evil-icons/assets/icons/ei-comment.svg" }, "ei-credit-card": { "codepoint": 61715, "source": "node_modules/evil-icons/assets/icons/ei-credit-card.svg" }, "ei-envelope": { "codepoint": 61716, "source": "node_modules/evil-icons/assets/icons/ei-envelope.svg" }, "ei-exclamation": { "codepoint": 61717, "source": "node_modules/evil-icons/assets/icons/ei-exclamation.svg" }, "ei-external-link": { "codepoint": 61718, "source": "node_modules/evil-icons/assets/icons/ei-external-link.svg" }, "ei-eye": { "codepoint": 61719, "source": "node_modules/evil-icons/assets/icons/ei-eye.svg" }, "ei-gear": { "codepoint": 61720, "source": "node_modules/evil-icons/assets/icons/ei-gear.svg" }, "ei-heart": { "codepoint": 61721, "source": "node_modules/evil-icons/assets/icons/ei-heart.svg" }, "ei-image": { "codepoint": 61722, "source": "node_modules/evil-icons/assets/icons/ei-image.svg" }, "ei-like": { "codepoint": 61723, "source": "node_modules/evil-icons/assets/icons/ei-like.svg" }, "ei-link": { "codepoint": 61724, "source": "node_modules/evil-icons/assets/icons/ei-link.svg" }, "ei-location": { "codepoint": 61725, "source": "node_modules/evil-icons/assets/icons/ei-location.svg" }, "ei-lock": { "codepoint": 61726, "source": "node_modules/evil-icons/assets/icons/ei-lock.svg" }, "ei-minus": { "codepoint": 61727, "source": "node_modules/evil-icons/assets/icons/ei-minus.svg" }, "ei-navicon": { "codepoint": 61728, "source": "node_modules/evil-icons/assets/icons/ei-navicon.svg" }, "ei-paperclip": { "codepoint": 61729, "source": "node_modules/evil-icons/assets/icons/ei-paperclip.svg" }, "ei-pencil": { "codepoint": 61730, "source": "node_modules/evil-icons/assets/icons/ei-pencil.svg" }, "ei-play": { "codepoint": 61731, "source": "node_modules/evil-icons/assets/icons/ei-play.svg" }, "ei-plus": { "codepoint": 61732, "source": "node_modules/evil-icons/assets/icons/ei-plus.svg" }, "ei-pointer": { "codepoint": 61733, "source": "node_modules/evil-icons/assets/icons/ei-pointer.svg" }, "ei-question": { "codepoint": 61734, "source": "node_modules/evil-icons/assets/icons/ei-question.svg" }, "ei-redo": { "codepoint": 61735, "source": "node_modules/evil-icons/assets/icons/ei-redo.svg" }, "ei-refresh": { "codepoint": 61736, "source": "node_modules/evil-icons/assets/icons/ei-refresh.svg" }, "ei-retweet": { "codepoint": 61737, "source": "node_modules/evil-icons/assets/icons/ei-retweet.svg" }, "ei-sc-facebook": { "codepoint": 61738, "source": "node_modules/evil-icons/assets/icons/ei-sc-facebook.svg" }, "ei-sc-github": { "codepoint": 61739, "source": "node_modules/evil-icons/assets/icons/ei-sc-github.svg" }, "ei-sc-google-plus": { "codepoint": 61740, "source": "node_modules/evil-icons/assets/icons/ei-sc-google-plus.svg" }, "ei-sc-instagram": { "codepoint": 61741, "source": "node_modules/evil-icons/assets/icons/ei-sc-instagram.svg" }, "ei-sc-linkedin": { "codepoint": 61742, "source": "node_modules/evil-icons/assets/icons/ei-sc-linkedin.svg" }, "ei-sc-odnoklassniki": { "codepoint": 61743, "source": "node_modules/evil-icons/assets/icons/ei-sc-odnoklassniki.svg" }, "ei-sc-pinterest": { "codepoint": 61744, "source": "node_modules/evil-icons/assets/icons/ei-sc-pinterest.svg" }, "ei-sc-skype": { "codepoint": 61745, "source": "node_modules/evil-icons/assets/icons/ei-sc-skype.svg" }, "ei-sc-soundcloud": { "codepoint": 61746, "source": "node_modules/evil-icons/assets/icons/ei-sc-soundcloud.svg" }, "ei-sc-telegram": { "codepoint": 61747, "source": "node_modules/evil-icons/assets/icons/ei-sc-telegram.svg" }, "ei-sc-tumblr": { "codepoint": 61748, "source": "node_modules/evil-icons/assets/icons/ei-sc-tumblr.svg" }, "ei-sc-twitter": { "codepoint": 61749, "source": "node_modules/evil-icons/assets/icons/ei-sc-twitter.svg" }, "ei-sc-vimeo": { "codepoint": 61750, "source": "node_modules/evil-icons/assets/icons/ei-sc-vimeo.svg" }, "ei-sc-vk": { "codepoint": 61751, "source": "node_modules/evil-icons/assets/icons/ei-sc-vk.svg" }, "ei-sc-youtube": { "codepoint": 61752, "source": "node_modules/evil-icons/assets/icons/ei-sc-youtube.svg" }, "ei-search": { "codepoint": 61753, "source": "node_modules/evil-icons/assets/icons/ei-search.svg" }, "ei-share-apple": { "codepoint": 61754, "source": "node_modules/evil-icons/assets/icons/ei-share-apple.svg" }, "ei-share-google": { "codepoint": 61755, "source": "node_modules/evil-icons/assets/icons/ei-share-google.svg" }, "ei-spinner": { "codepoint": 61756, "source": "node_modules/evil-icons/assets/icons/ei-spinner.svg" }, "ei-spinner-2": { "codepoint": 61757, "source": "node_modules/evil-icons/assets/icons/ei-spinner-2.svg" }, "ei-spinner-3": { "codepoint": 61758, "source": "node_modules/evil-icons/assets/icons/ei-spinner-3.svg" }, "ei-star": { "codepoint": 61759, "source": "node_modules/evil-icons/assets/icons/ei-star.svg" }, "ei-tag": { "codepoint": 61760, "source": "node_modules/evil-icons/assets/icons/ei-tag.svg" }, "ei-trash": { "codepoint": 61761, "source": "node_modules/evil-icons/assets/icons/ei-trash.svg" }, "ei-trophy": { "codepoint": 61762, "source": "node_modules/evil-icons/assets/icons/ei-trophy.svg" }, "ei-undo": { "codepoint": 61763, "source": "node_modules/evil-icons/assets/icons/ei-undo.svg" }, "ei-unlock": { "codepoint": 61764, "source": "node_modules/evil-icons/assets/icons/ei-unlock.svg" }, "ei-user": { "codepoint": 61765, "source": "node_modules/evil-icons/assets/icons/ei-user.svg" } }, "options": { "autowidth": false, "config": false, "copyright": "", "css3": false, "css_selector": ".icon-{{glyph}}", "debug": false, "font_ascent": 448, "font_descent": 64, "font_design_size": 16, "font_em": 512, "font_name": "EvilIcons", "force": true, "input": { "templates": "node_modules/evil-icons/assets/icons", "vectors": "node_modules/evil-icons/assets/icons" }, "no_hash": true, "output": { "css": "EvilIcons", "fonts": "EvilIcons", "preview": "EvilIcons" }, "preprocessor_path": null, "quiet": false, "templates": [ "css" ] }, "templates": [ "EvilIcons/EvilIcons.css" ] } ================================================ FILE: packages/evil-icons/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "evil-icons", "upstreamFont": "evil-icons", "buildSteps": { "fontCustom": { "location": "node_modules/evil-icons/assets/icons" }, "glyphmap": { "mode": "css", "prefix": "icon-ei-", "cleanup": true } }, "versions": [ { "rnvi": "12.0.0", "upstream": "1.10.1" } ] } } ================================================ FILE: packages/evil-icons/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/evil-icons/README.md ================================================ # React Native Vector Icons - Evil Icons Evil Icons font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/evil-icons ``` ## Usage ```jsx import { EvilIcons } from '@react-native-vector-icons/evil-icons'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 1.10.1 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/evil-icons/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.evil_icons" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsEvilIcons" codegenJavaPackageName = "com.reactnativevectoricons.evil_icons" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-evil-icons") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-evil-icons/fonts" eachFile { println "(RNVI:evil-icons) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/evil-icons/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/evil-icons/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/evil-icons/android/src/main/java/VectorIconsEvilIconsPackage.kt ================================================ package com.reactnativevectoricons.evil_icons import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsEvilIconsPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/evil-icons/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/evil-icons/glyphmaps/EvilIcons.json ================================================ { "archive": 61696, "arrow-down": 61697, "arrow-left": 61698, "arrow-right": 61699, "arrow-up": 61700, "bell": 61701, "calendar": 61702, "camera": 61703, "cart": 61704, "chart": 61705, "check": 61706, "chevron-down": 61707, "chevron-left": 61708, "chevron-right": 61709, "chevron-up": 61710, "clock": 61711, "close": 61712, "close-o": 61713, "comment": 61714, "credit-card": 61715, "envelope": 61716, "exclamation": 61717, "external-link": 61718, "eye": 61719, "gear": 61720, "heart": 61721, "image": 61722, "like": 61723, "link": 61724, "location": 61725, "lock": 61726, "minus": 61727, "navicon": 61728, "paperclip": 61729, "pencil": 61730, "play": 61731, "plus": 61732, "pointer": 61733, "question": 61734, "redo": 61735, "refresh": 61736, "retweet": 61737, "sc-facebook": 61738, "sc-github": 61739, "sc-google-plus": 61740, "sc-instagram": 61741, "sc-linkedin": 61742, "sc-odnoklassniki": 61743, "sc-pinterest": 61744, "sc-skype": 61745, "sc-soundcloud": 61746, "sc-telegram": 61747, "sc-tumblr": 61748, "sc-twitter": 61749, "sc-vimeo": 61750, "sc-vk": 61751, "sc-youtube": 61752, "search": 61753, "share-apple": 61754, "share-google": 61755, "spinner": 61756, "spinner-2": 61757, "spinner-3": 61758, "star": 61759, "tag": 61760, "trash": 61761, "trophy": 61762, "undo": 61763, "unlock": 61764, "user": 61765 } ================================================ FILE: packages/evil-icons/package.json ================================================ { "name": "@react-native-vector-icons/evil-icons", "version": "12.5.0", "description": "Evil Icons font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "evil-icons" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/evil-icons" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "evil-icons": "1.10.1" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/evil-icons/react-native-vector-icons-evil-icons.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-evil-icons' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/evil-icons/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * EvilIcons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/EvilIcons.json'; export const EvilIcons = createIconSet(glyphMap, { postScriptName: 'EvilIcons', fontFileName: 'EvilIcons.ttf', fontSource: require('../fonts/EvilIcons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type EvilIconsIconName = keyof typeof glyphMap; /** @alias */ export default EvilIcons; ================================================ FILE: packages/evil-icons/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * EvilIcons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/EvilIcons.json'; export const EvilIcons = createIconSet(glyphMap, { postScriptName: 'EvilIcons', fontFileName: 'EvilIcons.ttf', }); export type EvilIconsIconName = keyof typeof glyphMap; /** @alias */ export default EvilIcons; ================================================ FILE: packages/evil-icons/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/evil-icons/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/feather/.fontcustom-manifest.json ================================================ { "checksum": { "previous": "71368e9f15daab2497d403b7b2371a0faeeab18a78cbf670ea75ca1aa76bd38f", "current": "71368e9f15daab2497d403b7b2371a0faeeab18a78cbf670ea75ca1aa76bd38f" }, "fonts": [ "Feather/Feather.ttf", "Feather/Feather.svg", "Feather/Feather.woff", "Feather/Feather.eot", "Feather/Feather.woff2" ], "glyphs": { "activity": { "codepoint": 61696, "source": "node_modules/feather-icons/dist/icons/activity.svg" }, "airplay": { "codepoint": 61697, "source": "node_modules/feather-icons/dist/icons/airplay.svg" }, "alert-circle": { "codepoint": 61698, "source": "node_modules/feather-icons/dist/icons/alert-circle.svg" }, "alert-octagon": { "codepoint": 61699, "source": "node_modules/feather-icons/dist/icons/alert-octagon.svg" }, "alert-triangle": { "codepoint": 61700, "source": "node_modules/feather-icons/dist/icons/alert-triangle.svg" }, "align-center": { "codepoint": 61701, "source": "node_modules/feather-icons/dist/icons/align-center.svg" }, "align-justify": { "codepoint": 61702, "source": "node_modules/feather-icons/dist/icons/align-justify.svg" }, "align-left": { "codepoint": 61703, "source": "node_modules/feather-icons/dist/icons/align-left.svg" }, "align-right": { "codepoint": 61704, "source": "node_modules/feather-icons/dist/icons/align-right.svg" }, "anchor": { "codepoint": 61705, "source": "node_modules/feather-icons/dist/icons/anchor.svg" }, "aperture": { "codepoint": 61706, "source": "node_modules/feather-icons/dist/icons/aperture.svg" }, "archive": { "codepoint": 61707, "source": "node_modules/feather-icons/dist/icons/archive.svg" }, "arrow-down": { "codepoint": 61708, "source": "node_modules/feather-icons/dist/icons/arrow-down.svg" }, "arrow-down-circle": { "codepoint": 61709, "source": "node_modules/feather-icons/dist/icons/arrow-down-circle.svg" }, "arrow-down-left": { "codepoint": 61710, "source": "node_modules/feather-icons/dist/icons/arrow-down-left.svg" }, "arrow-down-right": { "codepoint": 61711, "source": "node_modules/feather-icons/dist/icons/arrow-down-right.svg" }, "arrow-left": { "codepoint": 61712, "source": "node_modules/feather-icons/dist/icons/arrow-left.svg" }, "arrow-left-circle": { "codepoint": 61713, "source": "node_modules/feather-icons/dist/icons/arrow-left-circle.svg" }, "arrow-right": { "codepoint": 61714, "source": "node_modules/feather-icons/dist/icons/arrow-right.svg" }, "arrow-right-circle": { "codepoint": 61715, "source": "node_modules/feather-icons/dist/icons/arrow-right-circle.svg" }, "arrow-up": { "codepoint": 61716, "source": "node_modules/feather-icons/dist/icons/arrow-up.svg" }, "arrow-up-circle": { "codepoint": 61717, "source": "node_modules/feather-icons/dist/icons/arrow-up-circle.svg" }, "arrow-up-left": { "codepoint": 61718, "source": "node_modules/feather-icons/dist/icons/arrow-up-left.svg" }, "arrow-up-right": { "codepoint": 61719, "source": "node_modules/feather-icons/dist/icons/arrow-up-right.svg" }, "at-sign": { "codepoint": 61720, "source": "node_modules/feather-icons/dist/icons/at-sign.svg" }, "award": { "codepoint": 61721, "source": "node_modules/feather-icons/dist/icons/award.svg" }, "bar-chart": { "codepoint": 61722, "source": "node_modules/feather-icons/dist/icons/bar-chart.svg" }, "bar-chart-2": { "codepoint": 61723, "source": "node_modules/feather-icons/dist/icons/bar-chart-2.svg" }, "battery": { "codepoint": 61724, "source": "node_modules/feather-icons/dist/icons/battery.svg" }, "battery-charging": { "codepoint": 61725, "source": "node_modules/feather-icons/dist/icons/battery-charging.svg" }, "bell": { "codepoint": 61726, "source": "node_modules/feather-icons/dist/icons/bell.svg" }, "bell-off": { "codepoint": 61727, "source": "node_modules/feather-icons/dist/icons/bell-off.svg" }, "bluetooth": { "codepoint": 61728, "source": "node_modules/feather-icons/dist/icons/bluetooth.svg" }, "bold": { "codepoint": 61729, "source": "node_modules/feather-icons/dist/icons/bold.svg" }, "book": { "codepoint": 61730, "source": "node_modules/feather-icons/dist/icons/book.svg" }, "book-open": { "codepoint": 61731, "source": "node_modules/feather-icons/dist/icons/book-open.svg" }, "bookmark": { "codepoint": 61732, "source": "node_modules/feather-icons/dist/icons/bookmark.svg" }, "box": { "codepoint": 61733, "source": "node_modules/feather-icons/dist/icons/box.svg" }, "briefcase": { "codepoint": 61734, "source": "node_modules/feather-icons/dist/icons/briefcase.svg" }, "calendar": { "codepoint": 61735, "source": "node_modules/feather-icons/dist/icons/calendar.svg" }, "camera": { "codepoint": 61736, "source": "node_modules/feather-icons/dist/icons/camera.svg" }, "camera-off": { "codepoint": 61737, "source": "node_modules/feather-icons/dist/icons/camera-off.svg" }, "cast": { "codepoint": 61738, "source": "node_modules/feather-icons/dist/icons/cast.svg" }, "check": { "codepoint": 61739, "source": "node_modules/feather-icons/dist/icons/check.svg" }, "check-circle": { "codepoint": 61740, "source": "node_modules/feather-icons/dist/icons/check-circle.svg" }, "check-square": { "codepoint": 61741, "source": "node_modules/feather-icons/dist/icons/check-square.svg" }, "chevron-down": { "codepoint": 61742, "source": "node_modules/feather-icons/dist/icons/chevron-down.svg" }, "chevron-left": { "codepoint": 61743, "source": "node_modules/feather-icons/dist/icons/chevron-left.svg" }, "chevron-right": { "codepoint": 61744, "source": "node_modules/feather-icons/dist/icons/chevron-right.svg" }, "chevron-up": { "codepoint": 61745, "source": "node_modules/feather-icons/dist/icons/chevron-up.svg" }, "chevrons-down": { "codepoint": 61746, "source": "node_modules/feather-icons/dist/icons/chevrons-down.svg" }, "chevrons-left": { "codepoint": 61747, "source": "node_modules/feather-icons/dist/icons/chevrons-left.svg" }, "chevrons-right": { "codepoint": 61748, "source": "node_modules/feather-icons/dist/icons/chevrons-right.svg" }, "chevrons-up": { "codepoint": 61749, "source": "node_modules/feather-icons/dist/icons/chevrons-up.svg" }, "chrome": { "codepoint": 61750, "source": "node_modules/feather-icons/dist/icons/chrome.svg" }, "circle": { "codepoint": 61751, "source": "node_modules/feather-icons/dist/icons/circle.svg" }, "clipboard": { "codepoint": 61752, "source": "node_modules/feather-icons/dist/icons/clipboard.svg" }, "clock": { "codepoint": 61753, "source": "node_modules/feather-icons/dist/icons/clock.svg" }, "cloud": { "codepoint": 61754, "source": "node_modules/feather-icons/dist/icons/cloud.svg" }, "cloud-drizzle": { "codepoint": 61755, "source": "node_modules/feather-icons/dist/icons/cloud-drizzle.svg" }, "cloud-lightning": { "codepoint": 61756, "source": "node_modules/feather-icons/dist/icons/cloud-lightning.svg" }, "cloud-off": { "codepoint": 61757, "source": "node_modules/feather-icons/dist/icons/cloud-off.svg" }, "cloud-rain": { "codepoint": 61758, "source": "node_modules/feather-icons/dist/icons/cloud-rain.svg" }, "cloud-snow": { "codepoint": 61759, "source": "node_modules/feather-icons/dist/icons/cloud-snow.svg" }, "code": { "codepoint": 61760, "source": "node_modules/feather-icons/dist/icons/code.svg" }, "codepen": { "codepoint": 61761, "source": "node_modules/feather-icons/dist/icons/codepen.svg" }, "codesandbox": { "codepoint": 61762, "source": "node_modules/feather-icons/dist/icons/codesandbox.svg" }, "coffee": { "codepoint": 61763, "source": "node_modules/feather-icons/dist/icons/coffee.svg" }, "columns": { "codepoint": 61764, "source": "node_modules/feather-icons/dist/icons/columns.svg" }, "command": { "codepoint": 61765, "source": "node_modules/feather-icons/dist/icons/command.svg" }, "compass": { "codepoint": 61766, "source": "node_modules/feather-icons/dist/icons/compass.svg" }, "copy": { "codepoint": 61767, "source": "node_modules/feather-icons/dist/icons/copy.svg" }, "corner-down-left": { "codepoint": 61768, "source": "node_modules/feather-icons/dist/icons/corner-down-left.svg" }, "corner-down-right": { "codepoint": 61769, "source": "node_modules/feather-icons/dist/icons/corner-down-right.svg" }, "corner-left-down": { "codepoint": 61770, "source": "node_modules/feather-icons/dist/icons/corner-left-down.svg" }, "corner-left-up": { "codepoint": 61771, "source": "node_modules/feather-icons/dist/icons/corner-left-up.svg" }, "corner-right-down": { "codepoint": 61772, "source": "node_modules/feather-icons/dist/icons/corner-right-down.svg" }, "corner-right-up": { "codepoint": 61773, "source": "node_modules/feather-icons/dist/icons/corner-right-up.svg" }, "corner-up-left": { "codepoint": 61774, "source": "node_modules/feather-icons/dist/icons/corner-up-left.svg" }, "corner-up-right": { "codepoint": 61775, "source": "node_modules/feather-icons/dist/icons/corner-up-right.svg" }, "cpu": { "codepoint": 61776, "source": "node_modules/feather-icons/dist/icons/cpu.svg" }, "credit-card": { "codepoint": 61777, "source": "node_modules/feather-icons/dist/icons/credit-card.svg" }, "crop": { "codepoint": 61778, "source": "node_modules/feather-icons/dist/icons/crop.svg" }, "crosshair": { "codepoint": 61779, "source": "node_modules/feather-icons/dist/icons/crosshair.svg" }, "database": { "codepoint": 61780, "source": "node_modules/feather-icons/dist/icons/database.svg" }, "delete": { "codepoint": 61781, "source": "node_modules/feather-icons/dist/icons/delete.svg" }, "disc": { "codepoint": 61782, "source": "node_modules/feather-icons/dist/icons/disc.svg" }, "divide": { "codepoint": 61783, "source": "node_modules/feather-icons/dist/icons/divide.svg" }, "divide-circle": { "codepoint": 61784, "source": "node_modules/feather-icons/dist/icons/divide-circle.svg" }, "divide-square": { "codepoint": 61785, "source": "node_modules/feather-icons/dist/icons/divide-square.svg" }, "dollar-sign": { "codepoint": 61786, "source": "node_modules/feather-icons/dist/icons/dollar-sign.svg" }, "download": { "codepoint": 61787, "source": "node_modules/feather-icons/dist/icons/download.svg" }, "download-cloud": { "codepoint": 61788, "source": "node_modules/feather-icons/dist/icons/download-cloud.svg" }, "dribbble": { "codepoint": 61789, "source": "node_modules/feather-icons/dist/icons/dribbble.svg" }, "droplet": { "codepoint": 61790, "source": "node_modules/feather-icons/dist/icons/droplet.svg" }, "edit": { "codepoint": 61791, "source": "node_modules/feather-icons/dist/icons/edit.svg" }, "edit-2": { "codepoint": 61792, "source": "node_modules/feather-icons/dist/icons/edit-2.svg" }, "edit-3": { "codepoint": 61793, "source": "node_modules/feather-icons/dist/icons/edit-3.svg" }, "external-link": { "codepoint": 61794, "source": "node_modules/feather-icons/dist/icons/external-link.svg" }, "eye": { "codepoint": 61795, "source": "node_modules/feather-icons/dist/icons/eye.svg" }, "eye-off": { "codepoint": 61796, "source": "node_modules/feather-icons/dist/icons/eye-off.svg" }, "facebook": { "codepoint": 61797, "source": "node_modules/feather-icons/dist/icons/facebook.svg" }, "fast-forward": { "codepoint": 61798, "source": "node_modules/feather-icons/dist/icons/fast-forward.svg" }, "feather": { "codepoint": 61799, "source": "node_modules/feather-icons/dist/icons/feather.svg" }, "figma": { "codepoint": 61800, "source": "node_modules/feather-icons/dist/icons/figma.svg" }, "file": { "codepoint": 61801, "source": "node_modules/feather-icons/dist/icons/file.svg" }, "file-minus": { "codepoint": 61802, "source": "node_modules/feather-icons/dist/icons/file-minus.svg" }, "file-plus": { "codepoint": 61803, "source": "node_modules/feather-icons/dist/icons/file-plus.svg" }, "file-text": { "codepoint": 61804, "source": "node_modules/feather-icons/dist/icons/file-text.svg" }, "film": { "codepoint": 61805, "source": "node_modules/feather-icons/dist/icons/film.svg" }, "filter": { "codepoint": 61806, "source": "node_modules/feather-icons/dist/icons/filter.svg" }, "flag": { "codepoint": 61807, "source": "node_modules/feather-icons/dist/icons/flag.svg" }, "folder": { "codepoint": 61808, "source": "node_modules/feather-icons/dist/icons/folder.svg" }, "folder-minus": { "codepoint": 61809, "source": "node_modules/feather-icons/dist/icons/folder-minus.svg" }, "folder-plus": { "codepoint": 61810, "source": "node_modules/feather-icons/dist/icons/folder-plus.svg" }, "framer": { "codepoint": 61811, "source": "node_modules/feather-icons/dist/icons/framer.svg" }, "frown": { "codepoint": 61812, "source": "node_modules/feather-icons/dist/icons/frown.svg" }, "gift": { "codepoint": 61813, "source": "node_modules/feather-icons/dist/icons/gift.svg" }, "git-branch": { "codepoint": 61814, "source": "node_modules/feather-icons/dist/icons/git-branch.svg" }, "git-commit": { "codepoint": 61815, "source": "node_modules/feather-icons/dist/icons/git-commit.svg" }, "git-merge": { "codepoint": 61816, "source": "node_modules/feather-icons/dist/icons/git-merge.svg" }, "git-pull-request": { "codepoint": 61817, "source": "node_modules/feather-icons/dist/icons/git-pull-request.svg" }, "github": { "codepoint": 61818, "source": "node_modules/feather-icons/dist/icons/github.svg" }, "gitlab": { "codepoint": 61819, "source": "node_modules/feather-icons/dist/icons/gitlab.svg" }, "globe": { "codepoint": 61820, "source": "node_modules/feather-icons/dist/icons/globe.svg" }, "grid": { "codepoint": 61821, "source": "node_modules/feather-icons/dist/icons/grid.svg" }, "hard-drive": { "codepoint": 61822, "source": "node_modules/feather-icons/dist/icons/hard-drive.svg" }, "hash": { "codepoint": 61823, "source": "node_modules/feather-icons/dist/icons/hash.svg" }, "headphones": { "codepoint": 61824, "source": "node_modules/feather-icons/dist/icons/headphones.svg" }, "heart": { "codepoint": 61825, "source": "node_modules/feather-icons/dist/icons/heart.svg" }, "help-circle": { "codepoint": 61826, "source": "node_modules/feather-icons/dist/icons/help-circle.svg" }, "hexagon": { "codepoint": 61827, "source": "node_modules/feather-icons/dist/icons/hexagon.svg" }, "home": { "codepoint": 61828, "source": "node_modules/feather-icons/dist/icons/home.svg" }, "image": { "codepoint": 61829, "source": "node_modules/feather-icons/dist/icons/image.svg" }, "inbox": { "codepoint": 61830, "source": "node_modules/feather-icons/dist/icons/inbox.svg" }, "info": { "codepoint": 61831, "source": "node_modules/feather-icons/dist/icons/info.svg" }, "instagram": { "codepoint": 61832, "source": "node_modules/feather-icons/dist/icons/instagram.svg" }, "italic": { "codepoint": 61833, "source": "node_modules/feather-icons/dist/icons/italic.svg" }, "key": { "codepoint": 61834, "source": "node_modules/feather-icons/dist/icons/key.svg" }, "layers": { "codepoint": 61835, "source": "node_modules/feather-icons/dist/icons/layers.svg" }, "layout": { "codepoint": 61836, "source": "node_modules/feather-icons/dist/icons/layout.svg" }, "life-buoy": { "codepoint": 61837, "source": "node_modules/feather-icons/dist/icons/life-buoy.svg" }, "link": { "codepoint": 61838, "source": "node_modules/feather-icons/dist/icons/link.svg" }, "link-2": { "codepoint": 61839, "source": "node_modules/feather-icons/dist/icons/link-2.svg" }, "linkedin": { "codepoint": 61840, "source": "node_modules/feather-icons/dist/icons/linkedin.svg" }, "list": { "codepoint": 61841, "source": "node_modules/feather-icons/dist/icons/list.svg" }, "loader": { "codepoint": 61842, "source": "node_modules/feather-icons/dist/icons/loader.svg" }, "lock": { "codepoint": 61843, "source": "node_modules/feather-icons/dist/icons/lock.svg" }, "log-in": { "codepoint": 61844, "source": "node_modules/feather-icons/dist/icons/log-in.svg" }, "log-out": { "codepoint": 61845, "source": "node_modules/feather-icons/dist/icons/log-out.svg" }, "mail": { "codepoint": 61846, "source": "node_modules/feather-icons/dist/icons/mail.svg" }, "map": { "codepoint": 61847, "source": "node_modules/feather-icons/dist/icons/map.svg" }, "map-pin": { "codepoint": 61848, "source": "node_modules/feather-icons/dist/icons/map-pin.svg" }, "maximize": { "codepoint": 61849, "source": "node_modules/feather-icons/dist/icons/maximize.svg" }, "maximize-2": { "codepoint": 61850, "source": "node_modules/feather-icons/dist/icons/maximize-2.svg" }, "meh": { "codepoint": 61851, "source": "node_modules/feather-icons/dist/icons/meh.svg" }, "menu": { "codepoint": 61852, "source": "node_modules/feather-icons/dist/icons/menu.svg" }, "message-circle": { "codepoint": 61853, "source": "node_modules/feather-icons/dist/icons/message-circle.svg" }, "message-square": { "codepoint": 61854, "source": "node_modules/feather-icons/dist/icons/message-square.svg" }, "mic": { "codepoint": 61855, "source": "node_modules/feather-icons/dist/icons/mic.svg" }, "mic-off": { "codepoint": 61856, "source": "node_modules/feather-icons/dist/icons/mic-off.svg" }, "minimize": { "codepoint": 61857, "source": "node_modules/feather-icons/dist/icons/minimize.svg" }, "minimize-2": { "codepoint": 61858, "source": "node_modules/feather-icons/dist/icons/minimize-2.svg" }, "minus": { "codepoint": 61859, "source": "node_modules/feather-icons/dist/icons/minus.svg" }, "minus-circle": { "codepoint": 61860, "source": "node_modules/feather-icons/dist/icons/minus-circle.svg" }, "minus-square": { "codepoint": 61861, "source": "node_modules/feather-icons/dist/icons/minus-square.svg" }, "monitor": { "codepoint": 61862, "source": "node_modules/feather-icons/dist/icons/monitor.svg" }, "moon": { "codepoint": 61863, "source": "node_modules/feather-icons/dist/icons/moon.svg" }, "more-horizontal": { "codepoint": 61864, "source": "node_modules/feather-icons/dist/icons/more-horizontal.svg" }, "more-vertical": { "codepoint": 61865, "source": "node_modules/feather-icons/dist/icons/more-vertical.svg" }, "mouse-pointer": { "codepoint": 61866, "source": "node_modules/feather-icons/dist/icons/mouse-pointer.svg" }, "move": { "codepoint": 61867, "source": "node_modules/feather-icons/dist/icons/move.svg" }, "music": { "codepoint": 61868, "source": "node_modules/feather-icons/dist/icons/music.svg" }, "navigation": { "codepoint": 61869, "source": "node_modules/feather-icons/dist/icons/navigation.svg" }, "navigation-2": { "codepoint": 61870, "source": "node_modules/feather-icons/dist/icons/navigation-2.svg" }, "octagon": { "codepoint": 61871, "source": "node_modules/feather-icons/dist/icons/octagon.svg" }, "package": { "codepoint": 61872, "source": "node_modules/feather-icons/dist/icons/package.svg" }, "paperclip": { "codepoint": 61873, "source": "node_modules/feather-icons/dist/icons/paperclip.svg" }, "pause": { "codepoint": 61874, "source": "node_modules/feather-icons/dist/icons/pause.svg" }, "pause-circle": { "codepoint": 61875, "source": "node_modules/feather-icons/dist/icons/pause-circle.svg" }, "pen-tool": { "codepoint": 61876, "source": "node_modules/feather-icons/dist/icons/pen-tool.svg" }, "percent": { "codepoint": 61877, "source": "node_modules/feather-icons/dist/icons/percent.svg" }, "phone": { "codepoint": 61878, "source": "node_modules/feather-icons/dist/icons/phone.svg" }, "phone-call": { "codepoint": 61879, "source": "node_modules/feather-icons/dist/icons/phone-call.svg" }, "phone-forwarded": { "codepoint": 61880, "source": "node_modules/feather-icons/dist/icons/phone-forwarded.svg" }, "phone-incoming": { "codepoint": 61881, "source": "node_modules/feather-icons/dist/icons/phone-incoming.svg" }, "phone-missed": { "codepoint": 61882, "source": "node_modules/feather-icons/dist/icons/phone-missed.svg" }, "phone-off": { "codepoint": 61883, "source": "node_modules/feather-icons/dist/icons/phone-off.svg" }, "phone-outgoing": { "codepoint": 61884, "source": "node_modules/feather-icons/dist/icons/phone-outgoing.svg" }, "pie-chart": { "codepoint": 61885, "source": "node_modules/feather-icons/dist/icons/pie-chart.svg" }, "play": { "codepoint": 61886, "source": "node_modules/feather-icons/dist/icons/play.svg" }, "play-circle": { "codepoint": 61887, "source": "node_modules/feather-icons/dist/icons/play-circle.svg" }, "plus": { "codepoint": 61888, "source": "node_modules/feather-icons/dist/icons/plus.svg" }, "plus-circle": { "codepoint": 61889, "source": "node_modules/feather-icons/dist/icons/plus-circle.svg" }, "plus-square": { "codepoint": 61890, "source": "node_modules/feather-icons/dist/icons/plus-square.svg" }, "pocket": { "codepoint": 61891, "source": "node_modules/feather-icons/dist/icons/pocket.svg" }, "power": { "codepoint": 61892, "source": "node_modules/feather-icons/dist/icons/power.svg" }, "printer": { "codepoint": 61893, "source": "node_modules/feather-icons/dist/icons/printer.svg" }, "radio": { "codepoint": 61894, "source": "node_modules/feather-icons/dist/icons/radio.svg" }, "refresh-ccw": { "codepoint": 61895, "source": "node_modules/feather-icons/dist/icons/refresh-ccw.svg" }, "refresh-cw": { "codepoint": 61896, "source": "node_modules/feather-icons/dist/icons/refresh-cw.svg" }, "repeat": { "codepoint": 61897, "source": "node_modules/feather-icons/dist/icons/repeat.svg" }, "rewind": { "codepoint": 61898, "source": "node_modules/feather-icons/dist/icons/rewind.svg" }, "rotate-ccw": { "codepoint": 61899, "source": "node_modules/feather-icons/dist/icons/rotate-ccw.svg" }, "rotate-cw": { "codepoint": 61900, "source": "node_modules/feather-icons/dist/icons/rotate-cw.svg" }, "rss": { "codepoint": 61901, "source": "node_modules/feather-icons/dist/icons/rss.svg" }, "save": { "codepoint": 61902, "source": "node_modules/feather-icons/dist/icons/save.svg" }, "scissors": { "codepoint": 61903, "source": "node_modules/feather-icons/dist/icons/scissors.svg" }, "search": { "codepoint": 61904, "source": "node_modules/feather-icons/dist/icons/search.svg" }, "send": { "codepoint": 61905, "source": "node_modules/feather-icons/dist/icons/send.svg" }, "server": { "codepoint": 61906, "source": "node_modules/feather-icons/dist/icons/server.svg" }, "settings": { "codepoint": 61907, "source": "node_modules/feather-icons/dist/icons/settings.svg" }, "share": { "codepoint": 61908, "source": "node_modules/feather-icons/dist/icons/share.svg" }, "share-2": { "codepoint": 61909, "source": "node_modules/feather-icons/dist/icons/share-2.svg" }, "shield": { "codepoint": 61910, "source": "node_modules/feather-icons/dist/icons/shield.svg" }, "shield-off": { "codepoint": 61911, "source": "node_modules/feather-icons/dist/icons/shield-off.svg" }, "shopping-bag": { "codepoint": 61912, "source": "node_modules/feather-icons/dist/icons/shopping-bag.svg" }, "shopping-cart": { "codepoint": 61913, "source": "node_modules/feather-icons/dist/icons/shopping-cart.svg" }, "shuffle": { "codepoint": 61914, "source": "node_modules/feather-icons/dist/icons/shuffle.svg" }, "sidebar": { "codepoint": 61915, "source": "node_modules/feather-icons/dist/icons/sidebar.svg" }, "skip-back": { "codepoint": 61916, "source": "node_modules/feather-icons/dist/icons/skip-back.svg" }, "skip-forward": { "codepoint": 61917, "source": "node_modules/feather-icons/dist/icons/skip-forward.svg" }, "slack": { "codepoint": 61918, "source": "node_modules/feather-icons/dist/icons/slack.svg" }, "slash": { "codepoint": 61919, "source": "node_modules/feather-icons/dist/icons/slash.svg" }, "sliders": { "codepoint": 61920, "source": "node_modules/feather-icons/dist/icons/sliders.svg" }, "smartphone": { "codepoint": 61921, "source": "node_modules/feather-icons/dist/icons/smartphone.svg" }, "smile": { "codepoint": 61922, "source": "node_modules/feather-icons/dist/icons/smile.svg" }, "speaker": { "codepoint": 61923, "source": "node_modules/feather-icons/dist/icons/speaker.svg" }, "square": { "codepoint": 61924, "source": "node_modules/feather-icons/dist/icons/square.svg" }, "star": { "codepoint": 61925, "source": "node_modules/feather-icons/dist/icons/star.svg" }, "stop-circle": { "codepoint": 61926, "source": "node_modules/feather-icons/dist/icons/stop-circle.svg" }, "sun": { "codepoint": 61927, "source": "node_modules/feather-icons/dist/icons/sun.svg" }, "sunrise": { "codepoint": 61928, "source": "node_modules/feather-icons/dist/icons/sunrise.svg" }, "sunset": { "codepoint": 61929, "source": "node_modules/feather-icons/dist/icons/sunset.svg" }, "table": { "codepoint": 61930, "source": "node_modules/feather-icons/dist/icons/table.svg" }, "tablet": { "codepoint": 61931, "source": "node_modules/feather-icons/dist/icons/tablet.svg" }, "tag": { "codepoint": 61932, "source": "node_modules/feather-icons/dist/icons/tag.svg" }, "target": { "codepoint": 61933, "source": "node_modules/feather-icons/dist/icons/target.svg" }, "terminal": { "codepoint": 61934, "source": "node_modules/feather-icons/dist/icons/terminal.svg" }, "thermometer": { "codepoint": 61935, "source": "node_modules/feather-icons/dist/icons/thermometer.svg" }, "thumbs-down": { "codepoint": 61936, "source": "node_modules/feather-icons/dist/icons/thumbs-down.svg" }, "thumbs-up": { "codepoint": 61937, "source": "node_modules/feather-icons/dist/icons/thumbs-up.svg" }, "toggle-left": { "codepoint": 61938, "source": "node_modules/feather-icons/dist/icons/toggle-left.svg" }, "toggle-right": { "codepoint": 61939, "source": "node_modules/feather-icons/dist/icons/toggle-right.svg" }, "tool": { "codepoint": 61940, "source": "node_modules/feather-icons/dist/icons/tool.svg" }, "trash": { "codepoint": 61941, "source": "node_modules/feather-icons/dist/icons/trash.svg" }, "trash-2": { "codepoint": 61942, "source": "node_modules/feather-icons/dist/icons/trash-2.svg" }, "trello": { "codepoint": 61943, "source": "node_modules/feather-icons/dist/icons/trello.svg" }, "trending-down": { "codepoint": 61944, "source": "node_modules/feather-icons/dist/icons/trending-down.svg" }, "trending-up": { "codepoint": 61945, "source": "node_modules/feather-icons/dist/icons/trending-up.svg" }, "triangle": { "codepoint": 61946, "source": "node_modules/feather-icons/dist/icons/triangle.svg" }, "truck": { "codepoint": 61947, "source": "node_modules/feather-icons/dist/icons/truck.svg" }, "tv": { "codepoint": 61948, "source": "node_modules/feather-icons/dist/icons/tv.svg" }, "twitch": { "codepoint": 61949, "source": "node_modules/feather-icons/dist/icons/twitch.svg" }, "twitter": { "codepoint": 61950, "source": "node_modules/feather-icons/dist/icons/twitter.svg" }, "type": { "codepoint": 61951, "source": "node_modules/feather-icons/dist/icons/type.svg" }, "umbrella": { "codepoint": 61952, "source": "node_modules/feather-icons/dist/icons/umbrella.svg" }, "underline": { "codepoint": 61953, "source": "node_modules/feather-icons/dist/icons/underline.svg" }, "unlock": { "codepoint": 61954, "source": "node_modules/feather-icons/dist/icons/unlock.svg" }, "upload": { "codepoint": 61955, "source": "node_modules/feather-icons/dist/icons/upload.svg" }, "upload-cloud": { "codepoint": 61956, "source": "node_modules/feather-icons/dist/icons/upload-cloud.svg" }, "user": { "codepoint": 61957, "source": "node_modules/feather-icons/dist/icons/user.svg" }, "user-check": { "codepoint": 61958, "source": "node_modules/feather-icons/dist/icons/user-check.svg" }, "user-minus": { "codepoint": 61959, "source": "node_modules/feather-icons/dist/icons/user-minus.svg" }, "user-plus": { "codepoint": 61960, "source": "node_modules/feather-icons/dist/icons/user-plus.svg" }, "user-x": { "codepoint": 61961, "source": "node_modules/feather-icons/dist/icons/user-x.svg" }, "users": { "codepoint": 61962, "source": "node_modules/feather-icons/dist/icons/users.svg" }, "video": { "codepoint": 61963, "source": "node_modules/feather-icons/dist/icons/video.svg" }, "video-off": { "codepoint": 61964, "source": "node_modules/feather-icons/dist/icons/video-off.svg" }, "voicemail": { "codepoint": 61965, "source": "node_modules/feather-icons/dist/icons/voicemail.svg" }, "volume": { "codepoint": 61966, "source": "node_modules/feather-icons/dist/icons/volume.svg" }, "volume-1": { "codepoint": 61967, "source": "node_modules/feather-icons/dist/icons/volume-1.svg" }, "volume-2": { "codepoint": 61968, "source": "node_modules/feather-icons/dist/icons/volume-2.svg" }, "volume-x": { "codepoint": 61969, "source": "node_modules/feather-icons/dist/icons/volume-x.svg" }, "watch": { "codepoint": 61970, "source": "node_modules/feather-icons/dist/icons/watch.svg" }, "wifi": { "codepoint": 61971, "source": "node_modules/feather-icons/dist/icons/wifi.svg" }, "wifi-off": { "codepoint": 61972, "source": "node_modules/feather-icons/dist/icons/wifi-off.svg" }, "wind": { "codepoint": 61973, "source": "node_modules/feather-icons/dist/icons/wind.svg" }, "x": { "codepoint": 61974, "source": "node_modules/feather-icons/dist/icons/x.svg" }, "x-circle": { "codepoint": 61975, "source": "node_modules/feather-icons/dist/icons/x-circle.svg" }, "x-octagon": { "codepoint": 61976, "source": "node_modules/feather-icons/dist/icons/x-octagon.svg" }, "x-square": { "codepoint": 61977, "source": "node_modules/feather-icons/dist/icons/x-square.svg" }, "youtube": { "codepoint": 61978, "source": "node_modules/feather-icons/dist/icons/youtube.svg" }, "zap": { "codepoint": 61979, "source": "node_modules/feather-icons/dist/icons/zap.svg" }, "zap-off": { "codepoint": 61980, "source": "node_modules/feather-icons/dist/icons/zap-off.svg" }, "zoom-in": { "codepoint": 61981, "source": "node_modules/feather-icons/dist/icons/zoom-in.svg" }, "zoom-out": { "codepoint": 61982, "source": "node_modules/feather-icons/dist/icons/zoom-out.svg" } }, "options": { "autowidth": false, "config": false, "copyright": "", "css3": false, "css_selector": ".icon-{{glyph}}", "debug": false, "font_ascent": 448, "font_descent": 64, "font_design_size": 16, "font_em": 512, "font_name": "Feather", "force": true, "input": { "templates": "node_modules/feather-icons/dist/icons", "vectors": "node_modules/feather-icons/dist/icons" }, "no_hash": true, "output": { "css": "Feather", "fonts": "Feather", "preview": "Feather" }, "preprocessor_path": null, "quiet": false, "templates": [ "css" ] }, "templates": [ "Feather/Feather.css" ] } ================================================ FILE: packages/feather/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "feather", "upstreamFont": "feather-icons", "buildSteps": { "fontCustom": { "location": "node_modules/feather-icons/dist/icons" }, "glyphmap": { "mode": "css", "cleanup": true } }, "versions": [ { "rnvi": "12.0.0", "upstream": "4.29.2" } ] } } ================================================ FILE: packages/feather/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - removing fixSVGpaths from feather gives better results ([#1721](https://github.com/oblador/react-native-vector-icons/pull/1721)) - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/feather/README.md ================================================ # React Native Vector Icons - Feather Feather font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/feather ``` ## Usage ```jsx import { Feather } from '@react-native-vector-icons/feather'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 4.29.2 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/feather/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.feather" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFeather" codegenJavaPackageName = "com.reactnativevectoricons.feather" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-feather") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-feather/fonts" eachFile { println "(RNVI:feather) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/feather/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/feather/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/feather/android/src/main/java/VectorIconsFeatherPackage.kt ================================================ package com.reactnativevectoricons.feather import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFeatherPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/feather/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/feather/glyphmaps/Feather.json ================================================ { "activity": 61696, "airplay": 61697, "alert-circle": 61698, "alert-octagon": 61699, "alert-triangle": 61700, "align-center": 61701, "align-justify": 61702, "align-left": 61703, "align-right": 61704, "anchor": 61705, "aperture": 61706, "archive": 61707, "arrow-down": 61708, "arrow-down-circle": 61709, "arrow-down-left": 61710, "arrow-down-right": 61711, "arrow-left": 61712, "arrow-left-circle": 61713, "arrow-right": 61714, "arrow-right-circle": 61715, "arrow-up": 61716, "arrow-up-circle": 61717, "arrow-up-left": 61718, "arrow-up-right": 61719, "at-sign": 61720, "award": 61721, "bar-chart": 61722, "bar-chart-2": 61723, "battery": 61724, "battery-charging": 61725, "bell": 61726, "bell-off": 61727, "bluetooth": 61728, "bold": 61729, "book": 61730, "book-open": 61731, "bookmark": 61732, "box": 61733, "briefcase": 61734, "calendar": 61735, "camera": 61736, "camera-off": 61737, "cast": 61738, "check": 61739, "check-circle": 61740, "check-square": 61741, "chevron-down": 61742, "chevron-left": 61743, "chevron-right": 61744, "chevron-up": 61745, "chevrons-down": 61746, "chevrons-left": 61747, "chevrons-right": 61748, "chevrons-up": 61749, "chrome": 61750, "circle": 61751, "clipboard": 61752, "clock": 61753, "cloud": 61754, "cloud-drizzle": 61755, "cloud-lightning": 61756, "cloud-off": 61757, "cloud-rain": 61758, "cloud-snow": 61759, "code": 61760, "codepen": 61761, "codesandbox": 61762, "coffee": 61763, "columns": 61764, "command": 61765, "compass": 61766, "copy": 61767, "corner-down-left": 61768, "corner-down-right": 61769, "corner-left-down": 61770, "corner-left-up": 61771, "corner-right-down": 61772, "corner-right-up": 61773, "corner-up-left": 61774, "corner-up-right": 61775, "cpu": 61776, "credit-card": 61777, "crop": 61778, "crosshair": 61779, "database": 61780, "delete": 61781, "disc": 61782, "divide": 61783, "divide-circle": 61784, "divide-square": 61785, "dollar-sign": 61786, "download": 61787, "download-cloud": 61788, "dribbble": 61789, "droplet": 61790, "edit": 61791, "edit-2": 61792, "edit-3": 61793, "external-link": 61794, "eye": 61795, "eye-off": 61796, "facebook": 61797, "fast-forward": 61798, "feather": 61799, "figma": 61800, "file": 61801, "file-minus": 61802, "file-plus": 61803, "file-text": 61804, "film": 61805, "filter": 61806, "flag": 61807, "folder": 61808, "folder-minus": 61809, "folder-plus": 61810, "framer": 61811, "frown": 61812, "gift": 61813, "git-branch": 61814, "git-commit": 61815, "git-merge": 61816, "git-pull-request": 61817, "github": 61818, "gitlab": 61819, "globe": 61820, "grid": 61821, "hard-drive": 61822, "hash": 61823, "headphones": 61824, "heart": 61825, "help-circle": 61826, "hexagon": 61827, "home": 61828, "image": 61829, "inbox": 61830, "info": 61831, "instagram": 61832, "italic": 61833, "key": 61834, "layers": 61835, "layout": 61836, "life-buoy": 61837, "link": 61838, "link-2": 61839, "linkedin": 61840, "list": 61841, "loader": 61842, "lock": 61843, "log-in": 61844, "log-out": 61845, "mail": 61846, "map": 61847, "map-pin": 61848, "maximize": 61849, "maximize-2": 61850, "meh": 61851, "menu": 61852, "message-circle": 61853, "message-square": 61854, "mic": 61855, "mic-off": 61856, "minimize": 61857, "minimize-2": 61858, "minus": 61859, "minus-circle": 61860, "minus-square": 61861, "monitor": 61862, "moon": 61863, "more-horizontal": 61864, "more-vertical": 61865, "mouse-pointer": 61866, "move": 61867, "music": 61868, "navigation": 61869, "navigation-2": 61870, "octagon": 61871, "package": 61872, "paperclip": 61873, "pause": 61874, "pause-circle": 61875, "pen-tool": 61876, "percent": 61877, "phone": 61878, "phone-call": 61879, "phone-forwarded": 61880, "phone-incoming": 61881, "phone-missed": 61882, "phone-off": 61883, "phone-outgoing": 61884, "pie-chart": 61885, "play": 61886, "play-circle": 61887, "plus": 61888, "plus-circle": 61889, "plus-square": 61890, "pocket": 61891, "power": 61892, "printer": 61893, "radio": 61894, "refresh-ccw": 61895, "refresh-cw": 61896, "repeat": 61897, "rewind": 61898, "rotate-ccw": 61899, "rotate-cw": 61900, "rss": 61901, "save": 61902, "scissors": 61903, "search": 61904, "send": 61905, "server": 61906, "settings": 61907, "share": 61908, "share-2": 61909, "shield": 61910, "shield-off": 61911, "shopping-bag": 61912, "shopping-cart": 61913, "shuffle": 61914, "sidebar": 61915, "skip-back": 61916, "skip-forward": 61917, "slack": 61918, "slash": 61919, "sliders": 61920, "smartphone": 61921, "smile": 61922, "speaker": 61923, "square": 61924, "star": 61925, "stop-circle": 61926, "sun": 61927, "sunrise": 61928, "sunset": 61929, "table": 61930, "tablet": 61931, "tag": 61932, "target": 61933, "terminal": 61934, "thermometer": 61935, "thumbs-down": 61936, "thumbs-up": 61937, "toggle-left": 61938, "toggle-right": 61939, "tool": 61940, "trash": 61941, "trash-2": 61942, "trello": 61943, "trending-down": 61944, "trending-up": 61945, "triangle": 61946, "truck": 61947, "tv": 61948, "twitch": 61949, "twitter": 61950, "type": 61951, "umbrella": 61952, "underline": 61953, "unlock": 61954, "upload": 61955, "upload-cloud": 61956, "user": 61957, "user-check": 61958, "user-minus": 61959, "user-plus": 61960, "user-x": 61961, "users": 61962, "video": 61963, "video-off": 61964, "voicemail": 61965, "volume": 61966, "volume-1": 61967, "volume-2": 61968, "volume-x": 61969, "watch": 61970, "wifi": 61971, "wifi-off": 61972, "wind": 61973, "x": 61974, "x-circle": 61975, "x-octagon": 61976, "x-square": 61977, "youtube": 61978, "zap": 61979, "zap-off": 61980, "zoom-in": 61981, "zoom-out": 61982 } ================================================ FILE: packages/feather/package.json ================================================ { "name": "@react-native-vector-icons/feather", "version": "12.5.0", "description": "Feather font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "feather" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/feather" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "feather-icons": "4.29.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/feather/react-native-vector-icons-feather.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-feather' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/feather/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Feather icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Feather.json'; export const Feather = createIconSet(glyphMap, { postScriptName: 'Feather', fontFileName: 'Feather.ttf', fontSource: require('../fonts/Feather.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type FeatherIconName = keyof typeof glyphMap; /** @alias */ export default Feather; ================================================ FILE: packages/feather/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Feather icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Feather.json'; export const Feather = createIconSet(glyphMap, { postScriptName: 'Feather', fontFileName: 'Feather.ttf', }); export type FeatherIconName = keyof typeof glyphMap; /** @alias */ export default Feather; ================================================ FILE: packages/feather/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/feather/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome", "postScriptName": "FontAwesome", "fontFileName": "FontAwesome", "className": "FontAwesome", "upstreamFont": "font-awesome", "buildSteps": { "glyphmap": { "location": "../../node_modules/font-awesome/css/font-awesome.css", "mode": "css", "prefix": ".fa-" }, "copyFont": { "location": "../../node_modules/font-awesome/fonts/fontawesome-webfont.ttf" } }, "versions": [ { "rnvi": "12.0.0", "upstream": "4.7.0" } ] } } ================================================ FILE: packages/fontawesome/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/fontawesome/README.md ================================================ # React Native Vector Icons - Fontawesome Fontawesome font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/fontawesome ``` ## Usage ```jsx import { FontAwesome } from '@react-native-vector-icons/fontawesome'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 4.7.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesome" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome/fonts" eachFile { println "(RNVI:fontawesome) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/fontawesome/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome/android/src/main/java/VectorIconsFontAwesomePackage.kt ================================================ package com.reactnativevectoricons.fontawesome import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomePackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome/glyphmaps/FontAwesome.json ================================================ { "glass": 61440, "music": 61441, "search": 61442, "envelope-o": 61443, "heart": 61444, "star": 61445, "star-o": 61446, "user": 61447, "film": 61448, "th-large": 61449, "th": 61450, "th-list": 61451, "check": 61452, "remove": 61453, "close": 61453, "times": 61453, "search-plus": 61454, "search-minus": 61456, "power-off": 61457, "signal": 61458, "gear": 61459, "cog": 61459, "trash-o": 61460, "home": 61461, "file-o": 61462, "clock-o": 61463, "road": 61464, "download": 61465, "arrow-circle-o-down": 61466, "arrow-circle-o-up": 61467, "inbox": 61468, "play-circle-o": 61469, "rotate-right": 61470, "repeat": 61470, "refresh": 61473, "list-alt": 61474, "lock": 61475, "flag": 61476, "headphones": 61477, "volume-off": 61478, "volume-down": 61479, "volume-up": 61480, "qrcode": 61481, "barcode": 61482, "tag": 61483, "tags": 61484, "book": 61485, "bookmark": 61486, "print": 61487, "camera": 61488, "font": 61489, "bold": 61490, "italic": 61491, "text-height": 61492, "text-width": 61493, "align-left": 61494, "align-center": 61495, "align-right": 61496, "align-justify": 61497, "list": 61498, "dedent": 61499, "outdent": 61499, "indent": 61500, "video-camera": 61501, "photo": 61502, "image": 61502, "picture-o": 61502, "pencil": 61504, "map-marker": 61505, "adjust": 61506, "tint": 61507, "edit": 61508, "pencil-square-o": 61508, "share-square-o": 61509, "check-square-o": 61510, "arrows": 61511, "step-backward": 61512, "fast-backward": 61513, "backward": 61514, "play": 61515, "pause": 61516, "stop": 61517, "forward": 61518, "fast-forward": 61520, "step-forward": 61521, "eject": 61522, "chevron-left": 61523, "chevron-right": 61524, "plus-circle": 61525, "minus-circle": 61526, "times-circle": 61527, "check-circle": 61528, "question-circle": 61529, "info-circle": 61530, "crosshairs": 61531, "times-circle-o": 61532, "check-circle-o": 61533, "ban": 61534, "arrow-left": 61536, "arrow-right": 61537, "arrow-up": 61538, "arrow-down": 61539, "mail-forward": 61540, "share": 61540, "expand": 61541, "compress": 61542, "plus": 61543, "minus": 61544, "asterisk": 61545, "exclamation-circle": 61546, "gift": 61547, "leaf": 61548, "fire": 61549, "eye": 61550, "eye-slash": 61552, "warning": 61553, "exclamation-triangle": 61553, "plane": 61554, "calendar": 61555, "random": 61556, "comment": 61557, "magnet": 61558, "chevron-up": 61559, "chevron-down": 61560, "retweet": 61561, "shopping-cart": 61562, "folder": 61563, "folder-open": 61564, "arrows-v": 61565, "arrows-h": 61566, "bar-chart-o": 61568, "bar-chart": 61568, "twitter-square": 61569, "facebook-square": 61570, "camera-retro": 61571, "key": 61572, "gears": 61573, "cogs": 61573, "comments": 61574, "thumbs-o-up": 61575, "thumbs-o-down": 61576, "star-half": 61577, "heart-o": 61578, "sign-out": 61579, "linkedin-square": 61580, "thumb-tack": 61581, "external-link": 61582, "sign-in": 61584, "trophy": 61585, "github-square": 61586, "upload": 61587, "lemon-o": 61588, "phone": 61589, "square-o": 61590, "bookmark-o": 61591, "phone-square": 61592, "twitter": 61593, "facebook-f": 61594, "facebook": 61594, "github": 61595, "unlock": 61596, "credit-card": 61597, "feed": 61598, "rss": 61598, "hdd-o": 61600, "bullhorn": 61601, "bell": 61683, "certificate": 61603, "hand-o-right": 61604, "hand-o-left": 61605, "hand-o-up": 61606, "hand-o-down": 61607, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-circle-down": 61611, "globe": 61612, "wrench": 61613, "tasks": 61614, "filter": 61616, "briefcase": 61617, "arrows-alt": 61618, "group": 61632, "users": 61632, "chain": 61633, "link": 61633, "cloud": 61634, "flask": 61635, "cut": 61636, "scissors": 61636, "copy": 61637, "files-o": 61637, "paperclip": 61638, "save": 61639, "floppy-o": 61639, "square": 61640, "navicon": 61641, "reorder": 61641, "bars": 61641, "list-ul": 61642, "list-ol": 61643, "strikethrough": 61644, "underline": 61645, "table": 61646, "magic": 61648, "truck": 61649, "pinterest": 61650, "pinterest-square": 61651, "google-plus-square": 61652, "google-plus": 61653, "money": 61654, "caret-down": 61655, "caret-up": 61656, "caret-left": 61657, "caret-right": 61658, "columns": 61659, "unsorted": 61660, "sort": 61660, "sort-down": 61661, "sort-desc": 61661, "sort-up": 61662, "sort-asc": 61662, "envelope": 61664, "linkedin": 61665, "rotate-left": 61666, "undo": 61666, "legal": 61667, "gavel": 61667, "dashboard": 61668, "tachometer": 61668, "comment-o": 61669, "comments-o": 61670, "flash": 61671, "bolt": 61671, "sitemap": 61672, "umbrella": 61673, "paste": 61674, "clipboard": 61674, "lightbulb-o": 61675, "exchange": 61676, "cloud-download": 61677, "cloud-upload": 61678, "user-md": 61680, "stethoscope": 61681, "suitcase": 61682, "bell-o": 61602, "coffee": 61684, "cutlery": 61685, "file-text-o": 61686, "building-o": 61687, "hospital-o": 61688, "ambulance": 61689, "medkit": 61690, "fighter-jet": 61691, "beer": 61692, "h-square": 61693, "plus-square": 61694, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-double-down": 61699, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle-down": 61703, "desktop": 61704, "laptop": 61705, "tablet": 61706, "mobile-phone": 61707, "mobile": 61707, "circle-o": 61708, "quote-left": 61709, "quote-right": 61710, "spinner": 61712, "circle": 61713, "mail-reply": 61714, "reply": 61714, "github-alt": 61715, "folder-o": 61716, "folder-open-o": 61717, "smile-o": 61720, "frown-o": 61721, "meh-o": 61722, "gamepad": 61723, "keyboard-o": 61724, "flag-o": 61725, "flag-checkered": 61726, "terminal": 61728, "code": 61729, "mail-reply-all": 61730, "reply-all": 61730, "star-half-empty": 61731, "star-half-full": 61731, "star-half-o": 61731, "location-arrow": 61732, "crop": 61733, "code-fork": 61734, "unlink": 61735, "chain-broken": 61735, "question": 61736, "info": 61737, "exclamation": 61738, "superscript": 61739, "subscript": 61740, "eraser": 61741, "puzzle-piece": 61742, "microphone": 61744, "microphone-slash": 61745, "shield": 61746, "calendar-o": 61747, "fire-extinguisher": 61748, "rocket": 61749, "maxcdn": 61750, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-circle-down": 61754, "html5": 61755, "css3": 61756, "anchor": 61757, "unlock-alt": 61758, "bullseye": 61760, "ellipsis-h": 61761, "ellipsis-v": 61762, "rss-square": 61763, "play-circle": 61764, "ticket": 61765, "minus-square": 61766, "minus-square-o": 61767, "level-up": 61768, "level-down": 61769, "check-square": 61770, "pencil-square": 61771, "external-link-square": 61772, "share-square": 61773, "compass": 61774, "toggle-down": 61776, "caret-square-o-down": 61776, "toggle-up": 61777, "caret-square-o-up": 61777, "toggle-right": 61778, "caret-square-o-right": 61778, "euro": 61779, "eur": 61779, "gbp": 61780, "dollar": 61781, "usd": 61781, "rupee": 61782, "inr": 61782, "cny": 61783, "rmb": 61783, "yen": 61783, "jpy": 61783, "ruble": 61784, "rouble": 61784, "rub": 61784, "won": 61785, "krw": 61785, "bitcoin": 61786, "btc": 61786, "file": 61787, "file-text": 61788, "sort-alpha-asc": 61789, "sort-alpha-desc": 61790, "sort-amount-asc": 61792, "sort-amount-desc": 61793, "sort-numeric-asc": 61794, "sort-numeric-desc": 61795, "thumbs-up": 61796, "thumbs-down": 61797, "youtube-square": 61798, "youtube": 61799, "xing": 61800, "xing-square": 61801, "youtube-play": 61802, "dropbox": 61803, "stack-overflow": 61804, "instagram": 61805, "flickr": 61806, "adn": 61808, "bitbucket": 61809, "bitbucket-square": 61810, "tumblr": 61811, "tumblr-square": 61812, "long-arrow-down": 61813, "long-arrow-up": 61814, "long-arrow-left": 61815, "long-arrow-right": 61816, "apple": 61817, "windows": 61818, "android": 61819, "linux": 61820, "dribbble": 61821, "skype": 61822, "foursquare": 61824, "trello": 61825, "female": 61826, "male": 61827, "gittip": 61828, "gratipay": 61828, "sun-o": 61829, "moon-o": 61830, "archive": 61831, "bug": 61832, "vk": 61833, "weibo": 61834, "renren": 61835, "pagelines": 61836, "stack-exchange": 61837, "arrow-circle-o-right": 61838, "arrow-circle-o-left": 61840, "toggle-left": 61841, "caret-square-o-left": 61841, "dot-circle-o": 61842, "wheelchair": 61843, "vimeo-square": 61844, "turkish-lira": 61845, "try": 61845, "plus-square-o": 61846, "space-shuttle": 61847, "slack": 61848, "envelope-square": 61849, "wordpress": 61850, "openid": 61851, "institution": 61852, "bank": 61852, "university": 61852, "mortar-board": 61853, "graduation-cap": 61853, "yahoo": 61854, "google": 61856, "reddit": 61857, "reddit-square": 61858, "stumbleupon-circle": 61859, "stumbleupon": 61860, "delicious": 61861, "digg": 61862, "pied-piper-pp": 61863, "pied-piper-alt": 61864, "drupal": 61865, "joomla": 61866, "language": 61867, "fax": 61868, "building": 61869, "child": 61870, "paw": 61872, "spoon": 61873, "cube": 61874, "cubes": 61875, "behance": 61876, "behance-square": 61877, "steam": 61878, "steam-square": 61879, "recycle": 61880, "automobile": 61881, "car": 61881, "cab": 61882, "taxi": 61882, "tree": 61883, "spotify": 61884, "deviantart": 61885, "soundcloud": 61886, "database": 61888, "file-pdf-o": 61889, "file-word-o": 61890, "file-excel-o": 61891, "file-powerpoint-o": 61892, "file-photo-o": 61893, "file-picture-o": 61893, "file-image-o": 61893, "file-zip-o": 61894, "file-archive-o": 61894, "file-sound-o": 61895, "file-audio-o": 61895, "file-movie-o": 61896, "file-video-o": 61896, "file-code-o": 61897, "vine": 61898, "codepen": 61899, "jsfiddle": 61900, "life-bouy": 61901, "life-buoy": 61901, "life-saver": 61901, "support": 61901, "life-ring": 61901, "circle-o-notch": 61902, "ra": 61904, "resistance": 61904, "rebel": 61904, "ge": 61905, "empire": 61905, "git-square": 61906, "git": 61907, "y-combinator-square": 61908, "yc-square": 61908, "hacker-news": 61908, "tencent-weibo": 61909, "qq": 61910, "wechat": 61911, "weixin": 61911, "send": 61912, "paper-plane": 61912, "send-o": 61913, "paper-plane-o": 61913, "history": 61914, "circle-thin": 61915, "header": 61916, "paragraph": 61917, "sliders": 61918, "share-alt": 61920, "share-alt-square": 61921, "bomb": 61922, "soccer-ball-o": 61923, "futbol-o": 61923, "tty": 61924, "binoculars": 61925, "plug": 61926, "slideshare": 61927, "twitch": 61928, "yelp": 61929, "newspaper-o": 61930, "wifi": 61931, "calculator": 61932, "paypal": 61933, "google-wallet": 61934, "cc-visa": 61936, "cc-mastercard": 61937, "cc-discover": 61938, "cc-amex": 61939, "cc-paypal": 61940, "cc-stripe": 61941, "bell-slash": 61942, "bell-slash-o": 61943, "trash": 61944, "copyright": 61945, "at": 61946, "eyedropper": 61947, "paint-brush": 61948, "birthday-cake": 61949, "area-chart": 61950, "pie-chart": 61952, "line-chart": 61953, "lastfm": 61954, "lastfm-square": 61955, "toggle-off": 61956, "toggle-on": 61957, "bicycle": 61958, "bus": 61959, "ioxhost": 61960, "angellist": 61961, "cc": 61962, "shekel": 61963, "sheqel": 61963, "ils": 61963, "meanpath": 61964, "buysellads": 61965, "connectdevelop": 61966, "dashcube": 61968, "forumbee": 61969, "leanpub": 61970, "sellsy": 61971, "shirtsinbulk": 61972, "simplybuilt": 61973, "skyatlas": 61974, "cart-plus": 61975, "cart-arrow-down": 61976, "diamond": 61977, "ship": 61978, "user-secret": 61979, "motorcycle": 61980, "street-view": 61981, "heartbeat": 61982, "venus": 61985, "mars": 61986, "mercury": 61987, "intersex": 61988, "transgender": 61988, "transgender-alt": 61989, "venus-double": 61990, "mars-double": 61991, "venus-mars": 61992, "mars-stroke": 61993, "mars-stroke-v": 61994, "mars-stroke-h": 61995, "neuter": 61996, "genderless": 61997, "facebook-official": 62000, "pinterest-p": 62001, "whatsapp": 62002, "server": 62003, "user-plus": 62004, "user-times": 62005, "hotel": 62006, "bed": 62006, "viacoin": 62007, "train": 62008, "subway": 62009, "medium": 62010, "yc": 62011, "y-combinator": 62011, "optin-monster": 62012, "opencart": 62013, "expeditedssl": 62014, "battery-4": 62016, "battery": 62016, "battery-full": 62016, "battery-3": 62017, "battery-three-quarters": 62017, "battery-2": 62018, "battery-half": 62018, "battery-1": 62019, "battery-quarter": 62019, "battery-0": 62020, "battery-empty": 62020, "mouse-pointer": 62021, "i-cursor": 62022, "object-group": 62023, "object-ungroup": 62024, "sticky-note": 62025, "sticky-note-o": 62026, "cc-jcb": 62027, "cc-diners-club": 62028, "clone": 62029, "balance-scale": 62030, "hourglass-o": 62032, "hourglass-1": 62033, "hourglass-start": 62033, "hourglass-2": 62034, "hourglass-half": 62034, "hourglass-3": 62035, "hourglass-end": 62035, "hourglass": 62036, "hand-grab-o": 62037, "hand-rock-o": 62037, "hand-stop-o": 62038, "hand-paper-o": 62038, "hand-scissors-o": 62039, "hand-lizard-o": 62040, "hand-spock-o": 62041, "hand-pointer-o": 62042, "hand-peace-o": 62043, "trademark": 62044, "registered": 62045, "creative-commons": 62046, "gg": 62048, "gg-circle": 62049, "tripadvisor": 62050, "odnoklassniki": 62051, "odnoklassniki-square": 62052, "get-pocket": 62053, "wikipedia-w": 62054, "safari": 62055, "chrome": 62056, "firefox": 62057, "opera": 62058, "internet-explorer": 62059, "tv": 62060, "television": 62060, "contao": 62061, "500px": 62062, "amazon": 62064, "calendar-plus-o": 62065, "calendar-minus-o": 62066, "calendar-times-o": 62067, "calendar-check-o": 62068, "industry": 62069, "map-pin": 62070, "map-signs": 62071, "map-o": 62072, "map": 62073, "commenting": 62074, "commenting-o": 62075, "houzz": 62076, "vimeo": 62077, "black-tie": 62078, "fonticons": 62080, "reddit-alien": 62081, "edge": 62082, "credit-card-alt": 62083, "codiepie": 62084, "modx": 62085, "fort-awesome": 62086, "usb": 62087, "product-hunt": 62088, "mixcloud": 62089, "scribd": 62090, "pause-circle": 62091, "pause-circle-o": 62092, "stop-circle": 62093, "stop-circle-o": 62094, "shopping-bag": 62096, "shopping-basket": 62097, "hashtag": 62098, "bluetooth": 62099, "bluetooth-b": 62100, "percent": 62101, "gitlab": 62102, "wpbeginner": 62103, "wpforms": 62104, "envira": 62105, "universal-access": 62106, "wheelchair-alt": 62107, "question-circle-o": 62108, "blind": 62109, "audio-description": 62110, "volume-control-phone": 62112, "braille": 62113, "assistive-listening-systems": 62114, "asl-interpreting": 62115, "american-sign-language-interpreting": 62115, "deafness": 62116, "hard-of-hearing": 62116, "deaf": 62116, "glide": 62117, "glide-g": 62118, "signing": 62119, "sign-language": 62119, "low-vision": 62120, "viadeo": 62121, "viadeo-square": 62122, "snapchat": 62123, "snapchat-ghost": 62124, "snapchat-square": 62125, "pied-piper": 62126, "first-order": 62128, "yoast": 62129, "themeisle": 62130, "google-plus-circle": 62131, "google-plus-official": 62131, "fa": 62132, "font-awesome": 62132, "handshake-o": 62133, "envelope-open": 62134, "envelope-open-o": 62135, "linode": 62136, "address-book": 62137, "address-book-o": 62138, "vcard": 62139, "address-card": 62139, "vcard-o": 62140, "address-card-o": 62140, "user-circle": 62141, "user-circle-o": 62142, "user-o": 62144, "id-badge": 62145, "drivers-license": 62146, "id-card": 62146, "drivers-license-o": 62147, "id-card-o": 62147, "quora": 62148, "free-code-camp": 62149, "telegram": 62150, "thermometer-4": 62151, "thermometer": 62151, "thermometer-full": 62151, "thermometer-3": 62152, "thermometer-three-quarters": 62152, "thermometer-2": 62153, "thermometer-half": 62153, "thermometer-1": 62154, "thermometer-quarter": 62154, "thermometer-0": 62155, "thermometer-empty": 62155, "shower": 62156, "bathtub": 62157, "s15": 62157, "bath": 62157, "podcast": 62158, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "times-rectangle": 62163, "window-close": 62163, "times-rectangle-o": 62164, "window-close-o": 62164, "bandcamp": 62165, "grav": 62166, "etsy": 62167, "imdb": 62168, "ravelry": 62169, "eercast": 62170, "microchip": 62171, "snowflake-o": 62172, "superpowers": 62173, "wpexplorer": 62174, "meetup": 62176 } ================================================ FILE: packages/fontawesome/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome", "version": "12.5.0", "description": "Fontawesome font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "font-awesome": "4.7.0" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome/react-native-vector-icons-fontawesome.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/fontawesome/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesome icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesome.json'; export const FontAwesome = createIconSet(glyphMap, { postScriptName: 'FontAwesome', fontFileName: 'FontAwesome.ttf', fontSource: require('../fonts/FontAwesome.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type FontAwesomeIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesome; ================================================ FILE: packages/fontawesome/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesome icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesome.json'; export const FontAwesome = createIconSet(glyphMap, { postScriptName: 'FontAwesome', fontFileName: 'FontAwesome.ttf', }); export type FontAwesomeIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesome; ================================================ FILE: packages/fontawesome/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-common/CHANGELOG.md ================================================ ## 12.4.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.3.2 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.3.1 (2026-03-10) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ## 12.3.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.2.0 (2025-08-03) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🩹 Fixes - put fontawesome pro fonts in the right path ([#1783](https://github.com/oblador/react-native-vector-icons/pull/1783)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf - Peter Lazar @peterlazar1993 ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - update fontawesome fonts to new createIcon format so font loads in expo ([#1769](https://github.com/oblador/react-native-vector-icons/pull/1769)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - improve warning if glyph does not exist for default IconStyle in fontawesome fonts ([#1718](https://github.com/oblador/react-native-vector-icons/pull/1718)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) - **fontawesome-common,fontawesome5-pro,fontawesome6-pro:** fix FA upgrade scripts (fixes: #1727) ([#1741](https://github.com/oblador/react-native-vector-icons/pull/1741), [#1727](https://github.com/oblador/react-native-vector-icons/issues/1727)) ### ❤️ Thank You - John Ferlito @johnf - Lukas @WookieFPV - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/fontawesome-common/README.md ================================================ # FontAwesome Common ================================================ FILE: packages/fontawesome-common/bin/fa-upgrade ================================================ #!/bin/sh set -e TEMP_DIR_PATH="" FONTAWESOME_PRO_DIR_NAME="" VERSION=$1 DEST_DIR_PATH=${2:-"rnvi-fonts"} if [ "$VERSION" = "5" ] || [ "$VERSION" = "6" ]; then DEST_DIR_PATH="${DEST_DIR_PATH}/fontawesome${VERSION}-pro" fi FONT_NAME="Font Awesome Pro ${VERSION}" setup_npm_config() { # always returns successfull zero code if [ "$(npm config get @fortawesome:registry)" = "undefined" ]; then npm config set "@fortawesome:registry" https://npm.fontawesome.com/ fi local npm_token="" echo "Please enter your $FONT_NAME npm token:" read npm_token npm config set "//npm.fontawesome.com/:_authToken" "${npm_token}" } create_tmp_directory() { local tmp_dir="$(mktemp -d -t 'rnvi.XXXXXX')" retval=$? if [ "$retval" != 0 ]; then echo "[FAIL] Can't create temporary directory" return 1 fi if [ -z "$tmp_dir" ]; then echo "[FAIL] Generated temporary directory name is empty" return 1 fi TEMP_DIR_PATH="$tmp_dir" } download_and_unpack_fontawesome_pro() { local archive_file_name="$(npm pack @fortawesome/fontawesome-pro@^${VERSION} --silent)" retval=$? if [ "$retval" != 0 ]; then echo "[FAIL] Can't download [$archive_file_name] archive" return 1 fi tar -xzf "$archive_file_name" retval=$? if [ "$retval" != 0 ]; then echo "[FAIL] Can't unpack [$archive_file_name] archive" return 1 fi local font_dir_name="package" if [ ! -d "$font_dir_name" ]; then echo "[FAIL] Archive doesn't contain [$font_dir_name] required directory" return 1 fi FONTAWESOME_PRO_DIR_NAME="$font_dir_name" } copy_ttf_fonts_to_dest_dir() { mkdir -p "$DEST_DIR_PATH" retval=$? if [ "$retval" != 0 ]; then echo "[FAIL] Can't create [$DEST_DIR_PATH] directory" return 1 fi local font_dir_path="$TEMP_DIR_PATH/$FONTAWESOME_PRO_DIR_NAME/webfonts" if [ "$VERSION" = "5" ]; then cp "$font_dir_path/fa-brands-400.ttf" "$DEST_DIR_PATH/FontAwesome5_Pro_Brands.ttf" && cp "$font_dir_path/fa-duotone-900.ttf" "$DEST_DIR_PATH/FontAwesome5_Pro_Duotone.ttf" && cp "$font_dir_path/fa-light-300.ttf" "$DEST_DIR_PATH/FontAwesome5_Pro_Light.ttf" && cp "$font_dir_path/fa-regular-400.ttf" "$DEST_DIR_PATH/FontAwesome5_Pro_Regular.ttf" && cp "$font_dir_path/fa-solid-900.ttf" "$DEST_DIR_PATH/FontAwesome5_Pro_Solid.ttf" elif [ "$VERSION" = "6" ]; then cp "$font_dir_path/fa-brands-400.ttf" "$DEST_DIR_PATH/FontAwesome6_Pro_Brands.ttf" && cp "$font_dir_path/fa-duotone-900.ttf" "$DEST_DIR_PATH/FontAwesome6_Pro_Duotone.ttf" && cp "$font_dir_path/fa-light-300.ttf" "$DEST_DIR_PATH/FontAwesome6_Pro_Light.ttf" && cp "$font_dir_path/fa-regular-400.ttf" "$DEST_DIR_PATH/FontAwesome6_Pro_Regular.ttf" && cp "$font_dir_path/fa-sharp-light-300.ttf" "$DEST_DIR_PATH/FontAwesome6_Pro_Sharp_Light.ttf" cp "$font_dir_path/fa-sharp-regular-400.ttf" "$DEST_DIR_PATH/FontAwesome6_Pro_Sharp_Regular.ttf" cp "$font_dir_path/fa-sharp-solid-900.ttf" "$DEST_DIR_PATH/FontAwesome6_Pro_Sharp_Solid.ttf" cp "$font_dir_path/fa-sharp-thin-100.ttf" "$DEST_DIR_PATH/FontAwesome6_Pro_Sharp_Thin.ttf" cp "$font_dir_path/fa-solid-900.ttf" "$DEST_DIR_PATH/FontAwesome6_Pro_Solid.ttf" && cp "$font_dir_path/fa-thin-100.ttf" "$DEST_DIR_PATH/FontAwesome6_Pro_Thin.ttf" else echo "[FAIL] Unsupported version [$VERSION]" exit 1 fi retval=$? if [ "$retval" != 0 ]; then echo "[FAIL] Can't copy ttf fonts to [$DEST_DIR_PATH] directory" return 1 fi } if create_tmp_directory; then echo "[SUCCESS] Temporary directory [$TEMP_DIR_PATH] was created" else exit 1 fi cd "$TEMP_DIR_PATH" if setup_npm_config; then echo "[SUCCESS] Set up npm config" else exit 1 fi if download_and_unpack_fontawesome_pro; then echo "[SUCCESS] $FONT_NAME was unpacked to [$TEMP_DIR_PATH/$FONTAWESOME_PRO_DIR_NAME] directory" else exit 1 fi cd - >/dev/null if copy_ttf_fonts_to_dest_dir; then echo "[SUCCESS] Copied $FONT_NAME to [$DEST_DIR_PATH] directory" else exit 1 fi echo "[SUCCESS] $FONT_NAME was successfully upgraded" echo "Note: [$TEMP_DIR_PATH] was created. Delete it manually or it will be deleted automatically on next reboot" ================================================ FILE: packages/fontawesome-common/bin/fa-upgrade5 ================================================ #!/bin/sh set -e SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" "${SCRIPT_DIR}"/fa-upgrade 5 "$@" ================================================ FILE: packages/fontawesome-common/bin/fa-upgrade6 ================================================ #!/bin/sh set -e SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" "${SCRIPT_DIR}"/fa-upgrade 6 "$@" ================================================ FILE: packages/fontawesome-common/generators/app/templates/src/index.tsx ================================================ /* eslint-disable react/jsx-pascal-case, no-console */ /** * This is a generated file. If you modify it manually, your changes will be lost! * Instead, modify the template in `fontawesome-common/generator`. * * <%= className %> icon set component. * Usage: <<%= className %> name="icon-name" size={20} color="#4F8EF7" /> */ import type { ComponentProps } from 'react'; import { Platform, type TextStyle } from 'react-native'; import { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common'; <% upperDefaultStyleName = meta.defaultStyleName.charAt(0).toUpperCase() + meta.defaultStyleName.slice(1) -%> <% meta.styleNames.sort().forEach((styleName) => { -%> import <%= styleName %>GM from '../glyphmaps/<%= className %>_<%= styleName %>.json'; <% }) -%> import metadata from '../glyphmaps/<%- className %>_meta.json'; const glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph); const fontStyle = (fontWeight: TextStyle['fontWeight']) => Platform.select({ ios: { fontWeight, }, default: {}, }); <% Object.entries(meta.styles).forEach(([styleName, { family, name, weight }]) => { -%> <% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%> // biome-ignore format: We want these to be consistent and we are fine with single for all const <%= upperStyleName %>Icon = createIconSet(<%= styleName %>GM, { postScriptName: '<%= family %>', fontFileName: '<%= name %>', <% if (!locals.isStatic && !packageName.endsWith('-pro')) { -%> fontSource: require('../fonts/<%= name %>'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require <% } -%> fontStyle: fontStyle('<%= weight %>') }); export type <%= className %><%= upperStyleName %>IconName = keyof typeof <%= styleName %>GM; <% }) -%> type Props = <% Object.entries(meta.styles).forEach(([styleName, { family, name, weight }]) => { -%> <% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%> | ({ iconStyle: '<%= styleName %>' } & ComponentPropsIcon>) <% }) -%> | ({ iconStyle?: never } & ComponentPropsIcon>); export const <%= className %> = (props: Props) => { const { iconStyle, name } = props; if (!iconStyle) { if (!glyphValidator(name, 'regular')) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for <%= className %>`); } return <<%= upperDefaultStyleName %>Icon {...props} />; } if (!glyphValidator(name, iconStyle)) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for <%= className %>`); return <<%= upperDefaultStyleName %>Icon {...(props as ComponentPropsIcon>)} />; } switch (iconStyle) { <% meta.styleNames.forEach((styleName) => { -%> <% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%> case '<%= styleName %>': return <<%= upperStyleName %>Icon {...props} />; <% }) -%> default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for <%= className %>`); return <<%= upperDefaultStyleName %>Icon {...(props as ComponentPropsIcon>)} />; } }; type GetImageSourceFunc = { <% meta.styleNames.forEach((styleName) => { -%> <% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%> ( iconStyle: '<%= styleName %>', name: ComponentPropsIcon>['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof <%= upperStyleName %>Icon)['getImageSource']>; <% }) -%> }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { <% meta.styleNames.forEach((styleName) => { -%> <% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%> case '<%= styleName %>': return <%= upperStyleName %>Icon.getImageSource(name as keyof typeof <%= styleName %>GM, size, color); <% }) -%> default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for <%= className %>`); return <%= upperDefaultStyleName %>Icon.getImageSource(name as keyof typeof <%= meta.defaultStyleName %>GM, size, color); } }; <%= className %>.getImageSource = getImageSource; type GetImageSourceSyncFunc = { <% meta.styleNames.forEach((styleName) => { -%> <% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%> ( iconStyle: '<%= styleName %>', name: ComponentPropsIcon>['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof <%= upperStyleName %>Icon)['getImageSourceSync']>; <% }) -%> }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { <% meta.styleNames.forEach((styleName) => { -%> <% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%> case '<%= styleName %>': return <%= upperStyleName %>Icon.getImageSourceSync(name as keyof typeof <%= styleName %>GM, size, color); <% }) -%> default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for <%= className %>`); return <%= upperDefaultStyleName %>Icon.getImageSourceSync(name as keyof typeof <%= meta.defaultStyleName %>GM, size, color); } }; <%= className %>.getImageSourceSync = getImageSourceSync; export type <%= className %>IconName = ComponentProps>['name']; /** @alias */ export default <%= className %>; ================================================ FILE: packages/fontawesome-common/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-common", "version": "12.4.0", "description": "Fontawesome 5 & 6 Pro Common library for react native vector icons", "react-native": "src/index", "source": "src/index", "files": [ "src", "lib", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "fontawesome" ], "repository": { "type": "git", "url": "git://github.com/oblador/react-native-vector-icons.git" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "homepage": "https://github.com/oblador/react-native-vector-icons", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@types/react": "^19.0.12", "typescript": "^5.7.2", "yargs": "^17.7.2" }, "engines": { "node": ">= 18.0.0" }, "bin": { "fa-upgrade": "./bin/fa-upgrade", "fa-upgrade5": "./bin/fa-upgrade5", "fa-upgrade6": "./bin/fa-upgrade6" } } ================================================ FILE: packages/fontawesome-common/scripts/fetch-pro.sh ================================================ #!/usr/bin/env bash set -e VERSION=$1 if [ -z "$VERSION" ]; then echo "Pass version as first argument" exit 1 fi mkdir fa cd fa # So the npm commands work with workspaces touch package.json npm config set '@fortawesome:registry' https://npm.fontawesome.com/ if [ -z "$(npm config get | grep '//npm.fontawesome.com/:_authToken')" ]; then echo -n 'Please enter your FontAwesome npm token: ' read -r fa_token npm config set '//npm.fontawesome.com/:_authToken' "${fa_token}" fi ARCHIVE=$(npm pack "@fortawesome/fontawesome-pro@^$VERSION" --silent 2>/dev/null) tar -xzf "$ARCHIVE" mv package pro ================================================ FILE: packages/fontawesome-common/scripts/generate-fontawesome-glyphmap.mts ================================================ #!/usr/bin/env node import fs from 'node:fs'; const css = process.argv[2]; const svgDir = process.argv[3]; if (!css || !svgDir) { console.error('Usage: generate-fontawesome-glyphmap '); process.exit(1); } const icons = fs .readdirSync(svgDir) .filter((file) => file.endsWith('.svg')) .map((file) => file.replace('.svg', '')); const mainMap = JSON.parse(fs.readFileSync(`glyphmaps/${css}`, 'utf8')) as Record; const glyphMap: Record = {}; icons.forEach((icon) => { if (!mainMap[icon]) { console.log(`Icon "${icon}" not found in main glyphmap for "${css}"`); return; } glyphMap[icon] = mainMap[icon]; }); fs.writeFileSync(`glyphmaps/${css}`, JSON.stringify(glyphMap, null, 2), 'utf8'); ================================================ FILE: packages/fontawesome-common/scripts/generate-fontawesome-metadata.js ================================================ #!/usr/bin/env node // TODO: Rewrite this script in TypeScript const fs = require('node:fs'); // eslint-disable-line @typescript-eslint/no-require-imports const yargs = require('yargs'); // eslint-disable-line @typescript-eslint/no-require-imports,import/no-extraneous-dependencies const { argv } = yargs .usage('') .option('path', { alias: 'p', string: true, }) .option('output', { alias: 'o', string: true, }) .demandOption('path') .demandOption('output'); const path = `${argv.path}/svgs/`; const mapFamily = (family) => { switch (family) { case 'brands': return 'brand'; case 'sharp-thin': return 'sharpThin'; case 'sharp-light': return 'sharpLight'; case 'sharp-regular': return 'sharp'; case 'sharp-solid': return 'sharpSolid'; default: return family; } }; const generatedJSON = {}; fs.readdirSync(path) .filter((file) => fs.statSync(path + file).isDirectory()) .forEach((file) => { const icons = fs.readdirSync(path + file); const name = mapFamily(file); generatedJSON[name] = icons.map((icon) => icon.split('.')[0]); }); fs.writeFileSync(argv.output, `${JSON.stringify(generatedJSON, null, 2)}\r\n`, 'utf8'); const glyphMaps = {}; const iconTypes = Object.keys(generatedJSON); const mainMapFilename = argv.output.replace('_meta', ''); const mainMap = JSON.parse(fs.readFileSync(mainMapFilename, 'utf8')); iconTypes.forEach((iconType) => { const glyphs = generatedJSON[iconType]; glyphMaps[iconType] = {}; glyphs.forEach((glyph) => { glyphMaps[iconType][glyph] = mainMap[glyph]; }); fs.writeFileSync(argv.output.replace('_meta', `_${iconType}`), JSON.stringify(glyphMaps[iconType]), 'utf8'); }); ================================================ FILE: packages/fontawesome-free-brands/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-free-brands", "upstreamFont": "@fortawesome/fontawesome-free", "className": "FontAwesomeFreeBrands", "postScriptName": "FontAwesome7Brands-Regular", "fontFileName": "fa-brands-400", "buildSteps": { "glyphmap": { "location": "../../node_modules/@fortawesome/fontawesome-free/css/brands.css", "mode": "css", "prefix": ".fa-" }, "copyFont": { "location": "../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2", "cleanup": true } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-free-brands/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-free-brands/README.md ================================================ # React Native Vector Icons - Fontawesome Free Brands Fontawesome Free Brands font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-free-brands ``` ## Usage ```jsx import { FontAwesomeFreeBrands } from '@react-native-vector-icons/fontawesome-free-brands'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-free-brands/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_free_brands" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeFreeBrands" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_free_brands" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-free-brands") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-free-brands/fonts" eachFile { println "(RNVI:fontawesome-free-brands) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/fontawesome-free-brands/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-free-brands/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-free-brands/android/src/main/java/VectorIconsFontAwesomeFreeBrandsPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_free_brands import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeFreeBrandsPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-free-brands/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-free-brands/glyphmaps/FontAwesomeFreeBrands.json ================================================ { "firefox-browser": 57351, "ideal": 57363, "microblog": 57370, "square-pied-piper": 57374, "pied-piper-square": 57374, "unity": 57417, "dailymotion": 57426, "square-instagram": 57429, "instagram-square": 57429, "mixer": 57430, "shopify": 57431, "deezer": 57463, "edge-legacy": 57464, "google-pay": 57465, "rust": 57466, "tiktok": 57467, "unsplash": 57468, "cloudflare": 57469, "guilded": 57470, "hive": 57471, "42-group": 57472, "innosoft": 57472, "instalod": 57473, "octopus-deploy": 57474, "perbyte": 57475, "uncharted": 57476, "watchman-monitoring": 57479, "wodu": 57480, "wirsindhandwerk": 58064, "wsh": 58064, "bots": 58176, "cmplid": 58208, "bilibili": 58329, "golang": 58383, "pix": 58426, "sitrox": 58442, "hashnode": 58521, "meta": 58523, "padlet": 58528, "nfc-directional": 58672, "nfc-symbol": 58673, "screenpal": 58736, "space-awesome": 58796, "square-font-awesome": 58797, "square-gitlab": 58798, "gitlab-square": 58798, "odysee": 58822, "stubber": 58823, "debian": 58891, "shoelace": 58892, "threads": 58904, "square-threads": 58905, "square-x-twitter": 58906, "x-twitter": 58907, "opensuse": 58923, "letterboxd": 58925, "square-letterboxd": 58926, "mintbit": 58927, "google-scholar": 58939, "brave": 58940, "brave-reverse": 58941, "pixiv": 58944, "upwork": 58945, "webflow": 58972, "signal-messenger": 58979, "bluesky": 58993, "jxl": 59003, "square-upwork": 59004, "web-awesome": 59010, "square-web-awesome": 59011, "square-web-awesome-stroke": 59012, "dart-lang": 59027, "flutter": 59028, "files-pinwheel": 59039, "css": 59042, "square-bluesky": 59043, "openai": 59343, "square-linkedin": 59344, "cash-app": 59348, "disqus": 59349, "eleventy": 59350, "11ty": 59350, "kakao-talk": 59351, "linktree": 59352, "notion": 59353, "pandora": 59354, "pixelfed": 59355, "tidal": 59356, "vsco": 59357, "w3c": 59358, "lumon": 59362, "lumon-drop": 59363, "square-figma": 59364, "tex": 59391, "duolingo": 59410, "square-twitter": 61569, "twitter-square": 61569, "square-facebook": 61570, "facebook-square": 61570, "linkedin": 61580, "square-github": 61586, "github-square": 61586, "twitter": 61593, "facebook": 61594, "github": 61595, "pinterest": 61650, "square-pinterest": 61651, "pinterest-square": 61651, "square-google-plus": 61652, "google-plus-square": 61652, "google-plus-g": 61653, "linkedin-in": 61665, "github-alt": 61715, "maxcdn": 61750, "html5": 61755, "css3": 61756, "btc": 61786, "youtube": 61799, "xing": 61800, "square-xing": 61801, "xing-square": 61801, "dropbox": 61803, "stack-overflow": 61804, "instagram": 61805, "flickr": 61806, "adn": 61808, "bitbucket": 61809, "tumblr": 61811, "square-tumblr": 61812, "tumblr-square": 61812, "apple": 61817, "windows": 61818, "android": 61819, "linux": 61820, "dribbble": 61821, "skype": 61822, "foursquare": 61824, "trello": 61825, "gratipay": 61828, "vk": 61833, "weibo": 61834, "renren": 61835, "pagelines": 61836, "stack-exchange": 61837, "square-vimeo": 61844, "vimeo-square": 61844, "slack": 61848, "slack-hash": 61848, "wordpress": 61850, "openid": 61851, "yahoo": 61854, "google": 61856, "reddit": 61857, "square-reddit": 61858, "reddit-square": 61858, "stumbleupon-circle": 61859, "stumbleupon": 61860, "delicious": 61861, "digg": 61862, "pied-piper-pp": 61863, "pied-piper-alt": 61864, "drupal": 61865, "joomla": 61866, "behance": 61876, "square-behance": 61877, "behance-square": 61877, "steam": 61878, "square-steam": 61879, "steam-square": 61879, "spotify": 61884, "deviantart": 61885, "soundcloud": 61886, "vine": 61898, "codepen": 61899, "jsfiddle": 61900, "rebel": 61904, "empire": 61905, "square-git": 61906, "git-square": 61906, "git": 61907, "hacker-news": 61908, "tencent-weibo": 61909, "qq": 61910, "weixin": 61911, "slideshare": 61927, "twitch": 61928, "yelp": 61929, "paypal": 61933, "google-wallet": 61934, "cc-visa": 61936, "cc-mastercard": 61937, "cc-discover": 61938, "cc-amex": 61939, "cc-paypal": 61940, "cc-stripe": 61941, "lastfm": 61954, "square-lastfm": 61955, "lastfm-square": 61955, "ioxhost": 61960, "angellist": 61961, "buysellads": 61965, "connectdevelop": 61966, "dashcube": 61968, "forumbee": 61969, "leanpub": 61970, "sellsy": 61971, "shirtsinbulk": 61972, "simplybuilt": 61973, "skyatlas": 61974, "pinterest-p": 62001, "whatsapp": 62002, "viacoin": 62007, "medium": 62010, "medium-m": 62010, "y-combinator": 62011, "optin-monster": 62012, "opencart": 62013, "expeditedssl": 62014, "cc-jcb": 62027, "cc-diners-club": 62028, "creative-commons": 62046, "gg": 62048, "gg-circle": 62049, "odnoklassniki": 62051, "square-odnoklassniki": 62052, "odnoklassniki-square": 62052, "get-pocket": 62053, "wikipedia-w": 62054, "safari": 62055, "chrome": 62056, "firefox": 62057, "opera": 62058, "internet-explorer": 62059, "contao": 62061, "500px": 62062, "amazon": 62064, "houzz": 62076, "vimeo-v": 62077, "black-tie": 62078, "fonticons": 62080, "reddit-alien": 62081, "edge": 62082, "codiepie": 62084, "modx": 62085, "fort-awesome": 62086, "usb": 62087, "product-hunt": 62088, "mixcloud": 62089, "scribd": 62090, "bluetooth": 62099, "bluetooth-b": 62100, "gitlab": 62102, "wpbeginner": 62103, "wpforms": 62104, "envira": 62105, "glide": 62117, "glide-g": 62118, "viadeo": 62121, "square-viadeo": 62122, "viadeo-square": 62122, "snapchat": 62123, "snapchat-ghost": 62123, "square-snapchat": 62125, "snapchat-square": 62125, "pied-piper": 62126, "first-order": 62128, "yoast": 62129, "themeisle": 62130, "google-plus": 62131, "font-awesome": 62132, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "linode": 62136, "quora": 62148, "free-code-camp": 62149, "telegram": 62150, "telegram-plane": 62150, "bandcamp": 62165, "grav": 62166, "etsy": 62167, "imdb": 62168, "ravelry": 62169, "sellcast": 62170, "superpowers": 62173, "wpexplorer": 62174, "meetup": 62176, "square-font-awesome-stroke": 62300, "font-awesome-alt": 62300, "accessible-icon": 62312, "accusoft": 62313, "adversal": 62314, "affiliatetheme": 62315, "algolia": 62316, "amilia": 62317, "angrycreative": 62318, "app-store": 62319, "app-store-ios": 62320, "apper": 62321, "asymmetrik": 62322, "audible": 62323, "avianex": 62324, "aws": 62325, "bimobject": 62328, "bitcoin": 62329, "bity": 62330, "blackberry": 62331, "blogger": 62332, "blogger-b": 62333, "buromobelexperte": 62335, "centercode": 62336, "cloudscale": 62339, "cloudsmith": 62340, "cloudversify": 62341, "cpanel": 62344, "css3-alt": 62347, "cuttlefish": 62348, "d-and-d": 62349, "deploydog": 62350, "deskpro": 62351, "digital-ocean": 62353, "discord": 62354, "discourse": 62355, "dochub": 62356, "docker": 62357, "draft2digital": 62358, "square-dribbble": 62359, "dribbble-square": 62359, "dyalog": 62361, "earlybirds": 62362, "erlang": 62365, "facebook-f": 62366, "facebook-messenger": 62367, "firstdraft": 62369, "fonticons-fi": 62370, "fort-awesome-alt": 62371, "freebsd": 62372, "gitkraken": 62374, "gofore": 62375, "goodreads": 62376, "goodreads-g": 62377, "google-drive": 62378, "google-play": 62379, "gripfire": 62380, "grunt": 62381, "gulp": 62382, "square-hacker-news": 62383, "hacker-news-square": 62383, "hire-a-helper": 62384, "hotjar": 62385, "hubspot": 62386, "itunes": 62388, "itunes-note": 62389, "jenkins": 62390, "joget": 62391, "js": 62392, "square-js": 62393, "js-square": 62393, "keycdn": 62394, "kickstarter": 62395, "square-kickstarter": 62395, "kickstarter-k": 62396, "laravel": 62397, "line": 62400, "lyft": 62403, "magento": 62404, "medapps": 62406, "medrt": 62408, "microsoft": 62410, "mix": 62411, "mizuni": 62412, "monero": 62416, "napster": 62418, "node-js": 62419, "npm": 62420, "ns8": 62421, "nutritionix": 62422, "page4": 62423, "palfed": 62424, "patreon": 62425, "periscope": 62426, "phabricator": 62427, "phoenix-framework": 62428, "playstation": 62431, "pushed": 62433, "python": 62434, "red-river": 62435, "wpressr": 62436, "rendact": 62436, "replyd": 62438, "resolving": 62439, "rocketchat": 62440, "rockrms": 62441, "schlix": 62442, "searchengin": 62443, "servicestack": 62444, "sistrix": 62446, "speakap": 62451, "staylinked": 62453, "steam-symbol": 62454, "sticker-mule": 62455, "studiovinari": 62456, "supple": 62457, "uber": 62466, "uikit": 62467, "uniregistry": 62468, "untappd": 62469, "ussunnah": 62471, "vaadin": 62472, "viber": 62473, "vimeo": 62474, "vnv": 62475, "square-whatsapp": 62476, "whatsapp-square": 62476, "whmcs": 62477, "wordpress-simple": 62481, "xbox": 62482, "yandex": 62483, "yandex-international": 62484, "apple-pay": 62485, "cc-apple-pay": 62486, "fly": 62487, "node": 62489, "osi": 62490, "react": 62491, "autoprefixer": 62492, "less": 62493, "sass": 62494, "vuejs": 62495, "angular": 62496, "aviato": 62497, "ember": 62499, "gitter": 62502, "hooli": 62503, "strava": 62504, "stripe": 62505, "stripe-s": 62506, "typo3": 62507, "amazon-pay": 62508, "cc-amazon-pay": 62509, "ethereum": 62510, "korvue": 62511, "elementor": 62512, "square-youtube": 62513, "youtube-square": 62513, "flipboard": 62541, "hips": 62546, "php": 62551, "quinscape": 62553, "readme": 62677, "java": 62692, "pied-piper-hat": 62693, "creative-commons-by": 62695, "creative-commons-nc": 62696, "creative-commons-nc-eu": 62697, "creative-commons-nc-jp": 62698, "creative-commons-nd": 62699, "creative-commons-pd": 62700, "creative-commons-pd-alt": 62701, "creative-commons-remix": 62702, "creative-commons-sa": 62703, "creative-commons-sampling": 62704, "creative-commons-sampling-plus": 62705, "creative-commons-share": 62706, "creative-commons-zero": 62707, "ebay": 62708, "keybase": 62709, "mastodon": 62710, "r-project": 62711, "researchgate": 62712, "teamspeak": 62713, "first-order-alt": 62730, "fulcrum": 62731, "galactic-republic": 62732, "galactic-senate": 62733, "jedi-order": 62734, "mandalorian": 62735, "old-republic": 62736, "phoenix-squadron": 62737, "sith": 62738, "trade-federation": 62739, "wolf-pack-battalion": 62740, "hornbill": 62866, "mailchimp": 62878, "megaport": 62883, "nimblr": 62888, "rev": 62898, "shopware": 62901, "squarespace": 62910, "themeco": 62918, "weebly": 62924, "wix": 62927, "ello": 62961, "hackerrank": 62967, "kaggle": 62970, "markdown": 62991, "neos": 62994, "zhihu": 63039, "alipay": 63042, "the-red-yeti": 63133, "critical-role": 63177, "d-and-d-beyond": 63178, "dev": 63180, "fantasy-flight-games": 63196, "wizards-of-the-coast": 63280, "think-peaks": 63281, "reacteurope": 63325, "artstation": 63354, "atlassian": 63355, "canadian-maple-leaf": 63365, "centos": 63369, "confluence": 63373, "dhl": 63376, "diaspora": 63377, "fedex": 63383, "fedora": 63384, "figma": 63385, "intercom": 63407, "invision": 63408, "jira": 63409, "mendeley": 63411, "raspberry-pi": 63419, "redhat": 63420, "sketch": 63430, "sourcetree": 63443, "suse": 63446, "ubuntu": 63455, "ups": 63456, "usps": 63457, "yarn": 63459, "airbnb": 63540, "battle-net": 63541, "bootstrap": 63542, "buffer": 63543, "chromecast": 63544, "evernote": 63545, "itch-io": 63546, "salesforce": 63547, "speaker-deck": 63548, "symfony": 63549, "waze": 63551, "yammer": 63552, "git-alt": 63553, "stackpath": 63554, "cotton-bureau": 63646, "buy-n-large": 63654, "mdb": 63690, "orcid": 63698, "swift": 63713, "umbraco": 63720 } ================================================ FILE: packages/fontawesome-free-brands/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-free-brands", "version": "0.2.0", "description": "Fontawesome Free Brands font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-free-brands" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-free-brands" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "@fortawesome/fontawesome-free": "7.2.0" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-free-brands/react-native-vector-icons-fontawesome-free-brands.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-free-brands' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/fontawesome-free-brands/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeFreeBrands icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeFreeBrands.json'; export const FontAwesomeFreeBrands = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Brands-Regular', fontFileName: 'fa-brands-400.ttf', fontSource: require('../fonts/fa-brands-400.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type FontAwesomeFreeBrandsIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeFreeBrands; ================================================ FILE: packages/fontawesome-free-brands/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeFreeBrands icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeFreeBrands.json'; export const FontAwesomeFreeBrands = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Brands-Regular', fontFileName: 'fa-brands-400.ttf', }); export type FontAwesomeFreeBrandsIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeFreeBrands; ================================================ FILE: packages/fontawesome-free-brands/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-free-brands/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-free-regular/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-free-regular", "upstreamFont": "@fortawesome/fontawesome-free", "className": "FontAwesomeFreeRegular", "postScriptName": "FontAwesome7Free-Regular", "fontFileName": "fa-regular-400", "buildSteps": { "glyphmap": { "location": "../../node_modules/@fortawesome/fontawesome-free/css/all.css", "mode": "css", "prefix": ".fa-" }, "copyFont": { "location": "../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2", "cleanup": true }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeFreeRegular.json ../../node_modules/@fortawesome/fontawesome-free/svgs/regular" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-free-regular/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-free-regular/README.md ================================================ # React Native Vector Icons - Fontawesome Free Regular Fontawesome Free Regular font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-free-regular ``` ## Usage ```jsx import { FontAwesomeFreeRegular } from '@react-native-vector-icons/fontawesome-free-regular'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-free-regular/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_free_regular" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeFreeRegular" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_free_regular" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-free-regular") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-free-regular/fonts" eachFile { println "(RNVI:fontawesome-free-regular) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/fontawesome-free-regular/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-free-regular/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-free-regular/android/src/main/java/VectorIconsFontAwesomeFreeRegularPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_free_regular import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeFreeRegularPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-free-regular/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-free-regular/glyphmaps/FontAwesomeFreeRegular.json ================================================ { "address-book": 62137, "address-card": 62139, "alarm-clock": 62286, "angry": 62806, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "bar-chart": 61568, "bell-slash": 61942, "bell": 61683, "bookmark": 61486, "building": 61869, "calendar-alt": 61555, "calendar-check": 62068, "calendar-days": 61555, "calendar-minus": 62066, "calendar-plus": 62065, "calendar-times": 62067, "calendar-xmark": 62067, "calendar": 61747, "camera-alt": 61488, "camera": 61488, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "chart-bar": 61568, "check-circle": 61528, "check-square": 61770, "chess-bishop": 62522, "chess-king": 62527, "chess-knight": 62529, "chess-pawn": 62531, "chess-queen": 62533, "chess-rook": 62535, "circle-check": 61528, "circle-dot": 61842, "circle-down": 62296, "circle-left": 62297, "circle-pause": 62091, "circle-play": 61764, "circle-question": 61529, "circle-right": 62298, "circle-stop": 62093, "circle-up": 62299, "circle-user": 62141, "circle-xmark": 61527, "circle": 61713, "clipboard": 62248, "clock-four": 61463, "clock": 61463, "clone": 62029, "closed-captioning": 61962, "cloud": 61634, "comment-alt": 62074, "comment-dots": 62637, "comment": 61557, "commenting": 62637, "comments": 61574, "compass": 61774, "contact-book": 62137, "contact-card": 62139, "copy": 61637, "copyright": 61945, "credit-card-alt": 61597, "credit-card": 61597, "dizzy": 62823, "dot-circle": 61842, "drivers-license": 62146, "edit": 61508, "envelope-open": 62134, "envelope": 61664, "eye-slash": 61552, "eye": 61550, "face-angry": 62806, "face-dizzy": 62823, "face-flushed": 62841, "face-frown-open": 62842, "face-frown": 61721, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-kiss-beam": 62871, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-meh-blank": 62884, "face-meh": 61722, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-tear": 62900, "face-smile-beam": 62904, "face-smile-wink": 62682, "face-smile": 61720, "face-surprise": 62914, "face-tired": 62920, "file-alt": 61788, "file-archive": 61894, "file-audio": 61895, "file-clipboard": 61674, "file-code": 61897, "file-excel": 61891, "file-image": 61893, "file-lines": 61788, "file-pdf": 61889, "file-powerpoint": 61892, "file-text": 61788, "file-video": 61896, "file-word": 61890, "file-zipper": 61894, "file": 61787, "flag": 61476, "floppy-disk": 61639, "flushed": 62841, "folder-blank": 61563, "folder-closed": 57733, "folder-open": 61564, "folder": 61563, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "frown-open": 62842, "frown": 61721, "futbol-ball": 61923, "futbol": 61923, "gem": 62373, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "hand-back-fist": 62037, "hand-lizard": 62040, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-rock": 62037, "hand-scissors": 62039, "hand-spock": 62041, "hand": 62038, "handshake-alt": 62133, "handshake-simple": 62133, "handshake": 62133, "hard-drive": 61600, "hdd": 61600, "headphones-alt": 61477, "headphones-simple": 61477, "headphones": 61477, "heart": 61444, "home-alt": 61461, "home-lg-alt": 61461, "home": 61461, "hospital-alt": 61688, "hospital-wide": 61688, "hospital": 61688, "hourglass-2": 62034, "hourglass-empty": 62036, "hourglass-half": 62034, "hourglass": 62036, "house": 61461, "id-badge": 62145, "id-card": 62146, "image": 61502, "images": 62210, "keyboard": 61724, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "lemon": 61588, "life-ring": 61901, "lightbulb": 61675, "list-alt": 61474, "map": 62073, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "message": 62074, "minus-square": 61766, "money-bill-1": 62417, "money-bill-alt": 62417, "moon": 61830, "newspaper": 61930, "note-sticky": 62025, "object-group": 62023, "object-ungroup": 62024, "paper-plane": 61912, "paste": 61674, "pause-circle": 62091, "pen-to-square": 61508, "play-circle": 61764, "plus-square": 61694, "question-circle": 61529, "rectangle-list": 61474, "rectangle-times": 62480, "rectangle-xmark": 62480, "registered": 62045, "sad-cry": 62899, "sad-tear": 62900, "save": 61639, "share-from-square": 61773, "share-square": 61773, "smile-beam": 62904, "smile-wink": 62682, "smile": 61720, "snowflake": 62172, "soccer-ball": 61923, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-check": 61770, "square-full": 62556, "square-minus": 61766, "square-plus": 61694, "square": 61640, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star": 61445, "sticky-note": 62025, "stop-circle": 62093, "sun": 61829, "surprise": 62914, "thumbs-down": 61797, "thumbs-up": 61796, "times-circle": 61527, "times-rectangle": 62480, "tired": 62920, "trash-alt": 62189, "trash-can": 62189, "truck": 61649, "user-alt": 61447, "user-circle": 62141, "user-large": 61447, "user": 61447, "vcard": 62139, "window-close": 62480, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "xmark-circle": 61527 } ================================================ FILE: packages/fontawesome-free-regular/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-free-regular", "version": "0.2.0", "description": "Fontawesome Free Regular font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-free-regular" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-free-regular" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "@fortawesome/fontawesome-free": "7.2.0" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-free-regular/react-native-vector-icons-fontawesome-free-regular.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-free-regular' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/fontawesome-free-regular/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeFreeRegular icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeFreeRegular.json'; export const FontAwesomeFreeRegular = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Free-Regular', fontFileName: 'fa-regular-400.ttf', fontSource: require('../fonts/fa-regular-400.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type FontAwesomeFreeRegularIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeFreeRegular; ================================================ FILE: packages/fontawesome-free-regular/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeFreeRegular icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeFreeRegular.json'; export const FontAwesomeFreeRegular = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Free-Regular', fontFileName: 'fa-regular-400.ttf', }); export type FontAwesomeFreeRegularIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeFreeRegular; ================================================ FILE: packages/fontawesome-free-regular/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-free-regular/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-free-solid/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-free-solid", "upstreamFont": "@fortawesome/fontawesome-free", "className": "FontAwesomeFreeSolid", "postScriptName": "FontAwesome7Free-Solid", "fontFileName": "fa-solid-900", "buildSteps": { "glyphmap": { "location": "../../node_modules/@fortawesome/fontawesome-free/css/all.css", "mode": "css", "prefix": ".fa-" }, "copyFont": { "location": "../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2", "cleanup": true }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeFreeSolid.json ../../node_modules/@fortawesome/fontawesome-free/svgs/solid" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-free-solid/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-free-solid/README.md ================================================ # React Native Vector Icons - Fontawesome Free Solid Fontawesome Free Solid font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-free-solid ``` ## Usage ```jsx import { FontAwesomeFreeSolid } from '@react-native-vector-icons/fontawesome-free-solid'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-free-solid/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_free_solid" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeFreeSolid" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_free_solid" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-free-solid") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-free-solid/fonts" eachFile { println "(RNVI:fontawesome-free-solid) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/fontawesome-free-solid/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-free-solid/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-free-solid/android/src/main/java/VectorIconsFontAwesomeFreeSolidPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_free_solid import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeFreeSolidPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-free-solid/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-free-solid/glyphmaps/FontAwesomeFreeSolid.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "a": 65, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "air-freshener": 62928, "alarm-clock": 62286, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "allergies": 62561, "ambulance": 61689, "american-sign-language-interpreting": 62115, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up": 61698, "angry": 62806, "ankh": 63044, "apple-alt": 62929, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-long": 61813, "arrow-down-short-wide": 63620, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-right-arrow-left": 61676, "arrow-right-from-bracket": 61579, "arrow-right-from-file": 62830, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-file": 62831, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left": 61666, "arrow-rotate-right": 61470, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down": 61769, "arrow-turn-up": 61768, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-from-bracket": 57498, "arrow-up-from-ground-water": 58549, "arrow-up-from-water-pump": 58550, "arrow-up-long": 61814, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-short-wide": 63621, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-eye": 58559, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom": 62930, "audio-description": 62110, "austral-sign": 57513, "automobile": 61881, "award": 62809, "b": 66, "baby-carriage": 63357, "baby": 63356, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "bag-shopping": 62096, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ban-smoking": 62797, "ban": 61534, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "bank": 61852, "bar-chart": 61568, "barcode": 61482, "bars-progress": 63528, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball": 62515, "basket-shopping": 62097, "basketball-ball": 62516, "basketball": 62516, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-car": 62943, "battery-empty": 62020, "battery-full": 62016, "battery-half": 62018, "battery-quarter": 62019, "battery-three-quarters": 62017, "battery": 62016, "bed-pulse": 62599, "bed": 62006, "beer-mug-empty": 61692, "beer": 61692, "bell-concierge": 62818, "bell-slash": 61942, "bell": 61683, "bezier-curve": 62811, "bible": 63047, "bicycle": 61958, "biking": 63562, "binoculars": 61925, "biohazard": 63360, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blog": 63361, "bold": 61490, "bolt-lightning": 57527, "bolt": 61671, "bomb": 61922, "bone": 62935, "bong": 62812, "book-atlas": 62808, "book-bible": 63047, "book-bookmark": 57531, "book-dead": 63159, "book-journal-whills": 63082, "book-medical": 63462, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-skull": 63159, "book-tanakh": 63527, "book": 61485, "bookmark": 61486, "border-all": 63564, "border-none": 63568, "border-style": 63571, "border-top-left": 63571, "bore-hole": 58563, "bottle-droplet": 58564, "bottle-water": 58565, "bowl-food": 58566, "bowl-rice": 58091, "bowling-ball": 62518, "box-archive": 61831, "box-open": 62622, "box-tissue": 57435, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "braille": 62113, "brain": 62940, "brazilian-real-sign": 58476, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-water": 58574, "bridge": 58568, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "broadcast-tower": 62745, "broom-ball": 62552, "broom": 62746, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "bullhorn": 61601, "bullseye": 61760, "burger": 63493, "burn": 62570, "burst": 58588, "bus-alt": 62814, "bus-side": 59421, "bus-simple": 62814, "bus": 61959, "business-time": 63050, "c": 67, "cab": 61882, "cable-car": 63450, "cake-candles": 61949, "cake": 61949, "calculator": 61932, "calendar-alt": 61555, "calendar-check": 62068, "calendar-day": 63363, "calendar-days": 61555, "calendar-minus": 62066, "calendar-plus": 62065, "calendar-times": 62067, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "camera-alt": 61488, "camera-retro": 61571, "camera-rotate": 57560, "camera": 61488, "campground": 63163, "cancel": 61534, "cancer": 59463, "candy-cane": 63366, "cannabis": 62815, "capricorn": 59464, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-burst": 62945, "car-crash": 62945, "car-on": 58589, "car-rear": 62942, "car-side": 62948, "car-tunnel": 58590, "car": 61881, "caravan": 63743, "caret-down": 61655, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carriage-baby": 63357, "carrot": 63367, "cart-arrow-down": 61976, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-plus": 61975, "cart-shopping": 61562, "cash-register": 63368, "cat": 63166, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-slash": 61735, "chain": 61633, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-column": 57571, "chart-diagram": 59029, "chart-gantt": 57572, "chart-line": 61953, "chart-pie": 61952, "chart-simple": 58483, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese": 63471, "chess-bishop": 62522, "chess-board": 62524, "chess-king": 62527, "chess-knight": 62529, "chess-pawn": 62531, "chess-queen": 62533, "chess-rook": 62535, "chess": 62521, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-up": 61559, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "church": 62749, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up": 61610, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-dollar-to-slot": 62649, "circle-dot": 61842, "circle-down": 62296, "circle-exclamation": 61546, "circle-h": 62590, "circle-half-stroke": 61506, "circle-info": 61530, "circle-left": 62297, "circle-minus": 61526, "circle-nodes": 58594, "circle-notch": 61902, "circle-pause": 62091, "circle-play": 61764, "circle-plus": 61525, "circle-question": 61529, "circle-radiation": 63418, "circle-right": 62298, "circle-stop": 62093, "circle-up": 62299, "circle-user": 62141, "circle-xmark": 61527, "circle": 61713, "city": 63055, "clapperboard": 57649, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-list": 62573, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-four": 61463, "clock-rotate-left": 61914, "clock": 61463, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-bolt": 63340, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-meatball": 63291, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-rain": 63293, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud": 61634, "clover": 57657, "cny": 61783, "cocktail": 62817, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request": 57660, "code": 61729, "coffee": 61684, "cog": 61459, "cogs": 61573, "coins": 62750, "colon-sign": 57664, "columns": 61659, "comment-alt": 62074, "comment-dollar": 63057, "comment-dots": 62637, "comment-medical": 63477, "comment-nodes": 59030, "comment-slash": 62643, "comment-sms": 63437, "comment": 61557, "commenting": 62637, "comments-dollar": 63059, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress": 61542, "computer-mouse": 63692, "computer": 58597, "concierge-bell": 62818, "contact-book": 62137, "contact-card": 62139, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "couch": 62648, "cow": 63176, "credit-card-alt": 61597, "credit-card": 61597, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "cruzeiro-sign": 57682, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cut": 61636, "cutlery": 62183, "d": 68, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "dedent": 61499, "delete-left": 62810, "democrat": 63303, "desktop-alt": 62352, "desktop": 62352, "dharmachakra": 63061, "diagnoses": 62576, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-project": 62786, "diagram-successor": 58490, "diamond-turn-right": 62955, "diamond": 61977, "dice-d20": 63183, "dice-d6": 63185, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "directions": 62955, "disease": 63482, "display": 57699, "divide": 62761, "dizzy": 62823, "dna": 62577, "dog": 63187, "dollar-sign": 36, "dollar": 36, "dolly-box": 62578, "dolly-flatbed": 62580, "dolly": 62578, "donate": 62649, "dong-sign": 57705, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dove": 62650, "down-left-and-up-right-to-center": 62498, "down-long": 62217, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-polygon": 62958, "drivers-license": 62146, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-deaf": 62116, "ear-listen": 62114, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "edit": 61508, "egg": 63483, "eject": 61522, "elevator": 57709, "ellipsis-h": 61761, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "envelope-circle-check": 58600, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "equals": 61, "eraser": 61741, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand": 61541, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-dropper-empty": 61947, "eye-dropper": 61947, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "f": 70, "face-angry": 62806, "face-dizzy": 62823, "face-flushed": 62841, "face-frown-open": 62842, "face-frown": 61721, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-kiss-beam": 62871, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-meh-blank": 62884, "face-meh": 61722, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-tear": 62900, "face-smile-beam": 62904, "face-smile-wink": 62682, "face-smile": 61720, "face-surprise": 62914, "face-tired": 62920, "fan": 63587, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "ferry": 58602, "fighter-jet": 61691, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-csv": 63197, "file-download": 62829, "file-edit": 62236, "file-excel": 61891, "file-export": 62830, "file-fragment": 59031, "file-half-dashed": 59032, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-lines": 61788, "file-medical-alt": 62584, "file-medical": 62583, "file-pdf": 61889, "file-pen": 62236, "file-powerpoint": 61892, "file-prescription": 62834, "file-shield": 58608, "file-signature": 62835, "file-text": 61788, "file-upload": 62836, "file-video": 61896, "file-waveform": 62584, "file-word": 61890, "file-zipper": 61894, "file": 61787, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-simple": 61448, "film": 61448, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter": 61616, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire": 61549, "first-aid": 62585, "fish-fins": 58610, "fish": 62840, "fist-raised": 63198, "flag-checkered": 61726, "flag-usa": 63309, "flag": 61476, "flask-vial": 58611, "flask": 61635, "floppy-disk": 61639, "florin-sign": 57732, "flushed": 62841, "folder-blank": 61563, "folder-closed": 57733, "folder-minus": 63069, "folder-open": 61564, "folder-plus": 63070, "folder-tree": 63490, "folder": 61563, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font": 61489, "football-ball": 62542, "football": 62542, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "franc-sign": 57743, "frog": 62766, "frown-open": 62842, "frown": 61721, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "gamepad": 61723, "gas-pump": 62767, "gauge-high": 63013, "gauge-med": 63012, "gauge-simple-high": 63018, "gauge-simple-med": 63017, "gauge-simple": 63017, "gauge": 63012, "gavel": 61667, "gbp": 61780, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gift": 61547, "gifts": 63388, "glass-cheers": 63391, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey": 63392, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe": 61612, "golf-ball-tee": 62544, "golf-ball": 62544, "gopuram": 63076, "graduation-cap": 61853, "greater-than-equal": 62770, "greater-than": 62, "grid-horizontal": 62861, "grid-vertical": 62862, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar": 63398, "gun": 57755, "h-square": 61693, "h": 72, "hamburger": 63493, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-dots": 62561, "hand-fist": 63198, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-medical": 57436, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-lizard": 62040, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-rock": 62037, "hand-scissors": 62039, "hand-sparkles": 57437, "hand-spock": 62041, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding": 62658, "hands-praying": 63108, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag": 35, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-mask": 57443, "head-side-virus": 57444, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-crack": 63401, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart": 61444, "heartbeat": 61982, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon": 62226, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-puck": 62547, "holly-berry": 63402, "home-alt": 61461, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "horse-head": 63403, "horse": 63216, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-chimney-crack": 63217, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-laptop": 57446, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-signal": 57362, "house-tsunami": 58645, "house-user": 57776, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "hurricane": 63313, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "icicles": 63405, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-portrait": 62432, "image": 61502, "images": 62210, "inbox": 61468, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info": 61737, "inr": 57788, "institution": 61852, "italic": 61491, "j": 74, "jar-wheat": 58647, "jar": 58646, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "jpy": 61783, "jug-detergent": 58649, "k": 75, "kaaba": 63083, "key": 61572, "keyboard": 61724, "khanda": 63085, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kiwi-bird": 62773, "krw": 61785, "l": 76, "ladder-water": 62917, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark": 63087, "language": 61867, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop": 61705, "lari-sign": 57800, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group": 62973, "leaf": 61548, "left-long": 62218, "left-right": 62263, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "lightbulb": 61675, "line-chart": 61953, "lines-leaning": 58654, "link-slash": 61735, "link": 61633, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-numeric": 61643, "list-ol": 61643, "list-squares": 61498, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "location-arrow": 61732, "location-crosshairs": 62977, "location-dot": 62405, "location-pin-lock": 58655, "location-pin": 61505, "location": 62977, "lock-open": 62401, "lock": 61475, "locust": 58656, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "low-vision": 62120, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "m": 77, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-plus": 61454, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "male": 61827, "manat-sign": 57813, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt": 62405, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "medal": 62882, "medkit": 61690, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "memory": 62776, "menorah": 63094, "mercury": 61987, "message": 62074, "meteor": 63315, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-slash": 61745, "microphone": 61744, "microscope": 62992, "mill-sign": 57837, "minimize": 63372, "minus-circle": 61526, "minus-square": 61766, "minus": 61544, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-button": 61707, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar": 62781, "money-check": 62780, "monument": 62886, "moon": 61830, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mouse-pointer": 62021, "mouse": 63692, "mug-hot": 63414, "mug-saucer": 61684, "multiply": 61453, "museum": 61852, "music": 61441, "n": 78, "naira-sign": 57846, "navicon": 61641, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "non-binary": 59399, "not-equal": 62782, "notdef": 57854, "note-sticky": 62025, "notes-medical": 62593, "o": 79, "object-group": 62023, "object-ungroup": 62024, "octagon": 62214, "oil-can": 62995, "oil-well": 58674, "om": 63097, "otter": 63232, "outdent": 61499, "p": 80, "pager": 63509, "paint-brush": 61948, "paint-roller": 62890, "paintbrush": 61948, "palette": 62783, "pallet": 62594, "panorama": 57865, "paper-plane": 61912, "paperclip": 61638, "parachute-box": 62669, "paragraph": 61917, "parking": 62784, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw": 61872, "peace": 63100, "pen-alt": 62213, "pen-clip": 62213, "pen-fancy": 62892, "pen-nib": 62893, "pen-ruler": 62894, "pen-square": 61771, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-ruler": 62894, "pencil-square": 61771, "pencil": 62211, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-group": 58675, "people-line": 58676, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "pepper-hot": 63510, "percent": 37, "percentage": 37, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress": 61826, "person-drowning": 58693, "person-falling-burst": 58695, "person-falling": 58694, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running": 63244, "person-shelter": 58703, "person-skating": 63429, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-snowboarding": 63438, "person-swimming": 62916, "person-through-window": 58793, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person": 61827, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-flip": 63609, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square": 61592, "phone-volume": 62112, "phone": 61589, "photo-film": 63612, "photo-video": 63612, "picture-in-picture": 59403, "pie-chart": 61952, "piggy-bank": 62675, "pills": 62596, "ping-pong-paddle-ball": 62557, "pisces": 59468, "pizza-slice": 63512, "place-of-worship": 63103, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-lock": 58712, "plane-slash": 57449, "plane-up": 57901, "plane": 61554, "plant-wilt": 58794, "plate-wheat": 58714, "play-circle": 61764, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-minus": 58428, "plus-square": 61694, "plus": 43, "podcast": 62158, "poll-h": 63106, "poll": 63105, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "poop": 63001, "portrait": 62432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle": 62597, "prescription": 62897, "print": 61487, "procedures": 62599, "project-diagram": 62786, "pump-medical": 57450, "pump-soap": 57451, "puzzle-piece": 61742, "q": 81, "qrcode": 61481, "question-circle": 61529, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quran": 63111, "r": 82, "radiation-alt": 63418, "radiation": 63417, "radio": 63703, "rainbow": 63323, "random": 61556, "ranking-star": 58721, "receipt": 62787, "record-vinyl": 63705, "rectangle-ad": 63041, "rectangle-list": 61474, "rectangle-times": 62480, "rectangle-xmark": 62480, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "refresh": 61473, "registered": 62045, "remove-format": 63613, "remove": 61453, "reorder": 62800, "repeat": 62307, "reply-all": 61730, "reply": 62437, "republican": 63326, "restroom": 63421, "retweet": 61561, "ribbon": 62678, "right-from-bracket": 62197, "right-left": 62306, "right-long": 62219, "right-to-bracket": 62198, "ring": 63243, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot": 62788, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "rotate-back": 62186, "rotate-backward": 62186, "rotate-forward": 62201, "rotate-left": 62186, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route": 62679, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "satellite-dish": 63424, "satellite": 63423, "save": 61639, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school": 62793, "scissors": 61636, "scorpio": 59470, "screwdriver-wrench": 63449, "screwdriver": 62794, "scroll-torah": 63136, "scroll": 63246, "sd-card": 63426, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "section": 58439, "seedling": 62680, "septagon": 59424, "server": 62003, "shapes": 63007, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-dog": 58739, "shield-halved": 62445, "shield-heart": 58740, "shield-virus": 57452, "shield": 61746, "ship": 61978, "shipping-fast": 62603, "shirt": 62803, "shoe-prints": 62795, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket": 62097, "shopping-cart": 61562, "shower": 62156, "shrimp": 58440, "shuffle": 61556, "shuttle-space": 61847, "shuttle-van": 62902, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign": 62681, "signal-5": 61458, "signal-perfect": 61458, "signal": 61458, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "sitemap": 61672, "skating": 63429, "skiing-nordic": 63434, "skiing": 63433, "skull-crossbones": 63252, "skull": 62796, "slash": 63253, "sleigh": 63436, "sliders-h": 61918, "sliders": 61918, "smile-beam": 62904, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snowboarding": 63438, "snowflake": 62172, "snowman": 63440, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "solar-panel": 62906, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-up": 61662, "sort": 61660, "spa": 62907, "space-shuttle": 61847, "spaghetti-monster-flying": 63099, "spell-check": 63633, "spider": 63255, "spinner": 61712, "spiral": 59402, "splotch": 62908, "spoon": 62181, "spray-can-sparkles": 62928, "spray-can": 62909, "sprout": 62680, "square-arrow-up-right": 61772, "square-binary": 59035, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-check": 61770, "square-envelope": 61849, "square-full": 62556, "square-h": 61693, "square-minus": 61766, "square-nfi": 58742, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-phone-flip": 63611, "square-phone": 61592, "square-plus": 61694, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-root-alt": 63128, "square-root-variable": 63128, "square-rss": 61763, "square-share-nodes": 61921, "square-up-right": 62304, "square-virus": 58744, "square-xmark": 62163, "square": 61640, "staff-aesculapius": 58745, "staff-snake": 58745, "stairs": 57993, "stamp": 62911, "stapler": 58799, "star-and-crescent": 63129, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star": 61445, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-alt-slash": 57456, "store-alt": 62799, "store-slash": 57457, "store": 62798, "stream": 62800, "street-view": 61981, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtract": 61544, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-plant-wilt": 58746, "sun": 61829, "superscript": 61739, "surprise": 62914, "swatchbook": 62915, "swimmer": 62916, "swimming-pool": 62917, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-shirt": 62803, "t": 84, "table-cells-column-lock": 59000, "table-cells-large": 61449, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells": 61450, "table-columns": 61659, "table-list": 61451, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table": 61646, "tablet-alt": 62458, "tablet-android": 62459, "tablet-button": 61706, "tablet-screen-button": 62458, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer": 63018, "tag": 61483, "tags": 61484, "tanakh": 63527, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi": 61882, "teeth-open": 63023, "teeth": 63022, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-slash": 63613, "text-width": 61493, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm": 63340, "ticket-alt": 62463, "ticket-simple": 62463, "ticket": 61765, "timeline": 58012, "times-circle": 61527, "times-rectangle": 62480, "times-square": 62163, "times": 61453, "tint-slash": 62919, "tint": 61507, "tired": 62920, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank": 63262, "toilet-paper-slash": 57458, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "toolbox": 62802, "tools": 63449, "tooth": 62921, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-observation": 58758, "tractor": 63266, "trademark": 62044, "traffic-light": 63031, "trailer": 57409, "train-subway": 62009, "train-tram": 58804, "train": 62008, "tram": 63450, "transgender-alt": 61989, "transgender": 61989, "trash-alt": 62189, "trash-arrow-up": 63529, "trash-can-arrow-up": 63530, "trash-can": 62189, "trash-restore-alt": 63530, "trash-restore": 63529, "trash": 61944, "tree-city": 58759, "tree": 61883, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-front": 58039, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-ramp-box": 62686, "truck": 61649, "try": 58043, "tshirt": 62803, "tty": 61924, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down": 62398, "turn-up": 62399, "tv-alt": 62060, "tv": 62060, "u": 85, "umbrella-beach": 62922, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "upload": 61587, "usd": 36, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-check": 62716, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group": 62720, "user-injured": 63272, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-md": 61680, "user-minus": 62723, "user-ninja": 62724, "user-nurse": 63535, "user-pen": 62719, "user-plus": 62004, "user-secret": 61979, "user-shield": 62725, "user-slash": 62726, "user-tag": 62727, "user-tie": 62728, "user-times": 62005, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-cog": 62729, "users-gear": 62729, "users-line": 58770, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-spoon": 62181, "utensils": 62183, "v": 86, "van-shuttle": 62902, "vault": 58053, "vcard": 62139, "vector-polygon": 62958, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vial-circle-check": 58774, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-camera": 61501, "video-slash": 62690, "video": 61501, "vihara": 63143, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "walkie-talkie": 63727, "walking": 62804, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "warehouse": 62612, "warning": 61553, "water-ladder": 62917, "water": 63347, "wave-square": 63550, "web-awesome": 59010, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn": 58061, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass": 63392, "wifi-3": 61931, "wifi-strong": 61931, "wifi": 61931, "wind": 63278, "window-close": 62480, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-empty": 62926, "wine-glass": 62691, "won-sign": 61785, "won": 61785, "worm": 58777, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-square": 62163, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671 } ================================================ FILE: packages/fontawesome-free-solid/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-free-solid", "version": "0.2.0", "description": "Fontawesome Free Solid font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-free-solid" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-free-solid" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "@fortawesome/fontawesome-free": "7.2.0" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-free-solid/react-native-vector-icons-fontawesome-free-solid.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-free-solid' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/fontawesome-free-solid/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeFreeSolid icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeFreeSolid.json'; export const FontAwesomeFreeSolid = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Free-Solid', fontFileName: 'fa-solid-900.ttf', fontSource: require('../fonts/fa-solid-900.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type FontAwesomeFreeSolidIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeFreeSolid; ================================================ FILE: packages/fontawesome-free-solid/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeFreeSolid icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeFreeSolid.json'; export const FontAwesomeFreeSolid = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Free-Solid', fontFileName: 'fa-solid-900.ttf', }); export type FontAwesomeFreeSolidIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeFreeSolid; ================================================ FILE: packages/fontawesome-free-solid/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-free-solid/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-brands/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-brands", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProBrands", "postScriptName": "FontAwesome7Brands-Regular", "fontFileName": "fa-brands-400", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProBrands.json fa/pro/svgs/brands\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-brands/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-brands/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Brands Fontawesome Pro Brands font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-brands ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-brands/fa-brands-400.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProBrands } from '@react-native-vector-icons/fontawesome-pro-brands'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-brands/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_brands" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProBrands" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_brands" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-brands") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-brands/fonts" eachFile { println "(RNVI:fontawesome-pro-brands) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-brands" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-brands/fonts" eachFile { println "(RNVI:fontawesome-pro-brands) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-brands/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-brands/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-brands/android/src/main/java/VectorIconsFontAwesomeProBrandsPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_brands import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProBrandsPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-brands/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-brands/glyphmaps/FontAwesomeProBrands.json ================================================ { "11ty": 59350, "42-group": 57472, "500px": 62062, "accessible-icon": 62312, "accusoft": 62313, "adn": 61808, "adversal": 62314, "affiliatetheme": 62315, "airbnb": 63540, "algolia": 62316, "alipay": 63042, "amazon-pay": 62508, "amazon": 62064, "amilia": 62317, "android": 61819, "angellist": 61961, "angrycreative": 62318, "angular": 62496, "app-store-ios": 62320, "app-store": 62319, "apper": 62321, "apple-pay": 62485, "apple": 61817, "arch-linux": 59495, "artstation": 63354, "asymmetrik": 62322, "atlassian": 63355, "audible": 62323, "autoprefixer": 62492, "avianex": 62324, "aviato": 62497, "aws": 62325, "bandcamp": 62165, "battle-net": 63541, "behance-square": 61877, "behance": 61876, "bgg": 59477, "bilibili": 58329, "bimobject": 62328, "bitbucket": 61809, "bitcoin": 62329, "bity": 62330, "black-tie": 62078, "blackberry": 62331, "blogger-b": 62333, "blogger": 62332, "bluesky": 58993, "bluetooth-b": 62100, "bluetooth": 62099, "board-game-geek": 59477, "bootstrap": 63542, "bots": 58176, "brave-reverse": 58941, "brave": 58940, "btc": 61786, "buffer": 63543, "buromobelexperte": 62335, "buy-n-large": 63654, "buysellads": 61965, "canadian-maple-leaf": 63365, "cash-app": 59348, "cc-amazon-pay": 62509, "cc-amex": 61939, "cc-apple-pay": 62486, "cc-diners-club": 62028, "cc-discover": 61938, "cc-jcb": 62027, "cc-mastercard": 61937, "cc-paypal": 61940, "cc-stripe": 61941, "cc-visa": 61936, "centercode": 62336, "centos": 63369, "chrome": 62056, "chromecast": 63544, "circle-zulip": 59473, "claude": 59489, "cloudflare": 57469, "cloudscale": 62339, "cloudsmith": 62340, "cloudversify": 62341, "cmplid": 58208, "codepen": 61899, "codiepie": 62084, "confluence": 63373, "connectdevelop": 61966, "contao": 62061, "cotton-bureau": 63646, "cpanel": 62344, "creative-commons-by": 62695, "creative-commons-nc-eu": 62697, "creative-commons-nc-jp": 62698, "creative-commons-nc": 62696, "creative-commons-nd": 62699, "creative-commons-pd-alt": 62701, "creative-commons-pd": 62700, "creative-commons-remix": 62702, "creative-commons-sa": 62703, "creative-commons-sampling-plus": 62705, "creative-commons-sampling": 62704, "creative-commons-share": 62706, "creative-commons-zero": 62707, "creative-commons": 62046, "critical-role": 63177, "css": 59042, "css3-alt": 62347, "css3": 61756, "cuttlefish": 62348, "d-and-d-beyond": 63178, "d-and-d": 62349, "dailymotion": 57426, "dart-lang": 59027, "dashcube": 61968, "debian": 58891, "deezer": 57463, "delicious": 61861, "deploydog": 62350, "deskpro": 62351, "dev": 63180, "deviantart": 61885, "dhl": 63376, "diaspora": 63377, "digg": 61862, "digital-ocean": 62353, "discord": 62354, "discourse": 62355, "disqus": 59349, "dochub": 62356, "docker": 62357, "draft2digital": 62358, "dribbble-square": 62359, "dribbble": 61821, "dropbox": 61803, "drupal": 61865, "duolingo": 59410, "dyalog": 62361, "earlybirds": 62362, "ebay": 62708, "edge-legacy": 57464, "edge": 62082, "elementor": 62512, "eleventy": 59350, "ello": 62961, "ember": 62499, "empire": 61905, "envira": 62105, "erlang": 62365, "ethereum": 62510, "etsy": 62167, "evernote": 63545, "expeditedssl": 62014, "facebook-f": 62366, "facebook-messenger": 62367, "facebook-square": 61570, "facebook": 61594, "fantasy-flight-games": 63196, "fedex": 63383, "fediverse": 59493, "fedora": 63384, "figma": 63385, "files-pinwheel": 59039, "firefox-browser": 57351, "firefox": 62057, "first-order-alt": 62730, "first-order": 62128, "firstdraft": 62369, "flickr": 61806, "flipboard": 62541, "flutter": 59028, "fly": 62487, "font-awesome-alt": 62300, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "fonticons-fi": 62370, "fonticons": 62080, "forgejo": 59488, "fort-awesome-alt": 62371, "fort-awesome": 62086, "forumbee": 61969, "foursquare": 61824, "free-code-camp": 62149, "freebsd": 62372, "fulcrum": 62731, "galactic-republic": 62732, "galactic-senate": 62733, "get-pocket": 62053, "gg-circle": 62049, "gg": 62048, "git-alt": 63553, "git-square": 61906, "git": 61907, "gitee": 59491, "github-alt": 61715, "github-square": 61586, "github": 61595, "gitkraken": 62374, "gitlab-square": 58798, "gitlab": 62102, "gitter": 62502, "glide-g": 62118, "glide": 62117, "globaleaks": 59485, "gofore": 62375, "golang": 58383, "goodreads-g": 62377, "goodreads": 62376, "google-drive": 62378, "google-pay": 57465, "google-play": 62379, "google-plus-g": 61653, "google-plus-square": 61652, "google-plus": 62131, "google-scholar": 58939, "google-wallet": 61934, "google": 61856, "gratipay": 61828, "grav": 62166, "gripfire": 62380, "grunt": 62381, "guilded": 57470, "gulp": 62382, "hacker-news-square": 62383, "hacker-news": 61908, "hackerrank": 62967, "hashnode": 58521, "hips": 62546, "hire-a-helper": 62384, "hive": 57471, "hooli": 62503, "hornbill": 62866, "hotjar": 62385, "houzz": 62076, "html5": 61755, "hubspot": 62386, "hugging-face": 59497, "ideal": 57363, "imdb": 62168, "innosoft": 57472, "instagram-square": 57429, "instagram": 61805, "instalod": 57473, "intercom": 63407, "internet-explorer": 62059, "invision": 63408, "ioxhost": 61960, "itch-io": 63546, "itunes-note": 62389, "itunes": 62388, "java": 62692, "jedi-order": 62734, "jenkins": 62390, "jira": 63409, "joget": 62391, "joomla": 61866, "js-square": 62393, "js": 62392, "jsfiddle": 61900, "julia": 59474, "jxl": 59003, "kaggle": 62970, "kakao-talk": 59351, "keybase": 62709, "keycdn": 62394, "kickstarter-k": 62396, "kickstarter": 62395, "ko-fi": 59478, "korvue": 62511, "kubernetes": 59479, "laravel": 62397, "lastfm-square": 61955, "lastfm": 61954, "leanpub": 61970, "leetcode": 59498, "less": 62493, "letterboxd": 58925, "line": 62400, "linkedin-in": 61665, "linkedin": 61580, "linktree": 59352, "linode": 62136, "linux": 61820, "lumon-drop": 59363, "lumon": 59362, "lyft": 62403, "magento": 62404, "mailchimp": 62878, "mandalorian": 62735, "markdown": 62991, "mastodon": 62710, "maxcdn": 61750, "mdb": 63690, "medapps": 62406, "medium-m": 62010, "medium": 62010, "medrt": 62408, "meetup": 62176, "megaport": 62883, "mendeley": 63411, "meta": 58523, "microblog": 57370, "microsoft": 62410, "mintbit": 58927, "mix": 62411, "mixcloud": 62089, "mixer": 57430, "mizuni": 62412, "modx": 62085, "monero": 62416, "napster": 62418, "neos": 62994, "nfc-directional": 58672, "nfc-symbol": 58673, "nimblr": 62888, "node-js": 62419, "node": 62489, "notion": 59353, "npm": 62420, "ns8": 62421, "nutritionix": 62422, "obsidian": 59513, "octopus-deploy": 57474, "odnoklassniki-square": 62052, "odnoklassniki": 62051, "odysee": 58822, "old-republic": 62736, "openai": 59343, "opencart": 62013, "openid": 61851, "openstreetmap": 59499, "opensuse": 58923, "opera": 62058, "optin-monster": 62012, "orcid": 63698, "osi": 62490, "padlet": 58528, "page4": 62423, "pagelines": 61836, "palfed": 62424, "pandora": 59354, "patreon": 62425, "paypal": 61933, "perbyte": 57475, "periscope": 62426, "phabricator": 62427, "phoenix-framework": 62428, "phoenix-squadron": 62737, "php": 62551, "pied-piper-alt": 61864, "pied-piper-hat": 62693, "pied-piper-pp": 61863, "pied-piper-square": 57374, "pied-piper": 62126, "pinterest-p": 62001, "pinterest-square": 61651, "pinterest": 61650, "pix": 58426, "pixelfed": 59355, "pixiv": 58944, "playstation": 62431, "postgresql": 59480, "product-hunt": 62088, "pushed": 62433, "python": 62434, "qq": 61910, "quinscape": 62553, "quora": 62148, "r-project": 62711, "raspberry-pi": 63419, "ravelry": 62169, "react": 62491, "reacteurope": 63325, "readme": 62677, "rebel": 61904, "red-river": 62435, "reddit-alien": 62081, "reddit-square": 61858, "reddit": 61857, "redhat": 63420, "rendact": 62436, "renren": 61835, "replyd": 62438, "researchgate": 62712, "resolving": 62439, "rev": 62898, "rocketchat": 62440, "rockrms": 62441, "rust": 57466, "safari": 62055, "salesforce": 63547, "sass": 62494, "scaleway": 59481, "schlix": 62442, "screenpal": 58736, "scribd": 62090, "searchengin": 62443, "sellcast": 62170, "sellsy": 61971, "servicestack": 62444, "shirtsinbulk": 61972, "shoelace": 58892, "shopify": 57431, "shopware": 62901, "signal-messenger": 58979, "simplybuilt": 61973, "sistrix": 62446, "sith": 62738, "sitrox": 58442, "sketch": 63430, "skyatlas": 61974, "skype": 61822, "slack-hash": 61848, "slack": 61848, "slideshare": 61927, "snapchat-ghost": 62123, "snapchat-square": 62125, "snapchat": 62123, "solana": 59486, "soundcloud": 61886, "sourcetree": 63443, "space-awesome": 58796, "speakap": 62451, "speaker-deck": 63548, "spotify": 61884, "square-behance": 61877, "square-bluesky": 59043, "square-deskpro": 59460, "square-dribbble": 62359, "square-facebook": 61570, "square-figma": 59364, "square-font-awesome-stroke": 62300, "square-font-awesome": 58797, "square-git": 61906, "square-github": 61586, "square-gitlab": 58798, "square-google-plus": 61652, "square-hacker-news": 62383, "square-instagram": 57429, "square-js": 62393, "square-kickstarter": 62395, "square-lastfm": 61955, "square-letterboxd": 58926, "square-linkedin": 59344, "square-odnoklassniki": 62052, "square-pied-piper": 57374, "square-pinterest": 61651, "square-reddit": 61858, "square-snapchat": 62125, "square-steam": 61879, "square-threads": 58905, "square-tumblr": 61812, "square-twitter": 61569, "square-upwork": 59004, "square-viadeo": 62122, "square-vimeo": 61844, "square-web-awesome-stroke": 59012, "square-web-awesome": 59011, "square-whatsapp": 62476, "square-x-twitter": 58906, "square-xing": 61801, "square-youtube": 62513, "squarespace": 62910, "stack-exchange": 61837, "stack-overflow": 61804, "stackpath": 63554, "staylinked": 62453, "steam-square": 61879, "steam-symbol": 62454, "steam": 61878, "sticker-mule": 62455, "strava": 62504, "stripe-s": 62506, "stripe": 62505, "stubber": 58823, "studiovinari": 62456, "stumbleupon-circle": 61859, "stumbleupon": 61860, "superpowers": 62173, "supple": 62457, "supportnow": 59443, "suse": 63446, "svelte": 59496, "swift": 63713, "symfony": 63549, "symfonycasts": 59563, "tailwind-css": 59494, "teamspeak": 62713, "telegram-plane": 62150, "telegram": 62150, "tencent-weibo": 61909, "tex": 59391, "the-red-yeti": 63133, "themeco": 62918, "themeisle": 62130, "think-peaks": 63281, "threads": 58904, "threema": 59487, "tidal": 59356, "tiktok": 57467, "tor-browser": 59448, "trade-federation": 62739, "trello": 61825, "tumblr-square": 61812, "tumblr": 61811, "twitch": 61928, "twitter-square": 61569, "twitter": 61593, "typescript": 59456, "typo3": 62507, "uber": 62466, "ubuntu": 63455, "uikit": 62467, "ultralytics-hub": 59502, "ultralytics-yolo": 59503, "ultralytics": 59501, "umbraco": 63720, "uncharted": 57476, "uniregistry": 62468, "unison": 59476, "unity": 57417, "unreal-engine": 59484, "unsplash": 57468, "untappd": 62469, "ups": 63456, "upwork": 58945, "usb": 62087, "usps": 63457, "ussunnah": 62471, "vaadin": 62472, "venmo-v": 59483, "venmo": 59482, "viacoin": 62007, "viadeo-square": 62122, "viadeo": 62121, "viber": 62473, "vim": 59530, "vimeo-square": 61844, "vimeo-v": 62077, "vimeo": 62474, "vine": 61898, "vk": 61833, "vnv": 62475, "vsco": 59357, "vuejs": 62495, "w3c": 59358, "watchman-monitoring": 57479, "waze": 63551, "web-awesome": 59010, "webflow": 58972, "weebly": 62924, "weibo": 61834, "weixin": 61911, "whatsapp-square": 62476, "whatsapp": 62002, "whmcs": 62477, "wikipedia-w": 62054, "windows": 61818, "wirsindhandwerk": 58064, "wix": 62927, "wizards-of-the-coast": 63280, "wodu": 57480, "wolf-pack-battalion": 62740, "wordpress-simple": 62481, "wordpress": 61850, "wpbeginner": 62103, "wpexplorer": 62174, "wpforms": 62104, "wpressr": 62436, "wsh": 58064, "x-twitter": 58907, "xbox": 62482, "xing-square": 61801, "xing": 61800, "xmpp": 59492, "y-combinator": 62011, "yahoo": 61854, "yammer": 63552, "yandex-international": 62484, "yandex": 62483, "yarn": 63459, "yelp": 61929, "yoast": 62129, "youtube-square": 62513, "youtube": 61799, "zhihu": 63039, "zoom": 59515, "zulip": 59475 } ================================================ FILE: packages/fontawesome-pro-brands/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-brands", "version": "0.2.0", "description": "Fontawesome Pro Brands font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-brands" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-brands" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-brands/react-native-vector-icons-fontawesome-pro-brands.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-brands' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-brands)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-brands" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-brands/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProBrands icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProBrands.json'; export const FontAwesomeProBrands = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Brands-Regular', fontFileName: 'fa-brands-400.ttf', }); export type FontAwesomeProBrandsIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProBrands; ================================================ FILE: packages/fontawesome-pro-brands/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProBrands icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProBrands.json'; export const FontAwesomeProBrands = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Brands-Regular', fontFileName: 'fa-brands-400.ttf', }); export type FontAwesomeProBrandsIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProBrands; ================================================ FILE: packages/fontawesome-pro-brands/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-brands/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-duotone-light/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-duotone-light", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProDuotoneLight", "postScriptName": "FontAwesome7Duotone-Light", "fontFileName": "fa-duotone-light-300", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProDuotoneLight.json fa/pro/svgs/duotone-light\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-duotone-light/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-duotone-light/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Duotone Light Fontawesome Pro Duotone Light font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-duotone-light ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-duotone-light/fa-duotone-light-300.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProDuotoneLight } from '@react-native-vector-icons/fontawesome-pro-duotone-light'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-duotone-light/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_duotone_light" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProDuotoneLight" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_duotone_light" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-duotone-light") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-light/fonts" eachFile { println "(RNVI:fontawesome-pro-duotone-light) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-duotone-light" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-light/fonts" eachFile { println "(RNVI:fontawesome-pro-duotone-light) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-duotone-light/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-duotone-light/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-duotone-light/android/src/main/java/VectorIconsFontAwesomeProDuotoneLightPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_duotone_light import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProDuotoneLightPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-duotone-light/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-duotone-light/glyphmaps/FontAwesomeProDuotoneLight.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-duotone-light/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-duotone-light", "version": "0.2.0", "description": "Fontawesome Pro Duotone Light font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-duotone-light" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-duotone-light" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-duotone-light/react-native-vector-icons-fontawesome-pro-duotone-light.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-duotone-light' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-duotone-light)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-duotone-light" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-duotone-light/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProDuotoneLight icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProDuotoneLight.json'; export const FontAwesomeProDuotoneLight = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Duotone-Light', fontFileName: 'fa-duotone-light-300.ttf', }); export type FontAwesomeProDuotoneLightIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProDuotoneLight; ================================================ FILE: packages/fontawesome-pro-duotone-light/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProDuotoneLight icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProDuotoneLight.json'; export const FontAwesomeProDuotoneLight = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Duotone-Light', fontFileName: 'fa-duotone-light-300.ttf', }); export type FontAwesomeProDuotoneLightIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProDuotoneLight; ================================================ FILE: packages/fontawesome-pro-duotone-light/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-duotone-light/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-duotone-regular/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-duotone-regular", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProDuotoneRegular", "postScriptName": "FontAwesome7Duotone-Regular", "fontFileName": "fa-duotone-regular-400", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProDuotoneRegular.json fa/pro/svgs/duotone-regular\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-duotone-regular/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-duotone-regular/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Duotone Regular Fontawesome Pro Duotone Regular font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-duotone-regular ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-duotone-regular/fa-duotone-regular-400.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProDuotoneRegular } from '@react-native-vector-icons/fontawesome-pro-duotone-regular'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-duotone-regular/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_duotone_regular" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProDuotoneRegular" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_duotone_regular" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-duotone-regular") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-regular/fonts" eachFile { println "(RNVI:fontawesome-pro-duotone-regular) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-duotone-regular" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-regular/fonts" eachFile { println "(RNVI:fontawesome-pro-duotone-regular) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-duotone-regular/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-duotone-regular/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-duotone-regular/android/src/main/java/VectorIconsFontAwesomeProDuotoneRegularPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_duotone_regular import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProDuotoneRegularPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-duotone-regular/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-duotone-regular/glyphmaps/FontAwesomeProDuotoneRegular.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-duotone-regular/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-duotone-regular", "version": "0.2.0", "description": "Fontawesome Pro Duotone Regular font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-duotone-regular" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-duotone-regular" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-duotone-regular/react-native-vector-icons-fontawesome-pro-duotone-regular.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-duotone-regular' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-duotone-regular)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-duotone-regular" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-duotone-regular/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProDuotoneRegular icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProDuotoneRegular.json'; export const FontAwesomeProDuotoneRegular = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Duotone-Regular', fontFileName: 'fa-duotone-regular-400.ttf', }); export type FontAwesomeProDuotoneRegularIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProDuotoneRegular; ================================================ FILE: packages/fontawesome-pro-duotone-regular/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProDuotoneRegular icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProDuotoneRegular.json'; export const FontAwesomeProDuotoneRegular = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Duotone-Regular', fontFileName: 'fa-duotone-regular-400.ttf', }); export type FontAwesomeProDuotoneRegularIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProDuotoneRegular; ================================================ FILE: packages/fontawesome-pro-duotone-regular/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-duotone-regular/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-duotone-solid/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-duotone-solid", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProDuotoneSolid", "postScriptName": "FontAwesome7Duotone-Solid", "fontFileName": "fa-duotone-900", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProDuotoneSolid.json fa/pro/svgs/duotone\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-duotone-solid/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-duotone-solid/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Duotone Solid Fontawesome Pro Duotone Solid font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-duotone-solid ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-duotone-solid/fa-duotone-900.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProDuotoneSolid } from '@react-native-vector-icons/fontawesome-pro-duotone-solid'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-duotone-solid/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_duotone_solid" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProDuotoneSolid" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_duotone_solid" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-duotone-solid") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-solid/fonts" eachFile { println "(RNVI:fontawesome-pro-duotone-solid) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-duotone-solid" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-solid/fonts" eachFile { println "(RNVI:fontawesome-pro-duotone-solid) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-duotone-solid/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-duotone-solid/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-duotone-solid/android/src/main/java/VectorIconsFontAwesomeProDuotoneSolidPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_duotone_solid import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProDuotoneSolidPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-duotone-solid/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-duotone-solid/glyphmaps/FontAwesomeProDuotoneSolid.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-duotone-solid/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-duotone-solid", "version": "0.2.0", "description": "Fontawesome Pro Duotone Solid font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-duotone-solid" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-duotone-solid" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-duotone-solid/react-native-vector-icons-fontawesome-pro-duotone-solid.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-duotone-solid' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-duotone-solid)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-duotone-solid" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-duotone-solid/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProDuotoneSolid icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProDuotoneSolid.json'; export const FontAwesomeProDuotoneSolid = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Duotone-Solid', fontFileName: 'fa-duotone-900.ttf', }); export type FontAwesomeProDuotoneSolidIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProDuotoneSolid; ================================================ FILE: packages/fontawesome-pro-duotone-solid/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProDuotoneSolid icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProDuotoneSolid.json'; export const FontAwesomeProDuotoneSolid = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Duotone-Solid', fontFileName: 'fa-duotone-900.ttf', }); export type FontAwesomeProDuotoneSolidIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProDuotoneSolid; ================================================ FILE: packages/fontawesome-pro-duotone-solid/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-duotone-solid/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-duotone-thin/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-duotone-thin", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProDuotoneThin", "postScriptName": "FontAwesome7Duotone-Thin", "fontFileName": "fa-duotone-thin-100", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProDuotoneThin.json fa/pro/svgs/duotone-thin\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-duotone-thin/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-duotone-thin/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Duotone Thin Fontawesome Pro Duotone Thin font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-duotone-thin ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-duotone-thin/fa-duotone-thin-100.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProDuotoneThin } from '@react-native-vector-icons/fontawesome-pro-duotone-thin'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-duotone-thin/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_duotone_thin" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProDuotoneThin" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_duotone_thin" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-duotone-thin") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-thin/fonts" eachFile { println "(RNVI:fontawesome-pro-duotone-thin) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-duotone-thin" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-thin/fonts" eachFile { println "(RNVI:fontawesome-pro-duotone-thin) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-duotone-thin/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-duotone-thin/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-duotone-thin/android/src/main/java/VectorIconsFontAwesomeProDuotoneThinPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_duotone_thin import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProDuotoneThinPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-duotone-thin/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-duotone-thin/glyphmaps/FontAwesomeProDuotoneThin.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-duotone-thin/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-duotone-thin", "version": "0.2.0", "description": "Fontawesome Pro Duotone Thin font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-duotone-thin" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-duotone-thin" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-duotone-thin/react-native-vector-icons-fontawesome-pro-duotone-thin.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-duotone-thin' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-duotone-thin)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-duotone-thin" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-duotone-thin/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProDuotoneThin icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProDuotoneThin.json'; export const FontAwesomeProDuotoneThin = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Duotone-Thin', fontFileName: 'fa-duotone-thin-100.ttf', }); export type FontAwesomeProDuotoneThinIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProDuotoneThin; ================================================ FILE: packages/fontawesome-pro-duotone-thin/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProDuotoneThin icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProDuotoneThin.json'; export const FontAwesomeProDuotoneThin = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Duotone-Thin', fontFileName: 'fa-duotone-thin-100.ttf', }); export type FontAwesomeProDuotoneThinIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProDuotoneThin; ================================================ FILE: packages/fontawesome-pro-duotone-thin/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-duotone-thin/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-light/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-light", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProLight", "postScriptName": "FontAwesome7Pro-Light", "fontFileName": "fa-light-300", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProLight.json fa/pro/svgs/light\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-light/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-light/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Light Fontawesome Pro Light font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-light ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-light/fa-light-300.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProLight } from '@react-native-vector-icons/fontawesome-pro-light'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-light/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_light" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProLight" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_light" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-light") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-light/fonts" eachFile { println "(RNVI:fontawesome-pro-light) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-light" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-light/fonts" eachFile { println "(RNVI:fontawesome-pro-light) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-light/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-light/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-light/android/src/main/java/VectorIconsFontAwesomeProLightPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_light import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProLightPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-light/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-light/glyphmaps/FontAwesomeProLight.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-light/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-light", "version": "0.2.0", "description": "Fontawesome Pro Light font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-light" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-light" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-light/react-native-vector-icons-fontawesome-pro-light.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-light' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-light)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-light" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-light/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProLight icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProLight.json'; export const FontAwesomeProLight = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Pro-Light', fontFileName: 'fa-light-300.ttf', }); export type FontAwesomeProLightIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProLight; ================================================ FILE: packages/fontawesome-pro-light/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProLight icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProLight.json'; export const FontAwesomeProLight = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Pro-Light', fontFileName: 'fa-light-300.ttf', }); export type FontAwesomeProLightIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProLight; ================================================ FILE: packages/fontawesome-pro-light/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-light/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-regular/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-regular", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProRegular", "postScriptName": "FontAwesome7Pro-Regular", "fontFileName": "fa-regular-400", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProRegular.json fa/pro/svgs/regular\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-regular/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-regular/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Regular Fontawesome Pro Regular font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-regular ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-regular/fa-regular-400.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProRegular } from '@react-native-vector-icons/fontawesome-pro-regular'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-regular/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_regular" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProRegular" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_regular" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-regular") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-regular/fonts" eachFile { println "(RNVI:fontawesome-pro-regular) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-regular" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-regular/fonts" eachFile { println "(RNVI:fontawesome-pro-regular) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-regular/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-regular/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-regular/android/src/main/java/VectorIconsFontAwesomeProRegularPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_regular import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProRegularPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-regular/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-regular/glyphmaps/FontAwesomeProRegular.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-regular/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-regular", "version": "0.2.0", "description": "Fontawesome Pro Regular font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-regular" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-regular" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-regular/react-native-vector-icons-fontawesome-pro-regular.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-regular' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-regular)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-regular" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-regular/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProRegular icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProRegular.json'; export const FontAwesomeProRegular = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Pro-Regular', fontFileName: 'fa-regular-400.ttf', }); export type FontAwesomeProRegularIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProRegular; ================================================ FILE: packages/fontawesome-pro-regular/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProRegular icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProRegular.json'; export const FontAwesomeProRegular = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Pro-Regular', fontFileName: 'fa-regular-400.ttf', }); export type FontAwesomeProRegularIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProRegular; ================================================ FILE: packages/fontawesome-pro-regular/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-regular/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-sharp-duotone-light", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProSharpDuotoneLight", "postScriptName": "FontAwesome7SharpDuotone-Light", "fontFileName": "fa-sharp-duotone-light-300", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpDuotoneLight.json fa/pro/svgs/sharp-duotone-light\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Sharp Duotone Light Fontawesome Pro Sharp Duotone Light font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-sharp-duotone-light ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-sharp-duotone-light/fa-sharp-duotone-light-300.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProSharpDuotoneLight } from '@react-native-vector-icons/fontawesome-pro-sharp-duotone-light'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_sharp_duotone_light" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProSharpDuotoneLight" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_sharp_duotone_light" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-sharp-duotone-light") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-light/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-duotone-light) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-duotone-light" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-light/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-duotone-light) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/android/src/main/java/VectorIconsFontAwesomeProSharpDuotoneLightPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_sharp_duotone_light import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProSharpDuotoneLightPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/glyphmaps/FontAwesomeProSharpDuotoneLight.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-sharp-duotone-light", "version": "0.2.0", "description": "Fontawesome Pro Sharp Duotone Light font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-sharp-duotone-light" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-sharp-duotone-light" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/react-native-vector-icons-fontawesome-pro-sharp-duotone-light.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-sharp-duotone-light' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-sharp-duotone-light)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-duotone-light" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpDuotoneLight icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneLight.json'; export const FontAwesomeProSharpDuotoneLight = createIconSet(glyphMap, { postScriptName: 'FontAwesome7SharpDuotone-Light', fontFileName: 'fa-sharp-duotone-light-300.ttf', }); export type FontAwesomeProSharpDuotoneLightIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpDuotoneLight; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpDuotoneLight icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneLight.json'; export const FontAwesomeProSharpDuotoneLight = createIconSet(glyphMap, { postScriptName: 'FontAwesome7SharpDuotone-Light', fontFileName: 'fa-sharp-duotone-light-300.ttf', }); export type FontAwesomeProSharpDuotoneLightIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpDuotoneLight; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-light/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-sharp-duotone-regular", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProSharpDuotoneRegular", "postScriptName": "FontAwesome7SharpDuotone-Regular", "fontFileName": "fa-sharp-duotone-regular-400", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpDuotoneRegular.json fa/pro/svgs/sharp-duotone-regular\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Sharp Duotone Regular Fontawesome Pro Sharp Duotone Regular font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-sharp-duotone-regular ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-sharp-duotone-regular/fa-sharp-duotone-regular-400.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProSharpDuotoneRegular } from '@react-native-vector-icons/fontawesome-pro-sharp-duotone-regular'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_sharp_duotone_regular" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProSharpDuotoneRegular" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_sharp_duotone_regular" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-sharp-duotone-regular") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-regular/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-duotone-regular) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-duotone-regular" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-regular/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-duotone-regular) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/android/src/main/java/VectorIconsFontAwesomeProSharpDuotoneRegularPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_sharp_duotone_regular import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProSharpDuotoneRegularPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/glyphmaps/FontAwesomeProSharpDuotoneRegular.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-sharp-duotone-regular", "version": "0.2.0", "description": "Fontawesome Pro Sharp Duotone Regular font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-sharp-duotone-regular" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-sharp-duotone-regular" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/react-native-vector-icons-fontawesome-pro-sharp-duotone-regular.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-sharp-duotone-regular' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-sharp-duotone-regular)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-duotone-regular" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpDuotoneRegular icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneRegular.json'; export const FontAwesomeProSharpDuotoneRegular = createIconSet(glyphMap, { postScriptName: 'FontAwesome7SharpDuotone-Regular', fontFileName: 'fa-sharp-duotone-regular-400.ttf', }); export type FontAwesomeProSharpDuotoneRegularIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpDuotoneRegular; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpDuotoneRegular icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneRegular.json'; export const FontAwesomeProSharpDuotoneRegular = createIconSet(glyphMap, { postScriptName: 'FontAwesome7SharpDuotone-Regular', fontFileName: 'fa-sharp-duotone-regular-400.ttf', }); export type FontAwesomeProSharpDuotoneRegularIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpDuotoneRegular; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-regular/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-sharp-duotone-solid", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProSharpDuotoneSolid", "postScriptName": "FontAwesome7SharpDuotone-Solid", "fontFileName": "fa-sharp-duotone-solid-900", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpDuotoneSolid.json fa/pro/svgs/sharp-duotone-solid\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Sharp Duotone Solid Fontawesome Pro Sharp Duotone Solid font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-sharp-duotone-solid ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-sharp-duotone-solid/fa-sharp-duotone-solid-900.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProSharpDuotoneSolid } from '@react-native-vector-icons/fontawesome-pro-sharp-duotone-solid'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_sharp_duotone_solid" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProSharpDuotoneSolid" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_sharp_duotone_solid" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-sharp-duotone-solid") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-solid/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-duotone-solid) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-duotone-solid" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-solid/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-duotone-solid) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/android/src/main/java/VectorIconsFontAwesomeProSharpDuotoneSolidPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_sharp_duotone_solid import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProSharpDuotoneSolidPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/glyphmaps/FontAwesomeProSharpDuotoneSolid.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-sharp-duotone-solid", "version": "0.2.0", "description": "Fontawesome Pro Sharp Duotone Solid font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-sharp-duotone-solid" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-sharp-duotone-solid" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/react-native-vector-icons-fontawesome-pro-sharp-duotone-solid.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-sharp-duotone-solid' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-sharp-duotone-solid)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-duotone-solid" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpDuotoneSolid icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneSolid.json'; export const FontAwesomeProSharpDuotoneSolid = createIconSet(glyphMap, { postScriptName: 'FontAwesome7SharpDuotone-Solid', fontFileName: 'fa-sharp-duotone-solid-900.ttf', }); export type FontAwesomeProSharpDuotoneSolidIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpDuotoneSolid; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpDuotoneSolid icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneSolid.json'; export const FontAwesomeProSharpDuotoneSolid = createIconSet(glyphMap, { postScriptName: 'FontAwesome7SharpDuotone-Solid', fontFileName: 'fa-sharp-duotone-solid-900.ttf', }); export type FontAwesomeProSharpDuotoneSolidIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpDuotoneSolid; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-solid/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-sharp-duotone-thin", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProSharpDuotoneThin", "postScriptName": "FontAwesome7SharpDuotone-Thin", "fontFileName": "fa-sharp-duotone-thin-100", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpDuotoneThin.json fa/pro/svgs/sharp-duotone-thin\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Sharp Duotone Thin Fontawesome Pro Sharp Duotone Thin font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-sharp-duotone-thin ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-sharp-duotone-thin/fa-sharp-duotone-thin-100.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProSharpDuotoneThin } from '@react-native-vector-icons/fontawesome-pro-sharp-duotone-thin'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_sharp_duotone_thin" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProSharpDuotoneThin" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_sharp_duotone_thin" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-sharp-duotone-thin") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-thin/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-duotone-thin) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-duotone-thin" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-thin/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-duotone-thin) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/android/src/main/java/VectorIconsFontAwesomeProSharpDuotoneThinPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_sharp_duotone_thin import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProSharpDuotoneThinPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/glyphmaps/FontAwesomeProSharpDuotoneThin.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-sharp-duotone-thin", "version": "0.2.0", "description": "Fontawesome Pro Sharp Duotone Thin font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-sharp-duotone-thin" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-sharp-duotone-thin" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/react-native-vector-icons-fontawesome-pro-sharp-duotone-thin.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-sharp-duotone-thin' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-sharp-duotone-thin)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-duotone-thin" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpDuotoneThin icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneThin.json'; export const FontAwesomeProSharpDuotoneThin = createIconSet(glyphMap, { postScriptName: 'FontAwesome7SharpDuotone-Thin', fontFileName: 'fa-sharp-duotone-thin-100.ttf', }); export type FontAwesomeProSharpDuotoneThinIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpDuotoneThin; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpDuotoneThin icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneThin.json'; export const FontAwesomeProSharpDuotoneThin = createIconSet(glyphMap, { postScriptName: 'FontAwesome7SharpDuotone-Thin', fontFileName: 'fa-sharp-duotone-thin-100.ttf', }); export type FontAwesomeProSharpDuotoneThinIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpDuotoneThin; ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-sharp-duotone-thin/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-sharp-light/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-sharp-light", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProSharpLight", "postScriptName": "FontAwesome7Sharp-Light", "fontFileName": "fa-sharp-light-300", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpLight.json fa/pro/svgs/sharp-light\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-sharp-light/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-sharp-light/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Sharp Light Fontawesome Pro Sharp Light font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-sharp-light ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-sharp-light/fa-sharp-light-300.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProSharpLight } from '@react-native-vector-icons/fontawesome-pro-sharp-light'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-sharp-light/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_sharp_light" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProSharpLight" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_sharp_light" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-sharp-light") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-light/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-light) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-light" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-light/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-light) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-sharp-light/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-light/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-light/android/src/main/java/VectorIconsFontAwesomeProSharpLightPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_sharp_light import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProSharpLightPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-sharp-light/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-sharp-light/glyphmaps/FontAwesomeProSharpLight.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-sharp-light/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-sharp-light", "version": "0.2.0", "description": "Fontawesome Pro Sharp Light font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-sharp-light" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-sharp-light" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-sharp-light/react-native-vector-icons-fontawesome-pro-sharp-light.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-sharp-light' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-sharp-light)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-light" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-sharp-light/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpLight icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpLight.json'; export const FontAwesomeProSharpLight = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Sharp-Light', fontFileName: 'fa-sharp-light-300.ttf', }); export type FontAwesomeProSharpLightIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpLight; ================================================ FILE: packages/fontawesome-pro-sharp-light/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpLight icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpLight.json'; export const FontAwesomeProSharpLight = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Sharp-Light', fontFileName: 'fa-sharp-light-300.ttf', }); export type FontAwesomeProSharpLightIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpLight; ================================================ FILE: packages/fontawesome-pro-sharp-light/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-sharp-light/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-sharp-regular/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-sharp-regular", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProSharpRegular", "postScriptName": "FontAwesome7Sharp-Regular", "fontFileName": "fa-sharp-regular-400", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpRegular.json fa/pro/svgs/sharp-regular\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-sharp-regular/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-sharp-regular/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Sharp Regular Fontawesome Pro Sharp Regular font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-sharp-regular ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-sharp-regular/fa-sharp-regular-400.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProSharpRegular } from '@react-native-vector-icons/fontawesome-pro-sharp-regular'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-sharp-regular/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_sharp_regular" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProSharpRegular" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_sharp_regular" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-sharp-regular") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-regular/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-regular) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-regular" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-regular/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-regular) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-sharp-regular/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-regular/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-regular/android/src/main/java/VectorIconsFontAwesomeProSharpRegularPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_sharp_regular import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProSharpRegularPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-sharp-regular/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-sharp-regular/glyphmaps/FontAwesomeProSharpRegular.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-sharp-regular/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-sharp-regular", "version": "0.2.0", "description": "Fontawesome Pro Sharp Regular font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-sharp-regular" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-sharp-regular" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-sharp-regular/react-native-vector-icons-fontawesome-pro-sharp-regular.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-sharp-regular' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-sharp-regular)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-regular" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-sharp-regular/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpRegular icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpRegular.json'; export const FontAwesomeProSharpRegular = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Sharp-Regular', fontFileName: 'fa-sharp-regular-400.ttf', }); export type FontAwesomeProSharpRegularIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpRegular; ================================================ FILE: packages/fontawesome-pro-sharp-regular/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpRegular icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpRegular.json'; export const FontAwesomeProSharpRegular = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Sharp-Regular', fontFileName: 'fa-sharp-regular-400.ttf', }); export type FontAwesomeProSharpRegularIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpRegular; ================================================ FILE: packages/fontawesome-pro-sharp-regular/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-sharp-regular/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-sharp-solid/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-sharp-solid", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProSharpSolid", "postScriptName": "FontAwesome7Sharp-Solid", "fontFileName": "fa-sharp-solid-900", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpSolid.json fa/pro/svgs/sharp-solid\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-sharp-solid/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-sharp-solid/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Sharp Solid Fontawesome Pro Sharp Solid font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-sharp-solid ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-sharp-solid/fa-sharp-solid-900.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProSharpSolid } from '@react-native-vector-icons/fontawesome-pro-sharp-solid'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-sharp-solid/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_sharp_solid" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProSharpSolid" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_sharp_solid" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-sharp-solid") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-solid/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-solid) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-solid" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-solid/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-solid) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-sharp-solid/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-solid/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-solid/android/src/main/java/VectorIconsFontAwesomeProSharpSolidPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_sharp_solid import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProSharpSolidPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-sharp-solid/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-sharp-solid/glyphmaps/FontAwesomeProSharpSolid.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-sharp-solid/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-sharp-solid", "version": "0.2.0", "description": "Fontawesome Pro Sharp Solid font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-sharp-solid" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-sharp-solid" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-sharp-solid/react-native-vector-icons-fontawesome-pro-sharp-solid.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-sharp-solid' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-sharp-solid)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-solid" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-sharp-solid/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpSolid icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpSolid.json'; export const FontAwesomeProSharpSolid = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Sharp-Solid', fontFileName: 'fa-sharp-solid-900.ttf', }); export type FontAwesomeProSharpSolidIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpSolid; ================================================ FILE: packages/fontawesome-pro-sharp-solid/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpSolid icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpSolid.json'; export const FontAwesomeProSharpSolid = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Sharp-Solid', fontFileName: 'fa-sharp-solid-900.ttf', }); export type FontAwesomeProSharpSolidIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpSolid; ================================================ FILE: packages/fontawesome-pro-sharp-solid/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-sharp-solid/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-sharp-thin/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-sharp-thin", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProSharpThin", "postScriptName": "FontAwesome7Sharp-Thin", "fontFileName": "fa-sharp-thin-100", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpThin.json fa/pro/svgs/sharp-thin\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-sharp-thin/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-sharp-thin/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Sharp Thin Fontawesome Pro Sharp Thin font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-sharp-thin ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-sharp-thin/fa-sharp-thin-100.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProSharpThin } from '@react-native-vector-icons/fontawesome-pro-sharp-thin'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-sharp-thin/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_sharp_thin" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProSharpThin" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_sharp_thin" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-sharp-thin") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-thin/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-thin) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-thin" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-thin/fonts" eachFile { println "(RNVI:fontawesome-pro-sharp-thin) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-sharp-thin/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-thin/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-sharp-thin/android/src/main/java/VectorIconsFontAwesomeProSharpThinPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_sharp_thin import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProSharpThinPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-sharp-thin/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-sharp-thin/glyphmaps/FontAwesomeProSharpThin.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-sharp-thin/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-sharp-thin", "version": "0.2.0", "description": "Fontawesome Pro Sharp Thin font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-sharp-thin" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-sharp-thin" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-sharp-thin/react-native-vector-icons-fontawesome-pro-sharp-thin.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-sharp-thin' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-sharp-thin)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-thin" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-sharp-thin/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpThin icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpThin.json'; export const FontAwesomeProSharpThin = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Sharp-Thin', fontFileName: 'fa-sharp-thin-100.ttf', }); export type FontAwesomeProSharpThinIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpThin; ================================================ FILE: packages/fontawesome-pro-sharp-thin/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSharpThin icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSharpThin.json'; export const FontAwesomeProSharpThin = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Sharp-Thin', fontFileName: 'fa-sharp-thin-100.ttf', }); export type FontAwesomeProSharpThinIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSharpThin; ================================================ FILE: packages/fontawesome-pro-sharp-thin/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-sharp-thin/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-solid/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-solid", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProSolid", "postScriptName": "FontAwesome7Pro-Solid", "fontFileName": "fa-solid-900", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSolid.json fa/pro/svgs/solid\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-solid/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-solid/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Solid Fontawesome Pro Solid font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-solid ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-solid/fa-solid-900.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProSolid } from '@react-native-vector-icons/fontawesome-pro-solid'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-solid/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_solid" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProSolid" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_solid" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-solid") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-solid/fonts" eachFile { println "(RNVI:fontawesome-pro-solid) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-solid" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-solid/fonts" eachFile { println "(RNVI:fontawesome-pro-solid) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-solid/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-solid/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-solid/android/src/main/java/VectorIconsFontAwesomeProSolidPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_solid import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProSolidPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-solid/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-solid/glyphmaps/FontAwesomeProSolid.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-solid/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-solid", "version": "0.2.0", "description": "Fontawesome Pro Solid font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-solid" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-solid" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-solid/react-native-vector-icons-fontawesome-pro-solid.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-solid' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-solid)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-solid" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-solid/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSolid icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSolid.json'; export const FontAwesomeProSolid = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Pro-Solid', fontFileName: 'fa-solid-900.ttf', }); export type FontAwesomeProSolidIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSolid; ================================================ FILE: packages/fontawesome-pro-solid/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProSolid icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProSolid.json'; export const FontAwesomeProSolid = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Pro-Solid', fontFileName: 'fa-solid-900.ttf', }); export type FontAwesomeProSolidIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProSolid; ================================================ FILE: packages/fontawesome-pro-solid/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-solid/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome-pro-thin/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome-pro-thin", "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionOnly": true }, "copyCustomFonts": true, "className": "FontAwesomeProThin", "postScriptName": "FontAwesome7Pro-Thin", "fontFileName": "fa-thin-100", "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 7" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProThin.json fa/pro/svgs/thin\nrm -rf fa" } }, "versions": [ { "rnvi": "0.1.0", "upstream": "7.1.0" }, { "rnvi": "0.1.1", "upstream": "7.2.0" } ] } } ================================================ FILE: packages/fontawesome-pro-thin/CHANGELOG.md ================================================ ## 0.2.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 0.1.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 0.1.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 0.1.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 0.1.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/fontawesome-pro-thin/README.md ================================================ # React Native Vector Icons - Fontawesome Pro Thin Fontawesome Pro Thin font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. ## Installation ```sh npm install @react-native-vector-icons/fontawesome-pro-thin ``` ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/fontawesome-pro-thin/fa-thin-100.ttf ``` The font will be automatically copied during the build process for both iOS and Android. ## Usage ```jsx import { FontAwesomeProThin } from '@react-native-vector-icons/fontawesome-pro-thin'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 0.1.0 | 7.1.0 | | > 0.1.1 | 7.2.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontawesome-pro-thin/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome_pro_thin" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesomeProThin" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome_pro_thin" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome-pro-thin") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-thin/fonts" eachFile { println "(RNVI:fontawesome-pro-thin) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-thin" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome-pro-thin/fonts" eachFile { println "(RNVI:fontawesome-pro-thin) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome-pro-thin/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome-pro-thin/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome-pro-thin/android/src/main/java/VectorIconsFontAwesomeProThinPackage.kt ================================================ package com.reactnativevectoricons.fontawesome_pro_thin import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesomeProThinPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome-pro-thin/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome-pro-thin/glyphmaps/FontAwesomeProThin.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "00": 58471, "360-degrees": 58076, "a": 65, "abacus": 63040, "accent-grave": 96, "acorn": 63150, "ad": 63041, "add": 43, "address-book": 62137, "address-card": 62139, "adjust": 61506, "aeropress": 59435, "air-conditioner": 63732, "air-freshener": 62928, "airplay-audio": 59259, "airplay": 57481, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-minus": 59395, "alarm-plus": 63556, "alarm-snooze": 63557, "album-circle-plus": 58508, "album-circle-user": 58509, "album-collection-circle-plus": 58510, "album-collection-circle-user": 58511, "album-collection": 63648, "album": 63647, "alicorn": 63152, "alien-8bit": 63734, "alien-monster": 63734, "alien": 63733, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "allergies": 62561, "almost-equal-to": 59416, "alt": 57482, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amp-guitar": 63649, "ampersand": 38, "analytics": 63043, "anchor-circle-check": 58538, "anchor-circle-exclamation": 58539, "anchor-circle-xmark": 58540, "anchor-lock": 58541, "anchor": 61757, "angel": 63353, "angle-90": 57485, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angle": 57484, "angles-down": 61699, "angles-left": 61696, "angles-right": 61697, "angles-up-down": 58893, "angles-up": 61698, "angry": 62806, "ankh": 63044, "ant": 59008, "apartment": 58472, "aperture": 58079, "apostrophe": 39, "apple-alt": 62929, "apple-core": 57487, "apple-crate": 63153, "apple-whole": 62929, "aquarius": 59461, "archive": 61831, "archway": 62807, "area-chart": 61950, "aries": 59462, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-archery": 59449, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down-1-9": 61794, "arrow-down-9-1": 63622, "arrow-down-a-z": 61789, "arrow-down-arrow-up": 63619, "arrow-down-big-small": 63628, "arrow-down-from-arc": 58900, "arrow-down-from-bracket": 58983, "arrow-down-from-dotted-line": 57488, "arrow-down-from-line": 62277, "arrow-down-left-and-arrow-up-right-to-center": 57490, "arrow-down-left": 57489, "arrow-down-long-to-line": 59063, "arrow-down-long": 61813, "arrow-down-right": 57491, "arrow-down-short-wide": 63620, "arrow-down-small-big": 63629, "arrow-down-square-triangle": 63625, "arrow-down-to-arc": 58542, "arrow-down-to-bracket": 57492, "arrow-down-to-dotted-line": 57493, "arrow-down-to-line": 62269, "arrow-down-to-square": 57494, "arrow-down-triangle-square": 63624, "arrow-down-up-across-line": 58543, "arrow-down-up-lock": 58544, "arrow-down-wide-short": 61792, "arrow-down-z-a": 63617, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left-arrow-right": 59064, "arrow-left-from-arc": 58901, "arrow-left-from-bracket": 58984, "arrow-left-from-dotted-line": 59065, "arrow-left-from-line": 62276, "arrow-left-long-to-line": 58324, "arrow-left-long": 61815, "arrow-left-rotate": 61666, "arrow-left-to-arc": 58902, "arrow-left-to-bracket": 58985, "arrow-left-to-dotted-line": 59066, "arrow-left-to-line": 62270, "arrow-left": 61536, "arrow-pointer": 62021, "arrow-progress": 58847, "arrow-right-arrow-left": 61676, "arrow-right-from-arc": 58545, "arrow-right-from-bracket": 61579, "arrow-right-from-dotted-line": 59067, "arrow-right-from-file": 62830, "arrow-right-from-line": 62275, "arrow-right-long-to-line": 58325, "arrow-right-long": 61816, "arrow-right-rotate": 61470, "arrow-right-to-arc": 58546, "arrow-right-to-bracket": 61584, "arrow-right-to-city": 58547, "arrow-right-to-dotted-line": 59068, "arrow-right-to-file": 62831, "arrow-right-to-line": 62272, "arrow-right": 61537, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "arrow-rotate-forward": 61470, "arrow-rotate-left-10": 59446, "arrow-rotate-left-15": 59526, "arrow-rotate-left-30": 59527, "arrow-rotate-left": 61666, "arrow-rotate-right-10": 59447, "arrow-rotate-right-15": 59528, "arrow-rotate-right-30": 59529, "arrow-rotate-right": 61470, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-trend-down": 57495, "arrow-trend-up": 57496, "arrow-turn-down-left": 58081, "arrow-turn-down-right": 58326, "arrow-turn-down": 61769, "arrow-turn-left-down": 58931, "arrow-turn-left-up": 58932, "arrow-turn-left": 58930, "arrow-turn-right": 58933, "arrow-turn-up": 61768, "arrow-u-turn-down-left": 59367, "arrow-u-turn-down-right": 59368, "arrow-u-turn-left-down": 59369, "arrow-u-turn-left-up": 59370, "arrow-u-turn-right-down": 59371, "arrow-u-turn-right-up": 59372, "arrow-u-turn-up-left": 59373, "arrow-u-turn-up-right": 59374, "arrow-up-1-9": 61795, "arrow-up-9-1": 63623, "arrow-up-a-z": 61790, "arrow-up-arrow-down": 57497, "arrow-up-big-small": 63630, "arrow-up-from-arc": 58548, "arrow-up-from-bracket": 57498, "arrow-up-from-dotted-line": 57499, "arrow-up-from-ground-water": 58549, "arrow-up-from-line": 62274, "arrow-up-from-square": 57500, "arrow-up-from-water-pump": 58550, "arrow-up-left-from-circle": 57502, "arrow-up-left": 57501, "arrow-up-long-to-line": 59069, "arrow-up-long": 61814, "arrow-up-right-and-arrow-down-left-from-center": 57504, "arrow-up-right-dots": 58551, "arrow-up-right-from-square": 61582, "arrow-up-right": 57503, "arrow-up-short-wide": 63621, "arrow-up-small-big": 63631, "arrow-up-square-triangle": 63627, "arrow-up-to-arc": 58903, "arrow-up-to-bracket": 58986, "arrow-up-to-dotted-line": 57505, "arrow-up-to-line": 62273, "arrow-up-triangle-square": 63626, "arrow-up-wide-short": 61793, "arrow-up-z-a": 63618, "arrow-up": 61538, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-alt": 61618, "arrows-cross": 57506, "arrows-down-to-line": 58552, "arrows-down-to-people": 58553, "arrows-from-dotted-line": 57507, "arrows-from-line": 57508, "arrows-h": 61566, "arrows-left-right-to-line": 58554, "arrows-left-right": 61566, "arrows-maximize": 62237, "arrows-minimize": 57509, "arrows-repeat-1": 62310, "arrows-repeat": 62308, "arrows-retweet": 62305, "arrows-rotate-reverse": 58928, "arrows-rotate": 61473, "arrows-spin": 58555, "arrows-split-up-and-left": 58556, "arrows-to-circle": 58557, "arrows-to-dot": 58558, "arrows-to-dotted-line": 57510, "arrows-to-eye": 58559, "arrows-to-line": 57511, "arrows-turn-right": 58560, "arrows-turn-to-dots": 58561, "arrows-up-down-left-right": 61511, "arrows-up-down": 61565, "arrows-up-to-line": 58562, "arrows-v": 61565, "arrows": 61511, "asl-interpreting": 62115, "assistive-listening-systems": 62114, "asterisk": 42, "at": 64, "atlas": 62808, "atom-alt": 62931, "atom-simple": 62931, "atom": 62930, "audio-description-slash": 57512, "audio-description": 62110, "austral-sign": 57513, "australian-dollar-sign": 59134, "automobile": 61881, "avocado": 57514, "award-simple": 57515, "award": 62809, "axe-battle": 63155, "axe": 63154, "b": 66, "baby-carriage": 63357, "baby": 63356, "backpack": 62932, "backspace": 62810, "backward-fast": 61513, "backward-step": 61512, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badge": 62261, "badger-honey": 63156, "badminton": 58170, "bag-seedling": 58866, "bag-shopping-minus": 58960, "bag-shopping-plus": 58961, "bag-shopping": 62096, "bagel": 58327, "bags-shopping": 63559, "baguette": 58328, "bahai": 63078, "baht-sign": 57516, "balance-scale-left": 62741, "balance-scale-right": 62742, "balance-scale": 62030, "ball-pile": 63358, "ball-yarn": 59086, "balloon": 58083, "balloons": 58084, "ballot-check": 63283, "ballot": 63282, "ban-bug": 63481, "ban-parking": 62998, "ban-smoking": 62797, "ban": 61534, "banana": 58085, "band-aid": 62562, "bandage": 62562, "bangladeshi-taka-sign": 58086, "banjo": 63651, "bank": 61852, "bar-chart": 61568, "bar-progress-empty": 59045, "bar-progress-full": 59046, "bar-progress-half": 59047, "bar-progress-quarter": 59048, "bar-progress-three-quarters": 59049, "bar-progress": 59044, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "barcode": 61482, "barn-silo": 63588, "barn": 59079, "bars-filter": 57517, "bars-progress": 63528, "bars-sort": 57518, "bars-staggered": 62800, "bars": 61641, "baseball-ball": 62515, "baseball-bat-ball": 62514, "baseball-bat": 59365, "baseball": 62515, "basket-shopping-minus": 58962, "basket-shopping-plus": 58963, "basket-shopping-simple": 57519, "basket-shopping": 62097, "basketball-ball": 62516, "basketball-hoop": 62517, "basketball": 62516, "bat": 63157, "bath": 62157, "bathtub": 62157, "battery-0": 62020, "battery-1": 57521, "battery-2": 62019, "battery-3": 62018, "battery-4": 62017, "battery-5": 62016, "battery-bolt": 62326, "battery-car": 62943, "battery-empty": 62020, "battery-exclamation": 57520, "battery-full": 62016, "battery-half": 62018, "battery-low": 57521, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battery": 62016, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "bed-front": 63735, "bed-pulse": 62599, "bed": 62006, "bee": 57522, "beer-foam": 57523, "beer-mug-empty": 61692, "beer-mug": 57523, "beer": 61692, "bell-concierge": 62818, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-ring": 58924, "bell-school-slash": 62934, "bell-school": 62933, "bell-slash": 61942, "bell": 61683, "bells": 63359, "bench-tree": 58087, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicep": 59490, "bicycle": 61958, "biking-mountain": 63563, "biking": 63562, "billboard": 58829, "bin-bottles-recycle": 58870, "bin-bottles": 58869, "bin-recycle": 58871, "bin": 59235, "binary-circle-check": 58172, "binary-lock": 58173, "binary-slash": 58174, "binary": 58171, "binoculars": 61925, "biohazard": 63360, "bird": 58473, "birthday-cake": 61949, "bitcoin-sign": 57524, "blackboard": 62747, "blanket-fire": 58330, "blanket": 62616, "blender-phone": 63158, "blender": 62743, "blind": 62109, "blinds-open": 63740, "blinds-raised": 63741, "blinds": 63739, "block-brick-fire": 58332, "block-brick": 58331, "block-question": 58333, "block-quote": 57525, "block": 58474, "blog": 63361, "blueberries": 58088, "bluetooth": 62099, "bold": 61490, "bolt-auto": 57526, "bolt-lightning": 57527, "bolt-slash": 57528, "bolt": 61671, "bomb": 61922, "bone-break": 62936, "bone": 62935, "bong": 62812, "book-alt": 62937, "book-arrow-right": 57529, "book-arrow-up": 57530, "book-atlas": 62808, "book-bible": 63047, "book-blank": 62937, "book-bookmark": 57531, "book-circle-arrow-right": 57532, "book-circle-arrow-up": 57533, "book-circle": 57599, "book-copy": 57534, "book-dead": 63159, "book-font": 57535, "book-heart": 62617, "book-journal-whills": 63082, "book-law": 57537, "book-medical": 63462, "book-open-alt": 57536, "book-open-cover": 57536, "book-open-lines": 59219, "book-open-reader": 62938, "book-open": 62744, "book-quran": 63111, "book-reader": 62938, "book-section": 57537, "book-skull": 63159, "book-sparkles": 63160, "book-spells": 63160, "book-spine": 59220, "book-tanakh": 63527, "book-user": 63463, "book": 61485, "bookmark-circle": 57600, "bookmark-plus": 59221, "bookmark-slash": 57538, "bookmark": 61486, "books-medical": 63464, "books": 62939, "boombox": 63653, "boot-heeled": 58175, "boot": 63362, "booth-curtain": 63284, "border-all": 63564, "border-bottom-right": 63572, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style-alt": 63572, "border-style": 63571, "border-top-left": 63571, "border-top": 63573, "bore-hole": 58563, "bottle-baby": 58995, "bottle-droplet": 58564, "bottle-water": 58565, "bow-archery": 59450, "bow-arrow": 63161, "bowl-chopsticks-noodles": 58090, "bowl-chopsticks": 58089, "bowl-food": 58566, "bowl-hot": 63523, "bowl-rice": 58091, "bowl-salad": 63518, "bowl-scoop": 58334, "bowl-scoops": 58335, "bowl-shaved-ice": 58334, "bowl-soft-serve": 58475, "bowl-spoon": 58336, "bowling-ball-pin": 57539, "bowling-ball": 62518, "bowling-pins": 62519, "box-alt": 62618, "box-archive": 61831, "box-arrow-down-arrow-up": 59285, "box-arrow-down-magnifying-glass": 59286, "box-arrow-down": 59284, "box-arrow-up": 59431, "box-ballot": 63285, "box-check": 62567, "box-circle-check": 57540, "box-dollar": 62624, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-isometric-tape": 59288, "box-isometric": 59287, "box-magnifying-glass": 59432, "box-open-full": 62620, "box-open": 62622, "box-taped": 62618, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "box": 62566, "boxes-alt": 62568, "boxes-packing": 58567, "boxes-stacked": 62568, "boxes": 62568, "boxing-glove": 62520, "bra": 59087, "bracket-curly-left": 123, "bracket-curly-right": 125, "bracket-curly": 123, "bracket-left": 91, "bracket-round-right": 41, "bracket-round": 40, "bracket-square-right": 93, "bracket-square": 91, "bracket": 91, "brackets-curly": 63466, "brackets-round": 57541, "brackets-square": 63465, "brackets": 63465, "braille": 62113, "brain-arrow-curved-right": 63095, "brain-circuit": 57542, "brain": 62940, "brake-warning": 57543, "brazilian-real-sign": 58476, "bread-loaf": 63467, "bread-slice-butter": 58337, "bread-slice": 63468, "bridge-circle-check": 58569, "bridge-circle-exclamation": 58570, "bridge-circle-xmark": 58571, "bridge-lock": 58572, "bridge-suspension": 58573, "bridge-water": 58574, "bridge": 58568, "briefcase-arrow-right": 58098, "briefcase-blank": 57544, "briefcase-clock": 63050, "briefcase-medical": 62569, "briefcase": 61617, "briefs": 59088, "brightness-low": 57546, "brightness": 57545, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broccoli": 58338, "broom-ball": 62552, "broom-wide": 58833, "broom": 62746, "browser": 62334, "browsers": 57547, "brush": 62813, "bucket": 58575, "bug-slash": 58512, "bug": 61832, "bugs": 58576, "building-circle-arrow-right": 58577, "building-circle-check": 58578, "building-circle-exclamation": 58579, "building-circle-xmark": 58580, "building-columns": 61852, "building-flag": 58581, "building-lock": 58582, "building-magnifying-glass": 58908, "building-memo": 58910, "building-ngo": 58583, "building-shield": 58584, "building-un": 58585, "building-user": 58586, "building-wheat": 58587, "building": 61869, "buildings": 57548, "bulldozer": 58965, "bullhorn": 61601, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "bullseye": 61760, "buoy-mooring": 58806, "buoy": 58805, "burger-cheese": 63473, "burger-fries": 57549, "burger-glass": 57550, "burger-lettuce": 58339, "burger-soda": 63576, "burger": 63493, "burn": 62570, "burrito": 63469, "burst-new": 59512, "burst": 58588, "bus-alt": 62814, "bus-school": 62941, "bus-side": 59421, "bus-simple": 62814, "bus-stop": 59422, "bus": 61959, "business-front": 58460, "business-time": 63050, "butter": 58340, "butterfly": 59409, "c": 67, "cab": 61882, "cabin": 58477, "cabinet-filing": 63051, "cable-car": 63450, "cactus": 63655, "caduceus": 59009, "cake-candles": 61949, "cake-slice": 58341, "cake": 61949, "calculator-alt": 63052, "calculator-simple": 63052, "calculator": 61932, "calendar-alt": 61555, "calendar-arrow-down": 57552, "calendar-arrow-up": 57553, "calendar-check": 62068, "calendar-circle-exclamation": 58478, "calendar-circle-minus": 58479, "calendar-circle-plus": 58480, "calendar-circle-user": 58481, "calendar-circle": 57602, "calendar-clock": 57554, "calendar-day": 63363, "calendar-days": 61555, "calendar-download": 57552, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-heart": 57555, "calendar-image": 57556, "calendar-lines-pen": 58482, "calendar-lines": 57557, "calendar-minus": 62066, "calendar-note": 57557, "calendar-pen": 62259, "calendar-plus": 62065, "calendar-range": 57558, "calendar-star": 63286, "calendar-time": 57554, "calendar-times": 62067, "calendar-upload": 57553, "calendar-users": 58850, "calendar-week": 63364, "calendar-xmark": 62067, "calendar": 61747, "calendars": 57559, "camcorder": 63656, "camera-alt": 61488, "camera-cctv": 63660, "camera-circle-ellipsis": 59238, "camera-circle": 57603, "camera-clock": 59239, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "camera-rotate": 57560, "camera-security": 63742, "camera-shutter": 59240, "camera-slash": 57561, "camera-viewfinder": 57562, "camera-web-slash": 63539, "camera-web": 63538, "camera": 61488, "campfire": 63162, "campground": 63163, "can-food": 58342, "cancel": 61534, "cancer": 59463, "candle-holder": 63164, "candy-bar": 58344, "candy-cane": 63366, "candy-corn": 63165, "candy": 58343, "cannabis": 62815, "cannon": 58946, "canoe-person": 59548, "capricorn": 59464, "capsule": 59226, "capsules": 62571, "car-alt": 62942, "car-battery": 62943, "car-bolt": 58177, "car-building": 63577, "car-bump": 62944, "car-burst": 62945, "car-bus": 63578, "car-circle-bolt": 58178, "car-crash": 62945, "car-garage": 62946, "car-key": 59328, "car-mechanic": 62947, "car-mirrors": 58179, "car-on": 58589, "car-people": 59036, "car-rear": 62942, "car-side-bolt": 58180, "car-side": 62948, "car-siren-on": 59330, "car-siren": 59329, "car-tilt": 62949, "car-tunnel": 58590, "car-wash": 62950, "car-wrench": 62947, "car": 61881, "caravan-alt": 57344, "caravan-simple": 57344, "caravan": 63743, "card-club": 58345, "card-diamond": 58346, "card-heart": 58347, "card-spade": 58348, "cards-blank": 58591, "cards": 58349, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-large-down": 59436, "caret-large-left": 59437, "caret-large-right": 59438, "caret-large-up": 59439, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carpool": 59036, "carriage-baby": 63357, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-arrow-up": 58350, "cart-circle-arrow-down": 58351, "cart-circle-arrow-up": 58352, "cart-circle-check": 58353, "cart-circle-exclamation": 58354, "cart-circle-plus": 58355, "cart-circle-xmark": 58356, "cart-flatbed-boxes": 62581, "cart-flatbed-empty": 62582, "cart-flatbed-suitcase": 62877, "cart-flatbed": 62580, "cart-minus": 57563, "cart-plus": 61975, "cart-shopping-fast": 57564, "cart-shopping": 61562, "cart-xmark": 57565, "cash-register": 63368, "cassette-betamax": 63652, "cassette-tape": 63659, "cassette-vhs": 63724, "castle": 57566, "cat-space": 57345, "cat": 63166, "cauldron": 63167, "cctv": 63660, "cedi-sign": 57567, "cent-sign": 58357, "certificate": 61603, "chain-broken": 61735, "chain-horizontal-slash": 57804, "chain-horizontal": 57803, "chain-slash": 61735, "chain": 61633, "chair-office": 63169, "chair": 63168, "chalkboard-teacher": 62748, "chalkboard-user": 62748, "chalkboard": 62747, "champagne-glass": 63390, "champagne-glasses": 63391, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-bullet": 57569, "chart-candlestick": 57570, "chart-column": 57571, "chart-diagram": 59029, "chart-fft": 59038, "chart-gantt": 57572, "chart-kanban": 58959, "chart-line-down": 63053, "chart-line-up-down": 58839, "chart-line-up": 57573, "chart-line": 61953, "chart-mixed-up-circle-currency": 58840, "chart-mixed-up-circle-dollar": 58841, "chart-mixed": 63043, "chart-network": 63370, "chart-pie-alt": 63054, "chart-pie-simple-circle-currency": 58884, "chart-pie-simple-circle-dollar": 58885, "chart-pie-simple": 63054, "chart-pie": 61952, "chart-pyramid": 57574, "chart-radar": 57575, "chart-scatter-3d": 57576, "chart-scatter-bubble": 57577, "chart-scatter": 63470, "chart-simple-horizontal": 58484, "chart-simple": 58483, "chart-sine": 59037, "chart-tree-map": 57578, "chart-user": 63139, "chart-waterfall": 57579, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "check-to-slot": 63346, "check": 61452, "cheese-swiss": 63472, "cheese": 63471, "cheeseburger": 63473, "chemex": 59440, "cherries": 57580, "chess-bishop-alt": 62523, "chess-bishop-piece": 62523, "chess-bishop": 62522, "chess-board": 62524, "chess-clock-alt": 62526, "chess-clock-flip": 62526, "chess-clock": 62525, "chess-king-alt": 62528, "chess-king-piece": 62528, "chess-king": 62527, "chess-knight-alt": 62530, "chess-knight-piece": 62530, "chess-knight": 62529, "chess-pawn-alt": 62532, "chess-pawn-piece": 62532, "chess-pawn": 62531, "chess-queen-alt": 62534, "chess-queen-piece": 62534, "chess-queen": 62533, "chess-rook-alt": 62536, "chess-rook-piece": 62536, "chess-rook": 62535, "chess": 62521, "chest-drawers": 59523, "chestnut": 58358, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "chevrons-down": 62242, "chevrons-left": 62243, "chevrons-right": 62244, "chevrons-up": 62245, "chf-sign": 58882, "child-combatant": 58592, "child-dress": 58780, "child-reaching": 58781, "child-rifle": 58592, "child": 61870, "children": 58593, "chimney": 63371, "chocolate-bar": 58344, "chopsticks": 58359, "church": 62749, "circle-0": 57581, "circle-1": 57582, "circle-2": 57583, "circle-3": 57584, "circle-4": 57585, "circle-5": 57586, "circle-6": 57587, "circle-7": 57588, "circle-8": 57589, "circle-9": 57590, "circle-a": 57591, "circle-ampersand": 57592, "circle-arrow-down-left": 57593, "circle-arrow-down-right": 57594, "circle-arrow-down": 61611, "circle-arrow-left": 61608, "circle-arrow-right": 61609, "circle-arrow-up-left": 57595, "circle-arrow-up-right": 57596, "circle-arrow-up": 61610, "circle-austral": 59163, "circle-australian-dollar": 59184, "circle-b": 57597, "circle-baht": 59181, "circle-bangladeshi-taka": 59137, "circle-bitcoin": 59191, "circle-bolt": 57598, "circle-book-open": 57599, "circle-bookmark": 57600, "circle-brazilian-real": 59115, "circle-c": 57601, "circle-calendar": 57602, "circle-camera": 57603, "circle-caret-down": 62253, "circle-caret-left": 62254, "circle-caret-right": 62256, "circle-caret-up": 62257, "circle-cedi": 59202, "circle-cent": 59178, "circle-check": 61528, "circle-chevron-down": 61754, "circle-chevron-left": 61751, "circle-chevron-right": 61752, "circle-chevron-up": 61753, "circle-chf": 59180, "circle-colon": 59132, "circle-cruzeiro": 59170, "circle-currency": 59118, "circle-d": 57604, "circle-danish-krone": 59206, "circle-dashed": 57605, "circle-divide": 57606, "circle-dollar-to-slot": 62649, "circle-dollar": 62184, "circle-dong": 59171, "circle-dot": 61842, "circle-down-left": 57607, "circle-down-right": 57608, "circle-down": 62296, "circle-e": 57609, "circle-ellipsis-vertical": 57611, "circle-ellipsis": 57610, "circle-envelope": 57612, "circle-equals": 59057, "circle-euro": 58830, "circle-eurozone": 59205, "circle-exclamation-check": 57613, "circle-exclamation": 61546, "circle-f": 57614, "circle-florin": 59108, "circle-franc": 59169, "circle-g": 57615, "circle-gf": 59007, "circle-guarani": 59195, "circle-h": 62590, "circle-half-horizontal": 59404, "circle-half-stroke-horizontal": 59405, "circle-half-stroke": 61506, "circle-half": 57616, "circle-heart": 62663, "circle-house": 59080, "circle-hryvnia": 59119, "circle-i": 57617, "circle-indian-rupee": 59188, "circle-info": 61530, "circle-j": 57618, "circle-k": 57619, "circle-kip": 59133, "circle-l": 57620, "circle-lari": 59165, "circle-left": 62297, "circle-lira": 59126, "circle-litecoin": 59124, "circle-location-arrow": 62978, "circle-m": 57621, "circle-malaysian-ringgit": 59129, "circle-manat": 59131, "circle-microphone-lines": 57623, "circle-microphone": 57622, "circle-mill": 59138, "circle-minus": 61526, "circle-moon": 59360, "circle-n": 57624, "circle-naira": 59209, "circle-nodes": 58594, "circle-norwegian-krone": 59192, "circle-notch": 61902, "circle-o": 57625, "circle-p": 57626, "circle-parking": 62997, "circle-pause": 62091, "circle-peruvian-soles": 59123, "circle-peseta": 59201, "circle-peso": 59135, "circle-phone-flip": 57628, "circle-phone-hangup": 57629, "circle-phone": 57627, "circle-play": 61764, "circle-plus": 61525, "circle-polish-zloty": 59136, "circle-q": 57630, "circle-quarter-stroke": 58835, "circle-quarter": 57631, "circle-quarters": 58360, "circle-question": 61529, "circle-r": 57632, "circle-radiation": 63418, "circle-renminbi": 59113, "circle-right": 62298, "circle-ruble": 59109, "circle-rupee": 59156, "circle-rupiah": 59142, "circle-s": 57633, "circle-share-nodes": 59099, "circle-shekel": 59139, "circle-small": 57634, "circle-sort-down": 57393, "circle-sort-up": 57394, "circle-sort": 57392, "circle-star": 57635, "circle-sterling": 58831, "circle-stop": 62093, "circle-swedish-krona": 59203, "circle-t": 57636, "circle-tenge": 59173, "circle-three-quarters-stroke": 58836, "circle-three-quarters": 57637, "circle-trash": 57638, "circle-tugrik": 59153, "circle-turkish-lira": 59193, "circle-u": 57639, "circle-up-left": 57640, "circle-up-right": 57641, "circle-up": 62299, "circle-user-circle-check": 59295, "circle-user-circle-exclamation": 59296, "circle-user-circle-minus": 59297, "circle-user-circle-moon": 59298, "circle-user-circle-plus": 59299, "circle-user-circle-question": 59300, "circle-user-circle-user": 59301, "circle-user-circle-xmark": 59302, "circle-user-clock": 59303, "circle-user": 62141, "circle-v": 57642, "circle-video": 57643, "circle-w": 57644, "circle-waveform-lines": 57645, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-wifi": 59005, "circle-won": 59116, "circle-x": 57646, "circle-xmark": 61527, "circle-y": 57647, "circle-yen": 58832, "circle-z": 57648, "circle": 61713, "circleapore-dollar": 59166, "circles-overlap-3": 59041, "circles-overlap": 58880, "citrus-slice": 58101, "citrus": 58100, "city": 63055, "clapperboard-play": 57650, "clapperboard": 57649, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard-check": 62572, "clipboard-clock": 59222, "clipboard-exclamation": 59223, "clipboard-list-check": 63287, "clipboard-list": 62573, "clipboard-medical": 57651, "clipboard-prescription": 62952, "clipboard-question": 58595, "clipboard-user": 63475, "clipboard": 62248, "clock-desk": 57652, "clock-eight-thirty": 58182, "clock-eight": 58181, "clock-eleven-thirty": 58184, "clock-eleven": 58183, "clock-five-thirty": 58186, "clock-five": 58185, "clock-four-thirty": 58187, "clock-four": 61463, "clock-nine-thirty": 58189, "clock-nine": 58188, "clock-one-thirty": 58191, "clock-one": 58190, "clock-rotate-left": 61914, "clock-seven-thirty": 58193, "clock-seven": 58192, "clock-six-thirty": 58195, "clock-six": 58194, "clock-ten-thirty": 58197, "clock-ten": 58196, "clock-three-thirty": 58199, "clock-three": 58198, "clock-twelve-thirty": 58201, "clock-twelve": 58200, "clock-two-thirty": 58203, "clock-two": 58202, "clock": 61463, "clone-plus": 59212, "clone": 62029, "close": 61453, "closed-captioning-slash": 57653, "closed-captioning": 61962, "clothes-hanger": 57654, "cloud-arrow-down": 61677, "cloud-arrow-up": 61678, "cloud-binary": 58881, "cloud-bolt-moon": 63341, "cloud-bolt-sun": 63342, "cloud-bolt": 63340, "cloud-check": 58204, "cloud-download-alt": 61677, "cloud-download": 61677, "cloud-drizzle": 63288, "cloud-exclamation": 58513, "cloud-fog": 63310, "cloud-hail-mixed": 63290, "cloud-hail": 63289, "cloud-meatball": 63291, "cloud-minus": 58205, "cloud-moon-rain": 63292, "cloud-moon": 63171, "cloud-music": 63662, "cloud-plus": 58206, "cloud-question": 58514, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers-heavy": 63296, "cloud-showers-water": 58596, "cloud-showers": 63295, "cloud-slash": 57655, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun-rain": 63299, "cloud-sun": 63172, "cloud-upload-alt": 61678, "cloud-upload": 61678, "cloud-word": 57656, "cloud-xmark": 58207, "cloud": 61634, "clouds-moon": 63301, "clouds-sun": 63302, "clouds": 63300, "clover": 57657, "club": 62247, "cny": 61783, "cocktail": 62817, "coconut": 58102, "code-branch": 61734, "code-commit": 62342, "code-compare": 57658, "code-fork": 57659, "code-merge": 62343, "code-pull-request-closed": 58361, "code-pull-request-draft": 58362, "code-pull-request": 57660, "code-simple": 57661, "code": 61729, "coffee-bean": 57662, "coffee-beans": 57663, "coffee-pot": 57346, "coffee-togo": 63173, "coffee": 61684, "coffin-cross": 57425, "coffin": 63174, "cog": 61459, "cogs": 61573, "coin-blank": 58363, "coin-front": 58364, "coin-vertical": 58365, "coin": 63580, "coins": 62750, "colon-sign": 57664, "colon": 58, "columns-3": 58209, "columns": 61659, "comet": 57347, "comma": 44, "command": 57666, "comment-alt-arrow-down": 57819, "comment-alt-arrow-up": 57820, "comment-alt-captions": 57822, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-image": 57824, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-quote": 57828, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-text": 57830, "comment-alt-times": 62635, "comment-alt": 62074, "comment-arrow-down": 57667, "comment-arrow-up-right": 57669, "comment-arrow-up": 57668, "comment-captions": 57670, "comment-check": 62636, "comment-code": 57671, "comment-dollar": 63057, "comment-dot": 59100, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-heart": 58824, "comment-image": 57672, "comment-lines": 62640, "comment-medical": 63477, "comment-middle-alt": 57825, "comment-middle-top-alt": 57826, "comment-middle-top": 57674, "comment-middle": 57673, "comment-minus": 62641, "comment-music": 63664, "comment-nodes": 59030, "comment-pen": 62638, "comment-plus": 62642, "comment-question": 57675, "comment-quote": 57676, "comment-slash": 62643, "comment-smile": 62644, "comment-sms": 63437, "comment-text": 57677, "comment-times": 62645, "comment-waveform": 59101, "comment-xmark": 62645, "comment": 61557, "commenting": 62637, "comments-alt-dollar": 63058, "comments-alt": 62646, "comments-dollar": 63059, "comments-question-check": 57679, "comments-question": 57678, "comments": 61574, "compact-disc": 62751, "compass-drafting": 62824, "compass-slash": 62953, "compass": 61774, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-arrows": 57509, "compress-wide": 62246, "compress": 61542, "computer-classic": 63665, "computer-mouse-button-left": 59341, "computer-mouse-button-right": 59342, "computer-mouse-scrollwheel": 63693, "computer-mouse": 63692, "computer-speaker": 63666, "computer": 58597, "concierge-bell": 62818, "construction": 63581, "contact-book": 62137, "contact-card": 62139, "container-storage": 62647, "conveyor-belt-alt": 62575, "conveyor-belt-arm": 58872, "conveyor-belt-boxes": 62575, "conveyor-belt-empty": 57680, "conveyor-belt": 62574, "cookie-bite": 62820, "cookie": 62819, "copy": 61637, "copyright": 61945, "corn": 63175, "corner": 58366, "couch-small": 62668, "couch": 62648, "court-sport": 58947, "cow": 63176, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "cowbell": 63667, "crab": 58367, "crate-apple": 63153, "crate-empty": 57681, "credit-card-alt": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "credit-card": 61597, "creemee": 58368, "cricket-bat-ball": 62537, "cricket": 62537, "croissant": 63478, "crop-alt": 62821, "crop-simple": 62821, "crop": 61733, "cross": 63060, "crosshairs-simple": 58783, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "cruzeiro-sign": 57682, "crystal-ball": 58210, "cube": 61874, "cubes-stacked": 58598, "cubes": 61875, "cucumber": 58369, "cup-straw-swoosh": 58212, "cup-straw": 58211, "cup-togo": 63173, "cupcake": 58370, "curling-stone": 62538, "curling": 62538, "currency-sign": 59179, "custard": 58371, "cut": 61636, "cutlery": 62183, "d": 68, "dagger": 63179, "danish-krone-sign": 59168, "dash": 58372, "dashboard": 63012, "database": 61888, "deaf": 62116, "deafness": 62116, "debug": 63481, "dedent": 61499, "deer-rudolph": 63375, "deer": 63374, "delete-left": 62810, "delete-right": 57684, "democrat": 63303, "desk": 59518, "desktop-alt": 62352, "desktop-arrow-down": 57685, "desktop-code": 57701, "desktop-medical": 57702, "desktop-slash": 58106, "desktop": 62352, "dewpoint": 63304, "dharmachakra": 63061, "diagnoses": 62576, "diagram-cells": 58485, "diagram-lean-canvas": 57686, "diagram-nested": 57687, "diagram-next": 58486, "diagram-predecessor": 58487, "diagram-previous": 58488, "diagram-project": 62786, "diagram-sankey": 57688, "diagram-subtask": 58489, "diagram-successor": 58490, "diagram-venn": 57690, "dial-high": 57692, "dial-low": 57693, "dial-max": 57694, "dial-med-high": 57691, "dial-med-low": 57696, "dial-med": 57695, "dial-min": 57697, "dial-off": 57698, "dial": 57691, "dialpad": 59340, "diamond-exclamation": 58373, "diamond-half-stroke": 58808, "diamond-half": 58807, "diamond-turn-right": 62955, "diamond": 61977, "diamonds-4": 59019, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "dice": 62754, "digging": 63582, "digital-tachograph": 62822, "dinosaur": 58878, "diploma": 62954, "direction-left-right": 59070, "direction-up-down": 59071, "directions": 62955, "disc-drive": 63669, "disease": 63482, "display-arrow-down": 57700, "display-chart-up-circle-currency": 58853, "display-chart-up-circle-dollar": 58854, "display-chart-up": 58851, "display-code": 57701, "display-medical": 57702, "display-slash": 58106, "display": 57699, "distribute-spacing-horizontal": 58213, "distribute-spacing-vertical": 58214, "ditto": 34, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dog-leashed": 63188, "dog": 63187, "dollar-circle": 62184, "dollar-sign": 36, "dollar-square": 62185, "dollar": 36, "dolly-box": 62578, "dolly-empty": 62579, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "dolly-flatbed": 62580, "dolly": 62578, "dolphin": 57704, "donate": 62649, "dong-sign": 57705, "donut": 58374, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dot": 59345, "doughnut": 58374, "dove": 62650, "down-from-bracket": 58987, "down-from-dotted-line": 58375, "down-from-line": 62281, "down-left-and-up-right-to-center": 62498, "down-left": 57706, "down-long-to-line": 59072, "down-long": 62217, "down-right": 57707, "down-to-bracket": 58599, "down-to-dotted-line": 58376, "down-to-line": 62282, "down-up": 59073, "down": 62292, "download": 61465, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dress": 59089, "dresser": 59519, "drivers-license": 62146, "drone-alt": 63584, "drone-front": 63584, "drone": 63583, "droplet-degree": 63304, "droplet-percent": 63312, "droplet-plus": 59392, "droplet-slash": 62919, "droplet": 61507, "drum-steelpan": 62826, "drum": 62825, "drumstick-bite": 63191, "drumstick": 63190, "dryer-alt": 63586, "dryer-heat": 63586, "dryer": 63585, "duck": 63192, "dumbbell": 62539, "dumpster-fire": 63380, "dumpster": 63379, "dungeon": 63193, "e": 69, "ear-circle-checkmark": 59227, "ear-deaf": 62116, "ear-listen": 62114, "ear-muffs": 63381, "ear-triangle-exclamation": 59228, "ear-waveform": 59229, "ear": 62960, "earth-africa": 62844, "earth-america": 62845, "earth-americas": 62845, "earth-asia": 62846, "earth-europe": 63394, "earth-oceania": 58491, "earth": 62845, "eclipse-alt": 63306, "eclipse": 63305, "edit": 61508, "egg-fried": 63484, "egg": 63483, "eggplant": 57708, "eject": 61522, "elephant": 63194, "elevator": 57709, "ellipsis-h-alt": 62363, "ellipsis-h": 61761, "ellipsis-stroke-vertical": 62364, "ellipsis-stroke": 62363, "ellipsis-v-alt": 62364, "ellipsis-v": 61762, "ellipsis-vertical": 61762, "ellipsis": 61761, "empty-set": 63062, "engine-exclamation": 62962, "engine-warning": 62962, "engine": 57710, "envelope-badge": 57711, "envelope-certificate": 59433, "envelope-circle-check": 58600, "envelope-circle-user": 59102, "envelope-circle": 57612, "envelope-dot": 57711, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-open": 62134, "envelope-ribbon": 59433, "envelope-square": 61849, "envelope": 61664, "envelopes-bulk": 63092, "envelopes": 57712, "equals": 61, "eraser": 61741, "escalator": 57713, "ethernet": 63382, "eur": 61779, "euro-sign": 61779, "euro": 61779, "eurozone-sign": 59200, "excavator": 58966, "exchange-alt": 62306, "exchange": 61676, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "exclamation": 33, "expand-alt": 62500, "expand-arrows-alt": 62238, "expand-arrows": 62237, "expand-wide": 62240, "expand": 61541, "exploding-head": 58110, "explosion": 58601, "external-link-alt": 62301, "external-link-square-alt": 62304, "external-link-square": 61772, "external-link": 61582, "eye-closed": 59451, "eye-dropper-empty": 61947, "eye-dropper-full": 57714, "eye-dropper-half": 57715, "eye-dropper": 61947, "eye-evil": 63195, "eye-low-vision": 62120, "eye-slash": 61552, "eye": 61550, "eyedropper": 61947, "eyes": 58215, "f": 70, "face-angry-horns": 58216, "face-angry": 62806, "face-anguished": 58217, "face-anxious-sweat": 58218, "face-astonished": 58219, "face-awesome": 58377, "face-beam-hand-over-mouth": 58492, "face-clouds": 58493, "face-confounded": 58220, "face-confused": 58221, "face-cowboy-hat": 58222, "face-diagonal-mouth": 58494, "face-disappointed": 58223, "face-disguise": 58224, "face-dizzy": 62823, "face-dotted": 58495, "face-downcast-sweat": 58225, "face-drooling": 58226, "face-exhaling": 58496, "face-explode": 58110, "face-expressionless": 58227, "face-eyes-xmarks": 58228, "face-fearful": 58229, "face-flushed": 62841, "face-frown-open": 62842, "face-frown-slight": 58230, "face-frown": 61721, "face-glasses": 58231, "face-grimace": 62847, "face-grin-beam-sweat": 62851, "face-grin-beam": 62850, "face-grin-hearts": 62852, "face-grin-squint-tears": 62854, "face-grin-squint": 62853, "face-grin-stars": 62855, "face-grin-tears": 62856, "face-grin-tongue-squint": 62858, "face-grin-tongue-wink": 62859, "face-grin-tongue": 62857, "face-grin-wide": 62849, "face-grin-wink": 62860, "face-grin": 62848, "face-hand-over-mouth": 58232, "face-hand-peeking": 58497, "face-hand-yawn": 58233, "face-head-bandage": 58234, "face-holding-back-tears": 58498, "face-hushed": 58235, "face-icicles": 58236, "face-kiss-beam": 62871, "face-kiss-closed-eyes": 58237, "face-kiss-wink-heart": 62872, "face-kiss": 62870, "face-laugh-beam": 62874, "face-laugh-squint": 62875, "face-laugh-wink": 62876, "face-laugh": 62873, "face-lying": 58238, "face-mask": 58239, "face-meh-blank": 62884, "face-meh": 61722, "face-melting": 58499, "face-monocle": 58240, "face-nauseated": 58241, "face-nose-steam": 58242, "face-party": 58243, "face-pensive": 58244, "face-persevering": 58245, "face-pleading": 58246, "face-pouting": 58247, "face-raised-eyebrow": 58248, "face-relieved": 58249, "face-rolling-eyes": 62885, "face-sad-cry": 62899, "face-sad-sweat": 58250, "face-sad-tear": 62900, "face-saluting": 58500, "face-scream": 58251, "face-shaking-horizontal": 59293, "face-shaking-vertical": 59294, "face-shaking": 59292, "face-shush": 58252, "face-sleeping": 58253, "face-sleepy": 58254, "face-smile-beam": 62904, "face-smile-halo": 58255, "face-smile-hearts": 58256, "face-smile-horns": 58257, "face-smile-plus": 62905, "face-smile-relaxed": 58258, "face-smile-tear": 58259, "face-smile-tongue": 58260, "face-smile-upside-down": 58261, "face-smile-wink": 62682, "face-smile": 61720, "face-smiling-hands": 58262, "face-smirking": 58263, "face-spiral-eyes": 58501, "face-sunglasses": 58264, "face-surprise": 62914, "face-swear": 58265, "face-thermometer": 58266, "face-thinking": 58267, "face-tired": 62920, "face-tissue": 58268, "face-tongue-money": 58269, "face-tongue-sweat": 58270, "face-unamused": 58271, "face-viewfinder": 58111, "face-vomit": 58272, "face-weary": 58273, "face-woozy": 58274, "face-worried": 58275, "face-zany": 58276, "face-zipper": 58277, "falafel": 58378, "family-dress": 58113, "family-pants": 58114, "family": 58112, "fan-table": 57348, "fan": 63587, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet-drip": 57350, "faucet": 57349, "fax": 61868, "feather-alt": 62827, "feather-pointed": 62827, "feather": 62765, "feed": 61598, "female": 61826, "fence": 58115, "ferris-wheel": 57716, "ferry": 58602, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "fighter-jet": 61691, "file-aiff": 59387, "file-alt": 61788, "file-archive": 61894, "file-arrow-down": 62829, "file-arrow-up": 62836, "file-audio": 61895, "file-award": 62963, "file-ban": 59224, "file-binary": 57717, "file-brackets-curly": 59396, "file-cad": 58994, "file-caret-down": 58409, "file-caret-up": 58410, "file-certificate": 62963, "file-chart-column": 63065, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-circle-check": 58784, "file-circle-exclamation": 58603, "file-circle-info": 58515, "file-circle-minus": 58605, "file-circle-plus": 58516, "file-circle-question": 58607, "file-circle-xmark": 58785, "file-clipboard": 61674, "file-code": 61897, "file-contract": 62828, "file-css": 59452, "file-csv": 63197, "file-dashed-line": 63607, "file-doc": 58861, "file-download": 62829, "file-edit": 62236, "file-eps": 58948, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-fragment": 59031, "file-gif": 58949, "file-half-dashed": 59032, "file-heart": 57718, "file-html": 59453, "file-icns": 59457, "file-image": 61893, "file-import": 62831, "file-invoice-dollar": 62833, "file-invoice": 62832, "file-jpg": 58950, "file-js": 59454, "file-lines": 61788, "file-lock": 58278, "file-magnifying-glass": 63589, "file-medical-alt": 62584, "file-medical": 62583, "file-midi": 59397, "file-minus": 62232, "file-mov": 58951, "file-mp3": 58952, "file-mp4": 58953, "file-music": 63670, "file-odf": 59388, "file-pdf": 61889, "file-pen": 62236, "file-plus-minus": 57719, "file-plus": 62233, "file-png": 58982, "file-powerpoint": 61892, "file-ppt": 58954, "file-prescription": 62834, "file-search": 63589, "file-shield": 58608, "file-signature": 62835, "file-slash": 58279, "file-spreadsheet": 63067, "file-svg": 58955, "file-tex": 59389, "file-text": 61788, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-vector": 58956, "file-video": 61896, "file-wav": 59390, "file-waveform": 62584, "file-word": 61890, "file-xls": 58957, "file-xmark": 62231, "file-xml": 58964, "file-zip": 58862, "file-zipper": 61894, "file": 61787, "files-medical": 63485, "files": 57720, "fill-drip": 62838, "fill": 62837, "film-alt": 61448, "film-canister": 63671, "film-cannister": 63671, "film-music": 59241, "film-simple": 61448, "film-slash": 57721, "film-stack": 59243, "film": 61448, "films": 57722, "filter-circle-dollar": 63074, "filter-circle-xmark": 57723, "filter-list": 57724, "filter-slash": 57725, "filter": 61616, "filters": 57726, "fingerprint": 62839, "fire-alt": 63460, "fire-burner": 58609, "fire-extinguisher": 61748, "fire-flame-curved": 63460, "fire-flame-simple": 62570, "fire-flame": 63199, "fire-hydrant": 57727, "fire-smoke": 63307, "fire": 61549, "fireplace": 63386, "firewall": 58332, "first-aid": 62585, "fish-bones": 58116, "fish-cooked": 63486, "fish-fins": 58610, "fish": 62840, "fishing-rod": 58280, "fist-raised": 63198, "flag-alt": 63308, "flag-checkered": 61726, "flag-pennant": 62550, "flag-swallowtail": 63308, "flag-usa": 63309, "flag": 61476, "flame": 63199, "flashlight": 63672, "flask-gear": 58865, "flask-poison": 63200, "flask-potion": 63201, "flask-round-poison": 63200, "flask-round-potion": 63201, "flask-vial": 58611, "flask": 61635, "flatbread-stuffed": 58380, "flatbread": 58379, "floppy-disk-circle-arrow-right": 57728, "floppy-disk-circle-xmark": 57729, "floppy-disk-pen": 57730, "floppy-disk-times": 57729, "floppy-disk": 61639, "floppy-disks": 57731, "florin-sign": 57732, "flower-daffodil": 63488, "flower-tulip": 63489, "flower": 63487, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "flying-disc": 58281, "fog": 63310, "folder-arrow-down": 57427, "folder-arrow-left": 59346, "folder-arrow-right": 59347, "folder-arrow-up": 57428, "folder-blank": 61563, "folder-bookmark": 57734, "folder-check": 58958, "folder-closed": 57733, "folder-cog": 57735, "folder-download": 57427, "folder-gear": 57735, "folder-grid": 57736, "folder-heart": 57737, "folder-image": 57738, "folder-magnifying-glass": 57739, "folder-medical": 57740, "folder-minus": 63069, "folder-music": 57741, "folder-open": 61564, "folder-plus": 63070, "folder-search": 57739, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folder-user": 57742, "folder-xmark": 63071, "folder": 61563, "folders": 63072, "fondue-pot": 58381, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "font-awesome": 62132, "font-case": 63590, "font": 61489, "foot-wing": 59444, "football-ball": 62542, "football-helmet": 62543, "football": 62542, "fork-knife": 62182, "fork": 62179, "forklift": 62586, "fort": 58502, "forward-fast": 61520, "forward-step": 61521, "forward": 61518, "fragile": 62651, "frame": 58517, "franc-sign": 57743, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown-open": 62842, "frown": 61721, "function": 63073, "funnel-dollar": 63074, "futbol-ball": 61923, "futbol": 61923, "g": 71, "galaxy": 57352, "gallery-thumbnails": 58282, "game-board-alt": 63592, "game-board-simple": 63592, "game-board": 63591, "game-console-handheld-crank": 58809, "game-console-handheld": 63675, "gamepad-alt": 58786, "gamepad-modern": 58786, "gamepad": 61723, "garage-car": 57354, "garage-empty": 59081, "garage-open": 57355, "garage": 57353, "garlic": 58382, "gas-pump-left": 59256, "gas-pump-right": 59257, "gas-pump-slash": 62964, "gas-pump": 62767, "gauge-circle-bolt": 58518, "gauge-circle-minus": 58519, "gauge-circle-plus": 58520, "gauge-high": 63013, "gauge-low": 63015, "gauge-max": 63014, "gauge-med": 63012, "gauge-min": 63016, "gauge-simple-high": 63018, "gauge-simple-low": 63020, "gauge-simple-max": 63019, "gauge-simple-med": 63017, "gauge-simple-min": 63021, "gauge-simple": 63017, "gauge": 63012, "gave-dandy": 58377, "gavel": 61667, "gbp": 61780, "gear-api": 59556, "gear-code": 58856, "gear-complex-api": 59557, "gear-complex-code": 58859, "gear-complex": 58857, "gear": 61459, "gears": 61573, "gem": 62373, "gemini": 59465, "genderless": 61997, "ghost": 63202, "gif": 57744, "gift-card": 63075, "gift": 61547, "gifts": 63388, "gingerbread-man": 63389, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-empty": 57745, "glass-half-empty": 57746, "glass-half-full": 57746, "glass-half": 57746, "glass-martini-alt": 62843, "glass-martini": 61440, "glass-water-droplet": 58613, "glass-water": 58612, "glass-whiskey-rocks": 63393, "glass-whiskey": 63392, "glass": 63492, "glasses-alt": 62965, "glasses-round": 62965, "glasses": 62768, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-oceania": 58491, "globe-pointer": 58894, "globe-snow": 63395, "globe-stand": 62966, "globe-wifi": 59013, "globe-www": 59558, "globe": 61612, "glove-boxing": 62520, "goal-net": 58283, "golf-ball-tee": 62544, "golf-ball": 62544, "golf-club": 62545, "golf-flag-hole": 58284, "gopuram": 63076, "gpu": 59459, "graduation-cap": 61853, "gramophone": 63677, "grapes": 58118, "grate-droplet": 57748, "grate": 57747, "greater-than-equal": 62770, "greater-than": 62, "grid-2-minus": 59050, "grid-2-plus": 57751, "grid-2": 57750, "grid-3": 57749, "grid-4": 57752, "grid-5": 57753, "grid-dividers": 58285, "grid-horizontal": 62861, "grid-round-2-minus": 59051, "grid-round-2-plus": 58844, "grid-round-2": 58843, "grid-round-4": 58845, "grid-round-5": 58846, "grid-round": 58842, "grid-vertical": 62862, "grid": 57749, "grill-fire": 58788, "grill-hot": 58789, "grill": 58787, "grimace": 62847, "grin-alt": 62849, "grin-beam-sweat": 62851, "grin-beam": 62850, "grin-hearts": 62852, "grin-squint-tears": 62854, "grin-squint": 62853, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-tongue": 62857, "grin-wink": 62860, "grin": 62848, "grip-dots-vertical": 58385, "grip-dots": 58384, "grip-horizontal": 62861, "grip-lines-vertical": 63397, "grip-lines": 63396, "grip-vertical": 62862, "grip": 62861, "group-arrows-rotate": 58614, "guarani-sign": 57754, "guitar-electric": 63678, "guitar": 63398, "guitars": 63679, "gun-slash": 57756, "gun-squirt": 57757, "gun": 57755, "h-square": 61693, "h": 72, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "h5": 58386, "h6": 58387, "hamburger": 63493, "hammer-brush": 58912, "hammer-crash": 58388, "hammer-war": 63204, "hammer": 63203, "hamsa": 63077, "hand-back-fist": 62037, "hand-back-point-down": 57758, "hand-back-point-left": 57759, "hand-back-point-ribbon": 57760, "hand-back-point-right": 57761, "hand-back-point-up": 57762, "hand-dots": 62561, "hand-fingers-crossed": 57763, "hand-fist": 63198, "hand-heart": 62652, "hand-holding-box": 62587, "hand-holding-circle-dollar": 58913, "hand-holding-dollar": 62656, "hand-holding-droplet": 62657, "hand-holding-hand": 58615, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-skull": 57764, "hand-holding-star": 59393, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-holding": 62653, "hand-horns": 57769, "hand-lizard": 62040, "hand-love": 57765, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-ribbon": 57766, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-shaka": 59441, "hand-sparkles": 57437, "hand-spock": 62041, "hand-wave": 57767, "hand": 62038, "handcuffs": 58616, "hands-american-sign-language-interpreting": 62115, "hands-asl-interpreting": 62115, "hands-bound": 58617, "hands-bubbles": 57438, "hands-clapping": 57768, "hands-heart": 62659, "hands-helping": 62660, "hands-holding-child": 58618, "hands-holding-circle": 58619, "hands-holding-diamond": 62588, "hands-holding-dollar": 62661, "hands-holding-heart": 62659, "hands-holding": 62658, "hands-praying": 63108, "hands-usd": 62661, "hands-wash": 57438, "hands": 62119, "handshake-alt-slash": 57440, "handshake-alt": 62133, "handshake-angle": 62660, "handshake-simple-slash": 57440, "handshake-simple": 62133, "handshake-slash": 57440, "handshake": 62133, "hanukiah": 63206, "hard-drive": 61600, "hard-hat": 63495, "hard-of-hearing": 62116, "hashtag-lock": 58389, "hashtag": 35, "hat-beach": 58886, "hat-chef": 63595, "hat-cowboy-side": 63681, "hat-cowboy": 63680, "hat-hard": 63495, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "haykal": 63078, "hdd": 61600, "head-side-brain": 63496, "head-side-circuit": 59230, "head-side-cough-slash": 57442, "head-side-cough": 57441, "head-side-gear": 58897, "head-side-goggles": 63210, "head-side-headphones": 63682, "head-side-heart": 57770, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-speak": 59231, "head-side-virus": 57444, "head-side": 63209, "head-vr": 63210, "header": 61916, "heading": 61916, "headphones-alt": 61477, "headphones-simple": 61477, "headphones-slash": 59260, "headphones": 61477, "headset": 62864, "heart-broken": 63401, "heart-circle-bolt": 58620, "heart-circle-check": 58621, "heart-circle-exclamation": 58622, "heart-circle-minus": 58623, "heart-circle-plus": 58624, "heart-circle-xmark": 58625, "heart-circle": 62663, "heart-crack": 63401, "heart-half-alt": 57772, "heart-half-stroke": 57772, "heart-half": 57771, "heart-music-camera-bolt": 63597, "heart-pulse": 61982, "heart-rate": 62968, "heart-slash": 59278, "heart-square": 62664, "heart": 61444, "heartbeat": 61982, "hearts": 59279, "heat": 57356, "helicopter-symbol": 58626, "helicopter": 62771, "helmet-battle": 63211, "helmet-safety": 63495, "helmet-un": 58627, "heptagon": 59424, "hexagon-check": 58390, "hexagon-divide": 57773, "hexagon-equals": 59058, "hexagon-exclamation": 58391, "hexagon-image": 58628, "hexagon-minus": 62215, "hexagon-nodes-bolt": 59034, "hexagon-nodes": 59033, "hexagon-plus": 62208, "hexagon-vertical-nft-slanted": 58629, "hexagon-vertical-nft": 58629, "hexagon-xmark": 62190, "hexagon": 62226, "high-definition": 57774, "highlighter-line": 57775, "highlighter": 62865, "hiking": 63212, "hill-avalanche": 58631, "hill-rockslide": 58632, "hippo": 63213, "history": 61914, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-stick-puck": 58286, "hockey-stick": 59366, "hockey-sticks": 62548, "holly-berry": 63402, "home-alt": 61461, "home-blank": 58503, "home-heart": 62665, "home-lg-alt": 61461, "home-lg": 58287, "home-user": 57776, "home": 61461, "honey-pot": 58392, "hood-cloak": 63215, "horizontal-rule": 63596, "horse-head": 63403, "horse-saddle": 63683, "horse": 63216, "horseshoe": 59418, "hose-reel": 58394, "hose": 58393, "hospital-alt": 61688, "hospital-symbol": 62590, "hospital-user": 63501, "hospital-wide": 61688, "hospital": 61688, "hospitals": 63502, "hot-tub-person": 62867, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hourglass-1": 62033, "hourglass-2": 62034, "hourglass-3": 62035, "hourglass-clock": 58395, "hourglass-empty": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "hourglass": 62036, "house-blank": 58503, "house-building": 57777, "house-chimney-blank": 58288, "house-chimney-crack": 63217, "house-chimney-heart": 57778, "house-chimney-medical": 63474, "house-chimney-user": 57445, "house-chimney-window": 57357, "house-chimney": 58287, "house-circle-check": 58633, "house-circle-exclamation": 58634, "house-circle-xmark": 58635, "house-crack": 58289, "house-damage": 63217, "house-day": 57358, "house-fire": 58636, "house-flag": 58637, "house-flood-water-circle-arrow-right": 58639, "house-flood-water": 58638, "house-flood": 63311, "house-heart": 62665, "house-laptop": 57446, "house-leave": 57359, "house-lock": 58640, "house-medical-circle-check": 58641, "house-medical-circle-exclamation": 58642, "house-medical-circle-xmark": 58643, "house-medical-flag": 58644, "house-medical": 58290, "house-night": 57360, "house-person-arrive": 57361, "house-person-depart": 57359, "house-person-leave": 57359, "house-person-return": 57361, "house-return": 57361, "house-signal": 57362, "house-tree": 57779, "house-tsunami": 58645, "house-turret": 57780, "house-unlock": 59082, "house-user": 57776, "house-water": 63311, "house-window": 58291, "house": 61461, "hryvnia-sign": 63218, "hryvnia": 63218, "humidity": 63312, "hundred-points": 58396, "hurricane": 63313, "hydra": 59014, "hyphen": 45, "i-cursor": 62022, "i": 73, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons-alt": 63598, "icons": 63597, "id-badge": 62145, "id-card-alt": 62591, "id-card-clip": 62591, "id-card": 62146, "igloo": 63406, "ils": 61963, "image-broken": 59562, "image-circle-arrow-down": 59244, "image-circle-check": 59245, "image-circle-plus": 59246, "image-circle-xmark": 59247, "image-landscape": 57781, "image-music": 59248, "image-polaroid-user": 57782, "image-polaroid": 63684, "image-portrait": 62432, "image-slash": 57783, "image-stack": 59249, "image-user": 57784, "image": 61502, "images-user": 57785, "images": 62210, "inbox-arrow-down": 62224, "inbox-arrow-up": 62225, "inbox-full": 57786, "inbox-in": 62224, "inbox-out": 62225, "inbox": 61468, "inboxes": 57787, "indent": 61500, "indian-rupee-sign": 57788, "indian-rupee": 57788, "industry-alt": 62387, "industry-windows": 62387, "industry": 62069, "infinity": 62772, "info-circle": 61530, "info-square": 62223, "info": 61737, "inhaler": 62969, "input-numeric": 57789, "input-password": 59517, "input-pipe": 57790, "input-text": 57791, "inr": 57788, "institution": 61852, "integral": 63079, "interrobang": 58810, "intersection": 63080, "inventory": 62592, "island-tree-palm": 63505, "island-tropical": 63505, "italic": 61491, "j": 74, "jack-o-lantern": 62222, "jar-wheat": 58647, "jar": 58646, "jeans-straight": 59091, "jeans": 59090, "jedi": 63081, "jet-fighter-up": 58648, "jet-fighter": 61691, "joint": 62869, "journal-whills": 63082, "joystick": 63685, "jpy": 61783, "jug-bottle": 58875, "jug-detergent": 58649, "jug": 63686, "k": 75, "kaaba": 63083, "kayak": 59547, "kazoo": 63687, "kerning": 63599, "kettlebell": 59442, "key-skeleton-left-right": 58292, "key-skeleton": 63219, "key": 61572, "keyboard-brightness-low": 57793, "keyboard-brightness": 57792, "keyboard-down": 57794, "keyboard-left": 57795, "keyboard": 61724, "keynote": 63084, "khanda": 63085, "kidneys": 62971, "kip-sign": 57796, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiss": 62870, "kit-medical": 62585, "kitchen-set": 58650, "kite": 63220, "kiwi-bird": 62773, "kiwi-fruit": 58124, "knife-kitchen": 63221, "knife": 62180, "krw": 61785, "l": 76, "label": 59559, "lacrosse-stick-ball": 58294, "lacrosse-stick": 58293, "ladder-water": 62917, "lambda": 63086, "lamp-desk": 57364, "lamp-floor": 57365, "lamp-street": 57797, "lamp": 62666, "land-mine-on": 58651, "landmark-alt": 63314, "landmark-dome": 63314, "landmark-flag": 58652, "landmark-magnifying-glass": 58914, "landmark": 63087, "landscape": 57781, "language": 61867, "laptop-arrow-down": 57798, "laptop-binary": 58855, "laptop-code": 62972, "laptop-file": 58653, "laptop-house": 57446, "laptop-medical": 63506, "laptop-mobile": 63610, "laptop-slash": 57799, "laptop": 61705, "lari-sign": 57800, "lasso-sparkles": 57801, "lasso": 63688, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "laugh": 62873, "layer-group-minus": 62974, "layer-group-plus": 62975, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "layer": 59455, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leaf": 61548, "leafy-green": 58397, "left-from-bracket": 58988, "left-from-dotted-line": 59074, "left-from-line": 62280, "left-long-to-line": 58398, "left-long": 62218, "left-right": 62263, "left-to-bracket": 58989, "left-to-dotted-line": 59075, "left-to-line": 62283, "left": 62293, "legal": 61667, "lemon": 61588, "leo": 59466, "less-than-equal": 62775, "less-than": 60, "level-down-alt": 62398, "level-down": 61769, "level-up-alt": 62399, "level-up": 61768, "libra": 59467, "life-ring": 61901, "light-ceiling": 57366, "light-emergency-on": 58400, "light-emergency": 58399, "light-switch-off": 57368, "light-switch-on": 57369, "light-switch": 57367, "lightbulb-cfl-on": 58791, "lightbulb-cfl": 58790, "lightbulb-dollar": 63088, "lightbulb-exclamation-on": 57802, "lightbulb-exclamation": 63089, "lightbulb-gear": 58877, "lightbulb-message": 59015, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lightbulb": 61675, "lighthouse": 58898, "lights-holiday": 63410, "line-chart": 61953, "line-columns": 63600, "line-height": 63601, "lines-leaning": 58654, "link-broken": 59458, "link-horizontal-slash": 57804, "link-horizontal": 57803, "link-simple-slash": 57806, "link-simple": 57805, "link-slash": 61735, "link": 61633, "lips": 62976, "lira-sign": 61845, "list-1-2": 61643, "list-alt": 61474, "list-check": 61614, "list-dots": 61642, "list-dropdown": 57807, "list-music": 63689, "list-numeric": 61643, "list-ol": 61643, "list-radio": 57808, "list-squares": 61498, "list-timeline": 57809, "list-tree": 57810, "list-ul": 61642, "list": 61498, "litecoin-sign": 57811, "loader": 57812, "lobster": 58401, "location-arrow-slash": 59258, "location-arrow-up": 58938, "location-arrow": 61732, "location-check": 62982, "location-circle": 62978, "location-crosshairs-slash": 62979, "location-crosshairs": 62977, "location-dot-slash": 62981, "location-dot": 62405, "location-exclamation": 62984, "location-minus": 62985, "location-pen": 62983, "location-pin-lock": 58655, "location-pin-slash": 62988, "location-pin": 61505, "location-plus": 62986, "location-question": 62987, "location-slash": 62979, "location-smile": 62989, "location-xmark": 62990, "location": 62977, "lock-a": 58402, "lock-alt": 62221, "lock-hashtag": 58403, "lock-keyhole-open": 62402, "lock-keyhole": 62221, "lock-open-alt": 62402, "lock-open": 62401, "lock": 61475, "locust": 58656, "lollipop": 58404, "lollypop": 58404, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador-mask": 62549, "luchador": 62549, "luggage-cart": 62877, "lungs-virus": 57447, "lungs": 62980, "lychee": 59428, "m": 77, "mace": 63224, "magic-wand-sparkles": 58058, "magic": 61648, "magnet": 61558, "magnifying-glass-arrow-right": 58657, "magnifying-glass-arrows-rotate": 58974, "magnifying-glass-chart": 58658, "magnifying-glass-dollar": 63112, "magnifying-glass-location": 63113, "magnifying-glass-minus": 61456, "magnifying-glass-music": 58975, "magnifying-glass-play": 58976, "magnifying-glass-plus": 61454, "magnifying-glass-waveform": 58977, "magnifying-glass": 61442, "mail-bulk": 63092, "mail-forward": 61540, "mail-reply-all": 61730, "mail-reply": 62437, "mailbox-flag-up": 58811, "mailbox-open-empty": 59425, "mailbox-open-letter": 59427, "mailbox": 63507, "maki-roll": 58507, "makizushi": 58507, "malaysian-ringgit-sign": 59130, "male": 61827, "manat-sign": 57813, "mandolin": 63225, "mango": 58127, "manhole": 57814, "map-location-dot": 62880, "map-location": 62879, "map-marked-alt": 62880, "map-marked": 62879, "map-marker-alt-slash": 62981, "map-marker-alt": 62405, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-marker-xmark": 62990, "map-marker": 61505, "map-pin": 62070, "map-signs": 62071, "map": 62073, "marker": 62881, "mars-and-venus-burst": 58659, "mars-and-venus": 61988, "mars-double": 61991, "mars-stroke-h": 61995, "mars-stroke-right": 61995, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "mars-stroke": 61993, "mars": 61986, "martini-glass-citrus": 62817, "martini-glass-empty": 61440, "martini-glass": 62843, "mask-face": 57815, "mask-luchador": 62549, "mask-snorkel": 58295, "mask-ventilator": 58660, "mask": 63226, "masks-theater": 63024, "mattress-pillow": 58661, "maximize": 62238, "meat": 63508, "medal": 62882, "medkit": 61690, "megaphone": 63093, "meh-blank": 62884, "meh-rolling-eyes": 62885, "meh": 61722, "melon-slice": 58129, "melon": 58128, "memo-circle-check": 57817, "memo-circle-info": 58522, "memo-pad": 57818, "memo": 57816, "memory": 62776, "menorah": 63094, "mercury": 61987, "merge": 58662, "message-arrow-down": 57819, "message-arrow-up-right": 57821, "message-arrow-up": 57820, "message-bot": 58296, "message-captions": 57822, "message-check": 62626, "message-code": 57823, "message-dollar": 63056, "message-dot": 59103, "message-dots": 62627, "message-edit": 62628, "message-exclamation": 62629, "message-heart": 58825, "message-image": 57824, "message-lines": 62630, "message-medical": 63476, "message-middle-top": 57826, "message-middle": 57825, "message-minus": 62631, "message-music": 63663, "message-pen": 62628, "message-plus": 62632, "message-question": 57827, "message-quote": 57828, "message-slash": 62633, "message-smile": 62634, "message-sms": 57829, "message-text": 57830, "message-times": 62635, "message-waveform": 59104, "message-xmark": 62635, "message": 62074, "messages-dollar": 63058, "messages-question": 57831, "messages": 62646, "messaging": 62627, "meteor": 63315, "meter-bolt": 57833, "meter-droplet": 57834, "meter-fire": 57835, "meter": 57832, "microchip-ai": 57836, "microchip": 62171, "microphone-alt-slash": 62777, "microphone-alt": 62409, "microphone-circle-alt": 57623, "microphone-circle-plus": 59261, "microphone-circle-xmark": 59262, "microphone-circle": 57622, "microphone-lines-slash": 62777, "microphone-lines": 62409, "microphone-signal-meter": 59232, "microphone-slash": 61745, "microphone-stand": 63691, "microphone": 61744, "microscope": 62992, "microwave": 57371, "midi": 59398, "mill-sign": 57837, "mind-share": 63095, "minimize": 63372, "minus-circle": 61526, "minus-hexagon": 62215, "minus-large": 58372, "minus-octagon": 62216, "minus-square": 61766, "minus": 61544, "mistletoe": 63412, "mitten": 63413, "mobile-alt": 62413, "mobile-android-alt": 62415, "mobile-android": 62414, "mobile-arrow-down": 59211, "mobile-button": 61707, "mobile-iphone": 57838, "mobile-notch": 57838, "mobile-phone": 62414, "mobile-retro": 58663, "mobile-rotate-reverse": 59412, "mobile-rotate": 59411, "mobile-screen-button": 62413, "mobile-screen": 62415, "mobile-signal-out": 57840, "mobile-signal": 57839, "mobile-slash": 59413, "mobile-vibrate-slash": 59415, "mobile-vibrate": 59414, "mobile": 62414, "money-bill-1-wave": 62779, "money-bill-1": 62417, "money-bill-alt": 62417, "money-bill-simple-wave": 57842, "money-bill-simple": 57841, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "money-bill-wave-alt": 62779, "money-bill-wave": 62778, "money-bill-wheat": 58666, "money-bill": 61654, "money-bills-alt": 57844, "money-bills-simple": 57844, "money-bills": 57843, "money-check-alt": 62781, "money-check-dollar-pen": 63603, "money-check-dollar": 62781, "money-check-edit-alt": 63603, "money-check-edit": 63602, "money-check-pen": 63602, "money-check": 62780, "money-from-bracket": 58130, "money-simple-from-bracket": 58131, "monitor-heart-rate": 62993, "monitor-waveform": 62993, "monkey": 63227, "monument": 62886, "moon-cloud": 63316, "moon-first-quarter-inverse": 59506, "moon-first-quarter": 59504, "moon-full-inverse": 59507, "moon-full": 59505, "moon-last-quarter-inverse": 59504, "moon-last-quarter": 59506, "moon-new-inverse": 59505, "moon-new": 59507, "moon-over-sun": 63306, "moon-star": 59337, "moon-stars": 63317, "moon-waning-crescent-inverse": 59511, "moon-waning-crescent": 59508, "moon-waning-gibbous-inverse": 59510, "moon-waning-gibbous": 59509, "moon-waxing-crescent-inverse": 59509, "moon-waxing-crescent": 59510, "moon-waxing-gibbous-inverse": 59508, "moon-waxing-gibbous": 59511, "moon": 61830, "moped": 58297, "mortar-board": 61853, "mortar-pestle": 62887, "mosque": 63096, "mosquito-net": 58668, "mosquito": 58667, "motorcycle": 61980, "mound": 58669, "mountain-city": 58670, "mountain-sun": 58671, "mountain": 63228, "mountains": 63229, "mouse-alt": 63693, "mouse-field": 58792, "mouse-pointer": 62021, "mouse": 63692, "mp3-player": 63694, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-saucer": 61684, "mug-tea-saucer": 57845, "mug-tea": 63605, "mug": 63604, "multiply": 61453, "museum": 61852, "mushroom": 58405, "music-alt-slash": 63696, "music-alt": 63695, "music-magnifying-glass": 58978, "music-note-slash": 63696, "music-note": 63695, "music-slash": 63697, "music": 61441, "mustache": 58812, "n": 78, "naira-sign": 57846, "narwhal": 63230, "nas": 59553, "navicon": 61641, "nesting-dolls": 58298, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nfc-lock": 57848, "nfc-magnifying-glass": 57849, "nfc-pen": 57850, "nfc-signal": 57851, "nfc-slash": 57852, "nfc-symbol": 58673, "nfc-trash": 57853, "nfc": 57847, "nigiri": 58506, "non-binary": 59399, "norwegian-krone-sign": 59112, "nose": 58813, "not-equal": 62782, "notdef": 57854, "note-medical": 57856, "note-sticky": 62025, "note": 57855, "notebook": 57857, "notes-medical": 62593, "notes-sticky": 59225, "notes": 57858, "numpad": 59340, "o": 79, "oar": 59524, "oars": 59525, "object-exclude": 58524, "object-group": 62023, "object-intersect": 58525, "object-subtract": 58526, "object-ungroup": 62024, "object-union": 58527, "objects-align-bottom": 58299, "objects-align-center-horizontal": 58300, "objects-align-center-vertical": 58301, "objects-align-left": 58302, "objects-align-right": 58303, "objects-align-top": 58304, "objects-column": 58305, "octagon-check": 58406, "octagon-divide": 57859, "octagon-equals": 59059, "octagon-exclamation": 57860, "octagon-minus": 62216, "octagon-plus": 62209, "octagon-xmark": 62192, "octagon": 62214, "octopus": 59016, "oil-can-drip": 57861, "oil-can": 62995, "oil-temp": 62996, "oil-temperature": 62996, "oil-well": 58674, "olive-branch": 58135, "olive": 58134, "om": 63097, "omega": 63098, "onion": 58407, "open-captioning": 59263, "opossum": 59516, "option": 58136, "ornament": 63416, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "owl": 59551, "p": 80, "page-break": 63607, "page-caret-down": 58409, "page-caret-up": 58410, "page": 58408, "pager": 63509, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paint-brush": 61948, "paint-roller": 62890, "paintbrush-alt": 62889, "paintbrush-fine-slash": 59213, "paintbrush-fine": 62889, "paintbrush-pencil": 57862, "paintbrush-slash": 59214, "paintbrush": 61948, "palette-boxes": 62595, "palette": 62783, "pallet-alt": 62595, "pallet-box": 57864, "pallet-boxes": 62595, "pallet": 62594, "pan-food": 58411, "pan-frying": 58412, "pancakes": 58413, "panel-ews": 58414, "panel-fire": 58415, "panorama": 57865, "panties": 59092, "pants-straight": 59094, "pants": 59093, "paper-plane-alt": 57866, "paper-plane-top": 57866, "paper-plane": 61912, "paperclip-vertical": 58306, "paperclip": 61638, "parachute-box": 62669, "paragraph-left": 63608, "paragraph-rtl": 63608, "paragraph": 61917, "parentheses": 57541, "parenthesis": 40, "parking-circle-slash": 62998, "parking-circle": 62997, "parking-slash": 62999, "parking": 62784, "party-back": 58460, "party-bell": 58138, "party-horn": 58139, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "pause-circle": 62091, "pause": 61516, "paw-alt": 63233, "paw-claws": 63234, "paw-simple": 63233, "paw": 61872, "peace": 63100, "peach": 57867, "peanut": 58416, "peanuts": 58417, "peapod": 58140, "pear": 57868, "pedestal": 57869, "pegasus": 63235, "pen-alt-slash": 57871, "pen-alt": 62213, "pen-circle": 57870, "pen-clip-slash": 57871, "pen-clip": 62213, "pen-fancy-slash": 57872, "pen-fancy": 62892, "pen-field": 57873, "pen-line": 57874, "pen-nib-slash": 58529, "pen-nib": 62893, "pen-paintbrush": 63000, "pen-ruler": 62894, "pen-slash": 57875, "pen-square": 61771, "pen-swirl": 57876, "pen-to-square": 61508, "pen": 62212, "pencil-alt": 62211, "pencil-line": 59215, "pencil-mechanical": 58826, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pencil-slash": 57877, "pencil-square": 61771, "pencil": 62211, "pennant": 62550, "pentagon": 59280, "people-arrows-left-right": 57448, "people-arrows": 57448, "people-carry-box": 62670, "people-carry": 62670, "people-dress-simple": 57880, "people-dress": 57879, "people-group": 58675, "people-line": 58676, "people-pants-simple": 57882, "people-pants": 57881, "people-pulling": 58677, "people-robbery": 58678, "people-roof": 58679, "people-simple": 57883, "people": 57878, "pepper-hot": 63510, "pepper": 58418, "percent": 37, "percentage": 37, "period": 46, "person-arms-raised": 59267, "person-arrow-down-to-line": 58680, "person-arrow-up-from-line": 58681, "person-basketball": 59268, "person-biking-mountain": 63563, "person-biking": 63562, "person-booth": 63318, "person-breastfeeding": 58682, "person-burst": 58683, "person-cane": 58684, "person-carry-box": 62671, "person-carry-empty": 59269, "person-carry": 62671, "person-chalkboard": 58685, "person-circle-check": 58686, "person-circle-exclamation": 58687, "person-circle-minus": 58688, "person-circle-plus": 58689, "person-circle-question": 58690, "person-circle-xmark": 58691, "person-digging": 63582, "person-dolly-empty": 62673, "person-dolly": 62672, "person-dots-from-line": 62576, "person-dress-burst": 58692, "person-dress-fairy": 58887, "person-dress-simple": 57884, "person-dress": 61826, "person-drowning": 58693, "person-fairy": 58888, "person-falling-burst": 58695, "person-falling": 58694, "person-from-portal": 57379, "person-golfing": 59270, "person-half-dress": 58696, "person-harassing": 58697, "person-hiking": 63212, "person-limbs-wide": 59271, "person-meditating": 59361, "person-military-pointing": 58698, "person-military-rifle": 58699, "person-military-to-person": 58700, "person-pinball": 57885, "person-praying": 63107, "person-pregnant": 58142, "person-rays": 58701, "person-rifle": 58702, "person-running-fast": 58879, "person-running": 63244, "person-seat-reclined": 57887, "person-seat-window": 59272, "person-seat": 57886, "person-shelter": 58703, "person-sign": 63319, "person-simple": 57888, "person-skating": 63429, "person-ski-jumping": 63431, "person-ski-lift": 63432, "person-skiing-nordic": 63434, "person-skiing": 63433, "person-sledding": 63435, "person-snowboarding": 63438, "person-snowmobiling": 63441, "person-soccer": 59273, "person-swimming-pool": 59274, "person-swimming-water": 59275, "person-swimming": 62916, "person-through-window": 58793, "person-to-door": 58419, "person-to-portal": 57378, "person-walking-arrow-loop-left": 58705, "person-walking-arrow-right": 58706, "person-walking-dashed-line-arrow-right": 58707, "person-walking-luggage": 58708, "person-walking-with-cane": 62109, "person-walking": 62804, "person-water-arms-raised": 59276, "person-waving": 59277, "person": 61827, "peruvian-soles-sign": 59141, "peseta-sign": 57889, "peso-sign": 57890, "phone-alt": 63609, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-arrow-right": 58814, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-circle-alt": 57628, "phone-circle-down": 57629, "phone-circle": 57627, "phone-connection": 59105, "phone-flip": 63609, "phone-hangup": 57893, "phone-incoming": 57891, "phone-intercom": 58420, "phone-laptop": 63610, "phone-missed": 57894, "phone-office": 63101, "phone-outgoing": 57892, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square-alt": 63611, "phone-square-down": 57978, "phone-square": 61592, "phone-volume": 62112, "phone-waveform": 59106, "phone-xmark": 57895, "phone": 61589, "photo-film-music": 57896, "photo-film": 63612, "photo-video": 63612, "pi": 63102, "piano-keyboard": 63701, "piano": 63700, "pickaxe": 58815, "pickleball": 58421, "picture-in-picture": 59403, "pie-chart": 61952, "pie": 63237, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinata": 58307, "pinball": 57897, "pineapple": 58143, "ping-pong-paddle-ball": 62557, "pipe-circle-check": 58422, "pipe-collar": 58423, "pipe-section": 58424, "pipe-smoking": 58308, "pipe-valve": 58425, "pipe": 124, "pisces": 59468, "pizza-slice": 63512, "pizza": 63511, "place-of-worship": 63103, "plane-alt": 62430, "plane-arrival": 62895, "plane-circle-check": 58709, "plane-circle-exclamation": 58710, "plane-circle-xmark": 58711, "plane-departure": 62896, "plane-engines": 62430, "plane-flying": 59323, "plane-landing-gear": 59324, "plane-lock": 58712, "plane-prop": 57899, "plane-slash": 57449, "plane-tail": 57900, "plane-up-slash": 57902, "plane-up": 57901, "plane": 61554, "planet-moon": 57375, "planet-ringed": 57376, "plant-wilt": 58794, "plate-utensils": 58427, "plate-wheat": 58714, "play-circle": 61764, "play-flip": 59264, "play-pause": 57903, "play": 61515, "plug-circle-bolt": 58715, "plug-circle-check": 58716, "plug-circle-exclamation": 58717, "plug-circle-minus": 58718, "plug-circle-plus": 58719, "plug-circle-xmark": 58720, "plug": 61926, "plus-circle": 61525, "plus-hexagon": 62208, "plus-large": 58782, "plus-minus": 58428, "plus-octagon": 62209, "plus-square": 61694, "plus": 43, "podcast": 62158, "podium-star": 63320, "podium": 63104, "poker-chip": 59554, "police-box": 57377, "polish-zloty-sign": 59147, "poll-h": 63106, "poll-people": 63321, "poll": 63105, "pompebled": 58429, "poo-bolt": 63322, "poo-storm": 63322, "poo": 62206, "pool-8-ball": 58309, "poop": 63001, "popcorn": 63513, "popsicle": 58430, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "possum": 59516, "postage-stamp": 59107, "pot-food": 58431, "potato": 58432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription-bottle-alt": 62598, "prescription-bottle-medical": 62598, "prescription-bottle-pill": 58816, "prescription-bottle": 62597, "prescription": 62897, "presentation-screen": 63109, "presentation": 63109, "pretzel": 58433, "print-magnifying-glass": 63514, "print-search": 63514, "print-slash": 63110, "print": 61487, "pro": 57909, "procedures": 62599, "project-diagram": 62786, "projector": 63702, "pronoun": 59041, "pump-impeller": 59445, "pump-medical": 57450, "pump-soap": 57451, "pump": 58434, "pumpkin": 63239, "puzzle-piece-alt": 57905, "puzzle-piece-simple": 57905, "puzzle-piece": 61742, "puzzle": 58435, "q": 81, "qrcode-read": 59289, "qrcode": 61481, "question-circle": 61529, "question-square": 62205, "question": 63, "quidditch-broom-ball": 62552, "quidditch": 62552, "quote-left-alt": 61709, "quote-left": 61709, "quote-right-alt": 61710, "quote-right": 61710, "quotes": 57908, "quran": 63111, "r": 82, "rabbit-fast": 63241, "rabbit-running": 63241, "rabbit": 63240, "raccoon": 58899, "racquet": 62554, "radar": 57380, "radiation-alt": 63418, "radiation": 63417, "radio-alt": 63704, "radio-tuner": 63704, "radio": 63703, "rainbow-half": 59338, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "ranking-star": 58721, "raygun": 57381, "receipt": 62787, "record-vinyl": 63705, "rectangle-4k": 59250, "rectangle-ad": 63041, "rectangle-api": 59552, "rectangle-barcode": 62563, "rectangle-beta": 59400, "rectangle-code": 58146, "rectangle-hd": 57774, "rectangle-hdr": 59251, "rectangle-high-dynamic-range": 59251, "rectangle-history-circle-plus": 58531, "rectangle-history-circle-user": 58532, "rectangle-history": 58530, "rectangle-irc": 59500, "rectangle-landscape": 62202, "rectangle-list": 61474, "rectangle-minus": 59060, "rectangle-n-a": 59560, "rectangle-new": 59514, "rectangle-plus": 59061, "rectangle-portrait": 62203, "rectangle-pro": 57909, "rectangle-sd": 57994, "rectangle-tall": 59281, "rectangle-terminal": 57910, "rectangle-times": 62480, "rectangle-vertical-history": 57911, "rectangle-vertical": 62203, "rectangle-video-on-demand": 59252, "rectangle-wide": 62204, "rectangle-xmark": 62480, "rectangle": 62202, "rectangles-mixed": 58147, "recycle": 61880, "redo-alt": 62201, "redo": 61470, "reel": 57912, "reflect-both": 58991, "reflect-horizontal": 58980, "reflect-vertical": 58981, "refresh": 61473, "refrigerator": 57382, "registered": 62045, "remote": 59561, "remove-format": 63613, "remove": 61453, "renminbi-sign": 59196, "reorder": 62800, "repeat-1-alt": 62310, "repeat-1": 62309, "repeat-alt": 62308, "repeat": 62307, "reply-all": 61730, "reply-clock": 57913, "reply-time": 57913, "reply": 62437, "republican": 63326, "restroom-simple": 57914, "restroom": 63421, "retweet-alt": 62305, "retweet": 61561, "rhombus": 57915, "ribbon": 62678, "right-from-bracket": 62197, "right-from-dotted-line": 59076, "right-from-line": 62279, "right-left-large": 58849, "right-left": 62306, "right-long-to-line": 58436, "right-long": 62219, "right-to-bracket": 62198, "right-to-dotted-line": 59077, "right-to-line": 62284, "right": 62294, "ring-diamond": 58795, "ring": 63243, "rings-wedding": 63515, "rmb": 61783, "road-barrier": 58722, "road-bridge": 58723, "road-circle-check": 58724, "road-circle-exclamation": 58725, "road-circle-xmark": 58726, "road-lock": 58727, "road-spikes": 58728, "road": 61464, "robot-astromech": 58066, "robot": 62788, "rocket-launch": 57383, "rocket-vertical": 59325, "rocket": 61749, "rod-asclepius": 58745, "rod-snake": 58745, "roller-coaster": 58148, "rotate-back": 62186, "rotate-backward": 62186, "rotate-exclamation": 57916, "rotate-forward": 62201, "rotate-left": 62186, "rotate-reverse": 58929, "rotate-right": 62201, "rotate": 62193, "rouble": 61784, "route-highway": 63002, "route-interstate": 63003, "route": 62679, "router": 63706, "rows-3": 59531, "rows": 58002, "rss-square": 61763, "rss": 61598, "rub": 61784, "ruble-sign": 61784, "ruble": 61784, "rug": 58729, "rugby-ball": 58310, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "ruler": 62789, "running": 63244, "rupee-sign": 61782, "rupee": 61782, "rupiah-sign": 57917, "rv": 63422, "s": 83, "sack-dollar": 63517, "sack-xmark": 58730, "sack": 63516, "sad-cry": 62899, "sad-tear": 62900, "sagittarius": 59469, "sailboat": 58437, "salad": 63518, "salt-shaker": 58438, "sandwich": 63519, "satellite-dish": 63424, "satellite": 63423, "sausage": 63520, "save-circle-arrow-right": 57728, "save-circle-xmark": 57729, "save-times": 57729, "save": 61639, "sax-hot": 63707, "saxophone-fire": 63707, "saxophone": 63708, "scale-balanced": 62030, "scale-unbalanced-flip": 62742, "scale-unbalanced": 62741, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "scalpel": 63005, "scanner-gun": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scanner": 62600, "scarecrow": 63245, "scarf": 63425, "school-circle-check": 58731, "school-circle-exclamation": 58732, "school-circle-xmark": 58733, "school-flag": 58734, "school-lock": 58735, "school-unlock": 59083, "school": 62793, "scissors": 61636, "scooter": 59331, "scorpio": 59470, "screen-users": 63037, "screencast": 57918, "screenshot": 57562, "screwdriver-wrench": 63449, "screwdriver": 62794, "scribble": 57919, "scroll-old": 63247, "scroll-ribbon": 62954, "scroll-torah": 63136, "scroll": 63246, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "sd-cards": 57920, "seal-exclamation": 57922, "seal-question": 57923, "seal": 57921, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "search": 61442, "seat-airline-window": 59326, "seat-airline": 57924, "seat": 59236, "seats": 59237, "section": 58439, "seedling": 62680, "semicolon": 59, "send-back": 63614, "send-backward": 63615, "send": 57866, "sensor-alert": 57385, "sensor-cloud": 57388, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "sensor-triangle-exclamation": 57385, "sensor": 57384, "septagon": 59424, "server": 62003, "shapes": 63007, "share-all": 62311, "share-alt-square": 61921, "share-alt": 61920, "share-from-square": 61773, "share-nodes": 61920, "share-square": 61773, "share": 61540, "sheep": 63249, "sheet-plastic": 58737, "shekel-sign": 61963, "shekel": 61963, "shelves-empty": 57926, "shelves": 62592, "sheqel-sign": 61963, "sheqel": 61963, "shield-alt": 62445, "shield-blank": 61746, "shield-cat": 58738, "shield-check": 62199, "shield-cross": 63250, "shield-dog": 58739, "shield-exclamation": 57927, "shield-halved": 62445, "shield-heart": 58740, "shield-keyhole": 57928, "shield-minus": 57929, "shield-plus": 57930, "shield-quartered": 58741, "shield-slash": 57931, "shield-times": 57932, "shield-user": 59401, "shield-virus": 57452, "shield-xmark": 57932, "shield": 61746, "ship-large": 59408, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirt-jersey": 59095, "shirt-long-sleeve": 58311, "shirt-running": 58312, "shirt-tank-top": 58313, "shirt": 62803, "shish-kebab": 63521, "shoe-prints": 62795, "shoe": 59096, "shop-24": 59290, "shop-lock": 58533, "shop-slash": 57456, "shop": 62799, "shopping-bag": 62096, "shopping-basket-alt": 57519, "shopping-basket": 62097, "shopping-cart": 61562, "shortcake": 58341, "shorts": 59097, "shovel-snow": 63427, "shovel": 63251, "shower-alt": 57933, "shower-down": 57933, "shower": 62156, "shredder": 63114, "shrimp": 58440, "shuffle": 61556, "shutters": 58441, "shuttle-space-vertical": 59327, "shuttle-space": 61847, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sidebar-flip": 57935, "sidebar": 57934, "sigma": 63115, "sign-hanging": 62681, "sign-in-alt": 62198, "sign-in": 61584, "sign-language": 62119, "sign-out-alt": 62197, "sign-out": 61579, "sign-post": 58916, "sign-posts-wrench": 58918, "sign-posts": 58917, "sign": 62681, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-5": 61458, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-4": 63120, "signal-alt-slash": 63124, "signal-alt": 63120, "signal-bars-fair": 63122, "signal-bars-good": 63123, "signal-bars-slash": 63124, "signal-bars-strong": 63120, "signal-bars-weak": 63121, "signal-bars": 63120, "signal-fair": 63117, "signal-good": 63118, "signal-perfect": 61458, "signal-slash": 63125, "signal-stream-slash": 57936, "signal-stream": 63709, "signal-strong": 63119, "signal-weak": 63116, "signal": 61458, "signapore-dollar-sign": 59182, "signature-lock": 58314, "signature-slash": 58315, "signature": 62903, "signing": 62119, "signs-post": 62071, "sim-card": 63428, "sim-cards": 57937, "single-quote-left": 59419, "single-quote-right": 59420, "sink": 57453, "siren-on": 57390, "siren": 57389, "sitemap": 61672, "skating": 63429, "skeleton-ribs": 58827, "skeleton": 63008, "ski-boot-ski": 58317, "ski-boot": 58316, "ski-jump": 63431, "ski-lift": 63432, "skiing-nordic": 63434, "skiing": 63433, "skull-cow": 63710, "skull-crossbones": 63252, "skull": 62796, "slash-back": 92, "slash-forward": 47, "slash": 63253, "sledding": 63435, "sleigh": 63436, "slider-circle": 59216, "slider": 57938, "sliders-h-square": 62448, "sliders-h": 61918, "sliders-simple": 57939, "sliders-up": 62449, "sliders-v-square": 62450, "sliders-v": 62449, "sliders": 61918, "slot-machine": 58318, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smile": 61720, "smog": 63327, "smoke": 63328, "smoking-ban": 62797, "smoking": 62605, "sms": 63437, "snake": 63254, "sneaker-running": 59417, "sneaker": 59098, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake-droplets": 58817, "snowflake": 62172, "snowflakes": 63439, "snowman-head": 63387, "snowman": 63440, "snowmobile-blank": 59332, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "soccer-ball": 61923, "socks": 63126, "soft-serve": 58368, "solar-panel": 62906, "solar-system": 57391, "sort-alpha-asc": 61789, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "sort-alpha-down": 61789, "sort-alpha-up-alt": 63618, "sort-alpha-up": 61790, "sort-alt": 63619, "sort-amount-asc": 61792, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "sort-amount-down": 61792, "sort-amount-up-alt": 63621, "sort-amount-up": 61793, "sort-asc": 61662, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-circle": 57392, "sort-desc": 61661, "sort-down": 61661, "sort-numeric-asc": 61794, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "sort-numeric-down": 61794, "sort-numeric-up-alt": 63623, "sort-numeric-up": 61795, "sort-shapes-down-alt": 63625, "sort-shapes-down": 63624, "sort-shapes-up-alt": 63627, "sort-shapes-up": 63626, "sort-size-down-alt": 63629, "sort-size-down": 63628, "sort-size-up-alt": 63631, "sort-size-up": 63630, "sort-up-down": 57497, "sort-up": 61662, "sort": 61660, "soup": 63523, "spa": 62907, "space-shuttle": 61847, "space-station-moon-alt": 57396, "space-station-moon-construction": 57396, "space-station-moon": 57395, "spade": 62196, "spaghetti-monster-flying": 63099, "sparkle": 58838, "sparkles": 63632, "speaker": 63711, "speakers": 63712, "spell-check": 63633, "spider-black-widow": 63256, "spider-web": 63257, "spider": 63255, "spine": 59233, "spinner-scale": 58922, "spinner-third": 62452, "spinner": 61712, "spiral": 59402, "split": 57940, "splotch": 62908, "spoon": 62181, "sportsball": 58443, "spray-can-sparkles": 62928, "spray-can": 62909, "sprinkler-ceiling": 58444, "sprinkler": 57397, "sprout": 62680, "square-0": 57941, "square-1": 57942, "square-2": 57943, "square-3": 57944, "square-4": 57945, "square-5": 57946, "square-6": 57947, "square-7": 57948, "square-8": 57949, "square-9": 57950, "square-a-lock": 58445, "square-a": 57951, "square-ampersand": 57952, "square-arrow-down-left": 57953, "square-arrow-down-right": 57954, "square-arrow-down": 62265, "square-arrow-left": 62266, "square-arrow-right": 62267, "square-arrow-up-left": 57955, "square-arrow-up-right": 61772, "square-arrow-up": 62268, "square-austral": 59174, "square-australian-dollar": 59160, "square-b": 57956, "square-baht": 59161, "square-bangladeshi-taka": 59204, "square-binary": 59035, "square-bitcoin": 59122, "square-bolt": 57957, "square-brazilian-real": 59121, "square-c": 57958, "square-caret-down": 61776, "square-caret-left": 61841, "square-caret-right": 61778, "square-caret-up": 61777, "square-cedi": 59177, "square-cent": 59120, "square-check": 61770, "square-chevron-down": 62249, "square-chevron-left": 62250, "square-chevron-right": 62251, "square-chevron-up": 62252, "square-chf": 59110, "square-code": 57959, "square-colon": 59194, "square-cruzeiro": 59117, "square-currency": 59148, "square-d": 57960, "square-danish-krone": 59207, "square-dashed-circle-plus": 58818, "square-dashed": 57961, "square-divide": 57962, "square-dollar": 62185, "square-dong": 59151, "square-down-left": 57963, "square-down-right": 57964, "square-down": 62288, "square-e": 57965, "square-ellipsis-vertical": 57967, "square-ellipsis": 57966, "square-envelope": 61849, "square-equals": 59062, "square-euro": 59186, "square-eurozone": 59175, "square-exclamation": 62241, "square-f": 57968, "square-florin": 59159, "square-fragile": 62619, "square-franc": 59183, "square-full": 62556, "square-g": 57969, "square-guarani": 59150, "square-h": 61693, "square-half-horizontal": 59406, "square-half-stroke-horizontal": 59407, "square-half-stroke": 59283, "square-half": 59282, "square-heart": 62664, "square-hryvnia": 59152, "square-i": 57970, "square-indian-rupee": 59125, "square-info": 62223, "square-j": 57971, "square-k": 57972, "square-kanban": 58504, "square-kip": 59149, "square-l": 57973, "square-lari": 59199, "square-left": 62289, "square-lira": 59111, "square-list": 58505, "square-litecoin": 59127, "square-m": 57974, "square-malaysian-ringgit": 59208, "square-manat": 59140, "square-microphone": 59265, "square-mill": 59146, "square-minus": 61766, "square-n": 57975, "square-naira": 59144, "square-nfi": 58742, "square-norwegian-krone": 59143, "square-o": 57976, "square-p": 57977, "square-parking-slash": 62999, "square-parking": 62784, "square-pen": 61771, "square-person-confined": 58743, "square-peruvian-soles": 59158, "square-peseta": 59114, "square-peso": 59162, "square-phone-flip": 63611, "square-phone-hangup": 57978, "square-phone": 61592, "square-plus": 61694, "square-polish-zloty": 59190, "square-poll-horizontal": 63106, "square-poll-vertical": 63105, "square-q": 57979, "square-quarters": 58446, "square-question": 62205, "square-quote": 58153, "square-r": 57980, "square-renminbi": 59197, "square-right": 62290, "square-ring": 58447, "square-root-alt": 63128, "square-root-variable": 63128, "square-root": 63127, "square-rss": 61763, "square-ruble": 59128, "square-rupee": 59157, "square-rupiah": 59154, "square-s": 57981, "square-share-nodes": 61921, "square-shekel": 59189, "square-sliders-vertical": 62450, "square-sliders": 62448, "square-small": 57982, "square-star": 57983, "square-sterling": 59155, "square-swedish-krona": 59164, "square-t": 57984, "square-tenge": 59185, "square-terminal": 58154, "square-this-way-up": 62623, "square-tugrik": 59176, "square-turkish-lira": 59167, "square-u": 57985, "square-up-left": 57986, "square-up-right": 62304, "square-up": 62291, "square-user": 57987, "square-v": 57988, "square-virus": 58744, "square-w": 57989, "square-wine-glass-crack": 62619, "square-won": 59145, "square-x": 57990, "square-xmark": 62163, "square-y": 57991, "square-yen": 59172, "square-z": 57992, "square": 61640, "squareapore-dollar": 59187, "squid": 58448, "squirrel": 63258, "stadium": 59084, "staff-aesculapius": 58745, "staff-snake": 58745, "staff": 63259, "stair-car": 59333, "stairs": 57993, "stamp": 62911, "standard-definition": 57994, "stapler": 58799, "star-and-crescent": 63129, "star-christmas": 63444, "star-circle": 57635, "star-exclamation": 62195, "star-half-alt": 62912, "star-half-stroke": 62912, "star-half": 61577, "star-of-david": 63130, "star-of-life": 63009, "star-sharp-half-alt": 57997, "star-sharp-half-stroke": 57997, "star-sharp-half": 57996, "star-sharp": 57995, "star-shooting": 57398, "star": 61445, "starfighter-alt-advanced": 57998, "starfighter-alt": 57400, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-twin-ion-engine": 57400, "starfighter": 57399, "stars": 63330, "starship-freighter": 57402, "starship": 57401, "steak": 63524, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "sterling-sign": 61780, "stethoscope": 61681, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stool": 59520, "stop-circle": 62093, "stop": 61517, "stopwatch-20": 57455, "stopwatch": 62194, "store-24": 59291, "store-alt-slash": 57456, "store-alt": 62799, "store-lock": 58534, "store-slash": 57457, "store": 62798, "strawberry": 58155, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stroopwafel": 62801, "subscript": 61740, "subtitles-slash": 58896, "subtitles": 58895, "subtract": 61544, "subway-tunnel": 58019, "subway": 62009, "suitcase-medical": 61690, "suitcase-rolling": 62913, "suitcase": 61682, "sun-alt": 57999, "sun-bright": 57999, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sun-plant-wilt": 58746, "sun": 61829, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superscript": 61739, "surprise": 62914, "sushi-roll": 58507, "sushi": 58506, "swap-arrows": 58890, "swap": 58889, "swatchbook": 62915, "swedish-krona-sign": 59198, "swimmer": 62916, "swimming-pool": 62917, "sword-laser-alt": 57404, "sword-laser": 57403, "sword": 63260, "swords-laser": 57405, "swords": 63261, "symbols": 63598, "synagogue": 63131, "sync-alt": 62193, "sync": 61473, "syringe": 62606, "t-rex": 58921, "t-shirt": 62803, "t": 84, "table-bar": 59550, "table-cells-column-lock": 59000, "table-cells-column-unlock": 59024, "table-cells-columns": 59052, "table-cells-header-lock": 59054, "table-cells-header-unlock": 59055, "table-cells-header": 59053, "table-cells-large": 61449, "table-cells-lock": 59001, "table-cells-merge": 59532, "table-cells-row-lock": 59002, "table-cells-row-unlock": 59025, "table-cells-rows": 59056, "table-cells-split": 59533, "table-cells-unlock": 59026, "table-cells": 61450, "table-columns-add-after": 59534, "table-columns-add-before": 59535, "table-columns-merge-next": 59536, "table-columns-merge-previous": 59537, "table-columns-remove-after": 59538, "table-columns-remove-before": 59539, "table-columns": 61659, "table-dining": 59522, "table-layout": 58000, "table-list": 61451, "table-picnic": 58157, "table-pivot": 58001, "table-rows-add-above": 59540, "table-rows-add-below": 59541, "table-rows-merge-next": 59542, "table-rows-merge-previous": 59543, "table-rows-remove-above": 59544, "table-rows-remove-below": 59545, "table-rows": 58002, "table-slash": 59546, "table-tennis-paddle-ball": 62557, "table-tennis": 62557, "table-tree": 58003, "table": 61646, "tablet-alt": 62458, "tablet-android-alt": 62460, "tablet-android": 62459, "tablet-button": 61706, "tablet-rugged": 62607, "tablet-screen-button": 62458, "tablet-screen": 62460, "tablet": 62459, "tablets": 62608, "tachograph-digital": 62822, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-alt": 63013, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "tachometer": 63018, "taco": 63526, "tag": 61483, "tags": 61484, "tally-1": 58004, "tally-2": 58005, "tally-3": 58006, "tally-4": 58007, "tally-5": 63132, "tally": 63132, "tamale": 58449, "tanakh": 63527, "tank-recovery": 59429, "tank-water": 58450, "tape": 62683, "tarp-droplet": 58748, "tarp": 58747, "tasks-alt": 63528, "tasks": 61614, "taurus": 59471, "taxi-bus": 58008, "taxi": 61882, "teddy-bear": 58319, "teeth-open": 63023, "teeth": 63022, "telescope": 57406, "teletype-answer": 58041, "teletype": 61924, "television": 62060, "temperature-0": 62155, "temperature-1": 62154, "temperature-2": 62153, "temperature-3": 62152, "temperature-4": 62151, "temperature-arrow-down": 57407, "temperature-arrow-up": 57408, "temperature-down": 57407, "temperature-empty": 62155, "temperature-frigid": 63336, "temperature-full": 62151, "temperature-half": 62153, "temperature-high": 63337, "temperature-hot": 63338, "temperature-list": 58009, "temperature-low": 63339, "temperature-quarter": 62154, "temperature-slash": 59339, "temperature-snow": 63336, "temperature-sun": 63338, "temperature-three-quarters": 62152, "temperature-up": 57408, "tenge-sign": 63447, "tenge": 63447, "tennis-ball": 62558, "tent-arrow-down-to-line": 58750, "tent-arrow-left-right": 58751, "tent-arrow-turn-left": 58752, "tent-arrows-down": 58753, "tent-circus": 59085, "tent-double-peak": 58919, "tent": 58749, "tents": 58754, "terminal": 61728, "text-height": 61492, "text-size": 63636, "text-slash": 63613, "text-width": 61493, "text": 63635, "th-large": 61449, "th-list": 61451, "th": 61450, "theater-masks": 63024, "thermometer-0": 62155, "thermometer-1": 62154, "thermometer-2": 62153, "thermometer-3": 62152, "thermometer-4": 62151, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "thermometer": 62609, "theta": 63134, "thought-bubble": 58158, "thumb-tack-slash": 59023, "thumb-tack": 61581, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack-angle-slash": 59218, "thumbtack-angle": 59217, "thumbtack-slash": 59023, "thumbtack": 61581, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "thunderstorm": 63340, "tick": 58159, "ticket-airline": 58010, "ticket-alt": 62463, "ticket-perforated-plane": 58010, "ticket-perforated": 58942, "ticket-plane": 58010, "ticket-simple": 62463, "ticket": 61765, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-perforated": 58943, "tickets-plane": 58011, "tickets-simple": 58969, "tickets": 58968, "tilde": 126, "timeline-arrow": 58013, "timeline": 58012, "timer": 58014, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-rectangle": 62480, "times-square": 62163, "times-to-slot": 63345, "times": 61453, "tint-slash": 62919, "tint": 61507, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tire": 63025, "tired": 62920, "toggle-large-off": 58800, "toggle-large-on": 58801, "toggle-off": 61956, "toggle-on": 61957, "toilet-paper-alt": 63262, "toilet-paper-blank-under": 58016, "toilet-paper-blank": 63262, "toilet-paper-check": 58802, "toilet-paper-reverse-alt": 58016, "toilet-paper-reverse-slash": 58017, "toilet-paper-reverse": 58016, "toilet-paper-slash": 57458, "toilet-paper-under-slash": 58017, "toilet-paper-under": 58016, "toilet-paper-xmark": 58803, "toilet-paper": 63262, "toilet-portable": 58755, "toilet": 63448, "toilets-portable": 58756, "tomato": 58160, "tombstone-alt": 63265, "tombstone-blank": 63265, "tombstone": 63264, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tower-broadcast": 62745, "tower-cell": 58757, "tower-control": 58018, "tower-observation": 58758, "tower-receive": 59555, "tractor": 63266, "trademark": 62044, "traffic-cone": 63030, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "traffic-light": 63031, "trailer": 57409, "train-stop": 59423, "train-subway-tunnel": 58019, "train-subway": 62009, "train-track": 58451, "train-tram": 58804, "train-tunnel": 58452, "train": 62008, "tram": 63450, "transducer": 59430, "transformer-bolt": 58020, "transgender-alt": 61989, "transgender": 61989, "transmission": 59394, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-4": 58021, "transporter-5": 58022, "transporter-6": 58023, "transporter-7": 58024, "transporter-empty": 57414, "transporter": 57410, "trash-alt-slash": 58029, "trash-alt": 62189, "trash-arrow-turn-left": 63637, "trash-arrow-up": 63529, "trash-can-arrow-turn-left": 63638, "trash-can-arrow-up": 63530, "trash-can-check": 58025, "trash-can-clock": 58026, "trash-can-list": 58027, "trash-can-plus": 58028, "trash-can-slash": 58029, "trash-can-undo": 63638, "trash-can-xmark": 58030, "trash-can": 62189, "trash-check": 58031, "trash-circle": 57638, "trash-clock": 58032, "trash-list": 58033, "trash-plus": 58034, "trash-restore-alt": 63530, "trash-restore": 63529, "trash-slash": 58035, "trash-undo-alt": 63638, "trash-undo": 63637, "trash-xmark": 58036, "trash": 61944, "treasure-chest": 63267, "tree-alt": 62464, "tree-christmas": 63451, "tree-city": 58759, "tree-deciduous": 62464, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "tree": 61883, "trees": 63268, "trian-balbot": 58460, "triangle-circle-square": 63007, "triangle-exclamation": 61553, "triangle-instrument": 63714, "triangle-music": 63714, "triangle-person-digging": 63581, "triangle": 62188, "tricycle-adult": 58820, "tricycle": 58819, "trillium": 58760, "triple-chevrons-down": 59383, "triple-chevrons-left": 59384, "triple-chevrons-right": 59385, "triple-chevrons-up": 59386, "trombone": 59266, "trophy-alt": 62187, "trophy-star": 62187, "trophy": 61585, "trowel-bricks": 58762, "trowel": 58761, "truck-arrow-right": 58763, "truck-bolt": 58320, "truck-clock": 62604, "truck-container-empty": 58037, "truck-container": 62684, "truck-couch": 62685, "truck-droplet": 58764, "truck-fast": 62603, "truck-field-un": 58766, "truck-field": 58765, "truck-fire": 58970, "truck-flatbed": 58038, "truck-front": 58039, "truck-ladder": 58967, "truck-loading": 62686, "truck-medical": 61689, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plane": 58767, "truck-plow": 63454, "truck-ramp-box": 62686, "truck-ramp-couch": 62685, "truck-ramp": 62688, "truck-suv": 59334, "truck-tow": 58040, "truck-utensils": 58920, "truck": 61649, "trumpet": 63715, "try": 58043, "tshirt": 62803, "tty-answer": 58041, "tty": 61924, "tugrik-sign": 58042, "turkey": 63269, "turkish-lira-sign": 58043, "turkish-lira": 58043, "turn-down-left": 58161, "turn-down-right": 58453, "turn-down": 62398, "turn-left-down": 58935, "turn-left-up": 58936, "turn-left": 58934, "turn-right": 58937, "turn-up": 62399, "turntable": 63716, "turtle": 63270, "tv-alt": 62060, "tv-music": 63718, "tv-retro": 62465, "tv": 62060, "typewriter": 63719, "u-turn-down-left": 59375, "u-turn-down-right": 59376, "u-turn-left-down": 59377, "u-turn-left-up": 59378, "u-turn-right-down": 59379, "u-turn-right-up": 59380, "u-turn-up-left": 59381, "u-turn-up-right": 59382, "u-turn": 59377, "u": 85, "ufo-beam": 57416, "ufo": 57415, "umbrella-alt": 58044, "umbrella-beach": 62922, "umbrella-simple": 58044, "umbrella": 61673, "underline": 61645, "undo-alt": 62186, "undo": 61666, "unicorn": 63271, "unicycle": 59335, "uniform-martial-arts": 58321, "union": 63138, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock-alt": 61758, "unlock-keyhole": 61758, "unlock": 61596, "unsorted": 61660, "up-down-left-right": 61618, "up-down": 62264, "up-from-bracket": 58768, "up-from-dotted-line": 58454, "up-from-line": 62278, "up-left": 58045, "up-long-to-line": 59078, "up-long": 62220, "up-right-and-down-left-from-center": 62500, "up-right-from-square": 62301, "up-right": 58046, "up-to-bracket": 58990, "up-to-dotted-line": 58455, "up-to-line": 62285, "up": 62295, "upload": 61587, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "usd": 36, "user-alien": 57418, "user-alt-slash": 62726, "user-alt": 61447, "user-astronaut": 62715, "user-beard-bolt": 59017, "user-beard": 59304, "user-bounty-hunter": 58047, "user-chart": 63139, "user-check": 62716, "user-chef-hair-long": 59305, "user-chef": 58322, "user-circle-minus": 59306, "user-circle-plus": 59307, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-construction": 63532, "user-cowboy": 63722, "user-crown": 63140, "user-dashed": 59308, "user-doctor-hair-long": 58457, "user-doctor-hair-mullet": 59309, "user-doctor-hair": 58456, "user-doctor-message": 63534, "user-doctor": 61680, "user-edit": 62719, "user-friends": 62720, "user-gear": 62718, "user-graduate": 62721, "user-group-crown": 63141, "user-group-simple": 58883, "user-group": 62720, "user-hair-buns": 58323, "user-hair-long": 58459, "user-hair-mullet": 58460, "user-hair": 58458, "user-hard-hat": 63532, "user-hat-tie-magnifying-glass": 59311, "user-hat-tie": 59310, "user-headset": 63533, "user-helmet-safety": 63532, "user-hoodie": 59018, "user-injured": 63272, "user-key": 59312, "user-large-slash": 62726, "user-large": 61447, "user-lock": 62722, "user-magnifying-glass": 58821, "user-md-chat": 63534, "user-md": 61680, "user-message": 59313, "user-microphone": 59314, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse-hair-long": 58462, "user-nurse-hair": 58461, "user-nurse": 63535, "user-pen": 62719, "user-pilot-hair-long": 59315, "user-pilot-tie-hair-long": 59316, "user-pilot-tie": 58049, "user-pilot": 58048, "user-plus": 62004, "user-police-hair-long": 59317, "user-police-tie-hair-long": 59318, "user-police-tie": 58164, "user-police": 58163, "user-question": 59319, "user-robot-xmarks": 58535, "user-robot": 57419, "user-secret": 61979, "user-shakespeare": 58050, "user-shield": 62725, "user-sith": 59320, "user-slash": 62726, "user-tag": 62727, "user-tie-hair-long": 58464, "user-tie-hair-mullet": 59321, "user-tie-hair": 58463, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-viewfinder": 59253, "user-visor": 57420, "user-vneck-hair-long": 58467, "user-vneck-hair-mullet": 59322, "user-vneck-hair": 58466, "user-vneck": 58465, "user-xmark": 62005, "user": 61447, "users-between-lines": 58769, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-gear": 62729, "users-line": 58770, "users-medical": 63536, "users-rays": 58771, "users-rectangle": 58772, "users-slash": 57459, "users-viewfinder": 58773, "users": 61632, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils-alt": 62182, "utensils-slash": 58468, "utensils": 62183, "utility-can": 59549, "utility-pole-double": 58052, "utility-pole": 58051, "v": 86, "vacuum-robot": 57422, "vacuum": 57421, "value-absolute": 63142, "van-shuttle": 62902, "van": 59336, "vault": 58053, "vcard": 62139, "vector-circle": 62957, "vector-polygon": 62958, "vector-square": 62959, "vent-damper": 58469, "venus-double": 61990, "venus-mars": 61992, "venus": 61985, "vest-patches": 57478, "vest": 57477, "vhs": 63724, "vial-circle-check": 58774, "vial-vertical": 59234, "vial-virus": 58775, "vial": 62610, "vials": 62611, "video-arrow-down-left": 58056, "video-arrow-up-right": 58057, "video-camera": 61501, "video-circle": 57643, "video-down-to-line": 59254, "video-handheld": 63656, "video-plus": 62689, "video-question": 59255, "video-slash": 62690, "video": 61501, "vihara": 63143, "violin": 63725, "virgo": 59472, "virus-covid-slash": 58537, "virus-covid": 58536, "virus-slash": 57461, "virus": 57460, "viruses": 57462, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volleyball": 62559, "volume-control-phone": 62112, "volume-down": 61479, "volume-high": 61480, "volume-low": 61479, "volume-medium": 63144, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-times": 63145, "volume-up": 61480, "volume-xmark": 63145, "volume": 63144, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "w": 87, "waffle": 58470, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wall-brick": 58331, "wallet": 62805, "wand-magic-sparkles": 58058, "wand-magic": 61648, "wand-sparkles": 63275, "wand": 63274, "wardrobe": 59521, "warehouse-alt": 62613, "warehouse-full": 62613, "warehouse": 62612, "warning": 61553, "washer": 63640, "washing-machine": 63640, "watch-apple": 58059, "watch-calculator": 63728, "watch-fitness": 63038, "watch-smart": 58060, "watch": 62177, "water-arrow-down": 63348, "water-arrow-up": 63349, "water-ladder": 62917, "water-lower": 63348, "water-rise": 63349, "water-temp": 59434, "water-temperature": 59434, "water": 63347, "watermelon-slice": 58167, "wave-pulse": 62968, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "wave": 58971, "waveform-circle": 57645, "waveform-lines": 63730, "waveform-path": 63730, "waveform": 63729, "waves-sine": 58973, "web-awesome": 59010, "webcam-slash": 63539, "webcam": 63538, "webhook": 58837, "weight-hanging": 62925, "weight-scale": 62614, "weight": 62614, "whale": 63276, "wheat-alt": 58061, "wheat-awn-circle-exclamation": 58776, "wheat-awn-slash": 58168, "wheat-awn": 58061, "wheat-slash": 58169, "wheat": 63277, "wheelchair-alt": 58062, "wheelchair-move": 58062, "wheelchair": 61843, "whiskey-glass-ice": 63393, "whiskey-glass": 63392, "whistle": 62560, "wifi-1": 63146, "wifi-2": 63147, "wifi-3": 61931, "wifi-exclamation": 58063, "wifi-fair": 63147, "wifi-slash": 63148, "wifi-strong": 61931, "wifi-weak": 63146, "wifi": 61931, "wind-circle-exclamation": 63350, "wind-turbine": 63643, "wind-warning": 63350, "wind": 63278, "window-alt": 62479, "window-close": 62480, "window-flip": 62479, "window-frame-open": 57424, "window-frame": 57423, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "window": 62478, "windsock": 63351, "wine-bottle": 63279, "wine-glass-alt": 62926, "wine-glass-crack": 62651, "wine-glass-empty": 62926, "wine-glass": 62691, "wireless": 59359, "won-sign": 61785, "won": 61785, "worm": 58777, "wreath-laurel": 58834, "wreath": 63458, "wrench-simple": 58065, "wrench": 61613, "x-ray": 62615, "x": 88, "xmark-circle": 61527, "xmark-hexagon": 62190, "xmark-large": 58779, "xmark-octagon": 62192, "xmark-square": 62163, "xmark-to-slot": 63345, "xmark": 61453, "xmarks-lines": 58778, "y": 89, "yen-sign": 61783, "yen": 61783, "yin-yang": 63149, "z": 90, "zap": 61671, "zzz": 63616 } ================================================ FILE: packages/fontawesome-pro-thin/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome-pro-thin", "version": "0.2.0", "description": "Fontawesome Pro Thin font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome-pro-thin" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome-pro-thin" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome-pro-thin/react-native-vector-icons-fontawesome-pro-thin.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome-pro-thin' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome-pro-thin)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-thin" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome-pro-thin/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProThin icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProThin.json'; export const FontAwesomeProThin = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Pro-Thin', fontFileName: 'fa-thin-100.ttf', }); export type FontAwesomeProThinIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProThin; ================================================ FILE: packages/fontawesome-pro-thin/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * FontAwesomeProThin icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/FontAwesomeProThin.json'; export const FontAwesomeProThin = createIconSet(glyphMap, { postScriptName: 'FontAwesome7Pro-Thin', fontFileName: 'fa-thin-100.ttf', }); export type FontAwesomeProThinIconName = keyof typeof glyphMap; /** @alias */ export default FontAwesomeProThin; ================================================ FILE: packages/fontawesome-pro-thin/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome-pro-thin/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome5/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome5", "className": "FontAwesome5", "commonPackage": "fontawesome-common/fontawesome5", "customSrc": "../../../../fontawesome-common/generators/app/templates/src/index.tsx", "customReadme": true, "upstreamFont": { "packageName": "@fortawesome/fontawesome-free", "versionRange": "^5" }, "meta": { "defaultStyleName": "regular", "styleNames": [ "regular", "solid", "brand" ], "styles": { "regular": { "family": "FontAwesome5Free-Regular", "name": "FontAwesome5_Regular.ttf", "weight": 400 }, "solid": { "family": "FontAwesome5Free-Solid", "name": "FontAwesome5_Solid.ttf", "weight": 900 }, "brand": { "family": "FontAwesome5Brands-Regular", "name": "FontAwesome5_Brands.ttf", "weight": 400 } } }, "buildSteps": { "glyphmap": { "location": "node_modules/@fortawesome/fontawesome-free/css/all.css", "mode": "css", "prefix": ".fa-" }, "copyFont": { "location": [ [ "node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf", "FontAwesome5_Brands" ], [ "node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf", "FontAwesome5_Regular" ], [ "node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf", "FontAwesome5_Solid" ] ] }, "postScript": { "script": "node ../fontawesome-common/scripts/generate-fontawesome-metadata --path node_modules/@fortawesome/fontawesome-free --output glyphmaps/FontAwesome5_meta.json" } }, "versions": [ { "rnvi": "12.0.0", "upstream": "5.15.4" } ] } } ================================================ FILE: packages/fontawesome5/CHANGELOG.md ================================================ ## 12.4.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.3.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.3.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.3.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.2.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - update fontawesome fonts to new createIcon format so font loads in expo ([#1769](https://github.com/oblador/react-native-vector-icons/pull/1769)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - improve warning if glyph does not exist for default IconStyle in fontawesome fonts ([#1718](https://github.com/oblador/react-native-vector-icons/pull/1718)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Lukas @WookieFPV - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/fontawesome5/README.md ================================================ # FontAwesome 5 ### Table of Content - [`Usage`](#usage) - [`Upgrading to Pro`](#upgrading-to-pro) # Usage Using the standard icons works just like the standard icons in this library. ```javascript import { FontAwesome5 } from "@react-native-vector-icons/fontawesome5"; const icon = ; ``` Something special about the FontAwesome5 class is that you can also pass props to change the style of the icon: ```javascript import { FontAwesome5 } from "@react-native-vector-icons/fontawesome5"; const icon = ; const icon = ; ``` **Valid types** | Type | Description | | ----------- | --------------------- | | **regular** | Uses the Regular font | | **brand** | Uses the Brands font | | **solid** | Uses the Solid font | No specified type indicates Regular font. ## getImageSource `getImageSource` works a little different due to its native backend and how the font is separated into different files. An extra argument to specify the font style is required. Use this to select which style the generated image should have: ```javascript import { FontAwesome5 } from "@react-native-vector-icons/fontawesome5"; FontAwesome5.getImageSource("solid", "comments", 30, "#000").then((source) => this.setState({ image: source }), ); ``` # Upgrading to Pro Use the `@react-native-vector-icons/fontawesome5-pro` package instead. ================================================ FILE: packages/fontawesome5/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome5" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesome5" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome5" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome5") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome5/fonts" eachFile { println "(RNVI:fontawesome5) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/fontawesome5/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome5/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome5/android/src/main/java/VectorIconsFontAwesome5Package.kt ================================================ package com.reactnativevectoricons.fontawesome5 import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesome5Package : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome5/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome5/glyphmaps/FontAwesome5.json ================================================ { "500px": 62062, "accessible-icon": 62312, "accusoft": 62313, "acquisitions-incorporated": 63151, "ad": 63041, "address-book": 62137, "address-card": 62139, "adjust": 61506, "adn": 61808, "adversal": 62314, "affiliatetheme": 62315, "air-freshener": 62928, "airbnb": 63540, "algolia": 62316, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "alipay": 63042, "allergies": 62561, "amazon": 62064, "amazon-pay": 62508, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amilia": 62317, "anchor": 61757, "android": 61819, "angellist": 61961, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angry": 62806, "angrycreative": 62318, "angular": 62496, "ankh": 63044, "app-store": 62319, "app-store-ios": 62320, "apper": 62321, "apple": 61817, "apple-alt": 62929, "apple-pay": 62485, "archive": 61831, "archway": 62807, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down": 61539, "arrow-left": 61536, "arrow-right": 61537, "arrow-up": 61538, "arrows-alt": 61618, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "artstation": 63354, "assistive-listening-systems": 62114, "asterisk": 61545, "asymmetrik": 62322, "at": 61946, "atlas": 62808, "atlassian": 63355, "atom": 62930, "audible": 62323, "audio-description": 62110, "autoprefixer": 62492, "avianex": 62324, "aviato": 62497, "award": 62809, "aws": 62325, "baby": 63356, "baby-carriage": 63357, "backspace": 62810, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "bahai": 63078, "balance-scale": 62030, "balance-scale-left": 62741, "balance-scale-right": 62742, "ban": 61534, "band-aid": 62562, "bandcamp": 62165, "barcode": 61482, "bars": 61641, "baseball-ball": 62515, "basketball-ball": 62516, "bath": 62157, "battery-empty": 62020, "battery-full": 62016, "battery-half": 62018, "battery-quarter": 62019, "battery-three-quarters": 62017, "battle-net": 63541, "bed": 62006, "beer": 61692, "behance": 61876, "behance-square": 61877, "bell": 61683, "bell-slash": 61942, "bezier-curve": 62811, "bible": 63047, "bicycle": 61958, "biking": 63562, "bimobject": 62328, "binoculars": 61925, "biohazard": 63360, "birthday-cake": 61949, "bitbucket": 61809, "bitcoin": 62329, "bity": 62330, "black-tie": 62078, "blackberry": 62331, "blender": 62743, "blender-phone": 63158, "blind": 62109, "blog": 63361, "blogger": 62332, "blogger-b": 62333, "bluetooth": 62099, "bluetooth-b": 62100, "bold": 61490, "bolt": 61671, "bomb": 61922, "bone": 62935, "bong": 62812, "book": 61485, "book-dead": 63159, "book-medical": 63462, "book-open": 62744, "book-reader": 62938, "bookmark": 61486, "bootstrap": 63542, "border-all": 63564, "border-none": 63568, "border-style": 63571, "bowling-ball": 62518, "box": 62566, "box-open": 62622, "box-tissue": 57435, "boxes": 62568, "braille": 62113, "brain": 62940, "bread-slice": 63468, "briefcase": 61617, "briefcase-medical": 62569, "broadcast-tower": 62745, "broom": 62746, "brush": 62813, "btc": 61786, "buffer": 63543, "bug": 61832, "building": 61869, "bullhorn": 61601, "bullseye": 61760, "burn": 62570, "buromobelexperte": 62335, "bus": 61959, "bus-alt": 62814, "business-time": 63050, "buy-n-large": 63654, "buysellads": 61965, "calculator": 61932, "calendar": 61747, "calendar-alt": 61555, "calendar-check": 62068, "calendar-day": 63363, "calendar-minus": 62066, "calendar-plus": 62065, "calendar-times": 62067, "calendar-week": 63364, "camera": 61488, "camera-retro": 61571, "campground": 63163, "canadian-maple-leaf": 63365, "candy-cane": 63366, "cannabis": 62815, "capsules": 62571, "car": 61881, "car-alt": 62942, "car-battery": 62943, "car-crash": 62945, "car-side": 62948, "caravan": 63743, "caret-down": 61655, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carrot": 63367, "cart-arrow-down": 61976, "cart-plus": 61975, "cash-register": 63368, "cat": 63166, "cc-amazon-pay": 62509, "cc-amex": 61939, "cc-apple-pay": 62486, "cc-diners-club": 62028, "cc-discover": 61938, "cc-jcb": 62027, "cc-mastercard": 61937, "cc-paypal": 61940, "cc-stripe": 61941, "cc-visa": 61936, "centercode": 62336, "centos": 63369, "certificate": 61603, "chair": 63168, "chalkboard": 62747, "chalkboard-teacher": 62748, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-line": 61953, "chart-pie": 61952, "check": 61452, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "cheese": 63471, "chess": 62521, "chess-bishop": 62522, "chess-board": 62524, "chess-king": 62527, "chess-knight": 62529, "chess-pawn": 62531, "chess-queen": 62533, "chess-rook": 62535, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-up": 61559, "child": 61870, "chrome": 62056, "chromecast": 63544, "church": 62749, "circle": 61713, "circle-notch": 61902, "city": 63055, "clinic-medical": 63474, "clipboard": 62248, "clipboard-check": 62572, "clipboard-list": 62573, "clock": 61463, "clone": 62029, "closed-captioning": 61962, "cloud": 61634, "cloud-download-alt": 62337, "cloud-meatball": 63291, "cloud-moon": 63171, "cloud-moon-rain": 63292, "cloud-rain": 63293, "cloud-showers-heavy": 63296, "cloud-sun": 63172, "cloud-sun-rain": 63299, "cloud-upload-alt": 62338, "cloudflare": 57469, "cloudscale": 62339, "cloudsmith": 62340, "cloudversify": 62341, "cocktail": 62817, "code": 61729, "code-branch": 61734, "codepen": 61899, "codiepie": 62084, "coffee": 61684, "cog": 61459, "cogs": 61573, "coins": 62750, "columns": 61659, "comment": 61557, "comment-alt": 62074, "comment-dollar": 63057, "comment-dots": 62637, "comment-medical": 63477, "comment-slash": 62643, "comments": 61574, "comments-dollar": 63059, "compact-disc": 62751, "compass": 61774, "compress": 61542, "compress-alt": 62498, "compress-arrows-alt": 63372, "concierge-bell": 62818, "confluence": 63373, "connectdevelop": 61966, "contao": 62061, "cookie": 62819, "cookie-bite": 62820, "copy": 61637, "copyright": 61945, "cotton-bureau": 63646, "couch": 62648, "cpanel": 62344, "creative-commons": 62046, "creative-commons-by": 62695, "creative-commons-nc": 62696, "creative-commons-nc-eu": 62697, "creative-commons-nc-jp": 62698, "creative-commons-nd": 62699, "creative-commons-pd": 62700, "creative-commons-pd-alt": 62701, "creative-commons-remix": 62702, "creative-commons-sa": 62703, "creative-commons-sampling": 62704, "creative-commons-sampling-plus": 62705, "creative-commons-share": 62706, "creative-commons-zero": 62707, "credit-card": 61597, "critical-role": 63177, "crop": 61733, "crop-alt": 62821, "cross": 63060, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "css3": 61756, "css3-alt": 62347, "cube": 61874, "cubes": 61875, "cut": 61636, "cuttlefish": 62348, "d-and-d": 62349, "d-and-d-beyond": 63178, "dailymotion": 57426, "dashcube": 61968, "database": 61888, "deaf": 62116, "deezer": 57463, "delicious": 61861, "democrat": 63303, "deploydog": 62350, "deskpro": 62351, "desktop": 61704, "dev": 63180, "deviantart": 61885, "dharmachakra": 63061, "dhl": 63376, "diagnoses": 62576, "diaspora": 63377, "dice": 62754, "dice-d20": 63183, "dice-d6": 63185, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "digg": 61862, "digital-ocean": 62353, "digital-tachograph": 62822, "directions": 62955, "discord": 62354, "discourse": 62355, "disease": 63482, "divide": 62761, "dizzy": 62823, "dna": 62577, "dochub": 62356, "docker": 62357, "dog": 63187, "dollar-sign": 61781, "dolly": 62578, "dolly-flatbed": 62580, "donate": 62649, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dove": 62650, "download": 61465, "draft2digital": 62358, "drafting-compass": 62824, "dragon": 63189, "draw-polygon": 62958, "dribbble": 61821, "dribbble-square": 62359, "dropbox": 61803, "drum": 62825, "drum-steelpan": 62826, "drumstick-bite": 63191, "drupal": 61865, "dumbbell": 62539, "dumpster": 63379, "dumpster-fire": 63380, "dungeon": 63193, "dyalog": 62361, "earlybirds": 62362, "ebay": 62708, "edge": 62082, "edge-legacy": 57464, "edit": 61508, "egg": 63483, "eject": 61522, "elementor": 62512, "ellipsis-h": 61761, "ellipsis-v": 61762, "ello": 62961, "ember": 62499, "empire": 61905, "envelope": 61664, "envelope-open": 62134, "envelope-open-text": 63064, "envelope-square": 61849, "envira": 62105, "equals": 62764, "eraser": 61741, "erlang": 62365, "ethereum": 62510, "ethernet": 63382, "etsy": 62167, "euro-sign": 61779, "evernote": 63545, "exchange-alt": 62306, "exclamation": 61738, "exclamation-circle": 61546, "exclamation-triangle": 61553, "expand": 61541, "expand-alt": 62500, "expand-arrows-alt": 62238, "expeditedssl": 62014, "external-link-alt": 62301, "external-link-square-alt": 62304, "eye": 61550, "eye-dropper": 61947, "eye-slash": 61552, "facebook": 61594, "facebook-f": 62366, "facebook-messenger": 62367, "facebook-square": 61570, "fan": 63587, "fantasy-flight-games": 63196, "fast-backward": 61513, "fast-forward": 61520, "faucet": 57349, "fax": 61868, "feather": 62765, "feather-alt": 62827, "fedex": 63383, "fedora": 63384, "female": 61826, "fighter-jet": 61691, "figma": 63385, "file": 61787, "file-alt": 61788, "file-archive": 61894, "file-audio": 61895, "file-code": 61897, "file-contract": 62828, "file-csv": 63197, "file-download": 62829, "file-excel": 61891, "file-export": 62830, "file-image": 61893, "file-import": 62831, "file-invoice": 62832, "file-invoice-dollar": 62833, "file-medical": 62583, "file-medical-alt": 62584, "file-pdf": 61889, "file-powerpoint": 61892, "file-prescription": 62834, "file-signature": 62835, "file-upload": 62836, "file-video": 61896, "file-word": 61890, "fill": 62837, "fill-drip": 62838, "film": 61448, "filter": 61616, "fingerprint": 62839, "fire": 61549, "fire-alt": 63460, "fire-extinguisher": 61748, "firefox": 62057, "firefox-browser": 57351, "first-aid": 62585, "first-order": 62128, "first-order-alt": 62730, "firstdraft": 62369, "fish": 62840, "fist-raised": 63198, "flag": 61476, "flag-checkered": 61726, "flag-usa": 63309, "flask": 61635, "flickr": 61806, "flipboard": 62541, "flushed": 62841, "fly": 62487, "folder": 61563, "folder-minus": 63069, "folder-open": 61564, "folder-plus": 63070, "font": 61489, "font-awesome": 62132, "font-awesome-alt": 62300, "font-awesome-flag": 62501, "font-awesome-logo-full": 62694, "fonticons": 62080, "fonticons-fi": 62370, "football-ball": 62542, "fort-awesome": 62086, "fort-awesome-alt": 62371, "forumbee": 61969, "forward": 61518, "foursquare": 61824, "free-code-camp": 62149, "freebsd": 62372, "frog": 62766, "frown": 61721, "frown-open": 62842, "fulcrum": 62731, "funnel-dollar": 63074, "futbol": 61923, "galactic-republic": 62732, "galactic-senate": 62733, "gamepad": 61723, "gas-pump": 62767, "gavel": 61667, "gem": 62373, "genderless": 61997, "get-pocket": 62053, "gg": 62048, "gg-circle": 62049, "ghost": 63202, "gift": 61547, "gifts": 63388, "git": 61907, "git-alt": 63553, "git-square": 61906, "github": 61595, "github-alt": 61715, "github-square": 61586, "gitkraken": 62374, "gitlab": 62102, "gitter": 62502, "glass-cheers": 63391, "glass-martini": 61440, "glass-martini-alt": 62843, "glass-whiskey": 63392, "glasses": 62768, "glide": 62117, "glide-g": 62118, "globe": 61612, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "gofore": 62375, "golf-ball": 62544, "goodreads": 62376, "goodreads-g": 62377, "google": 61856, "google-drive": 62378, "google-pay": 57465, "google-play": 62379, "google-plus": 62131, "google-plus-g": 61653, "google-plus-square": 61652, "google-wallet": 61934, "gopuram": 63076, "graduation-cap": 61853, "gratipay": 61828, "grav": 62166, "greater-than": 62769, "greater-than-equal": 62770, "grimace": 62847, "grin": 62848, "grin-alt": 62849, "grin-beam": 62850, "grin-beam-sweat": 62851, "grin-hearts": 62852, "grin-squint": 62853, "grin-squint-tears": 62854, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue": 62857, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-wink": 62860, "grip-horizontal": 62861, "grip-lines": 63396, "grip-lines-vertical": 63397, "grip-vertical": 62862, "gripfire": 62380, "grunt": 62381, "guilded": 57470, "guitar": 63398, "gulp": 62382, "h-square": 61693, "hacker-news": 61908, "hacker-news-square": 62383, "hackerrank": 62967, "hamburger": 63493, "hammer": 63203, "hamsa": 63077, "hand-holding": 62653, "hand-holding-heart": 62654, "hand-holding-medical": 57436, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-lizard": 62040, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-rock": 62037, "hand-scissors": 62039, "hand-sparkles": 57437, "hand-spock": 62041, "hands": 62658, "hands-helping": 62660, "hands-wash": 57438, "handshake": 62133, "handshake-alt-slash": 57439, "handshake-slash": 57440, "hanukiah": 63206, "hard-hat": 63495, "hashtag": 62098, "hat-cowboy": 63680, "hat-cowboy-side": 63681, "hat-wizard": 63208, "hdd": 61600, "head-side-cough": 57441, "head-side-cough-slash": 57442, "head-side-mask": 57443, "head-side-virus": 57444, "heading": 61916, "headphones": 61477, "headphones-alt": 62863, "headset": 62864, "heart": 61444, "heart-broken": 63401, "heartbeat": 61982, "helicopter": 62771, "highlighter": 62865, "hiking": 63212, "hippo": 63213, "hips": 62546, "hire-a-helper": 62384, "history": 61914, "hive": 57471, "hockey-puck": 62547, "holly-berry": 63402, "home": 61461, "hooli": 62503, "hornbill": 62866, "horse": 63216, "horse-head": 63403, "hospital": 61688, "hospital-alt": 62589, "hospital-symbol": 62590, "hospital-user": 63501, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hotjar": 62385, "hourglass": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "house-damage": 63217, "house-user": 57445, "houzz": 62076, "hryvnia": 63218, "html5": 61755, "hubspot": 62386, "i-cursor": 62022, "ice-cream": 63504, "icicles": 63405, "icons": 63597, "id-badge": 62145, "id-card": 62146, "id-card-alt": 62591, "ideal": 57363, "igloo": 63406, "image": 61502, "images": 62210, "imdb": 62168, "inbox": 61468, "indent": 61500, "industry": 62069, "infinity": 62772, "info": 61737, "info-circle": 61530, "innosoft": 57472, "instagram": 61805, "instagram-square": 57429, "instalod": 57473, "intercom": 63407, "internet-explorer": 62059, "invision": 63408, "ioxhost": 61960, "italic": 61491, "itch-io": 63546, "itunes": 62388, "itunes-note": 62389, "java": 62692, "jedi": 63081, "jedi-order": 62734, "jenkins": 62390, "jira": 63409, "joget": 62391, "joint": 62869, "joomla": 61866, "journal-whills": 63082, "js": 62392, "js-square": 62393, "jsfiddle": 61900, "kaaba": 63083, "kaggle": 62970, "key": 61572, "keybase": 62709, "keyboard": 61724, "keycdn": 62394, "khanda": 63085, "kickstarter": 62395, "kickstarter-k": 62396, "kiss": 62870, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kiwi-bird": 62773, "korvue": 62511, "landmark": 63087, "language": 61867, "laptop": 61705, "laptop-code": 62972, "laptop-house": 57446, "laptop-medical": 63506, "laravel": 62397, "lastfm": 61954, "lastfm-square": 61955, "laugh": 62873, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "layer-group": 62973, "leaf": 61548, "leanpub": 61970, "lemon": 61588, "less": 62493, "less-than": 62774, "less-than-equal": 62775, "level-down-alt": 62398, "level-up-alt": 62399, "life-ring": 61901, "lightbulb": 61675, "line": 62400, "link": 61633, "linkedin": 61580, "linkedin-in": 61665, "linode": 62136, "linux": 61820, "lira-sign": 61845, "list": 61498, "list-alt": 61474, "list-ol": 61643, "list-ul": 61642, "location-arrow": 61732, "lock": 61475, "lock-open": 62401, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "low-vision": 62120, "luggage-cart": 62877, "lungs": 62980, "lungs-virus": 57447, "lyft": 62403, "magento": 62404, "magic": 61648, "magnet": 61558, "mail-bulk": 63092, "mailchimp": 62878, "male": 61827, "mandalorian": 62735, "map": 62073, "map-marked": 62879, "map-marked-alt": 62880, "map-marker": 61505, "map-marker-alt": 62405, "map-pin": 62070, "map-signs": 62071, "markdown": 62991, "marker": 62881, "mars": 61986, "mars-double": 61991, "mars-stroke": 61993, "mars-stroke-h": 61995, "mars-stroke-v": 61994, "mask": 63226, "mastodon": 62710, "maxcdn": 61750, "mdb": 63690, "medal": 62882, "medapps": 62406, "medium": 62010, "medium-m": 62407, "medkit": 61690, "medrt": 62408, "meetup": 62176, "megaport": 62883, "meh": 61722, "meh-blank": 62884, "meh-rolling-eyes": 62885, "memory": 62776, "mendeley": 63411, "menorah": 63094, "mercury": 61987, "meteor": 63315, "microblog": 57370, "microchip": 62171, "microphone": 61744, "microphone-alt": 62409, "microphone-alt-slash": 62777, "microphone-slash": 61745, "microscope": 62992, "microsoft": 62410, "minus": 61544, "minus-circle": 61526, "minus-square": 61766, "mitten": 63413, "mix": 62411, "mixcloud": 62089, "mixer": 57430, "mizuni": 62412, "mobile": 61707, "mobile-alt": 62413, "modx": 62085, "monero": 62416, "money-bill": 61654, "money-bill-alt": 62417, "money-bill-wave": 62778, "money-bill-wave-alt": 62779, "money-check": 62780, "money-check-alt": 62781, "monument": 62886, "moon": 61830, "mortar-pestle": 62887, "mosque": 63096, "motorcycle": 61980, "mountain": 63228, "mouse": 63692, "mouse-pointer": 62021, "mug-hot": 63414, "music": 61441, "napster": 62418, "neos": 62994, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nimblr": 62888, "node": 62489, "node-js": 62419, "not-equal": 62782, "notes-medical": 62593, "npm": 62420, "ns8": 62421, "nutritionix": 62422, "object-group": 62023, "object-ungroup": 62024, "octopus-deploy": 57474, "odnoklassniki": 62051, "odnoklassniki-square": 62052, "oil-can": 62995, "old-republic": 62736, "om": 63097, "opencart": 62013, "openid": 61851, "opera": 62058, "optin-monster": 62012, "orcid": 63698, "osi": 62490, "otter": 63232, "outdent": 61499, "page4": 62423, "pagelines": 61836, "pager": 63509, "paint-brush": 61948, "paint-roller": 62890, "palette": 62783, "palfed": 62424, "pallet": 62594, "paper-plane": 61912, "paperclip": 61638, "parachute-box": 62669, "paragraph": 61917, "parking": 62784, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "patreon": 62425, "pause": 61516, "pause-circle": 62091, "paw": 61872, "paypal": 61933, "peace": 63100, "pen": 62212, "pen-alt": 62213, "pen-fancy": 62892, "pen-nib": 62893, "pen-square": 61771, "pencil-alt": 62211, "pencil-ruler": 62894, "penny-arcade": 63236, "people-arrows": 57448, "people-carry": 62670, "pepper-hot": 63510, "perbyte": 57475, "percent": 62101, "percentage": 62785, "periscope": 62426, "person-booth": 63318, "phabricator": 62427, "phoenix-framework": 62428, "phoenix-squadron": 62737, "phone": 61589, "phone-alt": 63609, "phone-slash": 62429, "phone-square": 61592, "phone-square-alt": 63611, "phone-volume": 62112, "photo-video": 63612, "php": 62551, "pied-piper": 62126, "pied-piper-alt": 61864, "pied-piper-hat": 62693, "pied-piper-pp": 61863, "pied-piper-square": 57374, "piggy-bank": 62675, "pills": 62596, "pinterest": 61650, "pinterest-p": 62001, "pinterest-square": 61651, "pizza-slice": 63512, "place-of-worship": 63103, "plane": 61554, "plane-arrival": 62895, "plane-departure": 62896, "plane-slash": 57449, "play": 61515, "play-circle": 61764, "playstation": 62431, "plug": 61926, "plus": 61543, "plus-circle": 61525, "plus-square": 61694, "podcast": 62158, "poll": 63105, "poll-h": 63106, "poo": 62206, "poo-storm": 63322, "poop": 63001, "portrait": 62432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription": 62897, "prescription-bottle": 62597, "prescription-bottle-alt": 62598, "print": 61487, "procedures": 62599, "product-hunt": 62088, "project-diagram": 62786, "pump-medical": 57450, "pump-soap": 57451, "pushed": 62433, "puzzle-piece": 61742, "python": 62434, "qq": 61910, "qrcode": 61481, "question": 61736, "question-circle": 61529, "quidditch": 62552, "quinscape": 62553, "quora": 62148, "quote-left": 61709, "quote-right": 61710, "quran": 63111, "r-project": 62711, "radiation": 63417, "radiation-alt": 63418, "rainbow": 63323, "random": 61556, "raspberry-pi": 63419, "ravelry": 62169, "react": 62491, "reacteurope": 63325, "readme": 62677, "rebel": 61904, "receipt": 62787, "record-vinyl": 63705, "recycle": 61880, "red-river": 62435, "reddit": 61857, "reddit-alien": 62081, "reddit-square": 61858, "redhat": 63420, "redo": 61470, "redo-alt": 62201, "registered": 62045, "remove-format": 63613, "renren": 61835, "reply": 62437, "reply-all": 61730, "replyd": 62438, "republican": 63326, "researchgate": 62712, "resolving": 62439, "restroom": 63421, "retweet": 61561, "rev": 62898, "ribbon": 62678, "ring": 63243, "road": 61464, "robot": 62788, "rocket": 61749, "rocketchat": 62440, "rockrms": 62441, "route": 62679, "rss": 61598, "rss-square": 61763, "ruble-sign": 61784, "ruler": 62789, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-vertical": 62792, "running": 63244, "rupee-sign": 61782, "rust": 57466, "sad-cry": 62899, "sad-tear": 62900, "safari": 62055, "salesforce": 63547, "sass": 62494, "satellite": 63423, "satellite-dish": 63424, "save": 61639, "schlix": 62442, "school": 62793, "screwdriver": 62794, "scribd": 62090, "scroll": 63246, "sd-card": 63426, "search": 61442, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "searchengin": 62443, "seedling": 62680, "sellcast": 62170, "sellsy": 61971, "server": 62003, "servicestack": 62444, "shapes": 63007, "share": 61540, "share-alt": 61920, "share-alt-square": 61921, "share-square": 61773, "shekel-sign": 61963, "shield-alt": 62445, "shield-virus": 57452, "ship": 61978, "shipping-fast": 62603, "shirtsinbulk": 61972, "shoe-prints": 62795, "shopify": 57431, "shopping-bag": 62096, "shopping-basket": 62097, "shopping-cart": 61562, "shopware": 62901, "shower": 62156, "shuttle-van": 62902, "sign": 62681, "sign-in-alt": 62198, "sign-language": 62119, "sign-out-alt": 62197, "signal": 61458, "signature": 62903, "sim-card": 63428, "simplybuilt": 61973, "sink": 57453, "sistrix": 62446, "sitemap": 61672, "sith": 62738, "skating": 63429, "sketch": 63430, "skiing": 63433, "skiing-nordic": 63434, "skull": 62796, "skull-crossbones": 63252, "skyatlas": 61974, "skype": 61822, "slack": 61848, "slack-hash": 62447, "slash": 63253, "sleigh": 63436, "sliders-h": 61918, "slideshare": 61927, "smile": 61720, "smile-beam": 62904, "smile-wink": 62682, "smog": 63327, "smoking": 62605, "smoking-ban": 62797, "sms": 63437, "snapchat": 62123, "snapchat-ghost": 62124, "snapchat-square": 62125, "snowboarding": 63438, "snowflake": 62172, "snowman": 63440, "snowplow": 63442, "soap": 57454, "socks": 63126, "solar-panel": 62906, "sort": 61660, "sort-alpha-down": 61789, "sort-alpha-down-alt": 63617, "sort-alpha-up": 61790, "sort-alpha-up-alt": 63618, "sort-amount-down": 61792, "sort-amount-down-alt": 63620, "sort-amount-up": 61793, "sort-amount-up-alt": 63621, "sort-down": 61661, "sort-numeric-down": 61794, "sort-numeric-down-alt": 63622, "sort-numeric-up": 61795, "sort-numeric-up-alt": 63623, "sort-up": 61662, "soundcloud": 61886, "sourcetree": 63443, "spa": 62907, "space-shuttle": 61847, "speakap": 62451, "speaker-deck": 63548, "spell-check": 63633, "spider": 63255, "spinner": 61712, "splotch": 62908, "spotify": 61884, "spray-can": 62909, "square": 61640, "square-full": 62556, "square-root-alt": 63128, "squarespace": 62910, "stack-exchange": 61837, "stack-overflow": 61804, "stackpath": 63554, "stamp": 62911, "star": 61445, "star-and-crescent": 63129, "star-half": 61577, "star-half-alt": 62912, "star-of-david": 63130, "star-of-life": 63009, "staylinked": 62453, "steam": 61878, "steam-square": 61879, "steam-symbol": 62454, "step-backward": 61512, "step-forward": 61521, "stethoscope": 61681, "sticker-mule": 62455, "sticky-note": 62025, "stop": 61517, "stop-circle": 62093, "stopwatch": 62194, "stopwatch-20": 57455, "store": 62798, "store-alt": 62799, "store-alt-slash": 57456, "store-slash": 57457, "strava": 62504, "stream": 62800, "street-view": 61981, "strikethrough": 61644, "stripe": 62505, "stripe-s": 62506, "stroopwafel": 62801, "studiovinari": 62456, "stumbleupon": 61860, "stumbleupon-circle": 61859, "subscript": 61740, "subway": 62009, "suitcase": 61682, "suitcase-rolling": 62913, "sun": 61829, "superpowers": 62173, "superscript": 61739, "supple": 62457, "surprise": 62914, "suse": 63446, "swatchbook": 62915, "swift": 63713, "swimmer": 62916, "swimming-pool": 62917, "symfony": 63549, "synagogue": 63131, "sync": 61473, "sync-alt": 62193, "syringe": 62606, "table": 61646, "table-tennis": 62557, "tablet": 61706, "tablet-alt": 62458, "tablets": 62608, "tachometer-alt": 62461, "tag": 61483, "tags": 61484, "tape": 62683, "tasks": 61614, "taxi": 61882, "teamspeak": 62713, "teeth": 63022, "teeth-open": 63023, "telegram": 62150, "telegram-plane": 62462, "temperature-high": 63337, "temperature-low": 63339, "tencent-weibo": 61909, "tenge": 63447, "terminal": 61728, "text-height": 61492, "text-width": 61493, "th": 61450, "th-large": 61449, "th-list": 61451, "the-red-yeti": 63133, "theater-masks": 63024, "themeco": 62918, "themeisle": 62130, "thermometer": 62609, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "think-peaks": 63281, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack": 61581, "ticket-alt": 62463, "tiktok": 57467, "times": 61453, "times-circle": 61527, "tint": 61507, "tint-slash": 62919, "tired": 62920, "toggle-off": 61956, "toggle-on": 61957, "toilet": 63448, "toilet-paper": 63262, "toilet-paper-slash": 57458, "toolbox": 62802, "tools": 63449, "tooth": 62921, "torah": 63136, "torii-gate": 63137, "tractor": 63266, "trade-federation": 62739, "trademark": 62044, "traffic-light": 63031, "trailer": 57409, "train": 62008, "tram": 63450, "transgender": 61988, "transgender-alt": 61989, "trash": 61944, "trash-alt": 62189, "trash-restore": 63529, "trash-restore-alt": 63530, "tree": 61883, "trello": 61825, "trophy": 61585, "truck": 61649, "truck-loading": 62686, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "tshirt": 62803, "tty": 61924, "tumblr": 61811, "tumblr-square": 61812, "tv": 62060, "twitch": 61928, "twitter": 61593, "twitter-square": 61569, "typo3": 62507, "uber": 62466, "ubuntu": 63455, "uikit": 62467, "umbraco": 63720, "umbrella": 61673, "umbrella-beach": 62922, "uncharted": 57476, "underline": 61645, "undo": 61666, "undo-alt": 62186, "uniregistry": 62468, "unity": 57417, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock": 61596, "unlock-alt": 61758, "unsplash": 57468, "untappd": 62469, "upload": 61587, "ups": 63456, "usb": 62087, "user": 61447, "user-alt": 62470, "user-alt-slash": 62714, "user-astronaut": 62715, "user-check": 62716, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-edit": 62719, "user-friends": 62720, "user-graduate": 62721, "user-injured": 63272, "user-lock": 62722, "user-md": 61680, "user-minus": 62723, "user-ninja": 62724, "user-nurse": 63535, "user-plus": 62004, "user-secret": 61979, "user-shield": 62725, "user-slash": 62726, "user-tag": 62727, "user-tie": 62728, "user-times": 62005, "users": 61632, "users-cog": 62729, "users-slash": 57459, "usps": 63457, "ussunnah": 62471, "utensil-spoon": 62181, "utensils": 62183, "vaadin": 62472, "vector-square": 62923, "venus": 61985, "venus-double": 61990, "venus-mars": 61992, "vest": 57477, "vest-patches": 57478, "viacoin": 62007, "viadeo": 62121, "viadeo-square": 62122, "vial": 62610, "vials": 62611, "viber": 62473, "video": 61501, "video-slash": 62690, "vihara": 63143, "vimeo": 62474, "vimeo-square": 61844, "vimeo-v": 62077, "vine": 61898, "virus": 57460, "virus-slash": 57461, "viruses": 57462, "vk": 61833, "vnv": 62475, "voicemail": 63639, "volleyball-ball": 62559, "volume-down": 61479, "volume-mute": 63145, "volume-off": 61478, "volume-up": 61480, "vote-yea": 63346, "vr-cardboard": 63273, "vuejs": 62495, "walking": 62804, "wallet": 62805, "warehouse": 62612, "watchman-monitoring": 57479, "water": 63347, "wave-square": 63550, "waze": 63551, "weebly": 62924, "weibo": 61834, "weight": 62614, "weight-hanging": 62925, "weixin": 61911, "whatsapp": 62002, "whatsapp-square": 62476, "wheelchair": 61843, "whmcs": 62477, "wifi": 61931, "wikipedia-w": 62054, "wind": 63278, "window-close": 62480, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "windows": 61818, "wine-bottle": 63279, "wine-glass": 62691, "wine-glass-alt": 62926, "wix": 62927, "wizards-of-the-coast": 63280, "wodu": 57480, "wolf-pack-battalion": 62740, "won-sign": 61785, "wordpress": 61850, "wordpress-simple": 62481, "wpbeginner": 62103, "wpexplorer": 62174, "wpforms": 62104, "wpressr": 62436, "wrench": 61613, "x-ray": 62615, "xbox": 62482, "xing": 61800, "xing-square": 61801, "y-combinator": 62011, "yahoo": 61854, "yammer": 63552, "yandex": 62483, "yandex-international": 62484, "yarn": 63459, "yelp": 61929, "yen-sign": 61783, "yin-yang": 63149, "yoast": 62129, "youtube": 61799, "youtube-square": 62513, "zhihu": 63039 } ================================================ FILE: packages/fontawesome5/glyphmaps/FontAwesome5_brand.json ================================================ {"500px":62062,"accessible-icon":62312,"accusoft":62313,"acquisitions-incorporated":63151,"adn":61808,"adversal":62314,"affiliatetheme":62315,"airbnb":63540,"algolia":62316,"alipay":63042,"amazon-pay":62508,"amazon":62064,"amilia":62317,"android":61819,"angellist":61961,"angrycreative":62318,"angular":62496,"app-store-ios":62320,"app-store":62319,"apper":62321,"apple-pay":62485,"apple":61817,"artstation":63354,"asymmetrik":62322,"atlassian":63355,"audible":62323,"autoprefixer":62492,"avianex":62324,"aviato":62497,"aws":62325,"bandcamp":62165,"battle-net":63541,"behance-square":61877,"behance":61876,"bimobject":62328,"bitbucket":61809,"bitcoin":62329,"bity":62330,"black-tie":62078,"blackberry":62331,"blogger-b":62333,"blogger":62332,"bluetooth-b":62100,"bluetooth":62099,"bootstrap":63542,"btc":61786,"buffer":63543,"buromobelexperte":62335,"buy-n-large":63654,"buysellads":61965,"canadian-maple-leaf":63365,"cc-amazon-pay":62509,"cc-amex":61939,"cc-apple-pay":62486,"cc-diners-club":62028,"cc-discover":61938,"cc-jcb":62027,"cc-mastercard":61937,"cc-paypal":61940,"cc-stripe":61941,"cc-visa":61936,"centercode":62336,"centos":63369,"chrome":62056,"chromecast":63544,"cloudflare":57469,"cloudscale":62339,"cloudsmith":62340,"cloudversify":62341,"codepen":61899,"codiepie":62084,"confluence":63373,"connectdevelop":61966,"contao":62061,"cotton-bureau":63646,"cpanel":62344,"creative-commons-by":62695,"creative-commons-nc-eu":62697,"creative-commons-nc-jp":62698,"creative-commons-nc":62696,"creative-commons-nd":62699,"creative-commons-pd-alt":62701,"creative-commons-pd":62700,"creative-commons-remix":62702,"creative-commons-sa":62703,"creative-commons-sampling-plus":62705,"creative-commons-sampling":62704,"creative-commons-share":62706,"creative-commons-zero":62707,"creative-commons":62046,"critical-role":63177,"css3-alt":62347,"css3":61756,"cuttlefish":62348,"d-and-d-beyond":63178,"d-and-d":62349,"dailymotion":57426,"dashcube":61968,"deezer":57463,"delicious":61861,"deploydog":62350,"deskpro":62351,"dev":63180,"deviantart":61885,"dhl":63376,"diaspora":63377,"digg":61862,"digital-ocean":62353,"discord":62354,"discourse":62355,"dochub":62356,"docker":62357,"draft2digital":62358,"dribbble-square":62359,"dribbble":61821,"dropbox":61803,"drupal":61865,"dyalog":62361,"earlybirds":62362,"ebay":62708,"edge-legacy":57464,"edge":62082,"elementor":62512,"ello":62961,"ember":62499,"empire":61905,"envira":62105,"erlang":62365,"ethereum":62510,"etsy":62167,"evernote":63545,"expeditedssl":62014,"facebook-f":62366,"facebook-messenger":62367,"facebook-square":61570,"facebook":61594,"fantasy-flight-games":63196,"fedex":63383,"fedora":63384,"figma":63385,"firefox-browser":57351,"firefox":62057,"first-order-alt":62730,"first-order":62128,"firstdraft":62369,"flickr":61806,"flipboard":62541,"fly":62487,"font-awesome-alt":62300,"font-awesome-flag":62501,"font-awesome-logo-full":62694,"font-awesome":62132,"fonticons-fi":62370,"fonticons":62080,"fort-awesome-alt":62371,"fort-awesome":62086,"forumbee":61969,"foursquare":61824,"free-code-camp":62149,"freebsd":62372,"fulcrum":62731,"galactic-republic":62732,"galactic-senate":62733,"get-pocket":62053,"gg-circle":62049,"gg":62048,"git-alt":63553,"git-square":61906,"git":61907,"github-alt":61715,"github-square":61586,"github":61595,"gitkraken":62374,"gitlab":62102,"gitter":62502,"glide-g":62118,"glide":62117,"gofore":62375,"goodreads-g":62377,"goodreads":62376,"google-drive":62378,"google-pay":57465,"google-play":62379,"google-plus-g":61653,"google-plus-square":61652,"google-plus":62131,"google-wallet":61934,"google":61856,"gratipay":61828,"grav":62166,"gripfire":62380,"grunt":62381,"guilded":57470,"gulp":62382,"hacker-news-square":62383,"hacker-news":61908,"hackerrank":62967,"hips":62546,"hire-a-helper":62384,"hive":57471,"hooli":62503,"hornbill":62866,"hotjar":62385,"houzz":62076,"html5":61755,"hubspot":62386,"ideal":57363,"imdb":62168,"innosoft":57472,"instagram-square":57429,"instagram":61805,"instalod":57473,"intercom":63407,"internet-explorer":62059,"invision":63408,"ioxhost":61960,"itch-io":63546,"itunes-note":62389,"itunes":62388,"java":62692,"jedi-order":62734,"jenkins":62390,"jira":63409,"joget":62391,"joomla":61866,"js-square":62393,"js":62392,"jsfiddle":61900,"kaggle":62970,"keybase":62709,"keycdn":62394,"kickstarter-k":62396,"kickstarter":62395,"korvue":62511,"laravel":62397,"lastfm-square":61955,"lastfm":61954,"leanpub":61970,"less":62493,"line":62400,"linkedin-in":61665,"linkedin":61580,"linode":62136,"linux":61820,"lyft":62403,"magento":62404,"mailchimp":62878,"mandalorian":62735,"markdown":62991,"mastodon":62710,"maxcdn":61750,"mdb":63690,"medapps":62406,"medium-m":62407,"medium":62010,"medrt":62408,"meetup":62176,"megaport":62883,"mendeley":63411,"microblog":57370,"microsoft":62410,"mix":62411,"mixcloud":62089,"mixer":57430,"mizuni":62412,"modx":62085,"monero":62416,"napster":62418,"neos":62994,"nimblr":62888,"node-js":62419,"node":62489,"npm":62420,"ns8":62421,"nutritionix":62422,"octopus-deploy":57474,"odnoklassniki-square":62052,"odnoklassniki":62051,"old-republic":62736,"opencart":62013,"openid":61851,"opera":62058,"optin-monster":62012,"orcid":63698,"osi":62490,"page4":62423,"pagelines":61836,"palfed":62424,"patreon":62425,"paypal":61933,"penny-arcade":63236,"perbyte":57475,"periscope":62426,"phabricator":62427,"phoenix-framework":62428,"phoenix-squadron":62737,"php":62551,"pied-piper-alt":61864,"pied-piper-hat":62693,"pied-piper-pp":61863,"pied-piper-square":57374,"pied-piper":62126,"pinterest-p":62001,"pinterest-square":61651,"pinterest":61650,"playstation":62431,"product-hunt":62088,"pushed":62433,"python":62434,"qq":61910,"quinscape":62553,"quora":62148,"r-project":62711,"raspberry-pi":63419,"ravelry":62169,"react":62491,"reacteurope":63325,"readme":62677,"rebel":61904,"red-river":62435,"reddit-alien":62081,"reddit-square":61858,"reddit":61857,"redhat":63420,"renren":61835,"replyd":62438,"researchgate":62712,"resolving":62439,"rev":62898,"rocketchat":62440,"rockrms":62441,"rust":57466,"safari":62055,"salesforce":63547,"sass":62494,"schlix":62442,"scribd":62090,"searchengin":62443,"sellcast":62170,"sellsy":61971,"servicestack":62444,"shirtsinbulk":61972,"shopify":57431,"shopware":62901,"simplybuilt":61973,"sistrix":62446,"sith":62738,"sketch":63430,"skyatlas":61974,"skype":61822,"slack-hash":62447,"slack":61848,"slideshare":61927,"snapchat-ghost":62124,"snapchat-square":62125,"snapchat":62123,"soundcloud":61886,"sourcetree":63443,"speakap":62451,"speaker-deck":63548,"spotify":61884,"squarespace":62910,"stack-exchange":61837,"stack-overflow":61804,"stackpath":63554,"staylinked":62453,"steam-square":61879,"steam-symbol":62454,"steam":61878,"sticker-mule":62455,"strava":62504,"stripe-s":62506,"stripe":62505,"studiovinari":62456,"stumbleupon-circle":61859,"stumbleupon":61860,"superpowers":62173,"supple":62457,"suse":63446,"swift":63713,"symfony":63549,"teamspeak":62713,"telegram-plane":62462,"telegram":62150,"tencent-weibo":61909,"the-red-yeti":63133,"themeco":62918,"themeisle":62130,"think-peaks":63281,"tiktok":57467,"trade-federation":62739,"trello":61825,"tumblr-square":61812,"tumblr":61811,"twitch":61928,"twitter-square":61569,"twitter":61593,"typo3":62507,"uber":62466,"ubuntu":63455,"uikit":62467,"umbraco":63720,"uncharted":57476,"uniregistry":62468,"unity":57417,"unsplash":57468,"untappd":62469,"ups":63456,"usb":62087,"usps":63457,"ussunnah":62471,"vaadin":62472,"viacoin":62007,"viadeo-square":62122,"viadeo":62121,"viber":62473,"vimeo-square":61844,"vimeo-v":62077,"vimeo":62474,"vine":61898,"vk":61833,"vnv":62475,"vuejs":62495,"watchman-monitoring":57479,"waze":63551,"weebly":62924,"weibo":61834,"weixin":61911,"whatsapp-square":62476,"whatsapp":62002,"whmcs":62477,"wikipedia-w":62054,"windows":61818,"wix":62927,"wizards-of-the-coast":63280,"wodu":57480,"wolf-pack-battalion":62740,"wordpress-simple":62481,"wordpress":61850,"wpbeginner":62103,"wpexplorer":62174,"wpforms":62104,"wpressr":62436,"xbox":62482,"xing-square":61801,"xing":61800,"y-combinator":62011,"yahoo":61854,"yammer":63552,"yandex-international":62484,"yandex":62483,"yarn":63459,"yelp":61929,"yoast":62129,"youtube-square":62513,"youtube":61799,"zhihu":63039} ================================================ FILE: packages/fontawesome5/glyphmaps/FontAwesome5_meta.json ================================================ { "brand": [ "500px", "accessible-icon", "accusoft", "acquisitions-incorporated", "adn", "adversal", "affiliatetheme", "airbnb", "algolia", "alipay", "amazon-pay", "amazon", "amilia", "android", "angellist", "angrycreative", "angular", "app-store-ios", "app-store", "apper", "apple-pay", "apple", "artstation", "asymmetrik", "atlassian", "audible", "autoprefixer", "avianex", "aviato", "aws", "bandcamp", "battle-net", "behance-square", "behance", "bimobject", "bitbucket", "bitcoin", "bity", "black-tie", "blackberry", "blogger-b", "blogger", "bluetooth-b", "bluetooth", "bootstrap", "btc", "buffer", "buromobelexperte", "buy-n-large", "buysellads", "canadian-maple-leaf", "cc-amazon-pay", "cc-amex", "cc-apple-pay", "cc-diners-club", "cc-discover", "cc-jcb", "cc-mastercard", "cc-paypal", "cc-stripe", "cc-visa", "centercode", "centos", "chrome", "chromecast", "cloudflare", "cloudscale", "cloudsmith", "cloudversify", "codepen", "codiepie", "confluence", "connectdevelop", "contao", "cotton-bureau", "cpanel", "creative-commons-by", "creative-commons-nc-eu", "creative-commons-nc-jp", "creative-commons-nc", "creative-commons-nd", "creative-commons-pd-alt", "creative-commons-pd", "creative-commons-remix", "creative-commons-sa", "creative-commons-sampling-plus", "creative-commons-sampling", "creative-commons-share", "creative-commons-zero", "creative-commons", "critical-role", "css3-alt", "css3", "cuttlefish", "d-and-d-beyond", "d-and-d", "dailymotion", "dashcube", "deezer", "delicious", "deploydog", "deskpro", "dev", "deviantart", "dhl", "diaspora", "digg", "digital-ocean", "discord", "discourse", "dochub", "docker", "draft2digital", "dribbble-square", "dribbble", "dropbox", "drupal", "dyalog", "earlybirds", "ebay", "edge-legacy", "edge", "elementor", "ello", "ember", "empire", "envira", "erlang", "ethereum", "etsy", "evernote", "expeditedssl", "facebook-f", "facebook-messenger", "facebook-square", "facebook", "fantasy-flight-games", "fedex", "fedora", "figma", "firefox-browser", "firefox", "first-order-alt", "first-order", "firstdraft", "flickr", "flipboard", "fly", "font-awesome-alt", "font-awesome-flag", "font-awesome-logo-full", "font-awesome", "fonticons-fi", "fonticons", "fort-awesome-alt", "fort-awesome", "forumbee", "foursquare", "free-code-camp", "freebsd", "fulcrum", "galactic-republic", "galactic-senate", "get-pocket", "gg-circle", "gg", "git-alt", "git-square", "git", "github-alt", "github-square", "github", "gitkraken", "gitlab", "gitter", "glide-g", "glide", "gofore", "goodreads-g", "goodreads", "google-drive", "google-pay", "google-play", "google-plus-g", "google-plus-square", "google-plus", "google-wallet", "google", "gratipay", "grav", "gripfire", "grunt", "guilded", "gulp", "hacker-news-square", "hacker-news", "hackerrank", "hips", "hire-a-helper", "hive", "hooli", "hornbill", "hotjar", "houzz", "html5", "hubspot", "ideal", "imdb", "innosoft", "instagram-square", "instagram", "instalod", "intercom", "internet-explorer", "invision", "ioxhost", "itch-io", "itunes-note", "itunes", "java", "jedi-order", "jenkins", "jira", "joget", "joomla", "js-square", "js", "jsfiddle", "kaggle", "keybase", "keycdn", "kickstarter-k", "kickstarter", "korvue", "laravel", "lastfm-square", "lastfm", "leanpub", "less", "line", "linkedin-in", "linkedin", "linode", "linux", "lyft", "magento", "mailchimp", "mandalorian", "markdown", "mastodon", "maxcdn", "mdb", "medapps", "medium-m", "medium", "medrt", "meetup", "megaport", "mendeley", "microblog", "microsoft", "mix", "mixcloud", "mixer", "mizuni", "modx", "monero", "napster", "neos", "nimblr", "node-js", "node", "npm", "ns8", "nutritionix", "octopus-deploy", "odnoklassniki-square", "odnoklassniki", "old-republic", "opencart", "openid", "opera", "optin-monster", "orcid", "osi", "page4", "pagelines", "palfed", "patreon", "paypal", "penny-arcade", "perbyte", "periscope", "phabricator", "phoenix-framework", "phoenix-squadron", "php", "pied-piper-alt", "pied-piper-hat", "pied-piper-pp", "pied-piper-square", "pied-piper", "pinterest-p", "pinterest-square", "pinterest", "playstation", "product-hunt", "pushed", "python", "qq", "quinscape", "quora", "r-project", "raspberry-pi", "ravelry", "react", "reacteurope", "readme", "rebel", "red-river", "reddit-alien", "reddit-square", "reddit", "redhat", "renren", "replyd", "researchgate", "resolving", "rev", "rocketchat", "rockrms", "rust", "safari", "salesforce", "sass", "schlix", "scribd", "searchengin", "sellcast", "sellsy", "servicestack", "shirtsinbulk", "shopify", "shopware", "simplybuilt", "sistrix", "sith", "sketch", "skyatlas", "skype", "slack-hash", "slack", "slideshare", "snapchat-ghost", "snapchat-square", "snapchat", "soundcloud", "sourcetree", "speakap", "speaker-deck", "spotify", "squarespace", "stack-exchange", "stack-overflow", "stackpath", "staylinked", "steam-square", "steam-symbol", "steam", "sticker-mule", "strava", "stripe-s", "stripe", "studiovinari", "stumbleupon-circle", "stumbleupon", "superpowers", "supple", "suse", "swift", "symfony", "teamspeak", "telegram-plane", "telegram", "tencent-weibo", "the-red-yeti", "themeco", "themeisle", "think-peaks", "tiktok", "trade-federation", "trello", "tumblr-square", "tumblr", "twitch", "twitter-square", "twitter", "typo3", "uber", "ubuntu", "uikit", "umbraco", "uncharted", "uniregistry", "unity", "unsplash", "untappd", "ups", "usb", "usps", "ussunnah", "vaadin", "viacoin", "viadeo-square", "viadeo", "viber", "vimeo-square", "vimeo-v", "vimeo", "vine", "vk", "vnv", "vuejs", "watchman-monitoring", "waze", "weebly", "weibo", "weixin", "whatsapp-square", "whatsapp", "whmcs", "wikipedia-w", "windows", "wix", "wizards-of-the-coast", "wodu", "wolf-pack-battalion", "wordpress-simple", "wordpress", "wpbeginner", "wpexplorer", "wpforms", "wpressr", "xbox", "xing-square", "xing", "y-combinator", "yahoo", "yammer", "yandex-international", "yandex", "yarn", "yelp", "yoast", "youtube-square", "youtube", "zhihu" ], "regular": [ "address-book", "address-card", "angry", "arrow-alt-circle-down", "arrow-alt-circle-left", "arrow-alt-circle-right", "arrow-alt-circle-up", "bell-slash", "bell", "bookmark", "building", "calendar-alt", "calendar-check", "calendar-minus", "calendar-plus", "calendar-times", "calendar", "caret-square-down", "caret-square-left", "caret-square-right", "caret-square-up", "chart-bar", "check-circle", "check-square", "circle", "clipboard", "clock", "clone", "closed-captioning", "comment-alt", "comment-dots", "comment", "comments", "compass", "copy", "copyright", "credit-card", "dizzy", "dot-circle", "edit", "envelope-open", "envelope", "eye-slash", "eye", "file-alt", "file-archive", "file-audio", "file-code", "file-excel", "file-image", "file-pdf", "file-powerpoint", "file-video", "file-word", "file", "flag", "flushed", "folder-open", "folder", "font-awesome-logo-full", "frown-open", "frown", "futbol", "gem", "grimace", "grin-alt", "grin-beam-sweat", "grin-beam", "grin-hearts", "grin-squint-tears", "grin-squint", "grin-stars", "grin-tears", "grin-tongue-squint", "grin-tongue-wink", "grin-tongue", "grin-wink", "grin", "hand-lizard", "hand-paper", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-right", "hand-point-up", "hand-pointer", "hand-rock", "hand-scissors", "hand-spock", "handshake", "hdd", "heart", "hospital", "hourglass", "id-badge", "id-card", "image", "images", "keyboard", "kiss-beam", "kiss-wink-heart", "kiss", "laugh-beam", "laugh-squint", "laugh-wink", "laugh", "lemon", "life-ring", "lightbulb", "list-alt", "map", "meh-blank", "meh-rolling-eyes", "meh", "minus-square", "money-bill-alt", "moon", "newspaper", "object-group", "object-ungroup", "paper-plane", "pause-circle", "play-circle", "plus-square", "question-circle", "registered", "sad-cry", "sad-tear", "save", "share-square", "smile-beam", "smile-wink", "smile", "snowflake", "square", "star-half", "star", "sticky-note", "stop-circle", "sun", "surprise", "thumbs-down", "thumbs-up", "times-circle", "tired", "trash-alt", "user-circle", "user", "window-close", "window-maximize", "window-minimize", "window-restore" ], "solid": [ "ad", "address-book", "address-card", "adjust", "air-freshener", "align-center", "align-justify", "align-left", "align-right", "allergies", "ambulance", "american-sign-language-interpreting", "anchor", "angle-double-down", "angle-double-left", "angle-double-right", "angle-double-up", "angle-down", "angle-left", "angle-right", "angle-up", "angry", "ankh", "apple-alt", "archive", "archway", "arrow-alt-circle-down", "arrow-alt-circle-left", "arrow-alt-circle-right", "arrow-alt-circle-up", "arrow-circle-down", "arrow-circle-left", "arrow-circle-right", "arrow-circle-up", "arrow-down", "arrow-left", "arrow-right", "arrow-up", "arrows-alt-h", "arrows-alt-v", "arrows-alt", "assistive-listening-systems", "asterisk", "at", "atlas", "atom", "audio-description", "award", "baby-carriage", "baby", "backspace", "backward", "bacon", "bacteria", "bacterium", "bahai", "balance-scale-left", "balance-scale-right", "balance-scale", "ban", "band-aid", "barcode", "bars", "baseball-ball", "basketball-ball", "bath", "battery-empty", "battery-full", "battery-half", "battery-quarter", "battery-three-quarters", "bed", "beer", "bell-slash", "bell", "bezier-curve", "bible", "bicycle", "biking", "binoculars", "biohazard", "birthday-cake", "blender-phone", "blender", "blind", "blog", "bold", "bolt", "bomb", "bone", "bong", "book-dead", "book-medical", "book-open", "book-reader", "book", "bookmark", "border-all", "border-none", "border-style", "bowling-ball", "box-open", "box-tissue", "box", "boxes", "braille", "brain", "bread-slice", "briefcase-medical", "briefcase", "broadcast-tower", "broom", "brush", "bug", "building", "bullhorn", "bullseye", "burn", "bus-alt", "bus", "business-time", "calculator", "calendar-alt", "calendar-check", "calendar-day", "calendar-minus", "calendar-plus", "calendar-times", "calendar-week", "calendar", "camera-retro", "camera", "campground", "candy-cane", "cannabis", "capsules", "car-alt", "car-battery", "car-crash", "car-side", "car", "caravan", "caret-down", "caret-left", "caret-right", "caret-square-down", "caret-square-left", "caret-square-right", "caret-square-up", "caret-up", "carrot", "cart-arrow-down", "cart-plus", "cash-register", "cat", "certificate", "chair", "chalkboard-teacher", "chalkboard", "charging-station", "chart-area", "chart-bar", "chart-line", "chart-pie", "check-circle", "check-double", "check-square", "check", "cheese", "chess-bishop", "chess-board", "chess-king", "chess-knight", "chess-pawn", "chess-queen", "chess-rook", "chess", "chevron-circle-down", "chevron-circle-left", "chevron-circle-right", "chevron-circle-up", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "child", "church", "circle-notch", "circle", "city", "clinic-medical", "clipboard-check", "clipboard-list", "clipboard", "clock", "clone", "closed-captioning", "cloud-download-alt", "cloud-meatball", "cloud-moon-rain", "cloud-moon", "cloud-rain", "cloud-showers-heavy", "cloud-sun-rain", "cloud-sun", "cloud-upload-alt", "cloud", "cocktail", "code-branch", "code", "coffee", "cog", "cogs", "coins", "columns", "comment-alt", "comment-dollar", "comment-dots", "comment-medical", "comment-slash", "comment", "comments-dollar", "comments", "compact-disc", "compass", "compress-alt", "compress-arrows-alt", "compress", "concierge-bell", "cookie-bite", "cookie", "copy", "copyright", "couch", "credit-card", "crop-alt", "crop", "cross", "crosshairs", "crow", "crown", "crutch", "cube", "cubes", "cut", "database", "deaf", "democrat", "desktop", "dharmachakra", "diagnoses", "dice-d20", "dice-d6", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "digital-tachograph", "directions", "disease", "divide", "dizzy", "dna", "dog", "dollar-sign", "dolly-flatbed", "dolly", "donate", "door-closed", "door-open", "dot-circle", "dove", "download", "drafting-compass", "dragon", "draw-polygon", "drum-steelpan", "drum", "drumstick-bite", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "edit", "egg", "eject", "ellipsis-h", "ellipsis-v", "envelope-open-text", "envelope-open", "envelope-square", "envelope", "equals", "eraser", "ethernet", "euro-sign", "exchange-alt", "exclamation-circle", "exclamation-triangle", "exclamation", "expand-alt", "expand-arrows-alt", "expand", "external-link-alt", "external-link-square-alt", "eye-dropper", "eye-slash", "eye", "fan", "fast-backward", "fast-forward", "faucet", "fax", "feather-alt", "feather", "female", "fighter-jet", "file-alt", "file-archive", "file-audio", "file-code", "file-contract", "file-csv", "file-download", "file-excel", "file-export", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-medical-alt", "file-medical", "file-pdf", "file-powerpoint", "file-prescription", "file-signature", "file-upload", "file-video", "file-word", "file", "fill-drip", "fill", "film", "filter", "fingerprint", "fire-alt", "fire-extinguisher", "fire", "first-aid", "fish", "fist-raised", "flag-checkered", "flag-usa", "flag", "flask", "flushed", "folder-minus", "folder-open", "folder-plus", "folder", "font-awesome-logo-full", "font", "football-ball", "forward", "frog", "frown-open", "frown", "funnel-dollar", "futbol", "gamepad", "gas-pump", "gavel", "gem", "genderless", "ghost", "gift", "gifts", "glass-cheers", "glass-martini-alt", "glass-martini", "glass-whiskey", "glasses", "globe-africa", "globe-americas", "globe-asia", "globe-europe", "globe", "golf-ball", "gopuram", "graduation-cap", "greater-than-equal", "greater-than", "grimace", "grin-alt", "grin-beam-sweat", "grin-beam", "grin-hearts", "grin-squint-tears", "grin-squint", "grin-stars", "grin-tears", "grin-tongue-squint", "grin-tongue-wink", "grin-tongue", "grin-wink", "grin", "grip-horizontal", "grip-lines-vertical", "grip-lines", "grip-vertical", "guitar", "h-square", "hamburger", "hammer", "hamsa", "hand-holding-heart", "hand-holding-medical", "hand-holding-usd", "hand-holding-water", "hand-holding", "hand-lizard", "hand-middle-finger", "hand-paper", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-right", "hand-point-up", "hand-pointer", "hand-rock", "hand-scissors", "hand-sparkles", "hand-spock", "hands-helping", "hands-wash", "hands", "handshake-alt-slash", "handshake-slash", "handshake", "hanukiah", "hard-hat", "hashtag", "hat-cowboy-side", "hat-cowboy", "hat-wizard", "hdd", "head-side-cough-slash", "head-side-cough", "head-side-mask", "head-side-virus", "heading", "headphones-alt", "headphones", "headset", "heart-broken", "heart", "heartbeat", "helicopter", "highlighter", "hiking", "hippo", "history", "hockey-puck", "holly-berry", "home", "horse-head", "horse", "hospital-alt", "hospital-symbol", "hospital-user", "hospital", "hot-tub", "hotdog", "hotel", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-damage", "house-user", "hryvnia", "i-cursor", "ice-cream", "icicles", "icons", "id-badge", "id-card-alt", "id-card", "igloo", "image", "images", "inbox", "indent", "industry", "infinity", "info-circle", "info", "italic", "jedi", "joint", "journal-whills", "kaaba", "key", "keyboard", "khanda", "kiss-beam", "kiss-wink-heart", "kiss", "kiwi-bird", "landmark", "language", "laptop-code", "laptop-house", "laptop-medical", "laptop", "laugh-beam", "laugh-squint", "laugh-wink", "laugh", "layer-group", "leaf", "lemon", "less-than-equal", "less-than", "level-down-alt", "level-up-alt", "life-ring", "lightbulb", "link", "lira-sign", "list-alt", "list-ol", "list-ul", "list", "location-arrow", "lock-open", "lock", "long-arrow-alt-down", "long-arrow-alt-left", "long-arrow-alt-right", "long-arrow-alt-up", "low-vision", "luggage-cart", "lungs-virus", "lungs", "magic", "magnet", "mail-bulk", "male", "map-marked-alt", "map-marked", "map-marker-alt", "map-marker", "map-pin", "map-signs", "map", "marker", "mars-double", "mars-stroke-h", "mars-stroke-v", "mars-stroke", "mars", "mask", "medal", "medkit", "meh-blank", "meh-rolling-eyes", "meh", "memory", "menorah", "mercury", "meteor", "microchip", "microphone-alt-slash", "microphone-alt", "microphone-slash", "microphone", "microscope", "minus-circle", "minus-square", "minus", "mitten", "mobile-alt", "mobile", "money-bill-alt", "money-bill-wave-alt", "money-bill-wave", "money-bill", "money-check-alt", "money-check", "monument", "moon", "mortar-pestle", "mosque", "motorcycle", "mountain", "mouse-pointer", "mouse", "mug-hot", "music", "network-wired", "neuter", "newspaper", "not-equal", "notes-medical", "object-group", "object-ungroup", "oil-can", "om", "otter", "outdent", "pager", "paint-brush", "paint-roller", "palette", "pallet", "paper-plane", "paperclip", "parachute-box", "paragraph", "parking", "passport", "pastafarianism", "paste", "pause-circle", "pause", "paw", "peace", "pen-alt", "pen-fancy", "pen-nib", "pen-square", "pen", "pencil-alt", "pencil-ruler", "people-arrows", "people-carry", "pepper-hot", "percent", "percentage", "person-booth", "phone-alt", "phone-slash", "phone-square-alt", "phone-square", "phone-volume", "phone", "photo-video", "piggy-bank", "pills", "pizza-slice", "place-of-worship", "plane-arrival", "plane-departure", "plane-slash", "plane", "play-circle", "play", "plug", "plus-circle", "plus-square", "plus", "podcast", "poll-h", "poll", "poo-storm", "poo", "poop", "portrait", "pound-sign", "power-off", "pray", "praying-hands", "prescription-bottle-alt", "prescription-bottle", "prescription", "print", "procedures", "project-diagram", "pump-medical", "pump-soap", "puzzle-piece", "qrcode", "question-circle", "question", "quidditch", "quote-left", "quote-right", "quran", "radiation-alt", "radiation", "rainbow", "random", "receipt", "record-vinyl", "recycle", "redo-alt", "redo", "registered", "remove-format", "reply-all", "reply", "republican", "restroom", "retweet", "ribbon", "ring", "road", "robot", "rocket", "route", "rss-square", "rss", "ruble-sign", "ruler-combined", "ruler-horizontal", "ruler-vertical", "ruler", "running", "rupee-sign", "sad-cry", "sad-tear", "satellite-dish", "satellite", "save", "school", "screwdriver", "scroll", "sd-card", "search-dollar", "search-location", "search-minus", "search-plus", "search", "seedling", "server", "shapes", "share-alt-square", "share-alt", "share-square", "share", "shekel-sign", "shield-alt", "shield-virus", "ship", "shipping-fast", "shoe-prints", "shopping-bag", "shopping-basket", "shopping-cart", "shower", "shuttle-van", "sign-in-alt", "sign-language", "sign-out-alt", "sign", "signal", "signature", "sim-card", "sink", "sitemap", "skating", "skiing-nordic", "skiing", "skull-crossbones", "skull", "slash", "sleigh", "sliders-h", "smile-beam", "smile-wink", "smile", "smog", "smoking-ban", "smoking", "sms", "snowboarding", "snowflake", "snowman", "snowplow", "soap", "socks", "solar-panel", "sort-alpha-down-alt", "sort-alpha-down", "sort-alpha-up-alt", "sort-alpha-up", "sort-amount-down-alt", "sort-amount-down", "sort-amount-up-alt", "sort-amount-up", "sort-down", "sort-numeric-down-alt", "sort-numeric-down", "sort-numeric-up-alt", "sort-numeric-up", "sort-up", "sort", "spa", "space-shuttle", "spell-check", "spider", "spinner", "splotch", "spray-can", "square-full", "square-root-alt", "square", "stamp", "star-and-crescent", "star-half-alt", "star-half", "star-of-david", "star-of-life", "star", "step-backward", "step-forward", "stethoscope", "sticky-note", "stop-circle", "stop", "stopwatch-20", "stopwatch", "store-alt-slash", "store-alt", "store-slash", "store", "stream", "street-view", "strikethrough", "stroopwafel", "subscript", "subway", "suitcase-rolling", "suitcase", "sun", "superscript", "surprise", "swatchbook", "swimmer", "swimming-pool", "synagogue", "sync-alt", "sync", "syringe", "table-tennis", "table", "tablet-alt", "tablet", "tablets", "tachometer-alt", "tag", "tags", "tape", "tasks", "taxi", "teeth-open", "teeth", "temperature-high", "temperature-low", "tenge", "terminal", "text-height", "text-width", "th-large", "th-list", "th", "theater-masks", "thermometer-empty", "thermometer-full", "thermometer-half", "thermometer-quarter", "thermometer-three-quarters", "thermometer", "thumbs-down", "thumbs-up", "thumbtack", "ticket-alt", "times-circle", "times", "tint-slash", "tint", "tired", "toggle-off", "toggle-on", "toilet-paper-slash", "toilet-paper", "toilet", "toolbox", "tools", "tooth", "torah", "torii-gate", "tractor", "trademark", "traffic-light", "trailer", "train", "tram", "transgender-alt", "transgender", "trash-alt", "trash-restore-alt", "trash-restore", "trash", "tree", "trophy", "truck-loading", "truck-monster", "truck-moving", "truck-pickup", "truck", "tshirt", "tty", "tv", "umbrella-beach", "umbrella", "underline", "undo-alt", "undo", "universal-access", "university", "unlink", "unlock-alt", "unlock", "upload", "user-alt-slash", "user-alt", "user-astronaut", "user-check", "user-circle", "user-clock", "user-cog", "user-edit", "user-friends", "user-graduate", "user-injured", "user-lock", "user-md", "user-minus", "user-ninja", "user-nurse", "user-plus", "user-secret", "user-shield", "user-slash", "user-tag", "user-tie", "user-times", "user", "users-cog", "users-slash", "users", "utensil-spoon", "utensils", "vector-square", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial", "vials", "video-slash", "video", "vihara", "virus-slash", "virus", "viruses", "voicemail", "volleyball-ball", "volume-down", "volume-mute", "volume-off", "volume-up", "vote-yea", "vr-cardboard", "walking", "wallet", "warehouse", "water", "wave-square", "weight-hanging", "weight", "wheelchair", "wifi", "wind", "window-close", "window-maximize", "window-minimize", "window-restore", "wine-bottle", "wine-glass-alt", "wine-glass", "won-sign", "wrench", "x-ray", "yen-sign", "yin-yang" ] } ================================================ FILE: packages/fontawesome5/glyphmaps/FontAwesome5_regular.json ================================================ {"address-book":62137,"address-card":62139,"angry":62806,"arrow-alt-circle-down":62296,"arrow-alt-circle-left":62297,"arrow-alt-circle-right":62298,"arrow-alt-circle-up":62299,"bell-slash":61942,"bell":61683,"bookmark":61486,"building":61869,"calendar-alt":61555,"calendar-check":62068,"calendar-minus":62066,"calendar-plus":62065,"calendar-times":62067,"calendar":61747,"caret-square-down":61776,"caret-square-left":61841,"caret-square-right":61778,"caret-square-up":61777,"chart-bar":61568,"check-circle":61528,"check-square":61770,"circle":61713,"clipboard":62248,"clock":61463,"clone":62029,"closed-captioning":61962,"comment-alt":62074,"comment-dots":62637,"comment":61557,"comments":61574,"compass":61774,"copy":61637,"copyright":61945,"credit-card":61597,"dizzy":62823,"dot-circle":61842,"edit":61508,"envelope-open":62134,"envelope":61664,"eye-slash":61552,"eye":61550,"file-alt":61788,"file-archive":61894,"file-audio":61895,"file-code":61897,"file-excel":61891,"file-image":61893,"file-pdf":61889,"file-powerpoint":61892,"file-video":61896,"file-word":61890,"file":61787,"flag":61476,"flushed":62841,"folder-open":61564,"folder":61563,"font-awesome-logo-full":62694,"frown-open":62842,"frown":61721,"futbol":61923,"gem":62373,"grimace":62847,"grin-alt":62849,"grin-beam-sweat":62851,"grin-beam":62850,"grin-hearts":62852,"grin-squint-tears":62854,"grin-squint":62853,"grin-stars":62855,"grin-tears":62856,"grin-tongue-squint":62858,"grin-tongue-wink":62859,"grin-tongue":62857,"grin-wink":62860,"grin":62848,"hand-lizard":62040,"hand-paper":62038,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-rock":62037,"hand-scissors":62039,"hand-spock":62041,"handshake":62133,"hdd":61600,"heart":61444,"hospital":61688,"hourglass":62036,"id-badge":62145,"id-card":62146,"image":61502,"images":62210,"keyboard":61724,"kiss-beam":62871,"kiss-wink-heart":62872,"kiss":62870,"laugh-beam":62874,"laugh-squint":62875,"laugh-wink":62876,"laugh":62873,"lemon":61588,"life-ring":61901,"lightbulb":61675,"list-alt":61474,"map":62073,"meh-blank":62884,"meh-rolling-eyes":62885,"meh":61722,"minus-square":61766,"money-bill-alt":62417,"moon":61830,"newspaper":61930,"object-group":62023,"object-ungroup":62024,"paper-plane":61912,"pause-circle":62091,"play-circle":61764,"plus-square":61694,"question-circle":61529,"registered":62045,"sad-cry":62899,"sad-tear":62900,"save":61639,"share-square":61773,"smile-beam":62904,"smile-wink":62682,"smile":61720,"snowflake":62172,"square":61640,"star-half":61577,"star":61445,"sticky-note":62025,"stop-circle":62093,"sun":61829,"surprise":62914,"thumbs-down":61797,"thumbs-up":61796,"times-circle":61527,"tired":62920,"trash-alt":62189,"user-circle":62141,"user":61447,"window-close":62480,"window-maximize":62160,"window-minimize":62161,"window-restore":62162} ================================================ FILE: packages/fontawesome5/glyphmaps/FontAwesome5_solid.json ================================================ {"ad":63041,"address-book":62137,"address-card":62139,"adjust":61506,"air-freshener":62928,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"allergies":62561,"ambulance":61689,"american-sign-language-interpreting":62115,"anchor":61757,"angle-double-down":61699,"angle-double-left":61696,"angle-double-right":61697,"angle-double-up":61698,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angry":62806,"ankh":63044,"apple-alt":62929,"archive":61831,"archway":62807,"arrow-alt-circle-down":62296,"arrow-alt-circle-left":62297,"arrow-alt-circle-right":62298,"arrow-alt-circle-up":62299,"arrow-circle-down":61611,"arrow-circle-left":61608,"arrow-circle-right":61609,"arrow-circle-up":61610,"arrow-down":61539,"arrow-left":61536,"arrow-right":61537,"arrow-up":61538,"arrows-alt-h":62263,"arrows-alt-v":62264,"arrows-alt":61618,"assistive-listening-systems":62114,"asterisk":61545,"at":61946,"atlas":62808,"atom":62930,"audio-description":62110,"award":62809,"baby-carriage":63357,"baby":63356,"backspace":62810,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"bahai":63078,"balance-scale-left":62741,"balance-scale-right":62742,"balance-scale":62030,"ban":61534,"band-aid":62562,"barcode":61482,"bars":61641,"baseball-ball":62515,"basketball-ball":62516,"bath":62157,"battery-empty":62020,"battery-full":62016,"battery-half":62018,"battery-quarter":62019,"battery-three-quarters":62017,"bed":62006,"beer":61692,"bell-slash":61942,"bell":61683,"bezier-curve":62811,"bible":63047,"bicycle":61958,"biking":63562,"binoculars":61925,"biohazard":63360,"birthday-cake":61949,"blender-phone":63158,"blender":62743,"blind":62109,"blog":63361,"bold":61490,"bolt":61671,"bomb":61922,"bone":62935,"bong":62812,"book-dead":63159,"book-medical":63462,"book-open":62744,"book-reader":62938,"book":61485,"bookmark":61486,"border-all":63564,"border-none":63568,"border-style":63571,"bowling-ball":62518,"box-open":62622,"box-tissue":57435,"box":62566,"boxes":62568,"braille":62113,"brain":62940,"bread-slice":63468,"briefcase-medical":62569,"briefcase":61617,"broadcast-tower":62745,"broom":62746,"brush":62813,"bug":61832,"building":61869,"bullhorn":61601,"bullseye":61760,"burn":62570,"bus-alt":62814,"bus":61959,"business-time":63050,"calculator":61932,"calendar-alt":61555,"calendar-check":62068,"calendar-day":63363,"calendar-minus":62066,"calendar-plus":62065,"calendar-times":62067,"calendar-week":63364,"calendar":61747,"camera-retro":61571,"camera":61488,"campground":63163,"candy-cane":63366,"cannabis":62815,"capsules":62571,"car-alt":62942,"car-battery":62943,"car-crash":62945,"car-side":62948,"car":61881,"caravan":63743,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-square-down":61776,"caret-square-left":61841,"caret-square-right":61778,"caret-square-up":61777,"caret-up":61656,"carrot":63367,"cart-arrow-down":61976,"cart-plus":61975,"cash-register":63368,"cat":63166,"certificate":61603,"chair":63168,"chalkboard-teacher":62748,"chalkboard":62747,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-line":61953,"chart-pie":61952,"check-circle":61528,"check-double":62816,"check-square":61770,"check":61452,"cheese":63471,"chess-bishop":62522,"chess-board":62524,"chess-king":62527,"chess-knight":62529,"chess-pawn":62531,"chess-queen":62533,"chess-rook":62535,"chess":62521,"chevron-circle-down":61754,"chevron-circle-left":61751,"chevron-circle-right":61752,"chevron-circle-up":61753,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"child":61870,"church":62749,"circle-notch":61902,"circle":61713,"city":63055,"clinic-medical":63474,"clipboard-check":62572,"clipboard-list":62573,"clipboard":62248,"clock":61463,"clone":62029,"closed-captioning":61962,"cloud-download-alt":62337,"cloud-meatball":63291,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-rain":63293,"cloud-showers-heavy":63296,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-upload-alt":62338,"cloud":61634,"cocktail":62817,"code-branch":61734,"code":61729,"coffee":61684,"cog":61459,"cogs":61573,"coins":62750,"columns":61659,"comment-alt":62074,"comment-dollar":63057,"comment-dots":62637,"comment-medical":63477,"comment-slash":62643,"comment":61557,"comments-dollar":63059,"comments":61574,"compact-disc":62751,"compass":61774,"compress-alt":62498,"compress-arrows-alt":63372,"compress":61542,"concierge-bell":62818,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"couch":62648,"credit-card":61597,"crop-alt":62821,"crop":61733,"cross":63060,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"cube":61874,"cubes":61875,"cut":61636,"database":61888,"deaf":62116,"democrat":63303,"desktop":61704,"dharmachakra":63061,"diagnoses":62576,"dice-d20":63183,"dice-d6":63185,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"digital-tachograph":62822,"directions":62955,"disease":63482,"divide":62761,"dizzy":62823,"dna":62577,"dog":63187,"dollar-sign":61781,"dolly-flatbed":62580,"dolly":62578,"donate":62649,"door-closed":62762,"door-open":62763,"dot-circle":61842,"dove":62650,"download":61465,"drafting-compass":62824,"dragon":63189,"draw-polygon":62958,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"edit":61508,"egg":63483,"eject":61522,"ellipsis-h":61761,"ellipsis-v":61762,"envelope-open-text":63064,"envelope-open":62134,"envelope-square":61849,"envelope":61664,"equals":62764,"eraser":61741,"ethernet":63382,"euro-sign":61779,"exchange-alt":62306,"exclamation-circle":61546,"exclamation-triangle":61553,"exclamation":61738,"expand-alt":62500,"expand-arrows-alt":62238,"expand":61541,"external-link-alt":62301,"external-link-square-alt":62304,"eye-dropper":61947,"eye-slash":61552,"eye":61550,"fan":63587,"fast-backward":61513,"fast-forward":61520,"faucet":57349,"fax":61868,"feather-alt":62827,"feather":62765,"female":61826,"fighter-jet":61691,"file-alt":61788,"file-archive":61894,"file-audio":61895,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-download":62829,"file-excel":61891,"file-export":62830,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-medical-alt":62584,"file-medical":62583,"file-pdf":61889,"file-powerpoint":61892,"file-prescription":62834,"file-signature":62835,"file-upload":62836,"file-video":61896,"file-word":61890,"file":61787,"fill-drip":62838,"fill":62837,"film":61448,"filter":61616,"fingerprint":62839,"fire-alt":63460,"fire-extinguisher":61748,"fire":61549,"first-aid":62585,"fish":62840,"fist-raised":63198,"flag-checkered":61726,"flag-usa":63309,"flag":61476,"flask":61635,"flushed":62841,"folder-minus":63069,"folder-open":61564,"folder-plus":63070,"folder":61563,"font-awesome-logo-full":62694,"font":61489,"football-ball":62542,"forward":61518,"frog":62766,"frown-open":62842,"frown":61721,"funnel-dollar":63074,"futbol":61923,"gamepad":61723,"gas-pump":62767,"gavel":61667,"gem":62373,"genderless":61997,"ghost":63202,"gift":61547,"gifts":63388,"glass-cheers":63391,"glass-martini-alt":62843,"glass-martini":61440,"glass-whiskey":63392,"glasses":62768,"globe-africa":62844,"globe-americas":62845,"globe-asia":62846,"globe-europe":63394,"globe":61612,"golf-ball":62544,"gopuram":63076,"graduation-cap":61853,"greater-than-equal":62770,"greater-than":62769,"grimace":62847,"grin-alt":62849,"grin-beam-sweat":62851,"grin-beam":62850,"grin-hearts":62852,"grin-squint-tears":62854,"grin-squint":62853,"grin-stars":62855,"grin-tears":62856,"grin-tongue-squint":62858,"grin-tongue-wink":62859,"grin-tongue":62857,"grin-wink":62860,"grin":62848,"grip-horizontal":62861,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"guitar":63398,"h-square":61693,"hamburger":63493,"hammer":63203,"hamsa":63077,"hand-holding-heart":62654,"hand-holding-medical":57436,"hand-holding-usd":62656,"hand-holding-water":62657,"hand-holding":62653,"hand-lizard":62040,"hand-middle-finger":63494,"hand-paper":62038,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-rock":62037,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hands-helping":62660,"hands-wash":57438,"hands":62658,"handshake-alt-slash":57439,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-hat":63495,"hashtag":62098,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-wizard":63208,"hdd":61600,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-mask":57443,"head-side-virus":57444,"heading":61916,"headphones-alt":62863,"headphones":61477,"headset":62864,"heart-broken":63401,"heart":61444,"heartbeat":61982,"helicopter":62771,"highlighter":62865,"hiking":63212,"hippo":63213,"history":61914,"hockey-puck":62547,"holly-berry":63402,"home":61461,"horse-head":63403,"horse":63216,"hospital-alt":62589,"hospital-symbol":62590,"hospital-user":63501,"hospital":61688,"hot-tub":62867,"hotdog":63503,"hotel":62868,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-damage":63217,"house-user":57445,"hryvnia":63218,"i-cursor":62022,"ice-cream":63504,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-alt":62591,"id-card":62146,"igloo":63406,"image":61502,"images":62210,"inbox":61468,"indent":61500,"industry":62069,"infinity":62772,"info-circle":61530,"info":61737,"italic":61491,"jedi":63081,"joint":62869,"journal-whills":63082,"kaaba":63083,"key":61572,"keyboard":61724,"khanda":63085,"kiss-beam":62871,"kiss-wink-heart":62872,"kiss":62870,"kiwi-bird":62773,"landmark":63087,"language":61867,"laptop-code":62972,"laptop-house":57446,"laptop-medical":63506,"laptop":61705,"laugh-beam":62874,"laugh-squint":62875,"laugh-wink":62876,"laugh":62873,"layer-group":62973,"leaf":61548,"lemon":61588,"less-than-equal":62775,"less-than":62774,"level-down-alt":62398,"level-up-alt":62399,"life-ring":61901,"lightbulb":61675,"link":61633,"lira-sign":61845,"list-alt":61474,"list-ol":61643,"list-ul":61642,"list":61498,"location-arrow":61732,"lock-open":62401,"lock":61475,"long-arrow-alt-down":62217,"long-arrow-alt-left":62218,"long-arrow-alt-right":62219,"long-arrow-alt-up":62220,"low-vision":62120,"luggage-cart":62877,"lungs-virus":57447,"lungs":62980,"magic":61648,"magnet":61558,"mail-bulk":63092,"male":61827,"map-marked-alt":62880,"map-marked":62879,"map-marker-alt":62405,"map-marker":61505,"map-pin":62070,"map-signs":62071,"map":62073,"marker":62881,"mars-double":61991,"mars-stroke-h":61995,"mars-stroke-v":61994,"mars-stroke":61993,"mars":61986,"mask":63226,"medal":62882,"medkit":61690,"meh-blank":62884,"meh-rolling-eyes":62885,"meh":61722,"memory":62776,"menorah":63094,"mercury":61987,"meteor":63315,"microchip":62171,"microphone-alt-slash":62777,"microphone-alt":62409,"microphone-slash":61745,"microphone":61744,"microscope":62992,"minus-circle":61526,"minus-square":61766,"minus":61544,"mitten":63413,"mobile-alt":62413,"mobile":61707,"money-bill-alt":62417,"money-bill-wave-alt":62779,"money-bill-wave":62778,"money-bill":61654,"money-check-alt":62781,"money-check":62780,"monument":62886,"moon":61830,"mortar-pestle":62887,"mosque":63096,"motorcycle":61980,"mountain":63228,"mouse-pointer":62021,"mouse":63692,"mug-hot":63414,"music":61441,"network-wired":63231,"neuter":61996,"newspaper":61930,"not-equal":62782,"notes-medical":62593,"object-group":62023,"object-ungroup":62024,"oil-can":62995,"om":63097,"otter":63232,"outdent":61499,"pager":63509,"paint-brush":61948,"paint-roller":62890,"palette":62783,"pallet":62594,"paper-plane":61912,"paperclip":61638,"parachute-box":62669,"paragraph":61917,"parking":62784,"passport":62891,"pastafarianism":63099,"paste":61674,"pause-circle":62091,"pause":61516,"paw":61872,"peace":63100,"pen-alt":62213,"pen-fancy":62892,"pen-nib":62893,"pen-square":61771,"pen":62212,"pencil-alt":62211,"pencil-ruler":62894,"people-arrows":57448,"people-carry":62670,"pepper-hot":63510,"percent":62101,"percentage":62785,"person-booth":63318,"phone-alt":63609,"phone-slash":62429,"phone-square-alt":63611,"phone-square":61592,"phone-volume":62112,"phone":61589,"photo-video":63612,"piggy-bank":62675,"pills":62596,"pizza-slice":63512,"place-of-worship":63103,"plane-arrival":62895,"plane-departure":62896,"plane-slash":57449,"plane":61554,"play-circle":61764,"play":61515,"plug":61926,"plus-circle":61525,"plus-square":61694,"plus":61543,"podcast":62158,"poll-h":63106,"poll":63105,"poo-storm":63322,"poo":62206,"poop":63001,"portrait":62432,"pound-sign":61780,"power-off":61457,"pray":63107,"praying-hands":63108,"prescription-bottle-alt":62598,"prescription-bottle":62597,"prescription":62897,"print":61487,"procedures":62599,"project-diagram":62786,"pump-medical":57450,"pump-soap":57451,"puzzle-piece":61742,"qrcode":61481,"question-circle":61529,"question":61736,"quidditch":62552,"quote-left":61709,"quote-right":61710,"quran":63111,"radiation-alt":63418,"radiation":63417,"rainbow":63323,"random":61556,"receipt":62787,"record-vinyl":63705,"recycle":61880,"redo-alt":62201,"redo":61470,"registered":62045,"remove-format":63613,"reply-all":61730,"reply":62437,"republican":63326,"restroom":63421,"retweet":61561,"ribbon":62678,"ring":63243,"road":61464,"robot":62788,"rocket":61749,"route":62679,"rss-square":61763,"rss":61598,"ruble-sign":61784,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-vertical":62792,"ruler":62789,"running":63244,"rupee-sign":61782,"sad-cry":62899,"sad-tear":62900,"satellite-dish":63424,"satellite":63423,"save":61639,"school":62793,"screwdriver":62794,"scroll":63246,"sd-card":63426,"search-dollar":63112,"search-location":63113,"search-minus":61456,"search-plus":61454,"search":61442,"seedling":62680,"server":62003,"shapes":63007,"share-alt-square":61921,"share-alt":61920,"share-square":61773,"share":61540,"shekel-sign":61963,"shield-alt":62445,"shield-virus":57452,"ship":61978,"shipping-fast":62603,"shoe-prints":62795,"shopping-bag":62096,"shopping-basket":62097,"shopping-cart":61562,"shower":62156,"shuttle-van":62902,"sign-in-alt":62198,"sign-language":62119,"sign-out-alt":62197,"sign":62681,"signal":61458,"signature":62903,"sim-card":63428,"sink":57453,"sitemap":61672,"skating":63429,"skiing-nordic":63434,"skiing":63433,"skull-crossbones":63252,"skull":62796,"slash":63253,"sleigh":63436,"sliders-h":61918,"smile-beam":62904,"smile-wink":62682,"smile":61720,"smog":63327,"smoking-ban":62797,"smoking":62605,"sms":63437,"snowboarding":63438,"snowflake":62172,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"solar-panel":62906,"sort-alpha-down-alt":63617,"sort-alpha-down":61789,"sort-alpha-up-alt":63618,"sort-alpha-up":61790,"sort-amount-down-alt":63620,"sort-amount-down":61792,"sort-amount-up-alt":63621,"sort-amount-up":61793,"sort-down":61661,"sort-numeric-down-alt":63622,"sort-numeric-down":61794,"sort-numeric-up-alt":63623,"sort-numeric-up":61795,"sort-up":61662,"sort":61660,"spa":62907,"space-shuttle":61847,"spell-check":63633,"spider":63255,"spinner":61712,"splotch":62908,"spray-can":62909,"square-full":62556,"square-root-alt":63128,"square":61640,"stamp":62911,"star-and-crescent":63129,"star-half-alt":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star":61445,"step-backward":61512,"step-forward":61521,"stethoscope":61681,"sticky-note":62025,"stop-circle":62093,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-alt-slash":57456,"store-alt":62799,"store-slash":57457,"store":62798,"stream":62800,"street-view":61981,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subway":62009,"suitcase-rolling":62913,"suitcase":61682,"sun":61829,"superscript":61739,"surprise":62914,"swatchbook":62915,"swimmer":62916,"swimming-pool":62917,"synagogue":63131,"sync-alt":62193,"sync":61473,"syringe":62606,"table-tennis":62557,"table":61646,"tablet-alt":62458,"tablet":61706,"tablets":62608,"tachometer-alt":62461,"tag":61483,"tags":61484,"tape":62683,"tasks":61614,"taxi":61882,"teeth-open":63023,"teeth":63022,"temperature-high":63337,"temperature-low":63339,"tenge":63447,"terminal":61728,"text-height":61492,"text-width":61493,"th-large":61449,"th-list":61451,"th":61450,"theater-masks":63024,"thermometer-empty":62155,"thermometer-full":62151,"thermometer-half":62153,"thermometer-quarter":62154,"thermometer-three-quarters":62152,"thermometer":62609,"thumbs-down":61797,"thumbs-up":61796,"thumbtack":61581,"ticket-alt":62463,"times-circle":61527,"times":61453,"tint-slash":62919,"tint":61507,"tired":62920,"toggle-off":61956,"toggle-on":61957,"toilet-paper-slash":57458,"toilet-paper":63262,"toilet":63448,"toolbox":62802,"tools":63449,"tooth":62921,"torah":63136,"torii-gate":63137,"tractor":63266,"trademark":62044,"traffic-light":63031,"trailer":57409,"train":62008,"tram":63450,"transgender-alt":61989,"transgender":61988,"trash-alt":62189,"trash-restore-alt":63530,"trash-restore":63529,"trash":61944,"tree":61883,"trophy":61585,"truck-loading":62686,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck":61649,"tshirt":62803,"tty":61924,"tv":62060,"umbrella-beach":62922,"umbrella":61673,"underline":61645,"undo-alt":62186,"undo":61666,"universal-access":62106,"university":61852,"unlink":61735,"unlock-alt":61758,"unlock":61596,"upload":61587,"user-alt-slash":62714,"user-alt":62470,"user-astronaut":62715,"user-check":62716,"user-circle":62141,"user-clock":62717,"user-cog":62718,"user-edit":62719,"user-friends":62720,"user-graduate":62721,"user-injured":63272,"user-lock":62722,"user-md":61680,"user-minus":62723,"user-ninja":62724,"user-nurse":63535,"user-plus":62004,"user-secret":61979,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie":62728,"user-times":62005,"user":61447,"users-cog":62729,"users-slash":57459,"users":61632,"utensil-spoon":62181,"utensils":62183,"vector-square":62923,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial":62610,"vials":62611,"video-slash":62690,"video":61501,"vihara":63143,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volleyball-ball":62559,"volume-down":61479,"volume-mute":63145,"volume-off":61478,"volume-up":61480,"vote-yea":63346,"vr-cardboard":63273,"walking":62804,"wallet":62805,"warehouse":62612,"water":63347,"wave-square":63550,"weight-hanging":62925,"weight":62614,"wheelchair":61843,"wifi":61931,"wind":63278,"window-close":62480,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"wine-bottle":63279,"wine-glass-alt":62926,"wine-glass":62691,"won-sign":61785,"wrench":61613,"x-ray":62615,"yen-sign":61783,"yin-yang":63149} ================================================ FILE: packages/fontawesome5/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome5", "version": "12.4.0", "description": "Fontawesome5 font for react native vector icons", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome5" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome5" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "@fortawesome/fontawesome-free": "5.15.4" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome5/react-native-vector-icons-fontawesome5.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome5' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/fontawesome5/src/index.tsx ================================================ /* eslint-disable react/jsx-pascal-case, no-console */ /** * This is a generated file. If you modify it manually, your changes will be lost! * Instead, modify the template in `fontawesome-common/generator`. * * FontAwesome5 icon set component. * Usage: */ import type { ComponentProps } from 'react'; import { Platform, type TextStyle } from 'react-native'; import { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common'; import brandGM from '../glyphmaps/FontAwesome5_brand.json'; import regularGM from '../glyphmaps/FontAwesome5_regular.json'; import solidGM from '../glyphmaps/FontAwesome5_solid.json'; import metadata from '../glyphmaps/FontAwesome5_meta.json'; const glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph); const fontStyle = (fontWeight: TextStyle['fontWeight']) => Platform.select({ ios: { fontWeight, }, default: {}, }); // biome-ignore format: We want these to be consistent and we are fine with single for all const RegularIcon = createIconSet(regularGM, { postScriptName: 'FontAwesome5Free-Regular', fontFileName: 'FontAwesome5_Regular.ttf', fontSource: require('../fonts/FontAwesome5_Regular.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require fontStyle: fontStyle('400') }); export type FontAwesome5RegularIconName = keyof typeof regularGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SolidIcon = createIconSet(solidGM, { postScriptName: 'FontAwesome5Free-Solid', fontFileName: 'FontAwesome5_Solid.ttf', fontSource: require('../fonts/FontAwesome5_Solid.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require fontStyle: fontStyle('900') }); export type FontAwesome5SolidIconName = keyof typeof solidGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const BrandIcon = createIconSet(brandGM, { postScriptName: 'FontAwesome5Brands-Regular', fontFileName: 'FontAwesome5_Brands.ttf', fontSource: require('../fonts/FontAwesome5_Brands.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require fontStyle: fontStyle('400') }); export type FontAwesome5BrandIconName = keyof typeof brandGM; type Props = | ({ iconStyle: 'regular' } & ComponentProps) | ({ iconStyle: 'solid' } & ComponentProps) | ({ iconStyle: 'brand' } & ComponentProps) | ({ iconStyle?: never } & ComponentProps); export const FontAwesome5 = (props: Props) => { const { iconStyle, name } = props; if (!iconStyle) { if (!glyphValidator(name, 'regular')) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome5`); } return ; } if (!glyphValidator(name, iconStyle)) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome5`); return )} />; } switch (iconStyle) { case 'brand': return ; case 'regular': return ; case 'solid': return ; default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`); return )} />; } }; type GetImageSourceFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSource']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSource']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSource']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color); case 'regular': return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`); return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); } }; FontAwesome5.getImageSource = getImageSource; type GetImageSourceSyncFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color); case 'regular': return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`); return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); } }; FontAwesome5.getImageSourceSync = getImageSourceSync; export type FontAwesome5IconName = ComponentProps['name']; /** @alias */ export default FontAwesome5; ================================================ FILE: packages/fontawesome5/src/static.tsx ================================================ /* eslint-disable react/jsx-pascal-case, no-console */ /** * This is a generated file. If you modify it manually, your changes will be lost! * Instead, modify the template in `fontawesome-common/generator`. * * FontAwesome5 icon set component. * Usage: */ import type { ComponentProps } from 'react'; import { Platform, type TextStyle } from 'react-native'; import { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common'; import brandGM from '../glyphmaps/FontAwesome5_brand.json'; import regularGM from '../glyphmaps/FontAwesome5_regular.json'; import solidGM from '../glyphmaps/FontAwesome5_solid.json'; import metadata from '../glyphmaps/FontAwesome5_meta.json'; const glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph); const fontStyle = (fontWeight: TextStyle['fontWeight']) => Platform.select({ ios: { fontWeight, }, default: {}, }); // biome-ignore format: We want these to be consistent and we are fine with single for all const RegularIcon = createIconSet(regularGM, { postScriptName: 'FontAwesome5Free-Regular', fontFileName: 'FontAwesome5_Regular.ttf', fontStyle: fontStyle('400') }); export type FontAwesome5RegularIconName = keyof typeof regularGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SolidIcon = createIconSet(solidGM, { postScriptName: 'FontAwesome5Free-Solid', fontFileName: 'FontAwesome5_Solid.ttf', fontStyle: fontStyle('900') }); export type FontAwesome5SolidIconName = keyof typeof solidGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const BrandIcon = createIconSet(brandGM, { postScriptName: 'FontAwesome5Brands-Regular', fontFileName: 'FontAwesome5_Brands.ttf', fontStyle: fontStyle('400') }); export type FontAwesome5BrandIconName = keyof typeof brandGM; type Props = | ({ iconStyle: 'regular' } & ComponentProps) | ({ iconStyle: 'solid' } & ComponentProps) | ({ iconStyle: 'brand' } & ComponentProps) | ({ iconStyle?: never } & ComponentProps); export const FontAwesome5 = (props: Props) => { const { iconStyle, name } = props; if (!iconStyle) { if (!glyphValidator(name, 'regular')) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome5`); } return ; } if (!glyphValidator(name, iconStyle)) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome5`); return )} />; } switch (iconStyle) { case 'brand': return ; case 'regular': return ; case 'solid': return ; default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`); return )} />; } }; type GetImageSourceFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSource']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSource']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSource']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color); case 'regular': return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`); return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); } }; FontAwesome5.getImageSource = getImageSource; type GetImageSourceSyncFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color); case 'regular': return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`); return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); } }; FontAwesome5.getImageSourceSync = getImageSourceSync; export type FontAwesome5IconName = ComponentProps['name']; /** @alias */ export default FontAwesome5; ================================================ FILE: packages/fontawesome5/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome5/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome5-pro/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome5-pro", "className": "FontAwesome5Pro", "commonPackage": "fontawesome-common/fontawesome5-pro", "customSrc": "../../../../fontawesome-common/generators/app/templates/src/index.tsx", "copyCustomFonts": true, "customReadme": true, "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionRange": "^5", "versionOnly": true }, "dependencies": { "@react-native-vector-icons/fontawesome-common": "workspace:^" }, "meta": { "defaultStyleName": "regular", "styleNames": [ "light", "regular", "solid", "brand", "duotone" ], "styles": { "light": { "family": "FontAwesome5Pro-Light", "name": "FontAwesome5_Pro_Light.ttf", "weight": 300 }, "regular": { "family": "FontAwesome5Pro-Regular", "name": "FontAwesome5_Pro_Regular.ttf", "weight": 400 }, "solid": { "family": "FontAwesome5Pro-Solid", "name": "FontAwesome5_Pro_Solid.ttf", "weight": 900 }, "duotone": { "family": "FontAwesome5Duotone-Solid", "name": "FontAwesome5_Pro_Duotone.ttf", "weight": 900 }, "brand": { "family": "FontAwesome5Brands-Regular", "name": "FontAwesome5_Pro_Brands.ttf", "weight": 400 } } }, "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 5" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "node ../fontawesome-common/scripts/generate-fontawesome-metadata --path fa/pro --output glyphmaps/FontAwesome5Pro_meta.json\nrm -rf fa" } }, "versions": [ { "rnvi": "12.0.0", "upstream": "5.15.4" } ] } } ================================================ FILE: packages/fontawesome5-pro/CHANGELOG.md ================================================ ## 12.4.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.4.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.3.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.3.2 - Updated @react-native-vector-icons/common to 12.4.2 ## 12.3.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.3.1 - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.3.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.3.0 - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.2.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.2.0 - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.1.0 - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.0.2 - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - update fontawesome fonts to new createIcon format so font loads in expo ([#1769](https://github.com/oblador/react-native-vector-icons/pull/1769)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - improve warning if glyph does not exist for default IconStyle in fontawesome fonts ([#1718](https://github.com/oblador/react-native-vector-icons/pull/1718)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) - **fontawesome-common,fontawesome5-pro,fontawesome6-pro:** fix FA upgrade scripts (fixes: #1727) ([#1741](https://github.com/oblador/react-native-vector-icons/pull/1741), [#1727](https://github.com/oblador/react-native-vector-icons/issues/1727)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.0.1 - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Lukas @WookieFPV - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/fontawesome5-pro/README.md ================================================ # FontAwesome 5 Pro ## Installing the Pro Fonts You need your FontAwesome npm token which can be obtained by logging into your account and then access the `Services` tab. Run `npx fa-upgrade5` and enter the token when asked to in order to upgrade to the Pro version. It will install the fonts in your repo in the `rnvi-fonts/fontawesome5-pro` directory. The top-level `rnvi-fonts` folder name can be customized by setting it when executing the command: `npx fa-upgrade5 [destination]` and setting the `fontDir` in `package.json`. ### Manually If the shell script does not work you can install the Pro version manually. All you really need to do is adding the Pro fonts to the `rnvi-fonts/fontawesome5-pro` directory. ## Usage Using the standard icons works just like the standard icons in this library. ```javascript import { FontAwesome5Pro } from "@react-native-vector-icons/fontawesome5-pro"; const icon = ; ``` Something special about the FontAwesome5Pro class is that you can also pass props to change the style of the icon: ```javascript import { FontAwesome5Pro } from "@react-native-vector-icons/fontawesome5-pro"; const icon = ; const icon = ; ``` **Valid types** | Type | Description | | ----------- | --------------------- | | **regular** | Uses the Regular font | | **brand** | Uses the Brands font | | **solid** | Uses the Solid font | | **light** | Uses the Light font | | **duotone** | Uses the Duotone font | No specified type indicates Regular font. ### getImageSource `getImageSource` works a little different due to its native backend and how the font is separated into different files. An extra argument to specify the font style is required. Use this to select which style the generated image should have: ```javascript import { FontAwesome5Pro } from "@react-native-vector-icons/fontawesome5-pro"; FontAwesome5Pro.getImageSource("solid", "comments", 30, "#000").then((source) => this.setState({ image: source }), ); ``` ================================================ FILE: packages/fontawesome5-pro/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome5_pro" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesome5Pro" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome5_pro" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome5-pro") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome5-pro/fonts" eachFile { println "(RNVI:fontawesome5-pro) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome5-pro" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome5-pro/fonts" eachFile { println "(RNVI:fontawesome5-pro) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome5-pro/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome5-pro/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome5-pro/android/src/main/java/VectorIconsFontAwesome5ProPackage.kt ================================================ package com.reactnativevectoricons.fontawesome5_pro import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesome5ProPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome5-pro/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro.json ================================================ { "500px": 62062, "abacus": 63040, "accessible-icon": 62312, "accusoft": 62313, "acorn": 63150, "acquisitions-incorporated": 63151, "ad": 63041, "address-book": 62137, "address-card": 62139, "adjust": 61506, "adn": 61808, "adversal": 62314, "affiliatetheme": 62315, "air-conditioner": 63732, "air-freshener": 62928, "airbnb": 63540, "alarm-clock": 62286, "alarm-exclamation": 63555, "alarm-plus": 63556, "alarm-snooze": 63557, "album": 63647, "album-collection": 63648, "algolia": 62316, "alicorn": 63152, "alien": 63733, "alien-monster": 63734, "align-center": 61495, "align-justify": 61497, "align-left": 61494, "align-right": 61496, "align-slash": 63558, "alipay": 63042, "allergies": 62561, "amazon": 62064, "amazon-pay": 62508, "ambulance": 61689, "american-sign-language-interpreting": 62115, "amilia": 62317, "amp-guitar": 63649, "analytics": 63043, "anchor": 61757, "android": 61819, "angel": 63353, "angellist": 61961, "angle-double-down": 61699, "angle-double-left": 61696, "angle-double-right": 61697, "angle-double-up": 61698, "angle-down": 61703, "angle-left": 61700, "angle-right": 61701, "angle-up": 61702, "angry": 62806, "angrycreative": 62318, "angular": 62496, "ankh": 63044, "app-store": 62319, "app-store-ios": 62320, "apper": 62321, "apple": 61817, "apple-alt": 62929, "apple-crate": 63153, "apple-pay": 62485, "archive": 61831, "archway": 62807, "arrow-alt-circle-down": 62296, "arrow-alt-circle-left": 62297, "arrow-alt-circle-right": 62298, "arrow-alt-circle-up": 62299, "arrow-alt-down": 62292, "arrow-alt-from-bottom": 62278, "arrow-alt-from-left": 62279, "arrow-alt-from-right": 62280, "arrow-alt-from-top": 62281, "arrow-alt-left": 62293, "arrow-alt-right": 62294, "arrow-alt-square-down": 62288, "arrow-alt-square-left": 62289, "arrow-alt-square-right": 62290, "arrow-alt-square-up": 62291, "arrow-alt-to-bottom": 62282, "arrow-alt-to-left": 62283, "arrow-alt-to-right": 62284, "arrow-alt-to-top": 62285, "arrow-alt-up": 62295, "arrow-circle-down": 61611, "arrow-circle-left": 61608, "arrow-circle-right": 61609, "arrow-circle-up": 61610, "arrow-down": 61539, "arrow-from-bottom": 62274, "arrow-from-left": 62275, "arrow-from-right": 62276, "arrow-from-top": 62277, "arrow-left": 61536, "arrow-right": 61537, "arrow-square-down": 62265, "arrow-square-left": 62266, "arrow-square-right": 62267, "arrow-square-up": 62268, "arrow-to-bottom": 62269, "arrow-to-left": 62270, "arrow-to-right": 62272, "arrow-to-top": 62273, "arrow-up": 61538, "arrows": 61511, "arrows-alt": 61618, "arrows-alt-h": 62263, "arrows-alt-v": 62264, "arrows-h": 61566, "arrows-v": 61565, "artstation": 63354, "assistive-listening-systems": 62114, "asterisk": 61545, "asymmetrik": 62322, "at": 61946, "atlas": 62808, "atlassian": 63355, "atom": 62930, "atom-alt": 62931, "audible": 62323, "audio-description": 62110, "autoprefixer": 62492, "avianex": 62324, "aviato": 62497, "award": 62809, "aws": 62325, "axe": 63154, "axe-battle": 63155, "baby": 63356, "baby-carriage": 63357, "backpack": 62932, "backspace": 62810, "backward": 61514, "bacon": 63461, "bacteria": 57433, "bacterium": 57434, "badge": 62261, "badge-check": 62262, "badge-dollar": 63045, "badge-percent": 63046, "badge-sheriff": 63650, "badger-honey": 63156, "bags-shopping": 63559, "bahai": 63078, "balance-scale": 62030, "balance-scale-left": 62741, "balance-scale-right": 62742, "ball-pile": 63358, "ballot": 63282, "ballot-check": 63283, "ban": 61534, "band-aid": 62562, "bandcamp": 62165, "banjo": 63651, "barcode": 61482, "barcode-alt": 62563, "barcode-read": 62564, "barcode-scan": 62565, "bars": 61641, "baseball": 62514, "baseball-ball": 62515, "basketball-ball": 62516, "basketball-hoop": 62517, "bat": 63157, "bath": 62157, "battery-bolt": 62326, "battery-empty": 62020, "battery-full": 62016, "battery-half": 62018, "battery-quarter": 62019, "battery-slash": 62327, "battery-three-quarters": 62017, "battle-net": 63541, "bed": 62006, "bed-alt": 63735, "bed-bunk": 63736, "bed-empty": 63737, "beer": 61692, "behance": 61876, "behance-square": 61877, "bell": 61683, "bell-exclamation": 63560, "bell-on": 63738, "bell-plus": 63561, "bell-school": 62933, "bell-school-slash": 62934, "bell-slash": 61942, "bells": 63359, "betamax": 63652, "bezier-curve": 62811, "bible": 63047, "bicycle": 61958, "biking": 63562, "biking-mountain": 63563, "bimobject": 62328, "binoculars": 61925, "biohazard": 63360, "birthday-cake": 61949, "bitbucket": 61809, "bitcoin": 62329, "bity": 62330, "black-tie": 62078, "blackberry": 62331, "blanket": 62616, "blender": 62743, "blender-phone": 63158, "blind": 62109, "blinds": 63739, "blinds-open": 63740, "blinds-raised": 63741, "blog": 63361, "blogger": 62332, "blogger-b": 62333, "bluetooth": 62099, "bluetooth-b": 62100, "bold": 61490, "bolt": 61671, "bomb": 61922, "bone": 62935, "bone-break": 62936, "bong": 62812, "book": 61485, "book-alt": 62937, "book-dead": 63159, "book-heart": 62617, "book-medical": 63462, "book-open": 62744, "book-reader": 62938, "book-spells": 63160, "book-user": 63463, "bookmark": 61486, "books": 62939, "books-medical": 63464, "boombox": 63653, "boot": 63362, "booth-curtain": 63284, "bootstrap": 63542, "border-all": 63564, "border-bottom": 63565, "border-center-h": 63644, "border-center-v": 63645, "border-inner": 63566, "border-left": 63567, "border-none": 63568, "border-outer": 63569, "border-right": 63570, "border-style": 63571, "border-style-alt": 63572, "border-top": 63573, "bow-arrow": 63161, "bowling-ball": 62518, "bowling-pins": 62519, "box": 62566, "box-alt": 62618, "box-ballot": 63285, "box-check": 62567, "box-fragile": 62619, "box-full": 62620, "box-heart": 62621, "box-open": 62622, "box-tissue": 57435, "box-up": 62623, "box-usd": 62624, "boxes": 62568, "boxes-alt": 62625, "boxing-glove": 62520, "brackets": 63465, "brackets-curly": 63466, "braille": 62113, "brain": 62940, "bread-loaf": 63467, "bread-slice": 63468, "briefcase": 61617, "briefcase-medical": 62569, "bring-forward": 63574, "bring-front": 63575, "broadcast-tower": 62745, "broom": 62746, "browser": 62334, "brush": 62813, "btc": 61786, "buffer": 63543, "bug": 61832, "building": 61869, "bullhorn": 61601, "bullseye": 61760, "bullseye-arrow": 63048, "bullseye-pointer": 63049, "burger-soda": 63576, "burn": 62570, "buromobelexperte": 62335, "burrito": 63469, "bus": 61959, "bus-alt": 62814, "bus-school": 62941, "business-time": 63050, "buy-n-large": 63654, "buysellads": 61965, "cabinet-filing": 63051, "cactus": 63655, "calculator": 61932, "calculator-alt": 63052, "calendar": 61747, "calendar-alt": 61555, "calendar-check": 62068, "calendar-day": 63363, "calendar-edit": 62259, "calendar-exclamation": 62260, "calendar-minus": 62066, "calendar-plus": 62065, "calendar-star": 63286, "calendar-times": 62067, "calendar-week": 63364, "camcorder": 63656, "camera": 61488, "camera-alt": 62258, "camera-home": 63742, "camera-movie": 63657, "camera-polaroid": 63658, "camera-retro": 61571, "campfire": 63162, "campground": 63163, "canadian-maple-leaf": 63365, "candle-holder": 63164, "candy-cane": 63366, "candy-corn": 63165, "cannabis": 62815, "capsules": 62571, "car": 61881, "car-alt": 62942, "car-battery": 62943, "car-building": 63577, "car-bump": 62944, "car-bus": 63578, "car-crash": 62945, "car-garage": 62946, "car-mechanic": 62947, "car-side": 62948, "car-tilt": 62949, "car-wash": 62950, "caravan": 63743, "caravan-alt": 57344, "caret-circle-down": 62253, "caret-circle-left": 62254, "caret-circle-right": 62256, "caret-circle-up": 62257, "caret-down": 61655, "caret-left": 61657, "caret-right": 61658, "caret-square-down": 61776, "caret-square-left": 61841, "caret-square-right": 61778, "caret-square-up": 61777, "caret-up": 61656, "carrot": 63367, "cars": 63579, "cart-arrow-down": 61976, "cart-plus": 61975, "cash-register": 63368, "cassette-tape": 63659, "cat": 63166, "cat-space": 57345, "cauldron": 63167, "cc-amazon-pay": 62509, "cc-amex": 61939, "cc-apple-pay": 62486, "cc-diners-club": 62028, "cc-discover": 61938, "cc-jcb": 62027, "cc-mastercard": 61937, "cc-paypal": 61940, "cc-stripe": 61941, "cc-visa": 61936, "cctv": 63660, "centercode": 62336, "centos": 63369, "certificate": 61603, "chair": 63168, "chair-office": 63169, "chalkboard": 62747, "chalkboard-teacher": 62748, "charging-station": 62951, "chart-area": 61950, "chart-bar": 61568, "chart-line": 61953, "chart-line-down": 63053, "chart-network": 63370, "chart-pie": 61952, "chart-pie-alt": 63054, "chart-scatter": 63470, "check": 61452, "check-circle": 61528, "check-double": 62816, "check-square": 61770, "cheese": 63471, "cheese-swiss": 63472, "cheeseburger": 63473, "chess": 62521, "chess-bishop": 62522, "chess-bishop-alt": 62523, "chess-board": 62524, "chess-clock": 62525, "chess-clock-alt": 62526, "chess-king": 62527, "chess-king-alt": 62528, "chess-knight": 62529, "chess-knight-alt": 62530, "chess-pawn": 62531, "chess-pawn-alt": 62532, "chess-queen": 62533, "chess-queen-alt": 62534, "chess-rook": 62535, "chess-rook-alt": 62536, "chevron-circle-down": 61754, "chevron-circle-left": 61751, "chevron-circle-right": 61752, "chevron-circle-up": 61753, "chevron-double-down": 62242, "chevron-double-left": 62243, "chevron-double-right": 62244, "chevron-double-up": 62245, "chevron-down": 61560, "chevron-left": 61523, "chevron-right": 61524, "chevron-square-down": 62249, "chevron-square-left": 62250, "chevron-square-right": 62251, "chevron-square-up": 62252, "chevron-up": 61559, "child": 61870, "chimney": 63371, "chrome": 62056, "chromecast": 63544, "church": 62749, "circle": 61713, "circle-notch": 61902, "city": 63055, "clarinet": 63661, "claw-marks": 63170, "clinic-medical": 63474, "clipboard": 62248, "clipboard-check": 62572, "clipboard-list": 62573, "clipboard-list-check": 63287, "clipboard-prescription": 62952, "clipboard-user": 63475, "clock": 61463, "clone": 62029, "closed-captioning": 61962, "cloud": 61634, "cloud-download": 61677, "cloud-download-alt": 62337, "cloud-drizzle": 63288, "cloud-hail": 63289, "cloud-hail-mixed": 63290, "cloud-meatball": 63291, "cloud-moon": 63171, "cloud-moon-rain": 63292, "cloud-music": 63662, "cloud-rain": 63293, "cloud-rainbow": 63294, "cloud-showers": 63295, "cloud-showers-heavy": 63296, "cloud-sleet": 63297, "cloud-snow": 63298, "cloud-sun": 63172, "cloud-sun-rain": 63299, "cloud-upload": 61678, "cloud-upload-alt": 62338, "cloudflare": 57469, "clouds": 63300, "clouds-moon": 63301, "clouds-sun": 63302, "cloudscale": 62339, "cloudsmith": 62340, "cloudversify": 62341, "club": 62247, "cocktail": 62817, "code": 61729, "code-branch": 61734, "code-commit": 62342, "code-merge": 62343, "codepen": 61899, "codiepie": 62084, "coffee": 61684, "coffee-pot": 57346, "coffee-togo": 63173, "coffin": 63174, "coffin-cross": 57425, "cog": 61459, "cogs": 61573, "coin": 63580, "coins": 62750, "columns": 61659, "comet": 57347, "comment": 61557, "comment-alt": 62074, "comment-alt-check": 62626, "comment-alt-dollar": 63056, "comment-alt-dots": 62627, "comment-alt-edit": 62628, "comment-alt-exclamation": 62629, "comment-alt-lines": 62630, "comment-alt-medical": 63476, "comment-alt-minus": 62631, "comment-alt-music": 63663, "comment-alt-plus": 62632, "comment-alt-slash": 62633, "comment-alt-smile": 62634, "comment-alt-times": 62635, "comment-check": 62636, "comment-dollar": 63057, "comment-dots": 62637, "comment-edit": 62638, "comment-exclamation": 62639, "comment-lines": 62640, "comment-medical": 63477, "comment-minus": 62641, "comment-music": 63664, "comment-plus": 62642, "comment-slash": 62643, "comment-smile": 62644, "comment-times": 62645, "comments": 61574, "comments-alt": 62646, "comments-alt-dollar": 63058, "comments-dollar": 63059, "compact-disc": 62751, "compass": 61774, "compass-slash": 62953, "compress": 61542, "compress-alt": 62498, "compress-arrows-alt": 63372, "compress-wide": 62246, "computer-classic": 63665, "computer-speaker": 63666, "concierge-bell": 62818, "confluence": 63373, "connectdevelop": 61966, "construction": 63581, "container-storage": 62647, "contao": 62061, "conveyor-belt": 62574, "conveyor-belt-alt": 62575, "cookie": 62819, "cookie-bite": 62820, "copy": 61637, "copyright": 61945, "corn": 63175, "cotton-bureau": 63646, "couch": 62648, "cow": 63176, "cowbell": 63667, "cowbell-more": 63668, "cpanel": 62344, "creative-commons": 62046, "creative-commons-by": 62695, "creative-commons-nc": 62696, "creative-commons-nc-eu": 62697, "creative-commons-nc-jp": 62698, "creative-commons-nd": 62699, "creative-commons-pd": 62700, "creative-commons-pd-alt": 62701, "creative-commons-remix": 62702, "creative-commons-sa": 62703, "creative-commons-sampling": 62704, "creative-commons-sampling-plus": 62705, "creative-commons-share": 62706, "creative-commons-zero": 62707, "credit-card": 61597, "credit-card-blank": 62345, "credit-card-front": 62346, "cricket": 62537, "critical-role": 63177, "croissant": 63478, "crop": 61733, "crop-alt": 62821, "cross": 63060, "crosshairs": 61531, "crow": 62752, "crown": 62753, "crutch": 63479, "crutches": 63480, "css3": 61756, "css3-alt": 62347, "cube": 61874, "cubes": 61875, "curling": 62538, "cut": 61636, "cuttlefish": 62348, "d-and-d": 62349, "d-and-d-beyond": 63178, "dagger": 63179, "dailymotion": 57426, "dashcube": 61968, "database": 61888, "deaf": 62116, "debug": 63481, "deer": 63374, "deer-rudolph": 63375, "deezer": 57463, "delicious": 61861, "democrat": 63303, "deploydog": 62350, "deskpro": 62351, "desktop": 61704, "desktop-alt": 62352, "dev": 63180, "deviantart": 61885, "dewpoint": 63304, "dharmachakra": 63061, "dhl": 63376, "diagnoses": 62576, "diamond": 61977, "diaspora": 63377, "dice": 62754, "dice-d10": 63181, "dice-d12": 63182, "dice-d20": 63183, "dice-d4": 63184, "dice-d6": 63185, "dice-d8": 63186, "dice-five": 62755, "dice-four": 62756, "dice-one": 62757, "dice-six": 62758, "dice-three": 62759, "dice-two": 62760, "digg": 61862, "digging": 63582, "digital-ocean": 62353, "digital-tachograph": 62822, "diploma": 62954, "directions": 62955, "disc-drive": 63669, "discord": 62354, "discourse": 62355, "disease": 63482, "divide": 62761, "dizzy": 62823, "dna": 62577, "do-not-enter": 62956, "dochub": 62356, "docker": 62357, "dog": 63187, "dog-leashed": 63188, "dollar-sign": 61781, "dolly": 62578, "dolly-empty": 62579, "dolly-flatbed": 62580, "dolly-flatbed-alt": 62581, "dolly-flatbed-empty": 62582, "donate": 62649, "door-closed": 62762, "door-open": 62763, "dot-circle": 61842, "dove": 62650, "download": 61465, "draft2digital": 62358, "drafting-compass": 62824, "dragon": 63189, "draw-circle": 62957, "draw-polygon": 62958, "draw-square": 62959, "dreidel": 63378, "dribbble": 61821, "dribbble-square": 62359, "drone": 63583, "drone-alt": 63584, "dropbox": 61803, "drum": 62825, "drum-steelpan": 62826, "drumstick": 63190, "drumstick-bite": 63191, "drupal": 61865, "dryer": 63585, "dryer-alt": 63586, "duck": 63192, "dumbbell": 62539, "dumpster": 63379, "dumpster-fire": 63380, "dungeon": 63193, "dyalog": 62361, "ear": 62960, "ear-muffs": 63381, "earlybirds": 62362, "ebay": 62708, "eclipse": 63305, "eclipse-alt": 63306, "edge": 62082, "edge-legacy": 57464, "edit": 61508, "egg": 63483, "egg-fried": 63484, "eject": 61522, "elementor": 62512, "elephant": 63194, "ellipsis-h": 61761, "ellipsis-h-alt": 62363, "ellipsis-v": 61762, "ellipsis-v-alt": 62364, "ello": 62961, "ember": 62499, "empire": 61905, "empty-set": 63062, "engine-warning": 62962, "envelope": 61664, "envelope-open": 62134, "envelope-open-dollar": 63063, "envelope-open-text": 63064, "envelope-square": 61849, "envira": 62105, "equals": 62764, "eraser": 61741, "erlang": 62365, "ethereum": 62510, "ethernet": 63382, "etsy": 62167, "euro-sign": 61779, "evernote": 63545, "exchange": 61676, "exchange-alt": 62306, "exclamation": 61738, "exclamation-circle": 61546, "exclamation-square": 62241, "exclamation-triangle": 61553, "expand": 61541, "expand-alt": 62500, "expand-arrows": 62237, "expand-arrows-alt": 62238, "expand-wide": 62240, "expeditedssl": 62014, "external-link": 61582, "external-link-alt": 62301, "external-link-square": 61772, "external-link-square-alt": 62304, "eye": 61550, "eye-dropper": 61947, "eye-evil": 63195, "eye-slash": 61552, "facebook": 61594, "facebook-f": 62366, "facebook-messenger": 62367, "facebook-square": 61570, "fan": 63587, "fan-table": 57348, "fantasy-flight-games": 63196, "farm": 63588, "fast-backward": 61513, "fast-forward": 61520, "faucet": 57349, "faucet-drip": 57350, "fax": 61868, "feather": 62765, "feather-alt": 62827, "fedex": 63383, "fedora": 63384, "female": 61826, "field-hockey": 62540, "fighter-jet": 61691, "figma": 63385, "file": 61787, "file-alt": 61788, "file-archive": 61894, "file-audio": 61895, "file-certificate": 62963, "file-chart-line": 63065, "file-chart-pie": 63066, "file-check": 62230, "file-code": 61897, "file-contract": 62828, "file-csv": 63197, "file-download": 62829, "file-edit": 62236, "file-excel": 61891, "file-exclamation": 62234, "file-export": 62830, "file-image": 61893, "file-import": 62831, "file-invoice": 62832, "file-invoice-dollar": 62833, "file-medical": 62583, "file-medical-alt": 62584, "file-minus": 62232, "file-music": 63670, "file-pdf": 61889, "file-plus": 62233, "file-powerpoint": 61892, "file-prescription": 62834, "file-search": 63589, "file-signature": 62835, "file-spreadsheet": 63067, "file-times": 62231, "file-upload": 62836, "file-user": 63068, "file-video": 61896, "file-word": 61890, "files-medical": 63485, "fill": 62837, "fill-drip": 62838, "film": 61448, "film-alt": 62368, "film-canister": 63671, "filter": 61616, "fingerprint": 62839, "fire": 61549, "fire-alt": 63460, "fire-extinguisher": 61748, "fire-smoke": 63307, "firefox": 62057, "firefox-browser": 57351, "fireplace": 63386, "first-aid": 62585, "first-order": 62128, "first-order-alt": 62730, "firstdraft": 62369, "fish": 62840, "fish-cooked": 63486, "fist-raised": 63198, "flag": 61476, "flag-alt": 63308, "flag-checkered": 61726, "flag-usa": 63309, "flame": 63199, "flashlight": 63672, "flask": 61635, "flask-poison": 63200, "flask-potion": 63201, "flickr": 61806, "flipboard": 62541, "flower": 63487, "flower-daffodil": 63488, "flower-tulip": 63489, "flushed": 62841, "flute": 63673, "flux-capacitor": 63674, "fly": 62487, "fog": 63310, "folder": 61563, "folder-download": 57427, "folder-minus": 63069, "folder-open": 61564, "folder-plus": 63070, "folder-times": 63071, "folder-tree": 63490, "folder-upload": 57428, "folders": 63072, "font": 61489, "font-awesome": 62132, "font-awesome-alt": 62300, "font-awesome-flag": 62501, "font-awesome-logo-full": 62694, "font-case": 63590, "fonticons": 62080, "fonticons-fi": 62370, "football-ball": 62542, "football-helmet": 62543, "forklift": 62586, "fort-awesome": 62086, "fort-awesome-alt": 62371, "forumbee": 61969, "forward": 61518, "foursquare": 61824, "fragile": 62651, "free-code-camp": 62149, "freebsd": 62372, "french-fries": 63491, "frog": 62766, "frosty-head": 63387, "frown": 61721, "frown-open": 62842, "fulcrum": 62731, "function": 63073, "funnel-dollar": 63074, "futbol": 61923, "galactic-republic": 62732, "galactic-senate": 62733, "galaxy": 57352, "game-board": 63591, "game-board-alt": 63592, "game-console-handheld": 63675, "gamepad": 61723, "gamepad-alt": 63676, "garage": 57353, "garage-car": 57354, "garage-open": 57355, "gas-pump": 62767, "gas-pump-slash": 62964, "gavel": 61667, "gem": 62373, "genderless": 61997, "get-pocket": 62053, "gg": 62048, "gg-circle": 62049, "ghost": 63202, "gift": 61547, "gift-card": 63075, "gifts": 63388, "gingerbread-man": 63389, "git": 61907, "git-alt": 63553, "git-square": 61906, "github": 61595, "github-alt": 61715, "github-square": 61586, "gitkraken": 62374, "gitlab": 62102, "gitter": 62502, "glass": 63492, "glass-champagne": 63390, "glass-cheers": 63391, "glass-citrus": 63593, "glass-martini": 61440, "glass-martini-alt": 62843, "glass-whiskey": 63392, "glass-whiskey-rocks": 63393, "glasses": 62768, "glasses-alt": 62965, "glide": 62117, "glide-g": 62118, "globe": 61612, "globe-africa": 62844, "globe-americas": 62845, "globe-asia": 62846, "globe-europe": 63394, "globe-snow": 63395, "globe-stand": 62966, "gofore": 62375, "golf-ball": 62544, "golf-club": 62545, "goodreads": 62376, "goodreads-g": 62377, "google": 61856, "google-drive": 62378, "google-pay": 57465, "google-play": 62379, "google-plus": 62131, "google-plus-g": 61653, "google-plus-square": 61652, "google-wallet": 61934, "gopuram": 63076, "graduation-cap": 61853, "gramophone": 63677, "gratipay": 61828, "grav": 62166, "greater-than": 62769, "greater-than-equal": 62770, "grimace": 62847, "grin": 62848, "grin-alt": 62849, "grin-beam": 62850, "grin-beam-sweat": 62851, "grin-hearts": 62852, "grin-squint": 62853, "grin-squint-tears": 62854, "grin-stars": 62855, "grin-tears": 62856, "grin-tongue": 62857, "grin-tongue-squint": 62858, "grin-tongue-wink": 62859, "grin-wink": 62860, "grip-horizontal": 62861, "grip-lines": 63396, "grip-lines-vertical": 63397, "grip-vertical": 62862, "gripfire": 62380, "grunt": 62381, "guilded": 57470, "guitar": 63398, "guitar-electric": 63678, "guitars": 63679, "gulp": 62382, "h-square": 61693, "h1": 62227, "h2": 62228, "h3": 62229, "h4": 63594, "hacker-news": 61908, "hacker-news-square": 62383, "hackerrank": 62967, "hamburger": 63493, "hammer": 63203, "hammer-war": 63204, "hamsa": 63077, "hand-heart": 62652, "hand-holding": 62653, "hand-holding-box": 62587, "hand-holding-heart": 62654, "hand-holding-magic": 63205, "hand-holding-medical": 57436, "hand-holding-seedling": 62655, "hand-holding-usd": 62656, "hand-holding-water": 62657, "hand-lizard": 62040, "hand-middle-finger": 63494, "hand-paper": 62038, "hand-peace": 62043, "hand-point-down": 61607, "hand-point-left": 61605, "hand-point-right": 61604, "hand-point-up": 61606, "hand-pointer": 62042, "hand-receiving": 62588, "hand-rock": 62037, "hand-scissors": 62039, "hand-sparkles": 57437, "hand-spock": 62041, "hands": 62658, "hands-heart": 62659, "hands-helping": 62660, "hands-usd": 62661, "hands-wash": 57438, "handshake": 62133, "handshake-alt": 62662, "handshake-alt-slash": 57439, "handshake-slash": 57440, "hanukiah": 63206, "hard-hat": 63495, "hashtag": 62098, "hat-chef": 63595, "hat-cowboy": 63680, "hat-cowboy-side": 63681, "hat-santa": 63399, "hat-winter": 63400, "hat-witch": 63207, "hat-wizard": 63208, "hdd": 61600, "head-side": 63209, "head-side-brain": 63496, "head-side-cough": 57441, "head-side-cough-slash": 57442, "head-side-headphones": 63682, "head-side-mask": 57443, "head-side-medical": 63497, "head-side-virus": 57444, "head-vr": 63210, "heading": 61916, "headphones": 61477, "headphones-alt": 62863, "headset": 62864, "heart": 61444, "heart-broken": 63401, "heart-circle": 62663, "heart-rate": 62968, "heart-square": 62664, "heartbeat": 61982, "heat": 57356, "helicopter": 62771, "helmet-battle": 63211, "hexagon": 62226, "highlighter": 62865, "hiking": 63212, "hippo": 63213, "hips": 62546, "hire-a-helper": 62384, "history": 61914, "hive": 57471, "hockey-mask": 63214, "hockey-puck": 62547, "hockey-sticks": 62548, "holly-berry": 63402, "home": 61461, "home-alt": 63498, "home-heart": 62665, "home-lg": 63499, "home-lg-alt": 63500, "hood-cloak": 63215, "hooli": 62503, "horizontal-rule": 63596, "hornbill": 62866, "horse": 63216, "horse-head": 63403, "horse-saddle": 63683, "hospital": 61688, "hospital-alt": 62589, "hospital-symbol": 62590, "hospital-user": 63501, "hospitals": 63502, "hot-tub": 62867, "hotdog": 63503, "hotel": 62868, "hotjar": 62385, "hourglass": 62036, "hourglass-end": 62035, "hourglass-half": 62034, "hourglass-start": 62033, "house": 57357, "house-damage": 63217, "house-day": 57358, "house-flood": 63311, "house-leave": 57359, "house-night": 57360, "house-return": 57361, "house-signal": 57362, "house-user": 57445, "houzz": 62076, "hryvnia": 63218, "html5": 61755, "hubspot": 62386, "humidity": 63312, "hurricane": 63313, "i-cursor": 62022, "ice-cream": 63504, "ice-skate": 63404, "icicles": 63405, "icons": 63597, "icons-alt": 63598, "id-badge": 62145, "id-card": 62146, "id-card-alt": 62591, "ideal": 57363, "igloo": 63406, "image": 61502, "image-polaroid": 63684, "images": 62210, "imdb": 62168, "inbox": 61468, "inbox-in": 62224, "inbox-out": 62225, "indent": 61500, "industry": 62069, "industry-alt": 62387, "infinity": 62772, "info": 61737, "info-circle": 61530, "info-square": 62223, "inhaler": 62969, "innosoft": 57472, "instagram": 61805, "instagram-square": 57429, "instalod": 57473, "integral": 63079, "intercom": 63407, "internet-explorer": 62059, "intersection": 63080, "inventory": 62592, "invision": 63408, "ioxhost": 61960, "island-tropical": 63505, "italic": 61491, "itch-io": 63546, "itunes": 62388, "itunes-note": 62389, "jack-o-lantern": 62222, "java": 62692, "jedi": 63081, "jedi-order": 62734, "jenkins": 62390, "jira": 63409, "joget": 62391, "joint": 62869, "joomla": 61866, "journal-whills": 63082, "joystick": 63685, "js": 62392, "js-square": 62393, "jsfiddle": 61900, "jug": 63686, "kaaba": 63083, "kaggle": 62970, "kazoo": 63687, "kerning": 63599, "key": 61572, "key-skeleton": 63219, "keybase": 62709, "keyboard": 61724, "keycdn": 62394, "keynote": 63084, "khanda": 63085, "kickstarter": 62395, "kickstarter-k": 62396, "kidneys": 62971, "kiss": 62870, "kiss-beam": 62871, "kiss-wink-heart": 62872, "kite": 63220, "kiwi-bird": 62773, "knife-kitchen": 63221, "korvue": 62511, "lambda": 63086, "lamp": 62666, "lamp-desk": 57364, "lamp-floor": 57365, "landmark": 63087, "landmark-alt": 63314, "language": 61867, "laptop": 61705, "laptop-code": 62972, "laptop-house": 57446, "laptop-medical": 63506, "laravel": 62397, "lasso": 63688, "lastfm": 61954, "lastfm-square": 61955, "laugh": 62873, "laugh-beam": 62874, "laugh-squint": 62875, "laugh-wink": 62876, "layer-group": 62973, "layer-minus": 62974, "layer-plus": 62975, "leaf": 61548, "leaf-heart": 62667, "leaf-maple": 63222, "leaf-oak": 63223, "leanpub": 61970, "lemon": 61588, "less": 62493, "less-than": 62774, "less-than-equal": 62775, "level-down": 61769, "level-down-alt": 62398, "level-up": 61768, "level-up-alt": 62399, "life-ring": 61901, "light-ceiling": 57366, "light-switch": 57367, "light-switch-off": 57368, "light-switch-on": 57369, "lightbulb": 61675, "lightbulb-dollar": 63088, "lightbulb-exclamation": 63089, "lightbulb-on": 63090, "lightbulb-slash": 63091, "lights-holiday": 63410, "line": 62400, "line-columns": 63600, "line-height": 63601, "link": 61633, "linkedin": 61580, "linkedin-in": 61665, "linode": 62136, "linux": 61820, "lips": 62976, "lira-sign": 61845, "list": 61498, "list-alt": 61474, "list-music": 63689, "list-ol": 61643, "list-ul": 61642, "location": 62977, "location-arrow": 61732, "location-circle": 62978, "location-slash": 62979, "lock": 61475, "lock-alt": 62221, "lock-open": 62401, "lock-open-alt": 62402, "long-arrow-alt-down": 62217, "long-arrow-alt-left": 62218, "long-arrow-alt-right": 62219, "long-arrow-alt-up": 62220, "long-arrow-down": 61813, "long-arrow-left": 61815, "long-arrow-right": 61816, "long-arrow-up": 61814, "loveseat": 62668, "low-vision": 62120, "luchador": 62549, "luggage-cart": 62877, "lungs": 62980, "lungs-virus": 57447, "lyft": 62403, "mace": 63224, "magento": 62404, "magic": 61648, "magnet": 61558, "mail-bulk": 63092, "mailbox": 63507, "mailchimp": 62878, "male": 61827, "mandalorian": 62735, "mandolin": 63225, "map": 62073, "map-marked": 62879, "map-marked-alt": 62880, "map-marker": 61505, "map-marker-alt": 62405, "map-marker-alt-slash": 62981, "map-marker-check": 62982, "map-marker-edit": 62983, "map-marker-exclamation": 62984, "map-marker-minus": 62985, "map-marker-plus": 62986, "map-marker-question": 62987, "map-marker-slash": 62988, "map-marker-smile": 62989, "map-marker-times": 62990, "map-pin": 62070, "map-signs": 62071, "markdown": 62991, "marker": 62881, "mars": 61986, "mars-double": 61991, "mars-stroke": 61993, "mars-stroke-h": 61995, "mars-stroke-v": 61994, "mask": 63226, "mastodon": 62710, "maxcdn": 61750, "mdb": 63690, "meat": 63508, "medal": 62882, "medapps": 62406, "medium": 62010, "medium-m": 62407, "medkit": 61690, "medrt": 62408, "meetup": 62176, "megaphone": 63093, "megaport": 62883, "meh": 61722, "meh-blank": 62884, "meh-rolling-eyes": 62885, "memory": 62776, "mendeley": 63411, "menorah": 63094, "mercury": 61987, "meteor": 63315, "microblog": 57370, "microchip": 62171, "microphone": 61744, "microphone-alt": 62409, "microphone-alt-slash": 62777, "microphone-slash": 61745, "microphone-stand": 63691, "microscope": 62992, "microsoft": 62410, "microwave": 57371, "mind-share": 63095, "minus": 61544, "minus-circle": 61526, "minus-hexagon": 62215, "minus-octagon": 62216, "minus-square": 61766, "mistletoe": 63412, "mitten": 63413, "mix": 62411, "mixcloud": 62089, "mixer": 57430, "mizuni": 62412, "mobile": 61707, "mobile-alt": 62413, "mobile-android": 62414, "mobile-android-alt": 62415, "modx": 62085, "monero": 62416, "money-bill": 61654, "money-bill-alt": 62417, "money-bill-wave": 62778, "money-bill-wave-alt": 62779, "money-check": 62780, "money-check-alt": 62781, "money-check-edit": 63602, "money-check-edit-alt": 63603, "monitor-heart-rate": 62993, "monkey": 63227, "monument": 62886, "moon": 61830, "moon-cloud": 63316, "moon-stars": 63317, "mortar-pestle": 62887, "mosque": 63096, "motorcycle": 61980, "mountain": 63228, "mountains": 63229, "mouse": 63692, "mouse-alt": 63693, "mouse-pointer": 62021, "mp3-player": 63694, "mug": 63604, "mug-hot": 63414, "mug-marshmallows": 63415, "mug-tea": 63605, "music": 61441, "music-alt": 63695, "music-alt-slash": 63696, "music-slash": 63697, "napster": 62418, "narwhal": 63230, "neos": 62994, "network-wired": 63231, "neuter": 61996, "newspaper": 61930, "nimblr": 62888, "node": 62489, "node-js": 62419, "not-equal": 62782, "notes-medical": 62593, "npm": 62420, "ns8": 62421, "nutritionix": 62422, "object-group": 62023, "object-ungroup": 62024, "octagon": 62214, "octopus-deploy": 57474, "odnoklassniki": 62051, "odnoklassniki-square": 62052, "oil-can": 62995, "oil-temp": 62996, "old-republic": 62736, "om": 63097, "omega": 63098, "opencart": 62013, "openid": 61851, "opera": 62058, "optin-monster": 62012, "orcid": 63698, "ornament": 63416, "osi": 62490, "otter": 63232, "outdent": 61499, "outlet": 57372, "oven": 57373, "overline": 63606, "page-break": 63607, "page4": 62423, "pagelines": 61836, "pager": 63509, "paint-brush": 61948, "paint-brush-alt": 62889, "paint-roller": 62890, "palette": 62783, "palfed": 62424, "pallet": 62594, "pallet-alt": 62595, "paper-plane": 61912, "paperclip": 61638, "parachute-box": 62669, "paragraph": 61917, "paragraph-rtl": 63608, "parking": 62784, "parking-circle": 62997, "parking-circle-slash": 62998, "parking-slash": 62999, "passport": 62891, "pastafarianism": 63099, "paste": 61674, "patreon": 62425, "pause": 61516, "pause-circle": 62091, "paw": 61872, "paw-alt": 63233, "paw-claws": 63234, "paypal": 61933, "peace": 63100, "pegasus": 63235, "pen": 62212, "pen-alt": 62213, "pen-fancy": 62892, "pen-nib": 62893, "pen-square": 61771, "pencil": 61504, "pencil-alt": 62211, "pencil-paintbrush": 63000, "pencil-ruler": 62894, "pennant": 62550, "penny-arcade": 63236, "people-arrows": 57448, "people-carry": 62670, "pepper-hot": 63510, "perbyte": 57475, "percent": 62101, "percentage": 62785, "periscope": 62426, "person-booth": 63318, "person-carry": 62671, "person-dolly": 62672, "person-dolly-empty": 62673, "person-sign": 63319, "phabricator": 62427, "phoenix-framework": 62428, "phoenix-squadron": 62737, "phone": 61589, "phone-alt": 63609, "phone-laptop": 63610, "phone-office": 63101, "phone-plus": 62674, "phone-rotary": 63699, "phone-slash": 62429, "phone-square": 61592, "phone-square-alt": 63611, "phone-volume": 62112, "photo-video": 63612, "php": 62551, "pi": 63102, "piano": 63700, "piano-keyboard": 63701, "pie": 63237, "pied-piper": 62126, "pied-piper-alt": 61864, "pied-piper-hat": 62693, "pied-piper-pp": 61863, "pied-piper-square": 57374, "pig": 63238, "piggy-bank": 62675, "pills": 62596, "pinterest": 61650, "pinterest-p": 62001, "pinterest-square": 61651, "pizza": 63511, "pizza-slice": 63512, "place-of-worship": 63103, "plane": 61554, "plane-alt": 62430, "plane-arrival": 62895, "plane-departure": 62896, "plane-slash": 57449, "planet-moon": 57375, "planet-ringed": 57376, "play": 61515, "play-circle": 61764, "playstation": 62431, "plug": 61926, "plus": 61543, "plus-circle": 61525, "plus-hexagon": 62208, "plus-octagon": 62209, "plus-square": 61694, "podcast": 62158, "podium": 63104, "podium-star": 63320, "police-box": 57377, "poll": 63105, "poll-h": 63106, "poll-people": 63321, "poo": 62206, "poo-storm": 63322, "poop": 63001, "popcorn": 63513, "portal-enter": 57378, "portal-exit": 57379, "portrait": 62432, "pound-sign": 61780, "power-off": 61457, "pray": 63107, "praying-hands": 63108, "prescription": 62897, "prescription-bottle": 62597, "prescription-bottle-alt": 62598, "presentation": 63109, "print": 61487, "print-search": 63514, "print-slash": 63110, "procedures": 62599, "product-hunt": 62088, "project-diagram": 62786, "projector": 63702, "pump-medical": 57450, "pump-soap": 57451, "pumpkin": 63239, "pushed": 62433, "puzzle-piece": 61742, "python": 62434, "qq": 61910, "qrcode": 61481, "question": 61736, "question-circle": 61529, "question-square": 62205, "quidditch": 62552, "quinscape": 62553, "quora": 62148, "quote-left": 61709, "quote-right": 61710, "quran": 63111, "r-project": 62711, "rabbit": 63240, "rabbit-fast": 63241, "racquet": 62554, "radar": 57380, "radiation": 63417, "radiation-alt": 63418, "radio": 63703, "radio-alt": 63704, "rainbow": 63323, "raindrops": 63324, "ram": 63242, "ramp-loading": 62676, "random": 61556, "raspberry-pi": 63419, "ravelry": 62169, "raygun": 57381, "react": 62491, "reacteurope": 63325, "readme": 62677, "rebel": 61904, "receipt": 62787, "record-vinyl": 63705, "rectangle-landscape": 62202, "rectangle-portrait": 62203, "rectangle-wide": 62204, "recycle": 61880, "red-river": 62435, "reddit": 61857, "reddit-alien": 62081, "reddit-square": 61858, "redhat": 63420, "redo": 61470, "redo-alt": 62201, "refrigerator": 57382, "registered": 62045, "remove-format": 63613, "renren": 61835, "repeat": 62307, "repeat-1": 62309, "repeat-1-alt": 62310, "repeat-alt": 62308, "reply": 62437, "reply-all": 61730, "replyd": 62438, "republican": 63326, "researchgate": 62712, "resolving": 62439, "restroom": 63421, "retweet": 61561, "retweet-alt": 62305, "rev": 62898, "ribbon": 62678, "ring": 63243, "rings-wedding": 63515, "road": 61464, "robot": 62788, "rocket": 61749, "rocket-launch": 57383, "rocketchat": 62440, "rockrms": 62441, "route": 62679, "route-highway": 63002, "route-interstate": 63003, "router": 63706, "rss": 61598, "rss-square": 61763, "ruble-sign": 61784, "ruler": 62789, "ruler-combined": 62790, "ruler-horizontal": 62791, "ruler-triangle": 63004, "ruler-vertical": 62792, "running": 63244, "rupee-sign": 61782, "rust": 57466, "rv": 63422, "sack": 63516, "sack-dollar": 63517, "sad-cry": 62899, "sad-tear": 62900, "safari": 62055, "salad": 63518, "salesforce": 63547, "sandwich": 63519, "sass": 62494, "satellite": 63423, "satellite-dish": 63424, "sausage": 63520, "save": 61639, "sax-hot": 63707, "saxophone": 63708, "scalpel": 63005, "scalpel-path": 63006, "scanner": 62600, "scanner-image": 63731, "scanner-keyboard": 62601, "scanner-touchscreen": 62602, "scarecrow": 63245, "scarf": 63425, "schlix": 62442, "school": 62793, "screwdriver": 62794, "scribd": 62090, "scroll": 63246, "scroll-old": 63247, "scrubber": 62200, "scythe": 63248, "sd-card": 63426, "search": 61442, "search-dollar": 63112, "search-location": 63113, "search-minus": 61456, "search-plus": 61454, "searchengin": 62443, "seedling": 62680, "sellcast": 62170, "sellsy": 61971, "send-back": 63614, "send-backward": 63615, "sensor": 57384, "sensor-alert": 57385, "sensor-fire": 57386, "sensor-on": 57387, "sensor-smoke": 57388, "server": 62003, "servicestack": 62444, "shapes": 63007, "share": 61540, "share-all": 62311, "share-alt": 61920, "share-alt-square": 61921, "share-square": 61773, "sheep": 63249, "shekel-sign": 61963, "shield": 61746, "shield-alt": 62445, "shield-check": 62199, "shield-cross": 63250, "shield-virus": 57452, "ship": 61978, "shipping-fast": 62603, "shipping-timed": 62604, "shirtsinbulk": 61972, "shish-kebab": 63521, "shoe-prints": 62795, "shopify": 57431, "shopping-bag": 62096, "shopping-basket": 62097, "shopping-cart": 61562, "shopware": 62901, "shovel": 63251, "shovel-snow": 63427, "shower": 62156, "shredder": 63114, "shuttle-van": 62902, "shuttlecock": 62555, "sickle": 63522, "sigma": 63115, "sign": 62681, "sign-in": 61584, "sign-in-alt": 62198, "sign-language": 62119, "sign-out": 61579, "sign-out-alt": 62197, "signal": 61458, "signal-1": 63116, "signal-2": 63117, "signal-3": 63118, "signal-4": 63119, "signal-alt": 63120, "signal-alt-1": 63121, "signal-alt-2": 63122, "signal-alt-3": 63123, "signal-alt-slash": 63124, "signal-slash": 63125, "signal-stream": 63709, "signature": 62903, "sim-card": 63428, "simplybuilt": 61973, "sink": 57453, "siren": 57389, "siren-on": 57390, "sistrix": 62446, "sitemap": 61672, "sith": 62738, "skating": 63429, "skeleton": 63008, "sketch": 63430, "ski-jump": 63431, "ski-lift": 63432, "skiing": 63433, "skiing-nordic": 63434, "skull": 62796, "skull-cow": 63710, "skull-crossbones": 63252, "skyatlas": 61974, "skype": 61822, "slack": 61848, "slack-hash": 62447, "slash": 63253, "sledding": 63435, "sleigh": 63436, "sliders-h": 61918, "sliders-h-square": 62448, "sliders-v": 62449, "sliders-v-square": 62450, "slideshare": 61927, "smile": 61720, "smile-beam": 62904, "smile-plus": 62905, "smile-wink": 62682, "smog": 63327, "smoke": 63328, "smoking": 62605, "smoking-ban": 62797, "sms": 63437, "snake": 63254, "snapchat": 62123, "snapchat-ghost": 62124, "snapchat-square": 62125, "snooze": 63616, "snow-blowing": 63329, "snowboarding": 63438, "snowflake": 62172, "snowflakes": 63439, "snowman": 63440, "snowmobile": 63441, "snowplow": 63442, "soap": 57454, "socks": 63126, "solar-panel": 62906, "solar-system": 57391, "sort": 61660, "sort-alpha-down": 61789, "sort-alpha-down-alt": 63617, "sort-alpha-up": 61790, "sort-alpha-up-alt": 63618, "sort-alt": 63619, "sort-amount-down": 61792, "sort-amount-down-alt": 63620, "sort-amount-up": 61793, "sort-amount-up-alt": 63621, "sort-circle": 57392, "sort-circle-down": 57393, "sort-circle-up": 57394, "sort-down": 61661, "sort-numeric-down": 61794, "sort-numeric-down-alt": 63622, "sort-numeric-up": 61795, "sort-numeric-up-alt": 63623, "sort-shapes-down": 63624, "sort-shapes-down-alt": 63625, "sort-shapes-up": 63626, "sort-shapes-up-alt": 63627, "sort-size-down": 63628, "sort-size-down-alt": 63629, "sort-size-up": 63630, "sort-size-up-alt": 63631, "sort-up": 61662, "soundcloud": 61886, "soup": 63523, "sourcetree": 63443, "spa": 62907, "space-shuttle": 61847, "space-station-moon": 57395, "space-station-moon-alt": 57396, "spade": 62196, "sparkles": 63632, "speakap": 62451, "speaker": 63711, "speaker-deck": 63548, "speakers": 63712, "spell-check": 63633, "spider": 63255, "spider-black-widow": 63256, "spider-web": 63257, "spinner": 61712, "spinner-third": 62452, "splotch": 62908, "spotify": 61884, "spray-can": 62909, "sprinkler": 57397, "square": 61640, "square-full": 62556, "square-root": 63127, "square-root-alt": 63128, "squarespace": 62910, "squirrel": 63258, "stack-exchange": 61837, "stack-overflow": 61804, "stackpath": 63554, "staff": 63259, "stamp": 62911, "star": 61445, "star-and-crescent": 63129, "star-christmas": 63444, "star-exclamation": 62195, "star-half": 61577, "star-half-alt": 62912, "star-of-david": 63130, "star-of-life": 63009, "star-shooting": 57398, "starfighter": 57399, "starfighter-alt": 57400, "stars": 63330, "starship": 57401, "starship-freighter": 57402, "staylinked": 62453, "steak": 63524, "steam": 61878, "steam-square": 61879, "steam-symbol": 62454, "steering-wheel": 63010, "step-backward": 61512, "step-forward": 61521, "stethoscope": 61681, "sticker-mule": 62455, "sticky-note": 62025, "stocking": 63445, "stomach": 63011, "stop": 61517, "stop-circle": 62093, "stopwatch": 62194, "stopwatch-20": 57455, "store": 62798, "store-alt": 62799, "store-alt-slash": 57456, "store-slash": 57457, "strava": 62504, "stream": 62800, "street-view": 61981, "stretcher": 63525, "strikethrough": 61644, "stripe": 62505, "stripe-s": 62506, "stroopwafel": 62801, "studiovinari": 62456, "stumbleupon": 61860, "stumbleupon-circle": 61859, "subscript": 61740, "subway": 62009, "suitcase": 61682, "suitcase-rolling": 62913, "sun": 61829, "sun-cloud": 63331, "sun-dust": 63332, "sun-haze": 63333, "sunglasses": 63634, "sunrise": 63334, "sunset": 63335, "superpowers": 62173, "superscript": 61739, "supple": 62457, "surprise": 62914, "suse": 63446, "swatchbook": 62915, "swift": 63713, "swimmer": 62916, "swimming-pool": 62917, "sword": 63260, "sword-laser": 57403, "sword-laser-alt": 57404, "swords": 63261, "swords-laser": 57405, "symfony": 63549, "synagogue": 63131, "sync": 61473, "sync-alt": 62193, "syringe": 62606, "table": 61646, "table-tennis": 62557, "tablet": 61706, "tablet-alt": 62458, "tablet-android": 62459, "tablet-android-alt": 62460, "tablet-rugged": 62607, "tablets": 62608, "tachometer": 61668, "tachometer-alt": 62461, "tachometer-alt-average": 63012, "tachometer-alt-fast": 63013, "tachometer-alt-fastest": 63014, "tachometer-alt-slow": 63015, "tachometer-alt-slowest": 63016, "tachometer-average": 63017, "tachometer-fast": 63018, "tachometer-fastest": 63019, "tachometer-slow": 63020, "tachometer-slowest": 63021, "taco": 63526, "tag": 61483, "tags": 61484, "tally": 63132, "tanakh": 63527, "tape": 62683, "tasks": 61614, "tasks-alt": 63528, "taxi": 61882, "teamspeak": 62713, "teeth": 63022, "teeth-open": 63023, "telegram": 62150, "telegram-plane": 62462, "telescope": 57406, "temperature-down": 57407, "temperature-frigid": 63336, "temperature-high": 63337, "temperature-hot": 63338, "temperature-low": 63339, "temperature-up": 57408, "tencent-weibo": 61909, "tenge": 63447, "tennis-ball": 62558, "terminal": 61728, "text": 63635, "text-height": 61492, "text-size": 63636, "text-width": 61493, "th": 61450, "th-large": 61449, "th-list": 61451, "the-red-yeti": 63133, "theater-masks": 63024, "themeco": 62918, "themeisle": 62130, "thermometer": 62609, "thermometer-empty": 62155, "thermometer-full": 62151, "thermometer-half": 62153, "thermometer-quarter": 62154, "thermometer-three-quarters": 62152, "theta": 63134, "think-peaks": 63281, "thumbs-down": 61797, "thumbs-up": 61796, "thumbtack": 61581, "thunderstorm": 63340, "thunderstorm-moon": 63341, "thunderstorm-sun": 63342, "ticket": 61765, "ticket-alt": 62463, "tiktok": 57467, "tilde": 63135, "times": 61453, "times-circle": 61527, "times-hexagon": 62190, "times-octagon": 62192, "times-square": 62163, "tint": 61507, "tint-slash": 62919, "tire": 63025, "tire-flat": 63026, "tire-pressure-warning": 63027, "tire-rugged": 63028, "tired": 62920, "toggle-off": 61956, "toggle-on": 61957, "toilet": 63448, "toilet-paper": 63262, "toilet-paper-alt": 63263, "toilet-paper-slash": 57458, "tombstone": 63264, "tombstone-alt": 63265, "toolbox": 62802, "tools": 63449, "tooth": 62921, "toothbrush": 63029, "torah": 63136, "torii-gate": 63137, "tornado": 63343, "tractor": 63266, "trade-federation": 62739, "trademark": 62044, "traffic-cone": 63030, "traffic-light": 63031, "traffic-light-go": 63032, "traffic-light-slow": 63033, "traffic-light-stop": 63034, "trailer": 57409, "train": 62008, "tram": 63450, "transgender": 61988, "transgender-alt": 61989, "transporter": 57410, "transporter-1": 57411, "transporter-2": 57412, "transporter-3": 57413, "transporter-empty": 57414, "trash": 61944, "trash-alt": 62189, "trash-restore": 63529, "trash-restore-alt": 63530, "trash-undo": 63637, "trash-undo-alt": 63638, "treasure-chest": 63267, "tree": 61883, "tree-alt": 62464, "tree-christmas": 63451, "tree-decorated": 63452, "tree-large": 63453, "tree-palm": 63531, "trees": 63268, "trello": 61825, "triangle": 62188, "triangle-music": 63714, "trophy": 61585, "trophy-alt": 62187, "truck": 61649, "truck-container": 62684, "truck-couch": 62685, "truck-loading": 62686, "truck-monster": 63035, "truck-moving": 62687, "truck-pickup": 63036, "truck-plow": 63454, "truck-ramp": 62688, "trumpet": 63715, "tshirt": 62803, "tty": 61924, "tumblr": 61811, "tumblr-square": 61812, "turkey": 63269, "turntable": 63716, "turtle": 63270, "tv": 62060, "tv-alt": 63717, "tv-music": 63718, "tv-retro": 62465, "twitch": 61928, "twitter": 61593, "twitter-square": 61569, "typewriter": 63719, "typo3": 62507, "uber": 62466, "ubuntu": 63455, "ufo": 57415, "ufo-beam": 57416, "uikit": 62467, "umbraco": 63720, "umbrella": 61673, "umbrella-beach": 62922, "uncharted": 57476, "underline": 61645, "undo": 61666, "undo-alt": 62186, "unicorn": 63271, "union": 63138, "uniregistry": 62468, "unity": 57417, "universal-access": 62106, "university": 61852, "unlink": 61735, "unlock": 61596, "unlock-alt": 61758, "unsplash": 57468, "untappd": 62469, "upload": 61587, "ups": 63456, "usb": 62087, "usb-drive": 63721, "usd-circle": 62184, "usd-square": 62185, "user": 61447, "user-alien": 57418, "user-alt": 62470, "user-alt-slash": 62714, "user-astronaut": 62715, "user-chart": 63139, "user-check": 62716, "user-circle": 62141, "user-clock": 62717, "user-cog": 62718, "user-cowboy": 63722, "user-crown": 63140, "user-edit": 62719, "user-friends": 62720, "user-graduate": 62721, "user-hard-hat": 63532, "user-headset": 63533, "user-injured": 63272, "user-lock": 62722, "user-md": 61680, "user-md-chat": 63534, "user-minus": 62723, "user-music": 63723, "user-ninja": 62724, "user-nurse": 63535, "user-plus": 62004, "user-robot": 57419, "user-secret": 61979, "user-shield": 62725, "user-slash": 62726, "user-tag": 62727, "user-tie": 62728, "user-times": 62005, "user-unlock": 57432, "user-visor": 57420, "users": 61632, "users-class": 63037, "users-cog": 62729, "users-crown": 63141, "users-medical": 63536, "users-slash": 57459, "usps": 63457, "ussunnah": 62471, "utensil-fork": 62179, "utensil-knife": 62180, "utensil-spoon": 62181, "utensils": 62183, "utensils-alt": 62182, "vaadin": 62472, "vacuum": 57421, "vacuum-robot": 57422, "value-absolute": 63142, "vector-square": 62923, "venus": 61985, "venus-double": 61990, "venus-mars": 61992, "vest": 57477, "vest-patches": 57478, "vhs": 63724, "viacoin": 62007, "viadeo": 62121, "viadeo-square": 62122, "vial": 62610, "vials": 62611, "viber": 62473, "video": 61501, "video-plus": 62689, "video-slash": 62690, "vihara": 63143, "vimeo": 62474, "vimeo-square": 61844, "vimeo-v": 62077, "vine": 61898, "violin": 63725, "virus": 57460, "virus-slash": 57461, "viruses": 57462, "vk": 61833, "vnv": 62475, "voicemail": 63639, "volcano": 63344, "volleyball-ball": 62559, "volume": 63144, "volume-down": 61479, "volume-mute": 63145, "volume-off": 61478, "volume-slash": 62178, "volume-up": 61480, "vote-nay": 63345, "vote-yea": 63346, "vr-cardboard": 63273, "vuejs": 62495, "wagon-covered": 63726, "walker": 63537, "walkie-talkie": 63727, "walking": 62804, "wallet": 62805, "wand": 63274, "wand-magic": 63275, "warehouse": 62612, "warehouse-alt": 62613, "washer": 63640, "watch": 62177, "watch-calculator": 63728, "watch-fitness": 63038, "watchman-monitoring": 57479, "water": 63347, "water-lower": 63348, "water-rise": 63349, "wave-sine": 63641, "wave-square": 63550, "wave-triangle": 63642, "waveform": 63729, "waveform-path": 63730, "waze": 63551, "webcam": 63538, "webcam-slash": 63539, "weebly": 62924, "weibo": 61834, "weight": 62614, "weight-hanging": 62925, "weixin": 61911, "whale": 63276, "whatsapp": 62002, "whatsapp-square": 62476, "wheat": 63277, "wheelchair": 61843, "whistle": 62560, "whmcs": 62477, "wifi": 61931, "wifi-1": 63146, "wifi-2": 63147, "wifi-slash": 63148, "wikipedia-w": 62054, "wind": 63278, "wind-turbine": 63643, "wind-warning": 63350, "window": 62478, "window-alt": 62479, "window-close": 62480, "window-frame": 57423, "window-frame-open": 57424, "window-maximize": 62160, "window-minimize": 62161, "window-restore": 62162, "windows": 61818, "windsock": 63351, "wine-bottle": 63279, "wine-glass": 62691, "wine-glass-alt": 62926, "wix": 62927, "wizards-of-the-coast": 63280, "wodu": 57480, "wolf-pack-battalion": 62740, "won-sign": 61785, "wordpress": 61850, "wordpress-simple": 62481, "wpbeginner": 62103, "wpexplorer": 62174, "wpforms": 62104, "wpressr": 62436, "wreath": 63458, "wrench": 61613, "x-ray": 62615, "xbox": 62482, "xing": 61800, "xing-square": 61801, "y-combinator": 62011, "yahoo": 61854, "yammer": 63552, "yandex": 62483, "yandex-international": 62484, "yarn": 63459, "yelp": 61929, "yen-sign": 61783, "yin-yang": 63149, "yoast": 62129, "youtube": 61799, "youtube-square": 62513, "zhihu": 63039 } ================================================ FILE: packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_brand.json ================================================ {"500px":62062,"accessible-icon":62312,"accusoft":62313,"acquisitions-incorporated":63151,"adn":61808,"adversal":62314,"affiliatetheme":62315,"airbnb":63540,"algolia":62316,"alipay":63042,"amazon-pay":62508,"amazon":62064,"amilia":62317,"android":61819,"angellist":61961,"angrycreative":62318,"angular":62496,"app-store-ios":62320,"app-store":62319,"apper":62321,"apple-pay":62485,"apple":61817,"artstation":63354,"asymmetrik":62322,"atlassian":63355,"audible":62323,"autoprefixer":62492,"avianex":62324,"aviato":62497,"aws":62325,"bandcamp":62165,"battle-net":63541,"behance-square":61877,"behance":61876,"bimobject":62328,"bitbucket":61809,"bitcoin":62329,"bity":62330,"black-tie":62078,"blackberry":62331,"blogger-b":62333,"blogger":62332,"bluetooth-b":62100,"bluetooth":62099,"bootstrap":63542,"btc":61786,"buffer":63543,"buromobelexperte":62335,"buy-n-large":63654,"buysellads":61965,"canadian-maple-leaf":63365,"cc-amazon-pay":62509,"cc-amex":61939,"cc-apple-pay":62486,"cc-diners-club":62028,"cc-discover":61938,"cc-jcb":62027,"cc-mastercard":61937,"cc-paypal":61940,"cc-stripe":61941,"cc-visa":61936,"centercode":62336,"centos":63369,"chrome":62056,"chromecast":63544,"cloudflare":57469,"cloudscale":62339,"cloudsmith":62340,"cloudversify":62341,"codepen":61899,"codiepie":62084,"confluence":63373,"connectdevelop":61966,"contao":62061,"cotton-bureau":63646,"cpanel":62344,"creative-commons-by":62695,"creative-commons-nc-eu":62697,"creative-commons-nc-jp":62698,"creative-commons-nc":62696,"creative-commons-nd":62699,"creative-commons-pd-alt":62701,"creative-commons-pd":62700,"creative-commons-remix":62702,"creative-commons-sa":62703,"creative-commons-sampling-plus":62705,"creative-commons-sampling":62704,"creative-commons-share":62706,"creative-commons-zero":62707,"creative-commons":62046,"critical-role":63177,"css3-alt":62347,"css3":61756,"cuttlefish":62348,"d-and-d-beyond":63178,"d-and-d":62349,"dailymotion":57426,"dashcube":61968,"deezer":57463,"delicious":61861,"deploydog":62350,"deskpro":62351,"dev":63180,"deviantart":61885,"dhl":63376,"diaspora":63377,"digg":61862,"digital-ocean":62353,"discord":62354,"discourse":62355,"dochub":62356,"docker":62357,"draft2digital":62358,"dribbble-square":62359,"dribbble":61821,"dropbox":61803,"drupal":61865,"dyalog":62361,"earlybirds":62362,"ebay":62708,"edge-legacy":57464,"edge":62082,"elementor":62512,"ello":62961,"ember":62499,"empire":61905,"envira":62105,"erlang":62365,"ethereum":62510,"etsy":62167,"evernote":63545,"expeditedssl":62014,"facebook-f":62366,"facebook-messenger":62367,"facebook-square":61570,"facebook":61594,"fantasy-flight-games":63196,"fedex":63383,"fedora":63384,"figma":63385,"firefox-browser":57351,"firefox":62057,"first-order-alt":62730,"first-order":62128,"firstdraft":62369,"flickr":61806,"flipboard":62541,"fly":62487,"font-awesome-alt":62300,"font-awesome-flag":62501,"font-awesome-logo-full":62694,"font-awesome":62132,"fonticons-fi":62370,"fonticons":62080,"fort-awesome-alt":62371,"fort-awesome":62086,"forumbee":61969,"foursquare":61824,"free-code-camp":62149,"freebsd":62372,"fulcrum":62731,"galactic-republic":62732,"galactic-senate":62733,"get-pocket":62053,"gg-circle":62049,"gg":62048,"git-alt":63553,"git-square":61906,"git":61907,"github-alt":61715,"github-square":61586,"github":61595,"gitkraken":62374,"gitlab":62102,"gitter":62502,"glide-g":62118,"glide":62117,"gofore":62375,"goodreads-g":62377,"goodreads":62376,"google-drive":62378,"google-pay":57465,"google-play":62379,"google-plus-g":61653,"google-plus-square":61652,"google-plus":62131,"google-wallet":61934,"google":61856,"gratipay":61828,"grav":62166,"gripfire":62380,"grunt":62381,"guilded":57470,"gulp":62382,"hacker-news-square":62383,"hacker-news":61908,"hackerrank":62967,"hips":62546,"hire-a-helper":62384,"hive":57471,"hooli":62503,"hornbill":62866,"hotjar":62385,"houzz":62076,"html5":61755,"hubspot":62386,"ideal":57363,"imdb":62168,"innosoft":57472,"instagram-square":57429,"instagram":61805,"instalod":57473,"intercom":63407,"internet-explorer":62059,"invision":63408,"ioxhost":61960,"itch-io":63546,"itunes-note":62389,"itunes":62388,"java":62692,"jedi-order":62734,"jenkins":62390,"jira":63409,"joget":62391,"joomla":61866,"js-square":62393,"js":62392,"jsfiddle":61900,"kaggle":62970,"keybase":62709,"keycdn":62394,"kickstarter-k":62396,"kickstarter":62395,"korvue":62511,"laravel":62397,"lastfm-square":61955,"lastfm":61954,"leanpub":61970,"less":62493,"line":62400,"linkedin-in":61665,"linkedin":61580,"linode":62136,"linux":61820,"lyft":62403,"magento":62404,"mailchimp":62878,"mandalorian":62735,"markdown":62991,"mastodon":62710,"maxcdn":61750,"mdb":63690,"medapps":62406,"medium-m":62407,"medium":62010,"medrt":62408,"meetup":62176,"megaport":62883,"mendeley":63411,"microblog":57370,"microsoft":62410,"mix":62411,"mixcloud":62089,"mixer":57430,"mizuni":62412,"modx":62085,"monero":62416,"napster":62418,"neos":62994,"nimblr":62888,"node-js":62419,"node":62489,"npm":62420,"ns8":62421,"nutritionix":62422,"octopus-deploy":57474,"odnoklassniki-square":62052,"odnoklassniki":62051,"old-republic":62736,"opencart":62013,"openid":61851,"opera":62058,"optin-monster":62012,"orcid":63698,"osi":62490,"page4":62423,"pagelines":61836,"palfed":62424,"patreon":62425,"paypal":61933,"penny-arcade":63236,"perbyte":57475,"periscope":62426,"phabricator":62427,"phoenix-framework":62428,"phoenix-squadron":62737,"php":62551,"pied-piper-alt":61864,"pied-piper-hat":62693,"pied-piper-pp":61863,"pied-piper-square":57374,"pied-piper":62126,"pinterest-p":62001,"pinterest-square":61651,"pinterest":61650,"playstation":62431,"product-hunt":62088,"pushed":62433,"python":62434,"qq":61910,"quinscape":62553,"quora":62148,"r-project":62711,"raspberry-pi":63419,"ravelry":62169,"react":62491,"reacteurope":63325,"readme":62677,"rebel":61904,"red-river":62435,"reddit-alien":62081,"reddit-square":61858,"reddit":61857,"redhat":63420,"renren":61835,"replyd":62438,"researchgate":62712,"resolving":62439,"rev":62898,"rocketchat":62440,"rockrms":62441,"rust":57466,"safari":62055,"salesforce":63547,"sass":62494,"schlix":62442,"scribd":62090,"searchengin":62443,"sellcast":62170,"sellsy":61971,"servicestack":62444,"shirtsinbulk":61972,"shopify":57431,"shopware":62901,"simplybuilt":61973,"sistrix":62446,"sith":62738,"sketch":63430,"skyatlas":61974,"skype":61822,"slack-hash":62447,"slack":61848,"slideshare":61927,"snapchat-ghost":62124,"snapchat-square":62125,"snapchat":62123,"soundcloud":61886,"sourcetree":63443,"speakap":62451,"speaker-deck":63548,"spotify":61884,"squarespace":62910,"stack-exchange":61837,"stack-overflow":61804,"stackpath":63554,"staylinked":62453,"steam-square":61879,"steam-symbol":62454,"steam":61878,"sticker-mule":62455,"strava":62504,"stripe-s":62506,"stripe":62505,"studiovinari":62456,"stumbleupon-circle":61859,"stumbleupon":61860,"superpowers":62173,"supple":62457,"suse":63446,"swift":63713,"symfony":63549,"teamspeak":62713,"telegram-plane":62462,"telegram":62150,"tencent-weibo":61909,"the-red-yeti":63133,"themeco":62918,"themeisle":62130,"think-peaks":63281,"tiktok":57467,"trade-federation":62739,"trello":61825,"tumblr-square":61812,"tumblr":61811,"twitch":61928,"twitter-square":61569,"twitter":61593,"typo3":62507,"uber":62466,"ubuntu":63455,"uikit":62467,"umbraco":63720,"uncharted":57476,"uniregistry":62468,"unity":57417,"unsplash":57468,"untappd":62469,"ups":63456,"usb":62087,"usps":63457,"ussunnah":62471,"vaadin":62472,"viacoin":62007,"viadeo-square":62122,"viadeo":62121,"viber":62473,"vimeo-square":61844,"vimeo-v":62077,"vimeo":62474,"vine":61898,"vk":61833,"vnv":62475,"vuejs":62495,"watchman-monitoring":57479,"waze":63551,"weebly":62924,"weibo":61834,"weixin":61911,"whatsapp-square":62476,"whatsapp":62002,"whmcs":62477,"wikipedia-w":62054,"windows":61818,"wix":62927,"wizards-of-the-coast":63280,"wodu":57480,"wolf-pack-battalion":62740,"wordpress-simple":62481,"wordpress":61850,"wpbeginner":62103,"wpexplorer":62174,"wpforms":62104,"wpressr":62436,"xbox":62482,"xing-square":61801,"xing":61800,"y-combinator":62011,"yahoo":61854,"yammer":63552,"yandex-international":62484,"yandex":62483,"yarn":63459,"yelp":61929,"yoast":62129,"youtube-square":62513,"youtube":61799,"zhihu":63039} ================================================ FILE: packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_duotone.json ================================================ {"abacus":63040,"acorn":63150,"ad":63041,"address-book":62137,"address-card":62139,"adjust":61506,"air-conditioner":63732,"air-freshener":62928,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-collection":63648,"album":63647,"alicorn":63152,"alien-monster":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"allergies":62561,"ambulance":61689,"american-sign-language-interpreting":62115,"amp-guitar":63649,"analytics":63043,"anchor":61757,"angel":63353,"angle-double-down":61699,"angle-double-left":61696,"angle-double-right":61697,"angle-double-up":61698,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angry":62806,"ankh":63044,"apple-alt":62929,"apple-crate":63153,"archive":61831,"archway":62807,"arrow-alt-circle-down":62296,"arrow-alt-circle-left":62297,"arrow-alt-circle-right":62298,"arrow-alt-circle-up":62299,"arrow-alt-down":62292,"arrow-alt-from-bottom":62278,"arrow-alt-from-left":62279,"arrow-alt-from-right":62280,"arrow-alt-from-top":62281,"arrow-alt-left":62293,"arrow-alt-right":62294,"arrow-alt-square-down":62288,"arrow-alt-square-left":62289,"arrow-alt-square-right":62290,"arrow-alt-square-up":62291,"arrow-alt-to-bottom":62282,"arrow-alt-to-left":62283,"arrow-alt-to-right":62284,"arrow-alt-to-top":62285,"arrow-alt-up":62295,"arrow-circle-down":61611,"arrow-circle-left":61608,"arrow-circle-right":61609,"arrow-circle-up":61610,"arrow-down":61539,"arrow-from-bottom":62274,"arrow-from-left":62275,"arrow-from-right":62276,"arrow-from-top":62277,"arrow-left":61536,"arrow-right":61537,"arrow-square-down":62265,"arrow-square-left":62266,"arrow-square-right":62267,"arrow-square-up":62268,"arrow-to-bottom":62269,"arrow-to-left":62270,"arrow-to-right":62272,"arrow-to-top":62273,"arrow-up":61538,"arrows-alt-h":62263,"arrows-alt-v":62264,"arrows-alt":61618,"arrows-h":61566,"arrows-v":61565,"arrows":61511,"assistive-listening-systems":62114,"asterisk":61545,"at":61946,"atlas":62808,"atom-alt":62931,"atom":62930,"audio-description":62110,"award":62809,"axe-battle":63155,"axe":63154,"baby-carriage":63357,"baby":63356,"backpack":62932,"backspace":62810,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"bags-shopping":63559,"bahai":63078,"balance-scale-left":62741,"balance-scale-right":62742,"balance-scale":62030,"ball-pile":63358,"ballot-check":63283,"ballot":63282,"ban":61534,"band-aid":62562,"banjo":63651,"barcode-alt":62563,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars":61641,"baseball-ball":62515,"baseball":62514,"basketball-ball":62516,"basketball-hoop":62517,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-full":62016,"battery-half":62018,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-alt":63735,"bed-bunk":63736,"bed-empty":63737,"bed":62006,"beer":61692,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"betamax":63652,"bezier-curve":62811,"bible":63047,"bicycle":61958,"biking-mountain":63563,"biking":63562,"binoculars":61925,"biohazard":63360,"birthday-cake":61949,"blanket":62616,"blender-phone":63158,"blender":62743,"blind":62109,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"blog":63361,"bold":61490,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-alt":62937,"book-dead":63159,"book-heart":62617,"book-medical":63462,"book-open":62744,"book-reader":62938,"book-spells":63160,"book-user":63463,"book":61485,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-style-alt":63572,"border-style":63571,"border-top":63573,"bow-arrow":63161,"bowling-ball":62518,"bowling-pins":62519,"box-alt":62618,"box-ballot":63285,"box-check":62567,"box-fragile":62619,"box-full":62620,"box-heart":62621,"box-open":62622,"box-tissue":57435,"box-up":62623,"box-usd":62624,"box":62566,"boxes-alt":62625,"boxes":62568,"boxing-glove":62520,"brackets-curly":63466,"brackets":63465,"braille":62113,"brain":62940,"bread-loaf":63467,"bread-slice":63468,"briefcase-medical":62569,"briefcase":61617,"bring-forward":63574,"bring-front":63575,"broadcast-tower":62745,"broom":62746,"browser":62334,"brush":62813,"bug":61832,"building":61869,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"burger-soda":63576,"burn":62570,"burrito":63469,"bus-alt":62814,"bus-school":62941,"bus":61959,"business-time":63050,"cabinet-filing":63051,"cactus":63655,"calculator-alt":63052,"calculator":61932,"calendar-alt":61555,"calendar-check":62068,"calendar-day":63363,"calendar-edit":62259,"calendar-exclamation":62260,"calendar-minus":62066,"calendar-plus":62065,"calendar-star":63286,"calendar-times":62067,"calendar-week":63364,"calendar":61747,"camcorder":63656,"camera-alt":62258,"camera-home":63742,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera":61488,"campfire":63162,"campground":63163,"candle-holder":63164,"candy-cane":63366,"candy-corn":63165,"cannabis":62815,"capsules":62571,"car-alt":62942,"car-battery":62943,"car-building":63577,"car-bump":62944,"car-bus":63578,"car-crash":62945,"car-garage":62946,"car-mechanic":62947,"car-side":62948,"car-tilt":62949,"car-wash":62950,"car":61881,"caravan-alt":57344,"caravan":63743,"caret-circle-down":62253,"caret-circle-left":62254,"caret-circle-right":62256,"caret-circle-up":62257,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-square-down":61776,"caret-square-left":61841,"caret-square-right":61778,"caret-square-up":61777,"caret-up":61656,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-plus":61975,"cash-register":63368,"cassette-tape":63659,"cat-space":57345,"cat":63166,"cauldron":63167,"cctv":63660,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-teacher":62748,"chalkboard":62747,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-line-down":63053,"chart-line":61953,"chart-network":63370,"chart-pie-alt":63054,"chart-pie":61952,"chart-scatter":63470,"check-circle":61528,"check-double":62816,"check-square":61770,"check":61452,"cheese-swiss":63472,"cheese":63471,"cheeseburger":63473,"chess-bishop-alt":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-alt":62526,"chess-clock":62525,"chess-king-alt":62528,"chess-king":62527,"chess-knight-alt":62530,"chess-knight":62529,"chess-pawn-alt":62532,"chess-pawn":62531,"chess-queen-alt":62534,"chess-queen":62533,"chess-rook-alt":62536,"chess-rook":62535,"chess":62521,"chevron-circle-down":61754,"chevron-circle-left":61751,"chevron-circle-right":61752,"chevron-circle-up":61753,"chevron-double-down":62242,"chevron-double-left":62243,"chevron-double-right":62244,"chevron-double-up":62245,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-square-down":62249,"chevron-square-left":62250,"chevron-square-right":62251,"chevron-square-up":62252,"chevron-up":61559,"child":61870,"chimney":63371,"church":62749,"circle-notch":61902,"circle":61713,"city":63055,"clarinet":63661,"claw-marks":63170,"clinic-medical":63474,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-prescription":62952,"clipboard-user":63475,"clipboard":62248,"clock":61463,"clone":62029,"closed-captioning":61962,"cloud-download-alt":62337,"cloud-download":61677,"cloud-drizzle":63288,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers":63295,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-upload-alt":62338,"cloud-upload":61678,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"club":62247,"cocktail":62817,"code-branch":61734,"code-commit":62342,"code-merge":62343,"code":61729,"coffee-pot":57346,"coffee-togo":63173,"coffee":61684,"coffin-cross":57425,"coffin":63174,"cog":61459,"cogs":61573,"coin":63580,"coins":62750,"columns":61659,"comet":57347,"comment-alt-check":62626,"comment-alt-dollar":63056,"comment-alt-dots":62627,"comment-alt-edit":62628,"comment-alt-exclamation":62629,"comment-alt-lines":62630,"comment-alt-medical":63476,"comment-alt-minus":62631,"comment-alt-music":63663,"comment-alt-plus":62632,"comment-alt-slash":62633,"comment-alt-smile":62634,"comment-alt-times":62635,"comment-alt":62074,"comment-check":62636,"comment-dollar":63057,"comment-dots":62637,"comment-edit":62638,"comment-exclamation":62639,"comment-lines":62640,"comment-medical":63477,"comment-minus":62641,"comment-music":63664,"comment-plus":62642,"comment-slash":62643,"comment-smile":62644,"comment-times":62645,"comment":61557,"comments-alt-dollar":63058,"comments-alt":62646,"comments-dollar":63059,"comments":61574,"compact-disc":62751,"compass-slash":62953,"compass":61774,"compress-alt":62498,"compress-arrows-alt":63372,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-speaker":63666,"concierge-bell":62818,"construction":63581,"container-storage":62647,"conveyor-belt-alt":62575,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"couch":62648,"cow":63176,"cowbell-more":63668,"cowbell":63667,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket":62537,"croissant":63478,"crop-alt":62821,"crop":61733,"cross":63060,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cube":61874,"cubes":61875,"curling":62538,"cut":61636,"dagger":63179,"database":61888,"deaf":62116,"debug":63481,"deer-rudolph":63375,"deer":63374,"democrat":63303,"desktop-alt":62352,"desktop":61704,"dewpoint":63304,"dharmachakra":63061,"diagnoses":62576,"diamond":61977,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"digging":63582,"digital-tachograph":62822,"diploma":62954,"directions":62955,"disc-drive":63669,"disease":63482,"divide":62761,"dizzy":62823,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":61781,"dolly-empty":62579,"dolly-flatbed-alt":62581,"dolly-flatbed-empty":62582,"dolly-flatbed":62580,"dolly":62578,"donate":62649,"door-closed":62762,"door-open":62763,"dot-circle":61842,"dove":62650,"download":61465,"drafting-compass":62824,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-alt":63584,"drone":63583,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-alt":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"ear-muffs":63381,"ear":62960,"eclipse-alt":63306,"eclipse":63305,"edit":61508,"egg-fried":63484,"egg":63483,"eject":61522,"elephant":63194,"ellipsis-h-alt":62363,"ellipsis-h":61761,"ellipsis-v-alt":62364,"ellipsis-v":61762,"empty-set":63062,"engine-warning":62962,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope-square":61849,"envelope":61664,"equals":62764,"eraser":61741,"ethernet":63382,"euro-sign":61779,"exchange-alt":62306,"exchange":61676,"exclamation-circle":61546,"exclamation-square":62241,"exclamation-triangle":61553,"exclamation":61738,"expand-alt":62500,"expand-arrows-alt":62238,"expand-arrows":62237,"expand-wide":62240,"expand":61541,"external-link-alt":62301,"external-link-square-alt":62304,"external-link-square":61772,"external-link":61582,"eye-dropper":61947,"eye-evil":63195,"eye-slash":61552,"eye":61550,"fan-table":57348,"fan":63587,"farm":63588,"fast-backward":61513,"fast-forward":61520,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-alt":62827,"feather":62765,"female":61826,"field-hockey":62540,"fighter-jet":61691,"file-alt":61788,"file-archive":61894,"file-audio":61895,"file-certificate":62963,"file-chart-line":63065,"file-chart-pie":63066,"file-check":62230,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-download":62829,"file-edit":62236,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-medical-alt":62584,"file-medical":62583,"file-minus":62232,"file-music":63670,"file-pdf":61889,"file-plus":62233,"file-powerpoint":61892,"file-prescription":62834,"file-search":63589,"file-signature":62835,"file-spreadsheet":63067,"file-times":62231,"file-upload":62836,"file-user":63068,"file-video":61896,"file-word":61890,"file":61787,"files-medical":63485,"fill-drip":62838,"fill":62837,"film-alt":62368,"film-canister":63671,"film":61448,"filter":61616,"fingerprint":62839,"fire-alt":63460,"fire-extinguisher":61748,"fire-smoke":63307,"fire":61549,"fireplace":63386,"first-aid":62585,"fish-cooked":63486,"fish":62840,"fist-raised":63198,"flag-alt":63308,"flag-checkered":61726,"flag-usa":63309,"flag":61476,"flame":63199,"flashlight":63672,"flask-poison":63200,"flask-potion":63201,"flask":61635,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flushed":62841,"flute":63673,"flux-capacitor":63674,"fog":63310,"folder-download":57427,"folder-minus":63069,"folder-open":61564,"folder-plus":63070,"folder-times":63071,"folder-tree":63490,"folder-upload":57428,"folder":61563,"folders":63072,"font-awesome-logo-full":62694,"font-case":63590,"font":61489,"football-ball":62542,"football-helmet":62543,"forklift":62586,"forward":61518,"fragile":62651,"french-fries":63491,"frog":62766,"frosty-head":63387,"frown-open":62842,"frown":61721,"function":63073,"funnel-dollar":63074,"futbol":61923,"galaxy":57352,"game-board-alt":63592,"game-board":63591,"game-console-handheld":63675,"gamepad-alt":63676,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"gas-pump-slash":62964,"gas-pump":62767,"gavel":61667,"gem":62373,"genderless":61997,"ghost":63202,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-champagne":63390,"glass-cheers":63391,"glass-citrus":63593,"glass-martini-alt":62843,"glass-martini":61440,"glass-whiskey-rocks":63393,"glass-whiskey":63392,"glass":63492,"glasses-alt":62965,"glasses":62768,"globe-africa":62844,"globe-americas":62845,"globe-asia":62846,"globe-europe":63394,"globe-snow":63395,"globe-stand":62966,"globe":61612,"golf-ball":62544,"golf-club":62545,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"greater-than-equal":62770,"greater-than":62769,"grimace":62847,"grin-alt":62849,"grin-beam-sweat":62851,"grin-beam":62850,"grin-hearts":62852,"grin-squint-tears":62854,"grin-squint":62853,"grin-stars":62855,"grin-tears":62856,"grin-tongue-squint":62858,"grin-tongue-wink":62859,"grin-tongue":62857,"grin-wink":62860,"grin":62848,"grip-horizontal":62861,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"guitar-electric":63678,"guitar":63398,"guitars":63679,"h-square":61693,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"hamburger":63493,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-usd":62656,"hand-holding-water":62657,"hand-holding":62653,"hand-lizard":62040,"hand-middle-finger":63494,"hand-paper":62038,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-receiving":62588,"hand-rock":62037,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hands-heart":62659,"hands-helping":62660,"hands-usd":62661,"hands-wash":57438,"hands":62658,"handshake-alt-slash":57439,"handshake-alt":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-hat":63495,"hashtag":62098,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"hdd":61600,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-headphones":63682,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"head-vr":63210,"heading":61916,"headphones-alt":62863,"headphones":61477,"headset":62864,"heart-broken":63401,"heart-circle":62663,"heart-rate":62968,"heart-square":62664,"heart":61444,"heartbeat":61982,"heat":57356,"helicopter":62771,"helmet-battle":63211,"hexagon":62226,"highlighter":62865,"hiking":63212,"hippo":63213,"history":61914,"hockey-mask":63214,"hockey-puck":62547,"hockey-sticks":62548,"holly-berry":63402,"home-alt":63498,"home-heart":62665,"home-lg-alt":63500,"home-lg":63499,"home":61461,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hospital-alt":62589,"hospital-symbol":62590,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub":62867,"hotdog":63503,"hotel":62868,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-damage":63217,"house-day":57358,"house-flood":63311,"house-leave":57359,"house-night":57360,"house-return":57361,"house-signal":57362,"house-user":57445,"house":57357,"hryvnia":63218,"humidity":63312,"hurricane":63313,"i-cursor":62022,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons-alt":63598,"icons":63597,"id-badge":62145,"id-card-alt":62591,"id-card":62146,"igloo":63406,"image-polaroid":63684,"image":61502,"images":62210,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"indent":61500,"industry-alt":62387,"industry":62069,"infinity":62772,"info-circle":61530,"info-square":62223,"info":61737,"inhaler":62969,"integral":63079,"intersection":63080,"inventory":62592,"island-tropical":63505,"italic":61491,"jack-o-lantern":62222,"jedi":63081,"joint":62869,"journal-whills":63082,"joystick":63685,"jug":63686,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton":63219,"key":61572,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kiss-beam":62871,"kiss-wink-heart":62872,"kiss":62870,"kite":63220,"kiwi-bird":62773,"knife-kitchen":63221,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp":62666,"landmark-alt":63314,"landmark":63087,"language":61867,"laptop-code":62972,"laptop-house":57446,"laptop-medical":63506,"laptop":61705,"lasso":63688,"laugh-beam":62874,"laugh-squint":62875,"laugh-wink":62876,"laugh":62873,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"lemon":61588,"less-than-equal":62775,"less-than":62774,"level-down-alt":62398,"level-down":61769,"level-up-alt":62399,"level-up":61768,"life-ring":61901,"light-ceiling":57366,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-dollar":63088,"lightbulb-exclamation":63089,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"link":61633,"lips":62976,"lira-sign":61845,"list-alt":61474,"list-music":63689,"list-ol":61643,"list-ul":61642,"list":61498,"location-arrow":61732,"location-circle":62978,"location-slash":62979,"location":62977,"lock-alt":62221,"lock-open-alt":62402,"lock-open":62401,"lock":61475,"long-arrow-alt-down":62217,"long-arrow-alt-left":62218,"long-arrow-alt-right":62219,"long-arrow-alt-up":62220,"long-arrow-down":61813,"long-arrow-left":61815,"long-arrow-right":61816,"long-arrow-up":61814,"loveseat":62668,"low-vision":62120,"luchador":62549,"luggage-cart":62877,"lungs-virus":57447,"lungs":62980,"mace":63224,"magic":61648,"magnet":61558,"mail-bulk":63092,"mailbox":63507,"male":61827,"mandolin":63225,"map-marked-alt":62880,"map-marked":62879,"map-marker-alt-slash":62981,"map-marker-alt":62405,"map-marker-check":62982,"map-marker-edit":62983,"map-marker-exclamation":62984,"map-marker-minus":62985,"map-marker-plus":62986,"map-marker-question":62987,"map-marker-slash":62988,"map-marker-smile":62989,"map-marker-times":62990,"map-marker":61505,"map-pin":62070,"map-signs":62071,"map":62073,"marker":62881,"mars-double":61991,"mars-stroke-h":61995,"mars-stroke-v":61994,"mars-stroke":61993,"mars":61986,"mask":63226,"meat":63508,"medal":62882,"medkit":61690,"megaphone":63093,"meh-blank":62884,"meh-rolling-eyes":62885,"meh":61722,"memory":62776,"menorah":63094,"mercury":61987,"meteor":63315,"microchip":62171,"microphone-alt-slash":62777,"microphone-alt":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mind-share":63095,"minus-circle":61526,"minus-hexagon":62215,"minus-octagon":62216,"minus-square":61766,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-alt":62413,"mobile-android-alt":62415,"mobile-android":62414,"mobile":61707,"money-bill-alt":62417,"money-bill-wave-alt":62779,"money-bill-wave":62778,"money-bill":61654,"money-check-alt":62781,"money-check-edit-alt":63603,"money-check-edit":63602,"money-check":62780,"monitor-heart-rate":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-stars":63317,"moon":61830,"mortar-pestle":62887,"mosque":63096,"motorcycle":61980,"mountain":63228,"mountains":63229,"mouse-alt":63693,"mouse-pointer":62021,"mouse":63692,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-tea":63605,"mug":63604,"music-alt-slash":63696,"music-alt":63695,"music-slash":63697,"music":61441,"narwhal":63230,"network-wired":63231,"neuter":61996,"newspaper":61930,"not-equal":62782,"notes-medical":62593,"object-group":62023,"object-ungroup":62024,"octagon":62214,"oil-can":62995,"oil-temp":62996,"om":63097,"omega":63098,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"page-break":63607,"pager":63509,"paint-brush-alt":62889,"paint-brush":61948,"paint-roller":62890,"palette":62783,"pallet-alt":62595,"pallet":62594,"paper-plane":61912,"paperclip":61638,"parachute-box":62669,"paragraph-rtl":63608,"paragraph":61917,"parking-circle-slash":62998,"parking-circle":62997,"parking-slash":62999,"parking":62784,"passport":62891,"pastafarianism":63099,"paste":61674,"pause-circle":62091,"pause":61516,"paw-alt":63233,"paw-claws":63234,"paw":61872,"peace":63100,"pegasus":63235,"pen-alt":62213,"pen-fancy":62892,"pen-nib":62893,"pen-square":61771,"pen":62212,"pencil-alt":62211,"pencil-paintbrush":63000,"pencil-ruler":62894,"pencil":61504,"pennant":62550,"people-arrows":57448,"people-carry":62670,"pepper-hot":63510,"percent":62101,"percentage":62785,"person-booth":63318,"person-carry":62671,"person-dolly-empty":62673,"person-dolly":62672,"person-sign":63319,"phone-alt":63609,"phone-laptop":63610,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-square-alt":63611,"phone-square":61592,"phone-volume":62112,"phone":61589,"photo-video":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-alt":62430,"plane-arrival":62895,"plane-departure":62896,"plane-slash":57449,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"play-circle":61764,"play":61515,"plug":61926,"plus-circle":61525,"plus-hexagon":62208,"plus-octagon":62209,"plus-square":61694,"plus":61543,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-h":63106,"poll-people":63321,"poll":63105,"poo-storm":63322,"poo":62206,"poop":63001,"popcorn":63513,"portal-enter":57378,"portal-exit":57379,"portrait":62432,"pound-sign":61780,"power-off":61457,"pray":63107,"praying-hands":63108,"prescription-bottle-alt":62598,"prescription-bottle":62597,"prescription":62897,"presentation":63109,"print-search":63514,"print-slash":63110,"print":61487,"procedures":62599,"project-diagram":62786,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pumpkin":63239,"puzzle-piece":61742,"qrcode":61481,"question-circle":61529,"question-square":62205,"question":61736,"quidditch":62552,"quote-left":61709,"quote-right":61710,"quran":63111,"rabbit-fast":63241,"rabbit":63240,"racquet":62554,"radar":57380,"radiation-alt":63418,"radiation":63417,"radio-alt":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"random":61556,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-landscape":62202,"rectangle-portrait":62203,"rectangle-wide":62204,"recycle":61880,"redo-alt":62201,"redo":61470,"refrigerator":57382,"registered":62045,"remove-format":63613,"repeat-1-alt":62310,"repeat-1":62309,"repeat-alt":62308,"repeat":62307,"reply-all":61730,"reply":62437,"republican":63326,"restroom":63421,"retweet-alt":62305,"retweet":61561,"ribbon":62678,"ring":63243,"rings-wedding":63515,"road":61464,"robot":62788,"rocket-launch":57383,"rocket":61749,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss-square":61763,"rss":61598,"ruble-sign":61784,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"running":63244,"rupee-sign":61782,"rv":63422,"sack-dollar":63517,"sack":63516,"sad-cry":62899,"sad-tear":62900,"salad":63518,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"save":61639,"sax-hot":63707,"saxophone":63708,"scalpel-path":63006,"scalpel":63005,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scanner":62600,"scarecrow":63245,"scarf":63425,"school":62793,"screwdriver":62794,"scroll-old":63247,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"search-dollar":63112,"search-location":63113,"search-minus":61456,"search-plus":61454,"search":61442,"seedling":62680,"send-back":63614,"send-backward":63615,"sensor-alert":57385,"sensor-fire":57386,"sensor-on":57387,"sensor-smoke":57388,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-alt-square":61921,"share-alt":61920,"share-square":61773,"share":61540,"sheep":63249,"shekel-sign":61963,"shield-alt":62445,"shield-check":62199,"shield-cross":63250,"shield-virus":57452,"shield":61746,"ship":61978,"shipping-fast":62603,"shipping-timed":62604,"shish-kebab":63521,"shoe-prints":62795,"shopping-bag":62096,"shopping-basket":62097,"shopping-cart":61562,"shovel-snow":63427,"shovel":63251,"shower":62156,"shredder":63114,"shuttle-van":62902,"shuttlecock":62555,"sickle":63522,"sigma":63115,"sign-in-alt":62198,"sign-in":61584,"sign-language":62119,"sign-out-alt":62197,"sign-out":61579,"sign":62681,"signal-1":63116,"signal-2":63117,"signal-3":63118,"signal-4":63119,"signal-alt-1":63121,"signal-alt-2":63122,"signal-alt-3":63123,"signal-alt-slash":63124,"signal-alt":63120,"signal-slash":63125,"signal-stream":63709,"signal":61458,"signature":62903,"sim-card":63428,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skating":63429,"skeleton":63008,"ski-jump":63431,"ski-lift":63432,"skiing-nordic":63434,"skiing":63433,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash":63253,"sledding":63435,"sleigh":63436,"sliders-h-square":62448,"sliders-h":61918,"sliders-v-square":62450,"sliders-v":62449,"smile-beam":62904,"smile-plus":62905,"smile-wink":62682,"smile":61720,"smog":63327,"smoke":63328,"smoking-ban":62797,"smoking":62605,"sms":63437,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowboarding":63438,"snowflake":62172,"snowflakes":63439,"snowman":63440,"snowmobile":63441,"snowplow":63442,"soap":57454,"socks":63126,"solar-panel":62906,"solar-system":57391,"sort-alpha-down-alt":63617,"sort-alpha-down":61789,"sort-alpha-up-alt":63618,"sort-alpha-up":61790,"sort-alt":63619,"sort-amount-down-alt":63620,"sort-amount-down":61792,"sort-amount-up-alt":63621,"sort-amount-up":61793,"sort-circle-down":57393,"sort-circle-up":57394,"sort-circle":57392,"sort-down":61661,"sort-numeric-down-alt":63622,"sort-numeric-down":61794,"sort-numeric-up-alt":63623,"sort-numeric-up":61795,"sort-shapes-down-alt":63625,"sort-shapes-down":63624,"sort-shapes-up-alt":63627,"sort-shapes-up":63626,"sort-size-down-alt":63629,"sort-size-down":63628,"sort-size-up-alt":63631,"sort-size-up":63630,"sort-up":61662,"sort":61660,"soup":63523,"spa":62907,"space-shuttle":61847,"space-station-moon-alt":57396,"space-station-moon":57395,"spade":62196,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-third":62452,"spinner":61712,"splotch":62908,"spray-can":62909,"sprinkler":57397,"square-full":62556,"square-root-alt":63128,"square-root":63127,"square":61640,"squirrel":63258,"staff":63259,"stamp":62911,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-alt":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-shooting":57398,"star":61445,"starfighter-alt":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"step-backward":61512,"step-forward":61521,"stethoscope":61681,"sticky-note":62025,"stocking":63445,"stomach":63011,"stop-circle":62093,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-alt-slash":57456,"store-alt":62799,"store-slash":57457,"store":62798,"stream":62800,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subway":62009,"suitcase-rolling":62913,"suitcase":61682,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"surprise":62914,"swatchbook":62915,"swimmer":62916,"swimming-pool":62917,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"synagogue":63131,"sync-alt":62193,"sync":61473,"syringe":62606,"table-tennis":62557,"table":61646,"tablet-alt":62458,"tablet-android-alt":62460,"tablet-android":62459,"tablet-rugged":62607,"tablet":61706,"tablets":62608,"tachometer-alt-average":63012,"tachometer-alt-fast":63013,"tachometer-alt-fastest":63014,"tachometer-alt-slow":63015,"tachometer-alt-slowest":63016,"tachometer-alt":62461,"tachometer-average":63017,"tachometer-fast":63018,"tachometer-fastest":63019,"tachometer-slow":63020,"tachometer-slowest":63021,"tachometer":61668,"taco":63526,"tag":61483,"tags":61484,"tally":63132,"tanakh":63527,"tape":62683,"tasks-alt":63528,"tasks":61614,"taxi":61882,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-down":57407,"temperature-frigid":63336,"temperature-high":63337,"temperature-hot":63338,"temperature-low":63339,"temperature-up":57408,"tenge":63447,"tennis-ball":62558,"terminal":61728,"text-height":61492,"text-size":63636,"text-width":61493,"text":63635,"th-large":61449,"th-list":61451,"th":61450,"theater-masks":63024,"thermometer-empty":62155,"thermometer-full":62151,"thermometer-half":62153,"thermometer-quarter":62154,"thermometer-three-quarters":62152,"thermometer":62609,"theta":63134,"thumbs-down":61797,"thumbs-up":61796,"thumbtack":61581,"thunderstorm-moon":63341,"thunderstorm-sun":63342,"thunderstorm":63340,"ticket-alt":62463,"ticket":61765,"tilde":63135,"times-circle":61527,"times-hexagon":62190,"times-octagon":62192,"times-square":62163,"times":61453,"tint-slash":62919,"tint":61507,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"tired":62920,"toggle-off":61956,"toggle-on":61957,"toilet-paper-alt":63263,"toilet-paper-slash":57458,"toilet-paper":63262,"toilet":63448,"tombstone-alt":63265,"tombstone":63264,"toolbox":62802,"tools":63449,"tooth":62921,"toothbrush":63029,"torah":63136,"torii-gate":63137,"tornado":63343,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train":62008,"tram":63450,"transgender-alt":61989,"transgender":61988,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-empty":57414,"transporter":57410,"trash-alt":62189,"trash-restore-alt":63530,"trash-restore":63529,"trash-undo-alt":63638,"trash-undo":63637,"trash":61944,"treasure-chest":63267,"tree-alt":62464,"tree-christmas":63451,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-music":63714,"triangle":62188,"trophy-alt":62187,"trophy":61585,"truck-container":62684,"truck-couch":62685,"truck-loading":62686,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plow":63454,"truck-ramp":62688,"truck":61649,"trumpet":63715,"tshirt":62803,"tty":61924,"turkey":63269,"turntable":63716,"turtle":63270,"tv-alt":63717,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella":61673,"underline":61645,"undo-alt":62186,"undo":61666,"unicorn":63271,"union":63138,"universal-access":62106,"university":61852,"unlink":61735,"unlock-alt":61758,"unlock":61596,"upload":61587,"usb-drive":63721,"usd-circle":62184,"usd-square":62185,"user-alien":57418,"user-alt-slash":62714,"user-alt":62470,"user-astronaut":62715,"user-chart":63139,"user-check":62716,"user-circle":62141,"user-clock":62717,"user-cog":62718,"user-cowboy":63722,"user-crown":63140,"user-edit":62719,"user-friends":62720,"user-graduate":62721,"user-hard-hat":63532,"user-headset":63533,"user-injured":63272,"user-lock":62722,"user-md-chat":63534,"user-md":61680,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse":63535,"user-plus":62004,"user-robot":57419,"user-secret":61979,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie":62728,"user-times":62005,"user-unlock":57432,"user-visor":57420,"user":61447,"users-class":63037,"users-cog":62729,"users-crown":63141,"users-medical":63536,"users-slash":57459,"users":61632,"utensil-fork":62179,"utensil-knife":62180,"utensil-spoon":62181,"utensils-alt":62182,"utensils":62183,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"vector-square":62923,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vhs":63724,"vial":62610,"vials":62611,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball-ball":62559,"volume-down":61479,"volume-mute":63145,"volume-off":61478,"volume-slash":62178,"volume-up":61480,"volume":63144,"vote-nay":63345,"vote-yea":63346,"vr-cardboard":63273,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"walking":62804,"wallet":62805,"wand-magic":63275,"wand":63274,"warehouse-alt":62613,"warehouse":62612,"washer":63640,"watch-calculator":63728,"watch-fitness":63038,"watch":62177,"water-lower":63348,"water-rise":63349,"water":63347,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"waveform-path":63730,"waveform":63729,"webcam-slash":63539,"webcam":63538,"weight-hanging":62925,"weight":62614,"whale":63276,"wheat":63277,"wheelchair":61843,"whistle":62560,"wifi-1":63146,"wifi-2":63147,"wifi-slash":63148,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-alt":62479,"window-close":62480,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-alt":62926,"wine-glass":62691,"won-sign":61785,"wreath":63458,"wrench":61613,"x-ray":62615,"yen-sign":61783,"yin-yang":63149} ================================================ FILE: packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_light.json ================================================ {"abacus":63040,"acorn":63150,"ad":63041,"address-book":62137,"address-card":62139,"adjust":61506,"air-conditioner":63732,"air-freshener":62928,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-collection":63648,"album":63647,"alicorn":63152,"alien-monster":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"allergies":62561,"ambulance":61689,"american-sign-language-interpreting":62115,"amp-guitar":63649,"analytics":63043,"anchor":61757,"angel":63353,"angle-double-down":61699,"angle-double-left":61696,"angle-double-right":61697,"angle-double-up":61698,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angry":62806,"ankh":63044,"apple-alt":62929,"apple-crate":63153,"archive":61831,"archway":62807,"arrow-alt-circle-down":62296,"arrow-alt-circle-left":62297,"arrow-alt-circle-right":62298,"arrow-alt-circle-up":62299,"arrow-alt-down":62292,"arrow-alt-from-bottom":62278,"arrow-alt-from-left":62279,"arrow-alt-from-right":62280,"arrow-alt-from-top":62281,"arrow-alt-left":62293,"arrow-alt-right":62294,"arrow-alt-square-down":62288,"arrow-alt-square-left":62289,"arrow-alt-square-right":62290,"arrow-alt-square-up":62291,"arrow-alt-to-bottom":62282,"arrow-alt-to-left":62283,"arrow-alt-to-right":62284,"arrow-alt-to-top":62285,"arrow-alt-up":62295,"arrow-circle-down":61611,"arrow-circle-left":61608,"arrow-circle-right":61609,"arrow-circle-up":61610,"arrow-down":61539,"arrow-from-bottom":62274,"arrow-from-left":62275,"arrow-from-right":62276,"arrow-from-top":62277,"arrow-left":61536,"arrow-right":61537,"arrow-square-down":62265,"arrow-square-left":62266,"arrow-square-right":62267,"arrow-square-up":62268,"arrow-to-bottom":62269,"arrow-to-left":62270,"arrow-to-right":62272,"arrow-to-top":62273,"arrow-up":61538,"arrows-alt-h":62263,"arrows-alt-v":62264,"arrows-alt":61618,"arrows-h":61566,"arrows-v":61565,"arrows":61511,"assistive-listening-systems":62114,"asterisk":61545,"at":61946,"atlas":62808,"atom-alt":62931,"atom":62930,"audio-description":62110,"award":62809,"axe-battle":63155,"axe":63154,"baby-carriage":63357,"baby":63356,"backpack":62932,"backspace":62810,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"bags-shopping":63559,"bahai":63078,"balance-scale-left":62741,"balance-scale-right":62742,"balance-scale":62030,"ball-pile":63358,"ballot-check":63283,"ballot":63282,"ban":61534,"band-aid":62562,"banjo":63651,"barcode-alt":62563,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars":61641,"baseball-ball":62515,"baseball":62514,"basketball-ball":62516,"basketball-hoop":62517,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-full":62016,"battery-half":62018,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-alt":63735,"bed-bunk":63736,"bed-empty":63737,"bed":62006,"beer":61692,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"betamax":63652,"bezier-curve":62811,"bible":63047,"bicycle":61958,"biking-mountain":63563,"biking":63562,"binoculars":61925,"biohazard":63360,"birthday-cake":61949,"blanket":62616,"blender-phone":63158,"blender":62743,"blind":62109,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"blog":63361,"bold":61490,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-alt":62937,"book-dead":63159,"book-heart":62617,"book-medical":63462,"book-open":62744,"book-reader":62938,"book-spells":63160,"book-user":63463,"book":61485,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-style-alt":63572,"border-style":63571,"border-top":63573,"bow-arrow":63161,"bowling-ball":62518,"bowling-pins":62519,"box-alt":62618,"box-ballot":63285,"box-check":62567,"box-fragile":62619,"box-full":62620,"box-heart":62621,"box-open":62622,"box-tissue":57435,"box-up":62623,"box-usd":62624,"box":62566,"boxes-alt":62625,"boxes":62568,"boxing-glove":62520,"brackets-curly":63466,"brackets":63465,"braille":62113,"brain":62940,"bread-loaf":63467,"bread-slice":63468,"briefcase-medical":62569,"briefcase":61617,"bring-forward":63574,"bring-front":63575,"broadcast-tower":62745,"broom":62746,"browser":62334,"brush":62813,"bug":61832,"building":61869,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"burger-soda":63576,"burn":62570,"burrito":63469,"bus-alt":62814,"bus-school":62941,"bus":61959,"business-time":63050,"cabinet-filing":63051,"cactus":63655,"calculator-alt":63052,"calculator":61932,"calendar-alt":61555,"calendar-check":62068,"calendar-day":63363,"calendar-edit":62259,"calendar-exclamation":62260,"calendar-minus":62066,"calendar-plus":62065,"calendar-star":63286,"calendar-times":62067,"calendar-week":63364,"calendar":61747,"camcorder":63656,"camera-alt":62258,"camera-home":63742,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera":61488,"campfire":63162,"campground":63163,"candle-holder":63164,"candy-cane":63366,"candy-corn":63165,"cannabis":62815,"capsules":62571,"car-alt":62942,"car-battery":62943,"car-building":63577,"car-bump":62944,"car-bus":63578,"car-crash":62945,"car-garage":62946,"car-mechanic":62947,"car-side":62948,"car-tilt":62949,"car-wash":62950,"car":61881,"caravan-alt":57344,"caravan":63743,"caret-circle-down":62253,"caret-circle-left":62254,"caret-circle-right":62256,"caret-circle-up":62257,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-square-down":61776,"caret-square-left":61841,"caret-square-right":61778,"caret-square-up":61777,"caret-up":61656,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-plus":61975,"cash-register":63368,"cassette-tape":63659,"cat-space":57345,"cat":63166,"cauldron":63167,"cctv":63660,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-teacher":62748,"chalkboard":62747,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-line-down":63053,"chart-line":61953,"chart-network":63370,"chart-pie-alt":63054,"chart-pie":61952,"chart-scatter":63470,"check-circle":61528,"check-double":62816,"check-square":61770,"check":61452,"cheese-swiss":63472,"cheese":63471,"cheeseburger":63473,"chess-bishop-alt":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-alt":62526,"chess-clock":62525,"chess-king-alt":62528,"chess-king":62527,"chess-knight-alt":62530,"chess-knight":62529,"chess-pawn-alt":62532,"chess-pawn":62531,"chess-queen-alt":62534,"chess-queen":62533,"chess-rook-alt":62536,"chess-rook":62535,"chess":62521,"chevron-circle-down":61754,"chevron-circle-left":61751,"chevron-circle-right":61752,"chevron-circle-up":61753,"chevron-double-down":62242,"chevron-double-left":62243,"chevron-double-right":62244,"chevron-double-up":62245,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-square-down":62249,"chevron-square-left":62250,"chevron-square-right":62251,"chevron-square-up":62252,"chevron-up":61559,"child":61870,"chimney":63371,"church":62749,"circle-notch":61902,"circle":61713,"city":63055,"clarinet":63661,"claw-marks":63170,"clinic-medical":63474,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-prescription":62952,"clipboard-user":63475,"clipboard":62248,"clock":61463,"clone":62029,"closed-captioning":61962,"cloud-download-alt":62337,"cloud-download":61677,"cloud-drizzle":63288,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers":63295,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-upload-alt":62338,"cloud-upload":61678,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"club":62247,"cocktail":62817,"code-branch":61734,"code-commit":62342,"code-merge":62343,"code":61729,"coffee-pot":57346,"coffee-togo":63173,"coffee":61684,"coffin-cross":57425,"coffin":63174,"cog":61459,"cogs":61573,"coin":63580,"coins":62750,"columns":61659,"comet":57347,"comment-alt-check":62626,"comment-alt-dollar":63056,"comment-alt-dots":62627,"comment-alt-edit":62628,"comment-alt-exclamation":62629,"comment-alt-lines":62630,"comment-alt-medical":63476,"comment-alt-minus":62631,"comment-alt-music":63663,"comment-alt-plus":62632,"comment-alt-slash":62633,"comment-alt-smile":62634,"comment-alt-times":62635,"comment-alt":62074,"comment-check":62636,"comment-dollar":63057,"comment-dots":62637,"comment-edit":62638,"comment-exclamation":62639,"comment-lines":62640,"comment-medical":63477,"comment-minus":62641,"comment-music":63664,"comment-plus":62642,"comment-slash":62643,"comment-smile":62644,"comment-times":62645,"comment":61557,"comments-alt-dollar":63058,"comments-alt":62646,"comments-dollar":63059,"comments":61574,"compact-disc":62751,"compass-slash":62953,"compass":61774,"compress-alt":62498,"compress-arrows-alt":63372,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-speaker":63666,"concierge-bell":62818,"construction":63581,"container-storage":62647,"conveyor-belt-alt":62575,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"couch":62648,"cow":63176,"cowbell-more":63668,"cowbell":63667,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket":62537,"croissant":63478,"crop-alt":62821,"crop":61733,"cross":63060,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cube":61874,"cubes":61875,"curling":62538,"cut":61636,"dagger":63179,"database":61888,"deaf":62116,"debug":63481,"deer-rudolph":63375,"deer":63374,"democrat":63303,"desktop-alt":62352,"desktop":61704,"dewpoint":63304,"dharmachakra":63061,"diagnoses":62576,"diamond":61977,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"digging":63582,"digital-tachograph":62822,"diploma":62954,"directions":62955,"disc-drive":63669,"disease":63482,"divide":62761,"dizzy":62823,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":61781,"dolly-empty":62579,"dolly-flatbed-alt":62581,"dolly-flatbed-empty":62582,"dolly-flatbed":62580,"dolly":62578,"donate":62649,"door-closed":62762,"door-open":62763,"dot-circle":61842,"dove":62650,"download":61465,"drafting-compass":62824,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-alt":63584,"drone":63583,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-alt":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"ear-muffs":63381,"ear":62960,"eclipse-alt":63306,"eclipse":63305,"edit":61508,"egg-fried":63484,"egg":63483,"eject":61522,"elephant":63194,"ellipsis-h-alt":62363,"ellipsis-h":61761,"ellipsis-v-alt":62364,"ellipsis-v":61762,"empty-set":63062,"engine-warning":62962,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope-square":61849,"envelope":61664,"equals":62764,"eraser":61741,"ethernet":63382,"euro-sign":61779,"exchange-alt":62306,"exchange":61676,"exclamation-circle":61546,"exclamation-square":62241,"exclamation-triangle":61553,"exclamation":61738,"expand-alt":62500,"expand-arrows-alt":62238,"expand-arrows":62237,"expand-wide":62240,"expand":61541,"external-link-alt":62301,"external-link-square-alt":62304,"external-link-square":61772,"external-link":61582,"eye-dropper":61947,"eye-evil":63195,"eye-slash":61552,"eye":61550,"fan-table":57348,"fan":63587,"farm":63588,"fast-backward":61513,"fast-forward":61520,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-alt":62827,"feather":62765,"female":61826,"field-hockey":62540,"fighter-jet":61691,"file-alt":61788,"file-archive":61894,"file-audio":61895,"file-certificate":62963,"file-chart-line":63065,"file-chart-pie":63066,"file-check":62230,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-download":62829,"file-edit":62236,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-medical-alt":62584,"file-medical":62583,"file-minus":62232,"file-music":63670,"file-pdf":61889,"file-plus":62233,"file-powerpoint":61892,"file-prescription":62834,"file-search":63589,"file-signature":62835,"file-spreadsheet":63067,"file-times":62231,"file-upload":62836,"file-user":63068,"file-video":61896,"file-word":61890,"file":61787,"files-medical":63485,"fill-drip":62838,"fill":62837,"film-alt":62368,"film-canister":63671,"film":61448,"filter":61616,"fingerprint":62839,"fire-alt":63460,"fire-extinguisher":61748,"fire-smoke":63307,"fire":61549,"fireplace":63386,"first-aid":62585,"fish-cooked":63486,"fish":62840,"fist-raised":63198,"flag-alt":63308,"flag-checkered":61726,"flag-usa":63309,"flag":61476,"flame":63199,"flashlight":63672,"flask-poison":63200,"flask-potion":63201,"flask":61635,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flushed":62841,"flute":63673,"flux-capacitor":63674,"fog":63310,"folder-download":57427,"folder-minus":63069,"folder-open":61564,"folder-plus":63070,"folder-times":63071,"folder-tree":63490,"folder-upload":57428,"folder":61563,"folders":63072,"font-awesome-logo-full":62694,"font-case":63590,"font":61489,"football-ball":62542,"football-helmet":62543,"forklift":62586,"forward":61518,"fragile":62651,"french-fries":63491,"frog":62766,"frosty-head":63387,"frown-open":62842,"frown":61721,"function":63073,"funnel-dollar":63074,"futbol":61923,"galaxy":57352,"game-board-alt":63592,"game-board":63591,"game-console-handheld":63675,"gamepad-alt":63676,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"gas-pump-slash":62964,"gas-pump":62767,"gavel":61667,"gem":62373,"genderless":61997,"ghost":63202,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-champagne":63390,"glass-cheers":63391,"glass-citrus":63593,"glass-martini-alt":62843,"glass-martini":61440,"glass-whiskey-rocks":63393,"glass-whiskey":63392,"glass":63492,"glasses-alt":62965,"glasses":62768,"globe-africa":62844,"globe-americas":62845,"globe-asia":62846,"globe-europe":63394,"globe-snow":63395,"globe-stand":62966,"globe":61612,"golf-ball":62544,"golf-club":62545,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"greater-than-equal":62770,"greater-than":62769,"grimace":62847,"grin-alt":62849,"grin-beam-sweat":62851,"grin-beam":62850,"grin-hearts":62852,"grin-squint-tears":62854,"grin-squint":62853,"grin-stars":62855,"grin-tears":62856,"grin-tongue-squint":62858,"grin-tongue-wink":62859,"grin-tongue":62857,"grin-wink":62860,"grin":62848,"grip-horizontal":62861,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"guitar-electric":63678,"guitar":63398,"guitars":63679,"h-square":61693,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"hamburger":63493,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-usd":62656,"hand-holding-water":62657,"hand-holding":62653,"hand-lizard":62040,"hand-middle-finger":63494,"hand-paper":62038,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-receiving":62588,"hand-rock":62037,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hands-heart":62659,"hands-helping":62660,"hands-usd":62661,"hands-wash":57438,"hands":62658,"handshake-alt-slash":57439,"handshake-alt":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-hat":63495,"hashtag":62098,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"hdd":61600,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-headphones":63682,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"head-vr":63210,"heading":61916,"headphones-alt":62863,"headphones":61477,"headset":62864,"heart-broken":63401,"heart-circle":62663,"heart-rate":62968,"heart-square":62664,"heart":61444,"heartbeat":61982,"heat":57356,"helicopter":62771,"helmet-battle":63211,"hexagon":62226,"highlighter":62865,"hiking":63212,"hippo":63213,"history":61914,"hockey-mask":63214,"hockey-puck":62547,"hockey-sticks":62548,"holly-berry":63402,"home-alt":63498,"home-heart":62665,"home-lg-alt":63500,"home-lg":63499,"home":61461,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hospital-alt":62589,"hospital-symbol":62590,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub":62867,"hotdog":63503,"hotel":62868,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-damage":63217,"house-day":57358,"house-flood":63311,"house-leave":57359,"house-night":57360,"house-return":57361,"house-signal":57362,"house-user":57445,"house":57357,"hryvnia":63218,"humidity":63312,"hurricane":63313,"i-cursor":62022,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons-alt":63598,"icons":63597,"id-badge":62145,"id-card-alt":62591,"id-card":62146,"igloo":63406,"image-polaroid":63684,"image":61502,"images":62210,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"indent":61500,"industry-alt":62387,"industry":62069,"infinity":62772,"info-circle":61530,"info-square":62223,"info":61737,"inhaler":62969,"integral":63079,"intersection":63080,"inventory":62592,"island-tropical":63505,"italic":61491,"jack-o-lantern":62222,"jedi":63081,"joint":62869,"journal-whills":63082,"joystick":63685,"jug":63686,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton":63219,"key":61572,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kiss-beam":62871,"kiss-wink-heart":62872,"kiss":62870,"kite":63220,"kiwi-bird":62773,"knife-kitchen":63221,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp":62666,"landmark-alt":63314,"landmark":63087,"language":61867,"laptop-code":62972,"laptop-house":57446,"laptop-medical":63506,"laptop":61705,"lasso":63688,"laugh-beam":62874,"laugh-squint":62875,"laugh-wink":62876,"laugh":62873,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"lemon":61588,"less-than-equal":62775,"less-than":62774,"level-down-alt":62398,"level-down":61769,"level-up-alt":62399,"level-up":61768,"life-ring":61901,"light-ceiling":57366,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-dollar":63088,"lightbulb-exclamation":63089,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"link":61633,"lips":62976,"lira-sign":61845,"list-alt":61474,"list-music":63689,"list-ol":61643,"list-ul":61642,"list":61498,"location-arrow":61732,"location-circle":62978,"location-slash":62979,"location":62977,"lock-alt":62221,"lock-open-alt":62402,"lock-open":62401,"lock":61475,"long-arrow-alt-down":62217,"long-arrow-alt-left":62218,"long-arrow-alt-right":62219,"long-arrow-alt-up":62220,"long-arrow-down":61813,"long-arrow-left":61815,"long-arrow-right":61816,"long-arrow-up":61814,"loveseat":62668,"low-vision":62120,"luchador":62549,"luggage-cart":62877,"lungs-virus":57447,"lungs":62980,"mace":63224,"magic":61648,"magnet":61558,"mail-bulk":63092,"mailbox":63507,"male":61827,"mandolin":63225,"map-marked-alt":62880,"map-marked":62879,"map-marker-alt-slash":62981,"map-marker-alt":62405,"map-marker-check":62982,"map-marker-edit":62983,"map-marker-exclamation":62984,"map-marker-minus":62985,"map-marker-plus":62986,"map-marker-question":62987,"map-marker-slash":62988,"map-marker-smile":62989,"map-marker-times":62990,"map-marker":61505,"map-pin":62070,"map-signs":62071,"map":62073,"marker":62881,"mars-double":61991,"mars-stroke-h":61995,"mars-stroke-v":61994,"mars-stroke":61993,"mars":61986,"mask":63226,"meat":63508,"medal":62882,"medkit":61690,"megaphone":63093,"meh-blank":62884,"meh-rolling-eyes":62885,"meh":61722,"memory":62776,"menorah":63094,"mercury":61987,"meteor":63315,"microchip":62171,"microphone-alt-slash":62777,"microphone-alt":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mind-share":63095,"minus-circle":61526,"minus-hexagon":62215,"minus-octagon":62216,"minus-square":61766,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-alt":62413,"mobile-android-alt":62415,"mobile-android":62414,"mobile":61707,"money-bill-alt":62417,"money-bill-wave-alt":62779,"money-bill-wave":62778,"money-bill":61654,"money-check-alt":62781,"money-check-edit-alt":63603,"money-check-edit":63602,"money-check":62780,"monitor-heart-rate":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-stars":63317,"moon":61830,"mortar-pestle":62887,"mosque":63096,"motorcycle":61980,"mountain":63228,"mountains":63229,"mouse-alt":63693,"mouse-pointer":62021,"mouse":63692,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-tea":63605,"mug":63604,"music-alt-slash":63696,"music-alt":63695,"music-slash":63697,"music":61441,"narwhal":63230,"network-wired":63231,"neuter":61996,"newspaper":61930,"not-equal":62782,"notes-medical":62593,"object-group":62023,"object-ungroup":62024,"octagon":62214,"oil-can":62995,"oil-temp":62996,"om":63097,"omega":63098,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"page-break":63607,"pager":63509,"paint-brush-alt":62889,"paint-brush":61948,"paint-roller":62890,"palette":62783,"pallet-alt":62595,"pallet":62594,"paper-plane":61912,"paperclip":61638,"parachute-box":62669,"paragraph-rtl":63608,"paragraph":61917,"parking-circle-slash":62998,"parking-circle":62997,"parking-slash":62999,"parking":62784,"passport":62891,"pastafarianism":63099,"paste":61674,"pause-circle":62091,"pause":61516,"paw-alt":63233,"paw-claws":63234,"paw":61872,"peace":63100,"pegasus":63235,"pen-alt":62213,"pen-fancy":62892,"pen-nib":62893,"pen-square":61771,"pen":62212,"pencil-alt":62211,"pencil-paintbrush":63000,"pencil-ruler":62894,"pencil":61504,"pennant":62550,"people-arrows":57448,"people-carry":62670,"pepper-hot":63510,"percent":62101,"percentage":62785,"person-booth":63318,"person-carry":62671,"person-dolly-empty":62673,"person-dolly":62672,"person-sign":63319,"phone-alt":63609,"phone-laptop":63610,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-square-alt":63611,"phone-square":61592,"phone-volume":62112,"phone":61589,"photo-video":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-alt":62430,"plane-arrival":62895,"plane-departure":62896,"plane-slash":57449,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"play-circle":61764,"play":61515,"plug":61926,"plus-circle":61525,"plus-hexagon":62208,"plus-octagon":62209,"plus-square":61694,"plus":61543,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-h":63106,"poll-people":63321,"poll":63105,"poo-storm":63322,"poo":62206,"poop":63001,"popcorn":63513,"portal-enter":57378,"portal-exit":57379,"portrait":62432,"pound-sign":61780,"power-off":61457,"pray":63107,"praying-hands":63108,"prescription-bottle-alt":62598,"prescription-bottle":62597,"prescription":62897,"presentation":63109,"print-search":63514,"print-slash":63110,"print":61487,"procedures":62599,"project-diagram":62786,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pumpkin":63239,"puzzle-piece":61742,"qrcode":61481,"question-circle":61529,"question-square":62205,"question":61736,"quidditch":62552,"quote-left":61709,"quote-right":61710,"quran":63111,"rabbit-fast":63241,"rabbit":63240,"racquet":62554,"radar":57380,"radiation-alt":63418,"radiation":63417,"radio-alt":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"random":61556,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-landscape":62202,"rectangle-portrait":62203,"rectangle-wide":62204,"recycle":61880,"redo-alt":62201,"redo":61470,"refrigerator":57382,"registered":62045,"remove-format":63613,"repeat-1-alt":62310,"repeat-1":62309,"repeat-alt":62308,"repeat":62307,"reply-all":61730,"reply":62437,"republican":63326,"restroom":63421,"retweet-alt":62305,"retweet":61561,"ribbon":62678,"ring":63243,"rings-wedding":63515,"road":61464,"robot":62788,"rocket-launch":57383,"rocket":61749,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss-square":61763,"rss":61598,"ruble-sign":61784,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"running":63244,"rupee-sign":61782,"rv":63422,"sack-dollar":63517,"sack":63516,"sad-cry":62899,"sad-tear":62900,"salad":63518,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"save":61639,"sax-hot":63707,"saxophone":63708,"scalpel-path":63006,"scalpel":63005,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scanner":62600,"scarecrow":63245,"scarf":63425,"school":62793,"screwdriver":62794,"scroll-old":63247,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"search-dollar":63112,"search-location":63113,"search-minus":61456,"search-plus":61454,"search":61442,"seedling":62680,"send-back":63614,"send-backward":63615,"sensor-alert":57385,"sensor-fire":57386,"sensor-on":57387,"sensor-smoke":57388,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-alt-square":61921,"share-alt":61920,"share-square":61773,"share":61540,"sheep":63249,"shekel-sign":61963,"shield-alt":62445,"shield-check":62199,"shield-cross":63250,"shield-virus":57452,"shield":61746,"ship":61978,"shipping-fast":62603,"shipping-timed":62604,"shish-kebab":63521,"shoe-prints":62795,"shopping-bag":62096,"shopping-basket":62097,"shopping-cart":61562,"shovel-snow":63427,"shovel":63251,"shower":62156,"shredder":63114,"shuttle-van":62902,"shuttlecock":62555,"sickle":63522,"sigma":63115,"sign-in-alt":62198,"sign-in":61584,"sign-language":62119,"sign-out-alt":62197,"sign-out":61579,"sign":62681,"signal-1":63116,"signal-2":63117,"signal-3":63118,"signal-4":63119,"signal-alt-1":63121,"signal-alt-2":63122,"signal-alt-3":63123,"signal-alt-slash":63124,"signal-alt":63120,"signal-slash":63125,"signal-stream":63709,"signal":61458,"signature":62903,"sim-card":63428,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skating":63429,"skeleton":63008,"ski-jump":63431,"ski-lift":63432,"skiing-nordic":63434,"skiing":63433,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash":63253,"sledding":63435,"sleigh":63436,"sliders-h-square":62448,"sliders-h":61918,"sliders-v-square":62450,"sliders-v":62449,"smile-beam":62904,"smile-plus":62905,"smile-wink":62682,"smile":61720,"smog":63327,"smoke":63328,"smoking-ban":62797,"smoking":62605,"sms":63437,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowboarding":63438,"snowflake":62172,"snowflakes":63439,"snowman":63440,"snowmobile":63441,"snowplow":63442,"soap":57454,"socks":63126,"solar-panel":62906,"solar-system":57391,"sort-alpha-down-alt":63617,"sort-alpha-down":61789,"sort-alpha-up-alt":63618,"sort-alpha-up":61790,"sort-alt":63619,"sort-amount-down-alt":63620,"sort-amount-down":61792,"sort-amount-up-alt":63621,"sort-amount-up":61793,"sort-circle-down":57393,"sort-circle-up":57394,"sort-circle":57392,"sort-down":61661,"sort-numeric-down-alt":63622,"sort-numeric-down":61794,"sort-numeric-up-alt":63623,"sort-numeric-up":61795,"sort-shapes-down-alt":63625,"sort-shapes-down":63624,"sort-shapes-up-alt":63627,"sort-shapes-up":63626,"sort-size-down-alt":63629,"sort-size-down":63628,"sort-size-up-alt":63631,"sort-size-up":63630,"sort-up":61662,"sort":61660,"soup":63523,"spa":62907,"space-shuttle":61847,"space-station-moon-alt":57396,"space-station-moon":57395,"spade":62196,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-third":62452,"spinner":61712,"splotch":62908,"spray-can":62909,"sprinkler":57397,"square-full":62556,"square-root-alt":63128,"square-root":63127,"square":61640,"squirrel":63258,"staff":63259,"stamp":62911,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-alt":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-shooting":57398,"star":61445,"starfighter-alt":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"step-backward":61512,"step-forward":61521,"stethoscope":61681,"sticky-note":62025,"stocking":63445,"stomach":63011,"stop-circle":62093,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-alt-slash":57456,"store-alt":62799,"store-slash":57457,"store":62798,"stream":62800,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subway":62009,"suitcase-rolling":62913,"suitcase":61682,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"surprise":62914,"swatchbook":62915,"swimmer":62916,"swimming-pool":62917,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"synagogue":63131,"sync-alt":62193,"sync":61473,"syringe":62606,"table-tennis":62557,"table":61646,"tablet-alt":62458,"tablet-android-alt":62460,"tablet-android":62459,"tablet-rugged":62607,"tablet":61706,"tablets":62608,"tachometer-alt-average":63012,"tachometer-alt-fast":63013,"tachometer-alt-fastest":63014,"tachometer-alt-slow":63015,"tachometer-alt-slowest":63016,"tachometer-alt":62461,"tachometer-average":63017,"tachometer-fast":63018,"tachometer-fastest":63019,"tachometer-slow":63020,"tachometer-slowest":63021,"tachometer":61668,"taco":63526,"tag":61483,"tags":61484,"tally":63132,"tanakh":63527,"tape":62683,"tasks-alt":63528,"tasks":61614,"taxi":61882,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-down":57407,"temperature-frigid":63336,"temperature-high":63337,"temperature-hot":63338,"temperature-low":63339,"temperature-up":57408,"tenge":63447,"tennis-ball":62558,"terminal":61728,"text-height":61492,"text-size":63636,"text-width":61493,"text":63635,"th-large":61449,"th-list":61451,"th":61450,"theater-masks":63024,"thermometer-empty":62155,"thermometer-full":62151,"thermometer-half":62153,"thermometer-quarter":62154,"thermometer-three-quarters":62152,"thermometer":62609,"theta":63134,"thumbs-down":61797,"thumbs-up":61796,"thumbtack":61581,"thunderstorm-moon":63341,"thunderstorm-sun":63342,"thunderstorm":63340,"ticket-alt":62463,"ticket":61765,"tilde":63135,"times-circle":61527,"times-hexagon":62190,"times-octagon":62192,"times-square":62163,"times":61453,"tint-slash":62919,"tint":61507,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"tired":62920,"toggle-off":61956,"toggle-on":61957,"toilet-paper-alt":63263,"toilet-paper-slash":57458,"toilet-paper":63262,"toilet":63448,"tombstone-alt":63265,"tombstone":63264,"toolbox":62802,"tools":63449,"tooth":62921,"toothbrush":63029,"torah":63136,"torii-gate":63137,"tornado":63343,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train":62008,"tram":63450,"transgender-alt":61989,"transgender":61988,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-empty":57414,"transporter":57410,"trash-alt":62189,"trash-restore-alt":63530,"trash-restore":63529,"trash-undo-alt":63638,"trash-undo":63637,"trash":61944,"treasure-chest":63267,"tree-alt":62464,"tree-christmas":63451,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-music":63714,"triangle":62188,"trophy-alt":62187,"trophy":61585,"truck-container":62684,"truck-couch":62685,"truck-loading":62686,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plow":63454,"truck-ramp":62688,"truck":61649,"trumpet":63715,"tshirt":62803,"tty":61924,"turkey":63269,"turntable":63716,"turtle":63270,"tv-alt":63717,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella":61673,"underline":61645,"undo-alt":62186,"undo":61666,"unicorn":63271,"union":63138,"universal-access":62106,"university":61852,"unlink":61735,"unlock-alt":61758,"unlock":61596,"upload":61587,"usb-drive":63721,"usd-circle":62184,"usd-square":62185,"user-alien":57418,"user-alt-slash":62714,"user-alt":62470,"user-astronaut":62715,"user-chart":63139,"user-check":62716,"user-circle":62141,"user-clock":62717,"user-cog":62718,"user-cowboy":63722,"user-crown":63140,"user-edit":62719,"user-friends":62720,"user-graduate":62721,"user-hard-hat":63532,"user-headset":63533,"user-injured":63272,"user-lock":62722,"user-md-chat":63534,"user-md":61680,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse":63535,"user-plus":62004,"user-robot":57419,"user-secret":61979,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie":62728,"user-times":62005,"user-unlock":57432,"user-visor":57420,"user":61447,"users-class":63037,"users-cog":62729,"users-crown":63141,"users-medical":63536,"users-slash":57459,"users":61632,"utensil-fork":62179,"utensil-knife":62180,"utensil-spoon":62181,"utensils-alt":62182,"utensils":62183,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"vector-square":62923,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vhs":63724,"vial":62610,"vials":62611,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball-ball":62559,"volume-down":61479,"volume-mute":63145,"volume-off":61478,"volume-slash":62178,"volume-up":61480,"volume":63144,"vote-nay":63345,"vote-yea":63346,"vr-cardboard":63273,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"walking":62804,"wallet":62805,"wand-magic":63275,"wand":63274,"warehouse-alt":62613,"warehouse":62612,"washer":63640,"watch-calculator":63728,"watch-fitness":63038,"watch":62177,"water-lower":63348,"water-rise":63349,"water":63347,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"waveform-path":63730,"waveform":63729,"webcam-slash":63539,"webcam":63538,"weight-hanging":62925,"weight":62614,"whale":63276,"wheat":63277,"wheelchair":61843,"whistle":62560,"wifi-1":63146,"wifi-2":63147,"wifi-slash":63148,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-alt":62479,"window-close":62480,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-alt":62926,"wine-glass":62691,"won-sign":61785,"wreath":63458,"wrench":61613,"x-ray":62615,"yen-sign":61783,"yin-yang":63149} ================================================ FILE: packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_meta.json ================================================ { "brand": [ "500px", "accessible-icon", "accusoft", "acquisitions-incorporated", "adn", "adversal", "affiliatetheme", "airbnb", "algolia", "alipay", "amazon-pay", "amazon", "amilia", "android", "angellist", "angrycreative", "angular", "app-store-ios", "app-store", "apper", "apple-pay", "apple", "artstation", "asymmetrik", "atlassian", "audible", "autoprefixer", "avianex", "aviato", "aws", "bandcamp", "battle-net", "behance-square", "behance", "bimobject", "bitbucket", "bitcoin", "bity", "black-tie", "blackberry", "blogger-b", "blogger", "bluetooth-b", "bluetooth", "bootstrap", "btc", "buffer", "buromobelexperte", "buy-n-large", "buysellads", "canadian-maple-leaf", "cc-amazon-pay", "cc-amex", "cc-apple-pay", "cc-diners-club", "cc-discover", "cc-jcb", "cc-mastercard", "cc-paypal", "cc-stripe", "cc-visa", "centercode", "centos", "chrome", "chromecast", "cloudflare", "cloudscale", "cloudsmith", "cloudversify", "codepen", "codiepie", "confluence", "connectdevelop", "contao", "cotton-bureau", "cpanel", "creative-commons-by", "creative-commons-nc-eu", "creative-commons-nc-jp", "creative-commons-nc", "creative-commons-nd", "creative-commons-pd-alt", "creative-commons-pd", "creative-commons-remix", "creative-commons-sa", "creative-commons-sampling-plus", "creative-commons-sampling", "creative-commons-share", "creative-commons-zero", "creative-commons", "critical-role", "css3-alt", "css3", "cuttlefish", "d-and-d-beyond", "d-and-d", "dailymotion", "dashcube", "deezer", "delicious", "deploydog", "deskpro", "dev", "deviantart", "dhl", "diaspora", "digg", "digital-ocean", "discord", "discourse", "dochub", "docker", "draft2digital", "dribbble-square", "dribbble", "dropbox", "drupal", "dyalog", "earlybirds", "ebay", "edge-legacy", "edge", "elementor", "ello", "ember", "empire", "envira", "erlang", "ethereum", "etsy", "evernote", "expeditedssl", "facebook-f", "facebook-messenger", "facebook-square", "facebook", "fantasy-flight-games", "fedex", "fedora", "figma", "firefox-browser", "firefox", "first-order-alt", "first-order", "firstdraft", "flickr", "flipboard", "fly", "font-awesome-alt", "font-awesome-flag", "font-awesome-logo-full", "font-awesome", "fonticons-fi", "fonticons", "fort-awesome-alt", "fort-awesome", "forumbee", "foursquare", "free-code-camp", "freebsd", "fulcrum", "galactic-republic", "galactic-senate", "get-pocket", "gg-circle", "gg", "git-alt", "git-square", "git", "github-alt", "github-square", "github", "gitkraken", "gitlab", "gitter", "glide-g", "glide", "gofore", "goodreads-g", "goodreads", "google-drive", "google-pay", "google-play", "google-plus-g", "google-plus-square", "google-plus", "google-wallet", "google", "gratipay", "grav", "gripfire", "grunt", "guilded", "gulp", "hacker-news-square", "hacker-news", "hackerrank", "hips", "hire-a-helper", "hive", "hooli", "hornbill", "hotjar", "houzz", "html5", "hubspot", "ideal", "imdb", "innosoft", "instagram-square", "instagram", "instalod", "intercom", "internet-explorer", "invision", "ioxhost", "itch-io", "itunes-note", "itunes", "java", "jedi-order", "jenkins", "jira", "joget", "joomla", "js-square", "js", "jsfiddle", "kaggle", "keybase", "keycdn", "kickstarter-k", "kickstarter", "korvue", "laravel", "lastfm-square", "lastfm", "leanpub", "less", "line", "linkedin-in", "linkedin", "linode", "linux", "lyft", "magento", "mailchimp", "mandalorian", "markdown", "mastodon", "maxcdn", "mdb", "medapps", "medium-m", "medium", "medrt", "meetup", "megaport", "mendeley", "microblog", "microsoft", "mix", "mixcloud", "mixer", "mizuni", "modx", "monero", "napster", "neos", "nimblr", "node-js", "node", "npm", "ns8", "nutritionix", "octopus-deploy", "odnoklassniki-square", "odnoklassniki", "old-republic", "opencart", "openid", "opera", "optin-monster", "orcid", "osi", "page4", "pagelines", "palfed", "patreon", "paypal", "penny-arcade", "perbyte", "periscope", "phabricator", "phoenix-framework", "phoenix-squadron", "php", "pied-piper-alt", "pied-piper-hat", "pied-piper-pp", "pied-piper-square", "pied-piper", "pinterest-p", "pinterest-square", "pinterest", "playstation", "product-hunt", "pushed", "python", "qq", "quinscape", "quora", "r-project", "raspberry-pi", "ravelry", "react", "reacteurope", "readme", "rebel", "red-river", "reddit-alien", "reddit-square", "reddit", "redhat", "renren", "replyd", "researchgate", "resolving", "rev", "rocketchat", "rockrms", "rust", "safari", "salesforce", "sass", "schlix", "scribd", "searchengin", "sellcast", "sellsy", "servicestack", "shirtsinbulk", "shopify", "shopware", "simplybuilt", "sistrix", "sith", "sketch", "skyatlas", "skype", "slack-hash", "slack", "slideshare", "snapchat-ghost", "snapchat-square", "snapchat", "soundcloud", "sourcetree", "speakap", "speaker-deck", "spotify", "squarespace", "stack-exchange", "stack-overflow", "stackpath", "staylinked", "steam-square", "steam-symbol", "steam", "sticker-mule", "strava", "stripe-s", "stripe", "studiovinari", "stumbleupon-circle", "stumbleupon", "superpowers", "supple", "suse", "swift", "symfony", "teamspeak", "telegram-plane", "telegram", "tencent-weibo", "the-red-yeti", "themeco", "themeisle", "think-peaks", "tiktok", "trade-federation", "trello", "tumblr-square", "tumblr", "twitch", "twitter-square", "twitter", "typo3", "uber", "ubuntu", "uikit", "umbraco", "uncharted", "uniregistry", "unity", "unsplash", "untappd", "ups", "usb", "usps", "ussunnah", "vaadin", "viacoin", "viadeo-square", "viadeo", "viber", "vimeo-square", "vimeo-v", "vimeo", "vine", "vk", "vnv", "vuejs", "watchman-monitoring", "waze", "weebly", "weibo", "weixin", "whatsapp-square", "whatsapp", "whmcs", "wikipedia-w", "windows", "wix", "wizards-of-the-coast", "wodu", "wolf-pack-battalion", "wordpress-simple", "wordpress", "wpbeginner", "wpexplorer", "wpforms", "wpressr", "xbox", "xing-square", "xing", "y-combinator", "yahoo", "yammer", "yandex-international", "yandex", "yarn", "yelp", "yoast", "youtube-square", "youtube", "zhihu" ], "duotone": [ "abacus", "acorn", "ad", "address-book", "address-card", "adjust", "air-conditioner", "air-freshener", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-collection", "album", "alicorn", "alien-monster", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "allergies", "ambulance", "american-sign-language-interpreting", "amp-guitar", "analytics", "anchor", "angel", "angle-double-down", "angle-double-left", "angle-double-right", "angle-double-up", "angle-down", "angle-left", "angle-right", "angle-up", "angry", "ankh", "apple-alt", "apple-crate", "archive", "archway", "arrow-alt-circle-down", "arrow-alt-circle-left", "arrow-alt-circle-right", "arrow-alt-circle-up", "arrow-alt-down", "arrow-alt-from-bottom", "arrow-alt-from-left", "arrow-alt-from-right", "arrow-alt-from-top", "arrow-alt-left", "arrow-alt-right", "arrow-alt-square-down", "arrow-alt-square-left", "arrow-alt-square-right", "arrow-alt-square-up", "arrow-alt-to-bottom", "arrow-alt-to-left", "arrow-alt-to-right", "arrow-alt-to-top", "arrow-alt-up", "arrow-circle-down", "arrow-circle-left", "arrow-circle-right", "arrow-circle-up", "arrow-down", "arrow-from-bottom", "arrow-from-left", "arrow-from-right", "arrow-from-top", "arrow-left", "arrow-right", "arrow-square-down", "arrow-square-left", "arrow-square-right", "arrow-square-up", "arrow-to-bottom", "arrow-to-left", "arrow-to-right", "arrow-to-top", "arrow-up", "arrows-alt-h", "arrows-alt-v", "arrows-alt", "arrows-h", "arrows-v", "arrows", "assistive-listening-systems", "asterisk", "at", "atlas", "atom-alt", "atom", "audio-description", "award", "axe-battle", "axe", "baby-carriage", "baby", "backpack", "backspace", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "bags-shopping", "bahai", "balance-scale-left", "balance-scale-right", "balance-scale", "ball-pile", "ballot-check", "ballot", "ban", "band-aid", "banjo", "barcode-alt", "barcode-read", "barcode-scan", "barcode", "bars", "baseball-ball", "baseball", "basketball-ball", "basketball-hoop", "bat", "bath", "battery-bolt", "battery-empty", "battery-full", "battery-half", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-alt", "bed-bunk", "bed-empty", "bed", "beer", "bell-exclamation", "bell-on", "bell-plus", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "betamax", "bezier-curve", "bible", "bicycle", "biking-mountain", "biking", "binoculars", "biohazard", "birthday-cake", "blanket", "blender-phone", "blender", "blind", "blinds-open", "blinds-raised", "blinds", "blog", "bold", "bolt", "bomb", "bone-break", "bone", "bong", "book-alt", "book-dead", "book-heart", "book-medical", "book-open", "book-reader", "book-spells", "book-user", "book", "bookmark", "books-medical", "books", "boombox", "boot", "booth-curtain", "border-all", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-style-alt", "border-style", "border-top", "bow-arrow", "bowling-ball", "bowling-pins", "box-alt", "box-ballot", "box-check", "box-fragile", "box-full", "box-heart", "box-open", "box-tissue", "box-up", "box-usd", "box", "boxes-alt", "boxes", "boxing-glove", "brackets-curly", "brackets", "braille", "brain", "bread-loaf", "bread-slice", "briefcase-medical", "briefcase", "bring-forward", "bring-front", "broadcast-tower", "broom", "browser", "brush", "bug", "building", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "burger-soda", "burn", "burrito", "bus-alt", "bus-school", "bus", "business-time", "cabinet-filing", "cactus", "calculator-alt", "calculator", "calendar-alt", "calendar-check", "calendar-day", "calendar-edit", "calendar-exclamation", "calendar-minus", "calendar-plus", "calendar-star", "calendar-times", "calendar-week", "calendar", "camcorder", "camera-alt", "camera-home", "camera-movie", "camera-polaroid", "camera-retro", "camera", "campfire", "campground", "candle-holder", "candy-cane", "candy-corn", "cannabis", "capsules", "car-alt", "car-battery", "car-building", "car-bump", "car-bus", "car-crash", "car-garage", "car-mechanic", "car-side", "car-tilt", "car-wash", "car", "caravan-alt", "caravan", "caret-circle-down", "caret-circle-left", "caret-circle-right", "caret-circle-up", "caret-down", "caret-left", "caret-right", "caret-square-down", "caret-square-left", "caret-square-right", "caret-square-up", "caret-up", "carrot", "cars", "cart-arrow-down", "cart-plus", "cash-register", "cassette-tape", "cat-space", "cat", "cauldron", "cctv", "certificate", "chair-office", "chair", "chalkboard-teacher", "chalkboard", "charging-station", "chart-area", "chart-bar", "chart-line-down", "chart-line", "chart-network", "chart-pie-alt", "chart-pie", "chart-scatter", "check-circle", "check-double", "check-square", "check", "cheese-swiss", "cheese", "cheeseburger", "chess-bishop-alt", "chess-bishop", "chess-board", "chess-clock-alt", "chess-clock", "chess-king-alt", "chess-king", "chess-knight-alt", "chess-knight", "chess-pawn-alt", "chess-pawn", "chess-queen-alt", "chess-queen", "chess-rook-alt", "chess-rook", "chess", "chevron-circle-down", "chevron-circle-left", "chevron-circle-right", "chevron-circle-up", "chevron-double-down", "chevron-double-left", "chevron-double-right", "chevron-double-up", "chevron-down", "chevron-left", "chevron-right", "chevron-square-down", "chevron-square-left", "chevron-square-right", "chevron-square-up", "chevron-up", "child", "chimney", "church", "circle-notch", "circle", "city", "clarinet", "claw-marks", "clinic-medical", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-prescription", "clipboard-user", "clipboard", "clock", "clone", "closed-captioning", "cloud-download-alt", "cloud-download", "cloud-drizzle", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-upload-alt", "cloud-upload", "cloud", "clouds-moon", "clouds-sun", "clouds", "club", "cocktail", "code-branch", "code-commit", "code-merge", "code", "coffee-pot", "coffee-togo", "coffee", "coffin-cross", "coffin", "cog", "cogs", "coin", "coins", "columns", "comet", "comment-alt-check", "comment-alt-dollar", "comment-alt-dots", "comment-alt-edit", "comment-alt-exclamation", "comment-alt-lines", "comment-alt-medical", "comment-alt-minus", "comment-alt-music", "comment-alt-plus", "comment-alt-slash", "comment-alt-smile", "comment-alt-times", "comment-alt", "comment-check", "comment-dollar", "comment-dots", "comment-edit", "comment-exclamation", "comment-lines", "comment-medical", "comment-minus", "comment-music", "comment-plus", "comment-slash", "comment-smile", "comment-times", "comment", "comments-alt-dollar", "comments-alt", "comments-dollar", "comments", "compact-disc", "compass-slash", "compass", "compress-alt", "compress-arrows-alt", "compress-wide", "compress", "computer-classic", "computer-speaker", "concierge-bell", "construction", "container-storage", "conveyor-belt-alt", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "couch", "cow", "cowbell-more", "cowbell", "credit-card-blank", "credit-card-front", "credit-card", "cricket", "croissant", "crop-alt", "crop", "cross", "crosshairs", "crow", "crown", "crutch", "crutches", "cube", "cubes", "curling", "cut", "dagger", "database", "deaf", "debug", "deer-rudolph", "deer", "democrat", "desktop-alt", "desktop", "dewpoint", "dharmachakra", "diagnoses", "diamond", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "digging", "digital-tachograph", "diploma", "directions", "disc-drive", "disease", "divide", "dizzy", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly-flatbed-alt", "dolly-flatbed-empty", "dolly-flatbed", "dolly", "donate", "door-closed", "door-open", "dot-circle", "dove", "download", "drafting-compass", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-alt", "drone", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-alt", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "ear-muffs", "ear", "eclipse-alt", "eclipse", "edit", "egg-fried", "egg", "eject", "elephant", "ellipsis-h-alt", "ellipsis-h", "ellipsis-v-alt", "ellipsis-v", "empty-set", "engine-warning", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope-square", "envelope", "equals", "eraser", "ethernet", "euro-sign", "exchange-alt", "exchange", "exclamation-circle", "exclamation-square", "exclamation-triangle", "exclamation", "expand-alt", "expand-arrows-alt", "expand-arrows", "expand-wide", "expand", "external-link-alt", "external-link-square-alt", "external-link-square", "external-link", "eye-dropper", "eye-evil", "eye-slash", "eye", "fan-table", "fan", "farm", "fast-backward", "fast-forward", "faucet-drip", "faucet", "fax", "feather-alt", "feather", "female", "field-hockey", "fighter-jet", "file-alt", "file-archive", "file-audio", "file-certificate", "file-chart-line", "file-chart-pie", "file-check", "file-code", "file-contract", "file-csv", "file-download", "file-edit", "file-excel", "file-exclamation", "file-export", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-medical-alt", "file-medical", "file-minus", "file-music", "file-pdf", "file-plus", "file-powerpoint", "file-prescription", "file-search", "file-signature", "file-spreadsheet", "file-times", "file-upload", "file-user", "file-video", "file-word", "file", "files-medical", "fill-drip", "fill", "film-alt", "film-canister", "film", "filter", "fingerprint", "fire-alt", "fire-extinguisher", "fire-smoke", "fire", "fireplace", "first-aid", "fish-cooked", "fish", "fist-raised", "flag-alt", "flag-checkered", "flag-usa", "flag", "flame", "flashlight", "flask-poison", "flask-potion", "flask", "flower-daffodil", "flower-tulip", "flower", "flushed", "flute", "flux-capacitor", "fog", "folder-download", "folder-minus", "folder-open", "folder-plus", "folder-times", "folder-tree", "folder-upload", "folder", "folders", "font-awesome-logo-full", "font-case", "font", "football-ball", "football-helmet", "forklift", "forward", "fragile", "french-fries", "frog", "frosty-head", "frown-open", "frown", "function", "funnel-dollar", "futbol", "galaxy", "game-board-alt", "game-board", "game-console-handheld", "gamepad-alt", "gamepad", "garage-car", "garage-open", "garage", "gas-pump-slash", "gas-pump", "gavel", "gem", "genderless", "ghost", "gift-card", "gift", "gifts", "gingerbread-man", "glass-champagne", "glass-cheers", "glass-citrus", "glass-martini-alt", "glass-martini", "glass-whiskey-rocks", "glass-whiskey", "glass", "glasses-alt", "glasses", "globe-africa", "globe-americas", "globe-asia", "globe-europe", "globe-snow", "globe-stand", "globe", "golf-ball", "golf-club", "gopuram", "graduation-cap", "gramophone", "greater-than-equal", "greater-than", "grimace", "grin-alt", "grin-beam-sweat", "grin-beam", "grin-hearts", "grin-squint-tears", "grin-squint", "grin-stars", "grin-tears", "grin-tongue-squint", "grin-tongue-wink", "grin-tongue", "grin-wink", "grin", "grip-horizontal", "grip-lines-vertical", "grip-lines", "grip-vertical", "guitar-electric", "guitar", "guitars", "h-square", "h1", "h2", "h3", "h4", "hamburger", "hammer-war", "hammer", "hamsa", "hand-heart", "hand-holding-box", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-usd", "hand-holding-water", "hand-holding", "hand-lizard", "hand-middle-finger", "hand-paper", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-right", "hand-point-up", "hand-pointer", "hand-receiving", "hand-rock", "hand-scissors", "hand-sparkles", "hand-spock", "hands-heart", "hands-helping", "hands-usd", "hands-wash", "hands", "handshake-alt-slash", "handshake-alt", "handshake-slash", "handshake", "hanukiah", "hard-hat", "hashtag", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "hdd", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-headphones", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "head-vr", "heading", "headphones-alt", "headphones", "headset", "heart-broken", "heart-circle", "heart-rate", "heart-square", "heart", "heartbeat", "heat", "helicopter", "helmet-battle", "hexagon", "highlighter", "hiking", "hippo", "history", "hockey-mask", "hockey-puck", "hockey-sticks", "holly-berry", "home-alt", "home-heart", "home-lg-alt", "home-lg", "home", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hospital-alt", "hospital-symbol", "hospital-user", "hospital", "hospitals", "hot-tub", "hotdog", "hotel", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-damage", "house-day", "house-flood", "house-leave", "house-night", "house-return", "house-signal", "house-user", "house", "hryvnia", "humidity", "hurricane", "i-cursor", "ice-cream", "ice-skate", "icicles", "icons-alt", "icons", "id-badge", "id-card-alt", "id-card", "igloo", "image-polaroid", "image", "images", "inbox-in", "inbox-out", "inbox", "indent", "industry-alt", "industry", "infinity", "info-circle", "info-square", "info", "inhaler", "integral", "intersection", "inventory", "island-tropical", "italic", "jack-o-lantern", "jedi", "joint", "journal-whills", "joystick", "jug", "kaaba", "kazoo", "kerning", "key-skeleton", "key", "keyboard", "keynote", "khanda", "kidneys", "kiss-beam", "kiss-wink-heart", "kiss", "kite", "kiwi-bird", "knife-kitchen", "lambda", "lamp-desk", "lamp-floor", "lamp", "landmark-alt", "landmark", "language", "laptop-code", "laptop-house", "laptop-medical", "laptop", "lasso", "laugh-beam", "laugh-squint", "laugh-wink", "laugh", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "lemon", "less-than-equal", "less-than", "level-down-alt", "level-down", "level-up-alt", "level-up", "life-ring", "light-ceiling", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-dollar", "lightbulb-exclamation", "lightbulb-on", "lightbulb-slash", "lightbulb", "lights-holiday", "line-columns", "line-height", "link", "lips", "lira-sign", "list-alt", "list-music", "list-ol", "list-ul", "list", "location-arrow", "location-circle", "location-slash", "location", "lock-alt", "lock-open-alt", "lock-open", "lock", "long-arrow-alt-down", "long-arrow-alt-left", "long-arrow-alt-right", "long-arrow-alt-up", "long-arrow-down", "long-arrow-left", "long-arrow-right", "long-arrow-up", "loveseat", "low-vision", "luchador", "luggage-cart", "lungs-virus", "lungs", "mace", "magic", "magnet", "mail-bulk", "mailbox", "male", "mandolin", "map-marked-alt", "map-marked", "map-marker-alt-slash", "map-marker-alt", "map-marker-check", "map-marker-edit", "map-marker-exclamation", "map-marker-minus", "map-marker-plus", "map-marker-question", "map-marker-slash", "map-marker-smile", "map-marker-times", "map-marker", "map-pin", "map-signs", "map", "marker", "mars-double", "mars-stroke-h", "mars-stroke-v", "mars-stroke", "mars", "mask", "meat", "medal", "medkit", "megaphone", "meh-blank", "meh-rolling-eyes", "meh", "memory", "menorah", "mercury", "meteor", "microchip", "microphone-alt-slash", "microphone-alt", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mind-share", "minus-circle", "minus-hexagon", "minus-octagon", "minus-square", "minus", "mistletoe", "mitten", "mobile-alt", "mobile-android-alt", "mobile-android", "mobile", "money-bill-alt", "money-bill-wave-alt", "money-bill-wave", "money-bill", "money-check-alt", "money-check-edit-alt", "money-check-edit", "money-check", "monitor-heart-rate", "monkey", "monument", "moon-cloud", "moon-stars", "moon", "mortar-pestle", "mosque", "motorcycle", "mountain", "mountains", "mouse-alt", "mouse-pointer", "mouse", "mp3-player", "mug-hot", "mug-marshmallows", "mug-tea", "mug", "music-alt-slash", "music-alt", "music-slash", "music", "narwhal", "network-wired", "neuter", "newspaper", "not-equal", "notes-medical", "object-group", "object-ungroup", "octagon", "oil-can", "oil-temp", "om", "omega", "ornament", "otter", "outdent", "outlet", "oven", "overline", "page-break", "pager", "paint-brush-alt", "paint-brush", "paint-roller", "palette", "pallet-alt", "pallet", "paper-plane", "paperclip", "parachute-box", "paragraph-rtl", "paragraph", "parking-circle-slash", "parking-circle", "parking-slash", "parking", "passport", "pastafarianism", "paste", "pause-circle", "pause", "paw-alt", "paw-claws", "paw", "peace", "pegasus", "pen-alt", "pen-fancy", "pen-nib", "pen-square", "pen", "pencil-alt", "pencil-paintbrush", "pencil-ruler", "pencil", "pennant", "people-arrows", "people-carry", "pepper-hot", "percent", "percentage", "person-booth", "person-carry", "person-dolly-empty", "person-dolly", "person-sign", "phone-alt", "phone-laptop", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-square-alt", "phone-square", "phone-volume", "phone", "photo-video", "pi", "piano-keyboard", "piano", "pie", "pig", "piggy-bank", "pills", "pizza-slice", "pizza", "place-of-worship", "plane-alt", "plane-arrival", "plane-departure", "plane-slash", "plane", "planet-moon", "planet-ringed", "play-circle", "play", "plug", "plus-circle", "plus-hexagon", "plus-octagon", "plus-square", "plus", "podcast", "podium-star", "podium", "police-box", "poll-h", "poll-people", "poll", "poo-storm", "poo", "poop", "popcorn", "portal-enter", "portal-exit", "portrait", "pound-sign", "power-off", "pray", "praying-hands", "prescription-bottle-alt", "prescription-bottle", "prescription", "presentation", "print-search", "print-slash", "print", "procedures", "project-diagram", "projector", "pump-medical", "pump-soap", "pumpkin", "puzzle-piece", "qrcode", "question-circle", "question-square", "question", "quidditch", "quote-left", "quote-right", "quran", "rabbit-fast", "rabbit", "racquet", "radar", "radiation-alt", "radiation", "radio-alt", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "random", "raygun", "receipt", "record-vinyl", "rectangle-landscape", "rectangle-portrait", "rectangle-wide", "recycle", "redo-alt", "redo", "refrigerator", "registered", "remove-format", "repeat-1-alt", "repeat-1", "repeat-alt", "repeat", "reply-all", "reply", "republican", "restroom", "retweet-alt", "retweet", "ribbon", "ring", "rings-wedding", "road", "robot", "rocket-launch", "rocket", "route-highway", "route-interstate", "route", "router", "rss-square", "rss", "ruble-sign", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "running", "rupee-sign", "rv", "sack-dollar", "sack", "sad-cry", "sad-tear", "salad", "sandwich", "satellite-dish", "satellite", "sausage", "save", "sax-hot", "saxophone", "scalpel-path", "scalpel", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scanner", "scarecrow", "scarf", "school", "screwdriver", "scroll-old", "scroll", "scrubber", "scythe", "sd-card", "search-dollar", "search-location", "search-minus", "search-plus", "search", "seedling", "send-back", "send-backward", "sensor-alert", "sensor-fire", "sensor-on", "sensor-smoke", "sensor", "server", "shapes", "share-all", "share-alt-square", "share-alt", "share-square", "share", "sheep", "shekel-sign", "shield-alt", "shield-check", "shield-cross", "shield-virus", "shield", "ship", "shipping-fast", "shipping-timed", "shish-kebab", "shoe-prints", "shopping-bag", "shopping-basket", "shopping-cart", "shovel-snow", "shovel", "shower", "shredder", "shuttle-van", "shuttlecock", "sickle", "sigma", "sign-in-alt", "sign-in", "sign-language", "sign-out-alt", "sign-out", "sign", "signal-1", "signal-2", "signal-3", "signal-4", "signal-alt-1", "signal-alt-2", "signal-alt-3", "signal-alt-slash", "signal-alt", "signal-slash", "signal-stream", "signal", "signature", "sim-card", "sink", "siren-on", "siren", "sitemap", "skating", "skeleton", "ski-jump", "ski-lift", "skiing-nordic", "skiing", "skull-cow", "skull-crossbones", "skull", "slash", "sledding", "sleigh", "sliders-h-square", "sliders-h", "sliders-v-square", "sliders-v", "smile-beam", "smile-plus", "smile-wink", "smile", "smog", "smoke", "smoking-ban", "smoking", "sms", "snake", "snooze", "snow-blowing", "snowboarding", "snowflake", "snowflakes", "snowman", "snowmobile", "snowplow", "soap", "socks", "solar-panel", "solar-system", "sort-alpha-down-alt", "sort-alpha-down", "sort-alpha-up-alt", "sort-alpha-up", "sort-alt", "sort-amount-down-alt", "sort-amount-down", "sort-amount-up-alt", "sort-amount-up", "sort-circle-down", "sort-circle-up", "sort-circle", "sort-down", "sort-numeric-down-alt", "sort-numeric-down", "sort-numeric-up-alt", "sort-numeric-up", "sort-shapes-down-alt", "sort-shapes-down", "sort-shapes-up-alt", "sort-shapes-up", "sort-size-down-alt", "sort-size-down", "sort-size-up-alt", "sort-size-up", "sort-up", "sort", "soup", "spa", "space-shuttle", "space-station-moon-alt", "space-station-moon", "spade", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-third", "spinner", "splotch", "spray-can", "sprinkler", "square-full", "square-root-alt", "square-root", "square", "squirrel", "staff", "stamp", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-alt", "star-half", "star-of-david", "star-of-life", "star-shooting", "star", "starfighter-alt", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "step-backward", "step-forward", "stethoscope", "sticky-note", "stocking", "stomach", "stop-circle", "stop", "stopwatch-20", "stopwatch", "store-alt-slash", "store-alt", "store-slash", "store", "stream", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subway", "suitcase-rolling", "suitcase", "sun-cloud", "sun-dust", "sun-haze", "sun", "sunglasses", "sunrise", "sunset", "superscript", "surprise", "swatchbook", "swimmer", "swimming-pool", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "synagogue", "sync-alt", "sync", "syringe", "table-tennis", "table", "tablet-alt", "tablet-android-alt", "tablet-android", "tablet-rugged", "tablet", "tablets", "tachometer-alt-average", "tachometer-alt-fast", "tachometer-alt-fastest", "tachometer-alt-slow", "tachometer-alt-slowest", "tachometer-alt", "tachometer-average", "tachometer-fast", "tachometer-fastest", "tachometer-slow", "tachometer-slowest", "tachometer", "taco", "tag", "tags", "tally", "tanakh", "tape", "tasks-alt", "tasks", "taxi", "teeth-open", "teeth", "telescope", "temperature-down", "temperature-frigid", "temperature-high", "temperature-hot", "temperature-low", "temperature-up", "tenge", "tennis-ball", "terminal", "text-height", "text-size", "text-width", "text", "th-large", "th-list", "th", "theater-masks", "thermometer-empty", "thermometer-full", "thermometer-half", "thermometer-quarter", "thermometer-three-quarters", "thermometer", "theta", "thumbs-down", "thumbs-up", "thumbtack", "thunderstorm-moon", "thunderstorm-sun", "thunderstorm", "ticket-alt", "ticket", "tilde", "times-circle", "times-hexagon", "times-octagon", "times-square", "times", "tint-slash", "tint", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "tired", "toggle-off", "toggle-on", "toilet-paper-alt", "toilet-paper-slash", "toilet-paper", "toilet", "tombstone-alt", "tombstone", "toolbox", "tools", "tooth", "toothbrush", "torah", "torii-gate", "tornado", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train", "tram", "transgender-alt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-empty", "transporter", "trash-alt", "trash-restore-alt", "trash-restore", "trash-undo-alt", "trash-undo", "trash", "treasure-chest", "tree-alt", "tree-christmas", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-music", "triangle", "trophy-alt", "trophy", "truck-container", "truck-couch", "truck-loading", "truck-monster", "truck-moving", "truck-pickup", "truck-plow", "truck-ramp", "truck", "trumpet", "tshirt", "tty", "turkey", "turntable", "turtle", "tv-alt", "tv-music", "tv-retro", "tv", "typewriter", "ufo-beam", "ufo", "umbrella-beach", "umbrella", "underline", "undo-alt", "undo", "unicorn", "union", "universal-access", "university", "unlink", "unlock-alt", "unlock", "upload", "usb-drive", "usd-circle", "usd-square", "user-alien", "user-alt-slash", "user-alt", "user-astronaut", "user-chart", "user-check", "user-circle", "user-clock", "user-cog", "user-cowboy", "user-crown", "user-edit", "user-friends", "user-graduate", "user-hard-hat", "user-headset", "user-injured", "user-lock", "user-md-chat", "user-md", "user-minus", "user-music", "user-ninja", "user-nurse", "user-plus", "user-robot", "user-secret", "user-shield", "user-slash", "user-tag", "user-tie", "user-times", "user-unlock", "user-visor", "user", "users-class", "users-cog", "users-crown", "users-medical", "users-slash", "users", "utensil-fork", "utensil-knife", "utensil-spoon", "utensils-alt", "utensils", "vacuum-robot", "vacuum", "value-absolute", "vector-square", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vhs", "vial", "vials", "video-plus", "video-slash", "video", "vihara", "violin", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball-ball", "volume-down", "volume-mute", "volume-off", "volume-slash", "volume-up", "volume", "vote-nay", "vote-yea", "vr-cardboard", "wagon-covered", "walker", "walkie-talkie", "walking", "wallet", "wand-magic", "wand", "warehouse-alt", "warehouse", "washer", "watch-calculator", "watch-fitness", "watch", "water-lower", "water-rise", "water", "wave-sine", "wave-square", "wave-triangle", "waveform-path", "waveform", "webcam-slash", "webcam", "weight-hanging", "weight", "whale", "wheat", "wheelchair", "whistle", "wifi-1", "wifi-2", "wifi-slash", "wifi", "wind-turbine", "wind-warning", "wind", "window-alt", "window-close", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-alt", "wine-glass", "won-sign", "wreath", "wrench", "x-ray", "yen-sign", "yin-yang" ], "light": [ "abacus", "acorn", "ad", "address-book", "address-card", "adjust", "air-conditioner", "air-freshener", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-collection", "album", "alicorn", "alien-monster", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "allergies", "ambulance", "american-sign-language-interpreting", "amp-guitar", "analytics", "anchor", "angel", "angle-double-down", "angle-double-left", "angle-double-right", "angle-double-up", "angle-down", "angle-left", "angle-right", "angle-up", "angry", "ankh", "apple-alt", "apple-crate", "archive", "archway", "arrow-alt-circle-down", "arrow-alt-circle-left", "arrow-alt-circle-right", "arrow-alt-circle-up", "arrow-alt-down", "arrow-alt-from-bottom", "arrow-alt-from-left", "arrow-alt-from-right", "arrow-alt-from-top", "arrow-alt-left", "arrow-alt-right", "arrow-alt-square-down", "arrow-alt-square-left", "arrow-alt-square-right", "arrow-alt-square-up", "arrow-alt-to-bottom", "arrow-alt-to-left", "arrow-alt-to-right", "arrow-alt-to-top", "arrow-alt-up", "arrow-circle-down", "arrow-circle-left", "arrow-circle-right", "arrow-circle-up", "arrow-down", "arrow-from-bottom", "arrow-from-left", "arrow-from-right", "arrow-from-top", "arrow-left", "arrow-right", "arrow-square-down", "arrow-square-left", "arrow-square-right", "arrow-square-up", "arrow-to-bottom", "arrow-to-left", "arrow-to-right", "arrow-to-top", "arrow-up", "arrows-alt-h", "arrows-alt-v", "arrows-alt", "arrows-h", "arrows-v", "arrows", "assistive-listening-systems", "asterisk", "at", "atlas", "atom-alt", "atom", "audio-description", "award", "axe-battle", "axe", "baby-carriage", "baby", "backpack", "backspace", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "bags-shopping", "bahai", "balance-scale-left", "balance-scale-right", "balance-scale", "ball-pile", "ballot-check", "ballot", "ban", "band-aid", "banjo", "barcode-alt", "barcode-read", "barcode-scan", "barcode", "bars", "baseball-ball", "baseball", "basketball-ball", "basketball-hoop", "bat", "bath", "battery-bolt", "battery-empty", "battery-full", "battery-half", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-alt", "bed-bunk", "bed-empty", "bed", "beer", "bell-exclamation", "bell-on", "bell-plus", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "betamax", "bezier-curve", "bible", "bicycle", "biking-mountain", "biking", "binoculars", "biohazard", "birthday-cake", "blanket", "blender-phone", "blender", "blind", "blinds-open", "blinds-raised", "blinds", "blog", "bold", "bolt", "bomb", "bone-break", "bone", "bong", "book-alt", "book-dead", "book-heart", "book-medical", "book-open", "book-reader", "book-spells", "book-user", "book", "bookmark", "books-medical", "books", "boombox", "boot", "booth-curtain", "border-all", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-style-alt", "border-style", "border-top", "bow-arrow", "bowling-ball", "bowling-pins", "box-alt", "box-ballot", "box-check", "box-fragile", "box-full", "box-heart", "box-open", "box-tissue", "box-up", "box-usd", "box", "boxes-alt", "boxes", "boxing-glove", "brackets-curly", "brackets", "braille", "brain", "bread-loaf", "bread-slice", "briefcase-medical", "briefcase", "bring-forward", "bring-front", "broadcast-tower", "broom", "browser", "brush", "bug", "building", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "burger-soda", "burn", "burrito", "bus-alt", "bus-school", "bus", "business-time", "cabinet-filing", "cactus", "calculator-alt", "calculator", "calendar-alt", "calendar-check", "calendar-day", "calendar-edit", "calendar-exclamation", "calendar-minus", "calendar-plus", "calendar-star", "calendar-times", "calendar-week", "calendar", "camcorder", "camera-alt", "camera-home", "camera-movie", "camera-polaroid", "camera-retro", "camera", "campfire", "campground", "candle-holder", "candy-cane", "candy-corn", "cannabis", "capsules", "car-alt", "car-battery", "car-building", "car-bump", "car-bus", "car-crash", "car-garage", "car-mechanic", "car-side", "car-tilt", "car-wash", "car", "caravan-alt", "caravan", "caret-circle-down", "caret-circle-left", "caret-circle-right", "caret-circle-up", "caret-down", "caret-left", "caret-right", "caret-square-down", "caret-square-left", "caret-square-right", "caret-square-up", "caret-up", "carrot", "cars", "cart-arrow-down", "cart-plus", "cash-register", "cassette-tape", "cat-space", "cat", "cauldron", "cctv", "certificate", "chair-office", "chair", "chalkboard-teacher", "chalkboard", "charging-station", "chart-area", "chart-bar", "chart-line-down", "chart-line", "chart-network", "chart-pie-alt", "chart-pie", "chart-scatter", "check-circle", "check-double", "check-square", "check", "cheese-swiss", "cheese", "cheeseburger", "chess-bishop-alt", "chess-bishop", "chess-board", "chess-clock-alt", "chess-clock", "chess-king-alt", "chess-king", "chess-knight-alt", "chess-knight", "chess-pawn-alt", "chess-pawn", "chess-queen-alt", "chess-queen", "chess-rook-alt", "chess-rook", "chess", "chevron-circle-down", "chevron-circle-left", "chevron-circle-right", "chevron-circle-up", "chevron-double-down", "chevron-double-left", "chevron-double-right", "chevron-double-up", "chevron-down", "chevron-left", "chevron-right", "chevron-square-down", "chevron-square-left", "chevron-square-right", "chevron-square-up", "chevron-up", "child", "chimney", "church", "circle-notch", "circle", "city", "clarinet", "claw-marks", "clinic-medical", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-prescription", "clipboard-user", "clipboard", "clock", "clone", "closed-captioning", "cloud-download-alt", "cloud-download", "cloud-drizzle", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-upload-alt", "cloud-upload", "cloud", "clouds-moon", "clouds-sun", "clouds", "club", "cocktail", "code-branch", "code-commit", "code-merge", "code", "coffee-pot", "coffee-togo", "coffee", "coffin-cross", "coffin", "cog", "cogs", "coin", "coins", "columns", "comet", "comment-alt-check", "comment-alt-dollar", "comment-alt-dots", "comment-alt-edit", "comment-alt-exclamation", "comment-alt-lines", "comment-alt-medical", "comment-alt-minus", "comment-alt-music", "comment-alt-plus", "comment-alt-slash", "comment-alt-smile", "comment-alt-times", "comment-alt", "comment-check", "comment-dollar", "comment-dots", "comment-edit", "comment-exclamation", "comment-lines", "comment-medical", "comment-minus", "comment-music", "comment-plus", "comment-slash", "comment-smile", "comment-times", "comment", "comments-alt-dollar", "comments-alt", "comments-dollar", "comments", "compact-disc", "compass-slash", "compass", "compress-alt", "compress-arrows-alt", "compress-wide", "compress", "computer-classic", "computer-speaker", "concierge-bell", "construction", "container-storage", "conveyor-belt-alt", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "couch", "cow", "cowbell-more", "cowbell", "credit-card-blank", "credit-card-front", "credit-card", "cricket", "croissant", "crop-alt", "crop", "cross", "crosshairs", "crow", "crown", "crutch", "crutches", "cube", "cubes", "curling", "cut", "dagger", "database", "deaf", "debug", "deer-rudolph", "deer", "democrat", "desktop-alt", "desktop", "dewpoint", "dharmachakra", "diagnoses", "diamond", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "digging", "digital-tachograph", "diploma", "directions", "disc-drive", "disease", "divide", "dizzy", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly-flatbed-alt", "dolly-flatbed-empty", "dolly-flatbed", "dolly", "donate", "door-closed", "door-open", "dot-circle", "dove", "download", "drafting-compass", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-alt", "drone", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-alt", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "ear-muffs", "ear", "eclipse-alt", "eclipse", "edit", "egg-fried", "egg", "eject", "elephant", "ellipsis-h-alt", "ellipsis-h", "ellipsis-v-alt", "ellipsis-v", "empty-set", "engine-warning", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope-square", "envelope", "equals", "eraser", "ethernet", "euro-sign", "exchange-alt", "exchange", "exclamation-circle", "exclamation-square", "exclamation-triangle", "exclamation", "expand-alt", "expand-arrows-alt", "expand-arrows", "expand-wide", "expand", "external-link-alt", "external-link-square-alt", "external-link-square", "external-link", "eye-dropper", "eye-evil", "eye-slash", "eye", "fan-table", "fan", "farm", "fast-backward", "fast-forward", "faucet-drip", "faucet", "fax", "feather-alt", "feather", "female", "field-hockey", "fighter-jet", "file-alt", "file-archive", "file-audio", "file-certificate", "file-chart-line", "file-chart-pie", "file-check", "file-code", "file-contract", "file-csv", "file-download", "file-edit", "file-excel", "file-exclamation", "file-export", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-medical-alt", "file-medical", "file-minus", "file-music", "file-pdf", "file-plus", "file-powerpoint", "file-prescription", "file-search", "file-signature", "file-spreadsheet", "file-times", "file-upload", "file-user", "file-video", "file-word", "file", "files-medical", "fill-drip", "fill", "film-alt", "film-canister", "film", "filter", "fingerprint", "fire-alt", "fire-extinguisher", "fire-smoke", "fire", "fireplace", "first-aid", "fish-cooked", "fish", "fist-raised", "flag-alt", "flag-checkered", "flag-usa", "flag", "flame", "flashlight", "flask-poison", "flask-potion", "flask", "flower-daffodil", "flower-tulip", "flower", "flushed", "flute", "flux-capacitor", "fog", "folder-download", "folder-minus", "folder-open", "folder-plus", "folder-times", "folder-tree", "folder-upload", "folder", "folders", "font-awesome-logo-full", "font-case", "font", "football-ball", "football-helmet", "forklift", "forward", "fragile", "french-fries", "frog", "frosty-head", "frown-open", "frown", "function", "funnel-dollar", "futbol", "galaxy", "game-board-alt", "game-board", "game-console-handheld", "gamepad-alt", "gamepad", "garage-car", "garage-open", "garage", "gas-pump-slash", "gas-pump", "gavel", "gem", "genderless", "ghost", "gift-card", "gift", "gifts", "gingerbread-man", "glass-champagne", "glass-cheers", "glass-citrus", "glass-martini-alt", "glass-martini", "glass-whiskey-rocks", "glass-whiskey", "glass", "glasses-alt", "glasses", "globe-africa", "globe-americas", "globe-asia", "globe-europe", "globe-snow", "globe-stand", "globe", "golf-ball", "golf-club", "gopuram", "graduation-cap", "gramophone", "greater-than-equal", "greater-than", "grimace", "grin-alt", "grin-beam-sweat", "grin-beam", "grin-hearts", "grin-squint-tears", "grin-squint", "grin-stars", "grin-tears", "grin-tongue-squint", "grin-tongue-wink", "grin-tongue", "grin-wink", "grin", "grip-horizontal", "grip-lines-vertical", "grip-lines", "grip-vertical", "guitar-electric", "guitar", "guitars", "h-square", "h1", "h2", "h3", "h4", "hamburger", "hammer-war", "hammer", "hamsa", "hand-heart", "hand-holding-box", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-usd", "hand-holding-water", "hand-holding", "hand-lizard", "hand-middle-finger", "hand-paper", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-right", "hand-point-up", "hand-pointer", "hand-receiving", "hand-rock", "hand-scissors", "hand-sparkles", "hand-spock", "hands-heart", "hands-helping", "hands-usd", "hands-wash", "hands", "handshake-alt-slash", "handshake-alt", "handshake-slash", "handshake", "hanukiah", "hard-hat", "hashtag", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "hdd", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-headphones", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "head-vr", "heading", "headphones-alt", "headphones", "headset", "heart-broken", "heart-circle", "heart-rate", "heart-square", "heart", "heartbeat", "heat", "helicopter", "helmet-battle", "hexagon", "highlighter", "hiking", "hippo", "history", "hockey-mask", "hockey-puck", "hockey-sticks", "holly-berry", "home-alt", "home-heart", "home-lg-alt", "home-lg", "home", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hospital-alt", "hospital-symbol", "hospital-user", "hospital", "hospitals", "hot-tub", "hotdog", "hotel", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-damage", "house-day", "house-flood", "house-leave", "house-night", "house-return", "house-signal", "house-user", "house", "hryvnia", "humidity", "hurricane", "i-cursor", "ice-cream", "ice-skate", "icicles", "icons-alt", "icons", "id-badge", "id-card-alt", "id-card", "igloo", "image-polaroid", "image", "images", "inbox-in", "inbox-out", "inbox", "indent", "industry-alt", "industry", "infinity", "info-circle", "info-square", "info", "inhaler", "integral", "intersection", "inventory", "island-tropical", "italic", "jack-o-lantern", "jedi", "joint", "journal-whills", "joystick", "jug", "kaaba", "kazoo", "kerning", "key-skeleton", "key", "keyboard", "keynote", "khanda", "kidneys", "kiss-beam", "kiss-wink-heart", "kiss", "kite", "kiwi-bird", "knife-kitchen", "lambda", "lamp-desk", "lamp-floor", "lamp", "landmark-alt", "landmark", "language", "laptop-code", "laptop-house", "laptop-medical", "laptop", "lasso", "laugh-beam", "laugh-squint", "laugh-wink", "laugh", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "lemon", "less-than-equal", "less-than", "level-down-alt", "level-down", "level-up-alt", "level-up", "life-ring", "light-ceiling", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-dollar", "lightbulb-exclamation", "lightbulb-on", "lightbulb-slash", "lightbulb", "lights-holiday", "line-columns", "line-height", "link", "lips", "lira-sign", "list-alt", "list-music", "list-ol", "list-ul", "list", "location-arrow", "location-circle", "location-slash", "location", "lock-alt", "lock-open-alt", "lock-open", "lock", "long-arrow-alt-down", "long-arrow-alt-left", "long-arrow-alt-right", "long-arrow-alt-up", "long-arrow-down", "long-arrow-left", "long-arrow-right", "long-arrow-up", "loveseat", "low-vision", "luchador", "luggage-cart", "lungs-virus", "lungs", "mace", "magic", "magnet", "mail-bulk", "mailbox", "male", "mandolin", "map-marked-alt", "map-marked", "map-marker-alt-slash", "map-marker-alt", "map-marker-check", "map-marker-edit", "map-marker-exclamation", "map-marker-minus", "map-marker-plus", "map-marker-question", "map-marker-slash", "map-marker-smile", "map-marker-times", "map-marker", "map-pin", "map-signs", "map", "marker", "mars-double", "mars-stroke-h", "mars-stroke-v", "mars-stroke", "mars", "mask", "meat", "medal", "medkit", "megaphone", "meh-blank", "meh-rolling-eyes", "meh", "memory", "menorah", "mercury", "meteor", "microchip", "microphone-alt-slash", "microphone-alt", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mind-share", "minus-circle", "minus-hexagon", "minus-octagon", "minus-square", "minus", "mistletoe", "mitten", "mobile-alt", "mobile-android-alt", "mobile-android", "mobile", "money-bill-alt", "money-bill-wave-alt", "money-bill-wave", "money-bill", "money-check-alt", "money-check-edit-alt", "money-check-edit", "money-check", "monitor-heart-rate", "monkey", "monument", "moon-cloud", "moon-stars", "moon", "mortar-pestle", "mosque", "motorcycle", "mountain", "mountains", "mouse-alt", "mouse-pointer", "mouse", "mp3-player", "mug-hot", "mug-marshmallows", "mug-tea", "mug", "music-alt-slash", "music-alt", "music-slash", "music", "narwhal", "network-wired", "neuter", "newspaper", "not-equal", "notes-medical", "object-group", "object-ungroup", "octagon", "oil-can", "oil-temp", "om", "omega", "ornament", "otter", "outdent", "outlet", "oven", "overline", "page-break", "pager", "paint-brush-alt", "paint-brush", "paint-roller", "palette", "pallet-alt", "pallet", "paper-plane", "paperclip", "parachute-box", "paragraph-rtl", "paragraph", "parking-circle-slash", "parking-circle", "parking-slash", "parking", "passport", "pastafarianism", "paste", "pause-circle", "pause", "paw-alt", "paw-claws", "paw", "peace", "pegasus", "pen-alt", "pen-fancy", "pen-nib", "pen-square", "pen", "pencil-alt", "pencil-paintbrush", "pencil-ruler", "pencil", "pennant", "people-arrows", "people-carry", "pepper-hot", "percent", "percentage", "person-booth", "person-carry", "person-dolly-empty", "person-dolly", "person-sign", "phone-alt", "phone-laptop", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-square-alt", "phone-square", "phone-volume", "phone", "photo-video", "pi", "piano-keyboard", "piano", "pie", "pig", "piggy-bank", "pills", "pizza-slice", "pizza", "place-of-worship", "plane-alt", "plane-arrival", "plane-departure", "plane-slash", "plane", "planet-moon", "planet-ringed", "play-circle", "play", "plug", "plus-circle", "plus-hexagon", "plus-octagon", "plus-square", "plus", "podcast", "podium-star", "podium", "police-box", "poll-h", "poll-people", "poll", "poo-storm", "poo", "poop", "popcorn", "portal-enter", "portal-exit", "portrait", "pound-sign", "power-off", "pray", "praying-hands", "prescription-bottle-alt", "prescription-bottle", "prescription", "presentation", "print-search", "print-slash", "print", "procedures", "project-diagram", "projector", "pump-medical", "pump-soap", "pumpkin", "puzzle-piece", "qrcode", "question-circle", "question-square", "question", "quidditch", "quote-left", "quote-right", "quran", "rabbit-fast", "rabbit", "racquet", "radar", "radiation-alt", "radiation", "radio-alt", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "random", "raygun", "receipt", "record-vinyl", "rectangle-landscape", "rectangle-portrait", "rectangle-wide", "recycle", "redo-alt", "redo", "refrigerator", "registered", "remove-format", "repeat-1-alt", "repeat-1", "repeat-alt", "repeat", "reply-all", "reply", "republican", "restroom", "retweet-alt", "retweet", "ribbon", "ring", "rings-wedding", "road", "robot", "rocket-launch", "rocket", "route-highway", "route-interstate", "route", "router", "rss-square", "rss", "ruble-sign", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "running", "rupee-sign", "rv", "sack-dollar", "sack", "sad-cry", "sad-tear", "salad", "sandwich", "satellite-dish", "satellite", "sausage", "save", "sax-hot", "saxophone", "scalpel-path", "scalpel", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scanner", "scarecrow", "scarf", "school", "screwdriver", "scroll-old", "scroll", "scrubber", "scythe", "sd-card", "search-dollar", "search-location", "search-minus", "search-plus", "search", "seedling", "send-back", "send-backward", "sensor-alert", "sensor-fire", "sensor-on", "sensor-smoke", "sensor", "server", "shapes", "share-all", "share-alt-square", "share-alt", "share-square", "share", "sheep", "shekel-sign", "shield-alt", "shield-check", "shield-cross", "shield-virus", "shield", "ship", "shipping-fast", "shipping-timed", "shish-kebab", "shoe-prints", "shopping-bag", "shopping-basket", "shopping-cart", "shovel-snow", "shovel", "shower", "shredder", "shuttle-van", "shuttlecock", "sickle", "sigma", "sign-in-alt", "sign-in", "sign-language", "sign-out-alt", "sign-out", "sign", "signal-1", "signal-2", "signal-3", "signal-4", "signal-alt-1", "signal-alt-2", "signal-alt-3", "signal-alt-slash", "signal-alt", "signal-slash", "signal-stream", "signal", "signature", "sim-card", "sink", "siren-on", "siren", "sitemap", "skating", "skeleton", "ski-jump", "ski-lift", "skiing-nordic", "skiing", "skull-cow", "skull-crossbones", "skull", "slash", "sledding", "sleigh", "sliders-h-square", "sliders-h", "sliders-v-square", "sliders-v", "smile-beam", "smile-plus", "smile-wink", "smile", "smog", "smoke", "smoking-ban", "smoking", "sms", "snake", "snooze", "snow-blowing", "snowboarding", "snowflake", "snowflakes", "snowman", "snowmobile", "snowplow", "soap", "socks", "solar-panel", "solar-system", "sort-alpha-down-alt", "sort-alpha-down", "sort-alpha-up-alt", "sort-alpha-up", "sort-alt", "sort-amount-down-alt", "sort-amount-down", "sort-amount-up-alt", "sort-amount-up", "sort-circle-down", "sort-circle-up", "sort-circle", "sort-down", "sort-numeric-down-alt", "sort-numeric-down", "sort-numeric-up-alt", "sort-numeric-up", "sort-shapes-down-alt", "sort-shapes-down", "sort-shapes-up-alt", "sort-shapes-up", "sort-size-down-alt", "sort-size-down", "sort-size-up-alt", "sort-size-up", "sort-up", "sort", "soup", "spa", "space-shuttle", "space-station-moon-alt", "space-station-moon", "spade", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-third", "spinner", "splotch", "spray-can", "sprinkler", "square-full", "square-root-alt", "square-root", "square", "squirrel", "staff", "stamp", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-alt", "star-half", "star-of-david", "star-of-life", "star-shooting", "star", "starfighter-alt", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "step-backward", "step-forward", "stethoscope", "sticky-note", "stocking", "stomach", "stop-circle", "stop", "stopwatch-20", "stopwatch", "store-alt-slash", "store-alt", "store-slash", "store", "stream", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subway", "suitcase-rolling", "suitcase", "sun-cloud", "sun-dust", "sun-haze", "sun", "sunglasses", "sunrise", "sunset", "superscript", "surprise", "swatchbook", "swimmer", "swimming-pool", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "synagogue", "sync-alt", "sync", "syringe", "table-tennis", "table", "tablet-alt", "tablet-android-alt", "tablet-android", "tablet-rugged", "tablet", "tablets", "tachometer-alt-average", "tachometer-alt-fast", "tachometer-alt-fastest", "tachometer-alt-slow", "tachometer-alt-slowest", "tachometer-alt", "tachometer-average", "tachometer-fast", "tachometer-fastest", "tachometer-slow", "tachometer-slowest", "tachometer", "taco", "tag", "tags", "tally", "tanakh", "tape", "tasks-alt", "tasks", "taxi", "teeth-open", "teeth", "telescope", "temperature-down", "temperature-frigid", "temperature-high", "temperature-hot", "temperature-low", "temperature-up", "tenge", "tennis-ball", "terminal", "text-height", "text-size", "text-width", "text", "th-large", "th-list", "th", "theater-masks", "thermometer-empty", "thermometer-full", "thermometer-half", "thermometer-quarter", "thermometer-three-quarters", "thermometer", "theta", "thumbs-down", "thumbs-up", "thumbtack", "thunderstorm-moon", "thunderstorm-sun", "thunderstorm", "ticket-alt", "ticket", "tilde", "times-circle", "times-hexagon", "times-octagon", "times-square", "times", "tint-slash", "tint", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "tired", "toggle-off", "toggle-on", "toilet-paper-alt", "toilet-paper-slash", "toilet-paper", "toilet", "tombstone-alt", "tombstone", "toolbox", "tools", "tooth", "toothbrush", "torah", "torii-gate", "tornado", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train", "tram", "transgender-alt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-empty", "transporter", "trash-alt", "trash-restore-alt", "trash-restore", "trash-undo-alt", "trash-undo", "trash", "treasure-chest", "tree-alt", "tree-christmas", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-music", "triangle", "trophy-alt", "trophy", "truck-container", "truck-couch", "truck-loading", "truck-monster", "truck-moving", "truck-pickup", "truck-plow", "truck-ramp", "truck", "trumpet", "tshirt", "tty", "turkey", "turntable", "turtle", "tv-alt", "tv-music", "tv-retro", "tv", "typewriter", "ufo-beam", "ufo", "umbrella-beach", "umbrella", "underline", "undo-alt", "undo", "unicorn", "union", "universal-access", "university", "unlink", "unlock-alt", "unlock", "upload", "usb-drive", "usd-circle", "usd-square", "user-alien", "user-alt-slash", "user-alt", "user-astronaut", "user-chart", "user-check", "user-circle", "user-clock", "user-cog", "user-cowboy", "user-crown", "user-edit", "user-friends", "user-graduate", "user-hard-hat", "user-headset", "user-injured", "user-lock", "user-md-chat", "user-md", "user-minus", "user-music", "user-ninja", "user-nurse", "user-plus", "user-robot", "user-secret", "user-shield", "user-slash", "user-tag", "user-tie", "user-times", "user-unlock", "user-visor", "user", "users-class", "users-cog", "users-crown", "users-medical", "users-slash", "users", "utensil-fork", "utensil-knife", "utensil-spoon", "utensils-alt", "utensils", "vacuum-robot", "vacuum", "value-absolute", "vector-square", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vhs", "vial", "vials", "video-plus", "video-slash", "video", "vihara", "violin", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball-ball", "volume-down", "volume-mute", "volume-off", "volume-slash", "volume-up", "volume", "vote-nay", "vote-yea", "vr-cardboard", "wagon-covered", "walker", "walkie-talkie", "walking", "wallet", "wand-magic", "wand", "warehouse-alt", "warehouse", "washer", "watch-calculator", "watch-fitness", "watch", "water-lower", "water-rise", "water", "wave-sine", "wave-square", "wave-triangle", "waveform-path", "waveform", "webcam-slash", "webcam", "weight-hanging", "weight", "whale", "wheat", "wheelchair", "whistle", "wifi-1", "wifi-2", "wifi-slash", "wifi", "wind-turbine", "wind-warning", "wind", "window-alt", "window-close", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-alt", "wine-glass", "won-sign", "wreath", "wrench", "x-ray", "yen-sign", "yin-yang" ], "regular": [ "abacus", "acorn", "ad", "address-book", "address-card", "adjust", "air-conditioner", "air-freshener", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-collection", "album", "alicorn", "alien-monster", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "allergies", "ambulance", "american-sign-language-interpreting", "amp-guitar", "analytics", "anchor", "angel", "angle-double-down", "angle-double-left", "angle-double-right", "angle-double-up", "angle-down", "angle-left", "angle-right", "angle-up", "angry", "ankh", "apple-alt", "apple-crate", "archive", "archway", "arrow-alt-circle-down", "arrow-alt-circle-left", "arrow-alt-circle-right", "arrow-alt-circle-up", "arrow-alt-down", "arrow-alt-from-bottom", "arrow-alt-from-left", "arrow-alt-from-right", "arrow-alt-from-top", "arrow-alt-left", "arrow-alt-right", "arrow-alt-square-down", "arrow-alt-square-left", "arrow-alt-square-right", "arrow-alt-square-up", "arrow-alt-to-bottom", "arrow-alt-to-left", "arrow-alt-to-right", "arrow-alt-to-top", "arrow-alt-up", "arrow-circle-down", "arrow-circle-left", "arrow-circle-right", "arrow-circle-up", "arrow-down", "arrow-from-bottom", "arrow-from-left", "arrow-from-right", "arrow-from-top", "arrow-left", "arrow-right", "arrow-square-down", "arrow-square-left", "arrow-square-right", "arrow-square-up", "arrow-to-bottom", "arrow-to-left", "arrow-to-right", "arrow-to-top", "arrow-up", "arrows-alt-h", "arrows-alt-v", "arrows-alt", "arrows-h", "arrows-v", "arrows", "assistive-listening-systems", "asterisk", "at", "atlas", "atom-alt", "atom", "audio-description", "award", "axe-battle", "axe", "baby-carriage", "baby", "backpack", "backspace", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "bags-shopping", "bahai", "balance-scale-left", "balance-scale-right", "balance-scale", "ball-pile", "ballot-check", "ballot", "ban", "band-aid", "banjo", "barcode-alt", "barcode-read", "barcode-scan", "barcode", "bars", "baseball-ball", "baseball", "basketball-ball", "basketball-hoop", "bat", "bath", "battery-bolt", "battery-empty", "battery-full", "battery-half", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-alt", "bed-bunk", "bed-empty", "bed", "beer", "bell-exclamation", "bell-on", "bell-plus", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "betamax", "bezier-curve", "bible", "bicycle", "biking-mountain", "biking", "binoculars", "biohazard", "birthday-cake", "blanket", "blender-phone", "blender", "blind", "blinds-open", "blinds-raised", "blinds", "blog", "bold", "bolt", "bomb", "bone-break", "bone", "bong", "book-alt", "book-dead", "book-heart", "book-medical", "book-open", "book-reader", "book-spells", "book-user", "book", "bookmark", "books-medical", "books", "boombox", "boot", "booth-curtain", "border-all", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-style-alt", "border-style", "border-top", "bow-arrow", "bowling-ball", "bowling-pins", "box-alt", "box-ballot", "box-check", "box-fragile", "box-full", "box-heart", "box-open", "box-tissue", "box-up", "box-usd", "box", "boxes-alt", "boxes", "boxing-glove", "brackets-curly", "brackets", "braille", "brain", "bread-loaf", "bread-slice", "briefcase-medical", "briefcase", "bring-forward", "bring-front", "broadcast-tower", "broom", "browser", "brush", "bug", "building", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "burger-soda", "burn", "burrito", "bus-alt", "bus-school", "bus", "business-time", "cabinet-filing", "cactus", "calculator-alt", "calculator", "calendar-alt", "calendar-check", "calendar-day", "calendar-edit", "calendar-exclamation", "calendar-minus", "calendar-plus", "calendar-star", "calendar-times", "calendar-week", "calendar", "camcorder", "camera-alt", "camera-home", "camera-movie", "camera-polaroid", "camera-retro", "camera", "campfire", "campground", "candle-holder", "candy-cane", "candy-corn", "cannabis", "capsules", "car-alt", "car-battery", "car-building", "car-bump", "car-bus", "car-crash", "car-garage", "car-mechanic", "car-side", "car-tilt", "car-wash", "car", "caravan-alt", "caravan", "caret-circle-down", "caret-circle-left", "caret-circle-right", "caret-circle-up", "caret-down", "caret-left", "caret-right", "caret-square-down", "caret-square-left", "caret-square-right", "caret-square-up", "caret-up", "carrot", "cars", "cart-arrow-down", "cart-plus", "cash-register", "cassette-tape", "cat-space", "cat", "cauldron", "cctv", "certificate", "chair-office", "chair", "chalkboard-teacher", "chalkboard", "charging-station", "chart-area", "chart-bar", "chart-line-down", "chart-line", "chart-network", "chart-pie-alt", "chart-pie", "chart-scatter", "check-circle", "check-double", "check-square", "check", "cheese-swiss", "cheese", "cheeseburger", "chess-bishop-alt", "chess-bishop", "chess-board", "chess-clock-alt", "chess-clock", "chess-king-alt", "chess-king", "chess-knight-alt", "chess-knight", "chess-pawn-alt", "chess-pawn", "chess-queen-alt", "chess-queen", "chess-rook-alt", "chess-rook", "chess", "chevron-circle-down", "chevron-circle-left", "chevron-circle-right", "chevron-circle-up", "chevron-double-down", "chevron-double-left", "chevron-double-right", "chevron-double-up", "chevron-down", "chevron-left", "chevron-right", "chevron-square-down", "chevron-square-left", "chevron-square-right", "chevron-square-up", "chevron-up", "child", "chimney", "church", "circle-notch", "circle", "city", "clarinet", "claw-marks", "clinic-medical", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-prescription", "clipboard-user", "clipboard", "clock", "clone", "closed-captioning", "cloud-download-alt", "cloud-download", "cloud-drizzle", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-upload-alt", "cloud-upload", "cloud", "clouds-moon", "clouds-sun", "clouds", "club", "cocktail", "code-branch", "code-commit", "code-merge", "code", "coffee-pot", "coffee-togo", "coffee", "coffin-cross", "coffin", "cog", "cogs", "coin", "coins", "columns", "comet", "comment-alt-check", "comment-alt-dollar", "comment-alt-dots", "comment-alt-edit", "comment-alt-exclamation", "comment-alt-lines", "comment-alt-medical", "comment-alt-minus", "comment-alt-music", "comment-alt-plus", "comment-alt-slash", "comment-alt-smile", "comment-alt-times", "comment-alt", "comment-check", "comment-dollar", "comment-dots", "comment-edit", "comment-exclamation", "comment-lines", "comment-medical", "comment-minus", "comment-music", "comment-plus", "comment-slash", "comment-smile", "comment-times", "comment", "comments-alt-dollar", "comments-alt", "comments-dollar", "comments", "compact-disc", "compass-slash", "compass", "compress-alt", "compress-arrows-alt", "compress-wide", "compress", "computer-classic", "computer-speaker", "concierge-bell", "construction", "container-storage", "conveyor-belt-alt", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "couch", "cow", "cowbell-more", "cowbell", "credit-card-blank", "credit-card-front", "credit-card", "cricket", "croissant", "crop-alt", "crop", "cross", "crosshairs", "crow", "crown", "crutch", "crutches", "cube", "cubes", "curling", "cut", "dagger", "database", "deaf", "debug", "deer-rudolph", "deer", "democrat", "desktop-alt", "desktop", "dewpoint", "dharmachakra", "diagnoses", "diamond", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "digging", "digital-tachograph", "diploma", "directions", "disc-drive", "disease", "divide", "dizzy", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly-flatbed-alt", "dolly-flatbed-empty", "dolly-flatbed", "dolly", "donate", "door-closed", "door-open", "dot-circle", "dove", "download", "drafting-compass", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-alt", "drone", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-alt", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "ear-muffs", "ear", "eclipse-alt", "eclipse", "edit", "egg-fried", "egg", "eject", "elephant", "ellipsis-h-alt", "ellipsis-h", "ellipsis-v-alt", "ellipsis-v", "empty-set", "engine-warning", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope-square", "envelope", "equals", "eraser", "ethernet", "euro-sign", "exchange-alt", "exchange", "exclamation-circle", "exclamation-square", "exclamation-triangle", "exclamation", "expand-alt", "expand-arrows-alt", "expand-arrows", "expand-wide", "expand", "external-link-alt", "external-link-square-alt", "external-link-square", "external-link", "eye-dropper", "eye-evil", "eye-slash", "eye", "fan-table", "fan", "farm", "fast-backward", "fast-forward", "faucet-drip", "faucet", "fax", "feather-alt", "feather", "female", "field-hockey", "fighter-jet", "file-alt", "file-archive", "file-audio", "file-certificate", "file-chart-line", "file-chart-pie", "file-check", "file-code", "file-contract", "file-csv", "file-download", "file-edit", "file-excel", "file-exclamation", "file-export", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-medical-alt", "file-medical", "file-minus", "file-music", "file-pdf", "file-plus", "file-powerpoint", "file-prescription", "file-search", "file-signature", "file-spreadsheet", "file-times", "file-upload", "file-user", "file-video", "file-word", "file", "files-medical", "fill-drip", "fill", "film-alt", "film-canister", "film", "filter", "fingerprint", "fire-alt", "fire-extinguisher", "fire-smoke", "fire", "fireplace", "first-aid", "fish-cooked", "fish", "fist-raised", "flag-alt", "flag-checkered", "flag-usa", "flag", "flame", "flashlight", "flask-poison", "flask-potion", "flask", "flower-daffodil", "flower-tulip", "flower", "flushed", "flute", "flux-capacitor", "fog", "folder-download", "folder-minus", "folder-open", "folder-plus", "folder-times", "folder-tree", "folder-upload", "folder", "folders", "font-awesome-logo-full", "font-case", "font", "football-ball", "football-helmet", "forklift", "forward", "fragile", "french-fries", "frog", "frosty-head", "frown-open", "frown", "function", "funnel-dollar", "futbol", "galaxy", "game-board-alt", "game-board", "game-console-handheld", "gamepad-alt", "gamepad", "garage-car", "garage-open", "garage", "gas-pump-slash", "gas-pump", "gavel", "gem", "genderless", "ghost", "gift-card", "gift", "gifts", "gingerbread-man", "glass-champagne", "glass-cheers", "glass-citrus", "glass-martini-alt", "glass-martini", "glass-whiskey-rocks", "glass-whiskey", "glass", "glasses-alt", "glasses", "globe-africa", "globe-americas", "globe-asia", "globe-europe", "globe-snow", "globe-stand", "globe", "golf-ball", "golf-club", "gopuram", "graduation-cap", "gramophone", "greater-than-equal", "greater-than", "grimace", "grin-alt", "grin-beam-sweat", "grin-beam", "grin-hearts", "grin-squint-tears", "grin-squint", "grin-stars", "grin-tears", "grin-tongue-squint", "grin-tongue-wink", "grin-tongue", "grin-wink", "grin", "grip-horizontal", "grip-lines-vertical", "grip-lines", "grip-vertical", "guitar-electric", "guitar", "guitars", "h-square", "h1", "h2", "h3", "h4", "hamburger", "hammer-war", "hammer", "hamsa", "hand-heart", "hand-holding-box", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-usd", "hand-holding-water", "hand-holding", "hand-lizard", "hand-middle-finger", "hand-paper", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-right", "hand-point-up", "hand-pointer", "hand-receiving", "hand-rock", "hand-scissors", "hand-sparkles", "hand-spock", "hands-heart", "hands-helping", "hands-usd", "hands-wash", "hands", "handshake-alt-slash", "handshake-alt", "handshake-slash", "handshake", "hanukiah", "hard-hat", "hashtag", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "hdd", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-headphones", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "head-vr", "heading", "headphones-alt", "headphones", "headset", "heart-broken", "heart-circle", "heart-rate", "heart-square", "heart", "heartbeat", "heat", "helicopter", "helmet-battle", "hexagon", "highlighter", "hiking", "hippo", "history", "hockey-mask", "hockey-puck", "hockey-sticks", "holly-berry", "home-alt", "home-heart", "home-lg-alt", "home-lg", "home", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hospital-alt", "hospital-symbol", "hospital-user", "hospital", "hospitals", "hot-tub", "hotdog", "hotel", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-damage", "house-day", "house-flood", "house-leave", "house-night", "house-return", "house-signal", "house-user", "house", "hryvnia", "humidity", "hurricane", "i-cursor", "ice-cream", "ice-skate", "icicles", "icons-alt", "icons", "id-badge", "id-card-alt", "id-card", "igloo", "image-polaroid", "image", "images", "inbox-in", "inbox-out", "inbox", "indent", "industry-alt", "industry", "infinity", "info-circle", "info-square", "info", "inhaler", "integral", "intersection", "inventory", "island-tropical", "italic", "jack-o-lantern", "jedi", "joint", "journal-whills", "joystick", "jug", "kaaba", "kazoo", "kerning", "key-skeleton", "key", "keyboard", "keynote", "khanda", "kidneys", "kiss-beam", "kiss-wink-heart", "kiss", "kite", "kiwi-bird", "knife-kitchen", "lambda", "lamp-desk", "lamp-floor", "lamp", "landmark-alt", "landmark", "language", "laptop-code", "laptop-house", "laptop-medical", "laptop", "lasso", "laugh-beam", "laugh-squint", "laugh-wink", "laugh", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "lemon", "less-than-equal", "less-than", "level-down-alt", "level-down", "level-up-alt", "level-up", "life-ring", "light-ceiling", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-dollar", "lightbulb-exclamation", "lightbulb-on", "lightbulb-slash", "lightbulb", "lights-holiday", "line-columns", "line-height", "link", "lips", "lira-sign", "list-alt", "list-music", "list-ol", "list-ul", "list", "location-arrow", "location-circle", "location-slash", "location", "lock-alt", "lock-open-alt", "lock-open", "lock", "long-arrow-alt-down", "long-arrow-alt-left", "long-arrow-alt-right", "long-arrow-alt-up", "long-arrow-down", "long-arrow-left", "long-arrow-right", "long-arrow-up", "loveseat", "low-vision", "luchador", "luggage-cart", "lungs-virus", "lungs", "mace", "magic", "magnet", "mail-bulk", "mailbox", "male", "mandolin", "map-marked-alt", "map-marked", "map-marker-alt-slash", "map-marker-alt", "map-marker-check", "map-marker-edit", "map-marker-exclamation", "map-marker-minus", "map-marker-plus", "map-marker-question", "map-marker-slash", "map-marker-smile", "map-marker-times", "map-marker", "map-pin", "map-signs", "map", "marker", "mars-double", "mars-stroke-h", "mars-stroke-v", "mars-stroke", "mars", "mask", "meat", "medal", "medkit", "megaphone", "meh-blank", "meh-rolling-eyes", "meh", "memory", "menorah", "mercury", "meteor", "microchip", "microphone-alt-slash", "microphone-alt", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mind-share", "minus-circle", "minus-hexagon", "minus-octagon", "minus-square", "minus", "mistletoe", "mitten", "mobile-alt", "mobile-android-alt", "mobile-android", "mobile", "money-bill-alt", "money-bill-wave-alt", "money-bill-wave", "money-bill", "money-check-alt", "money-check-edit-alt", "money-check-edit", "money-check", "monitor-heart-rate", "monkey", "monument", "moon-cloud", "moon-stars", "moon", "mortar-pestle", "mosque", "motorcycle", "mountain", "mountains", "mouse-alt", "mouse-pointer", "mouse", "mp3-player", "mug-hot", "mug-marshmallows", "mug-tea", "mug", "music-alt-slash", "music-alt", "music-slash", "music", "narwhal", "network-wired", "neuter", "newspaper", "not-equal", "notes-medical", "object-group", "object-ungroup", "octagon", "oil-can", "oil-temp", "om", "omega", "ornament", "otter", "outdent", "outlet", "oven", "overline", "page-break", "pager", "paint-brush-alt", "paint-brush", "paint-roller", "palette", "pallet-alt", "pallet", "paper-plane", "paperclip", "parachute-box", "paragraph-rtl", "paragraph", "parking-circle-slash", "parking-circle", "parking-slash", "parking", "passport", "pastafarianism", "paste", "pause-circle", "pause", "paw-alt", "paw-claws", "paw", "peace", "pegasus", "pen-alt", "pen-fancy", "pen-nib", "pen-square", "pen", "pencil-alt", "pencil-paintbrush", "pencil-ruler", "pencil", "pennant", "people-arrows", "people-carry", "pepper-hot", "percent", "percentage", "person-booth", "person-carry", "person-dolly-empty", "person-dolly", "person-sign", "phone-alt", "phone-laptop", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-square-alt", "phone-square", "phone-volume", "phone", "photo-video", "pi", "piano-keyboard", "piano", "pie", "pig", "piggy-bank", "pills", "pizza-slice", "pizza", "place-of-worship", "plane-alt", "plane-arrival", "plane-departure", "plane-slash", "plane", "planet-moon", "planet-ringed", "play-circle", "play", "plug", "plus-circle", "plus-hexagon", "plus-octagon", "plus-square", "plus", "podcast", "podium-star", "podium", "police-box", "poll-h", "poll-people", "poll", "poo-storm", "poo", "poop", "popcorn", "portal-enter", "portal-exit", "portrait", "pound-sign", "power-off", "pray", "praying-hands", "prescription-bottle-alt", "prescription-bottle", "prescription", "presentation", "print-search", "print-slash", "print", "procedures", "project-diagram", "projector", "pump-medical", "pump-soap", "pumpkin", "puzzle-piece", "qrcode", "question-circle", "question-square", "question", "quidditch", "quote-left", "quote-right", "quran", "rabbit-fast", "rabbit", "racquet", "radar", "radiation-alt", "radiation", "radio-alt", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "random", "raygun", "receipt", "record-vinyl", "rectangle-landscape", "rectangle-portrait", "rectangle-wide", "recycle", "redo-alt", "redo", "refrigerator", "registered", "remove-format", "repeat-1-alt", "repeat-1", "repeat-alt", "repeat", "reply-all", "reply", "republican", "restroom", "retweet-alt", "retweet", "ribbon", "ring", "rings-wedding", "road", "robot", "rocket-launch", "rocket", "route-highway", "route-interstate", "route", "router", "rss-square", "rss", "ruble-sign", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "running", "rupee-sign", "rv", "sack-dollar", "sack", "sad-cry", "sad-tear", "salad", "sandwich", "satellite-dish", "satellite", "sausage", "save", "sax-hot", "saxophone", "scalpel-path", "scalpel", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scanner", "scarecrow", "scarf", "school", "screwdriver", "scroll-old", "scroll", "scrubber", "scythe", "sd-card", "search-dollar", "search-location", "search-minus", "search-plus", "search", "seedling", "send-back", "send-backward", "sensor-alert", "sensor-fire", "sensor-on", "sensor-smoke", "sensor", "server", "shapes", "share-all", "share-alt-square", "share-alt", "share-square", "share", "sheep", "shekel-sign", "shield-alt", "shield-check", "shield-cross", "shield-virus", "shield", "ship", "shipping-fast", "shipping-timed", "shish-kebab", "shoe-prints", "shopping-bag", "shopping-basket", "shopping-cart", "shovel-snow", "shovel", "shower", "shredder", "shuttle-van", "shuttlecock", "sickle", "sigma", "sign-in-alt", "sign-in", "sign-language", "sign-out-alt", "sign-out", "sign", "signal-1", "signal-2", "signal-3", "signal-4", "signal-alt-1", "signal-alt-2", "signal-alt-3", "signal-alt-slash", "signal-alt", "signal-slash", "signal-stream", "signal", "signature", "sim-card", "sink", "siren-on", "siren", "sitemap", "skating", "skeleton", "ski-jump", "ski-lift", "skiing-nordic", "skiing", "skull-cow", "skull-crossbones", "skull", "slash", "sledding", "sleigh", "sliders-h-square", "sliders-h", "sliders-v-square", "sliders-v", "smile-beam", "smile-plus", "smile-wink", "smile", "smog", "smoke", "smoking-ban", "smoking", "sms", "snake", "snooze", "snow-blowing", "snowboarding", "snowflake", "snowflakes", "snowman", "snowmobile", "snowplow", "soap", "socks", "solar-panel", "solar-system", "sort-alpha-down-alt", "sort-alpha-down", "sort-alpha-up-alt", "sort-alpha-up", "sort-alt", "sort-amount-down-alt", "sort-amount-down", "sort-amount-up-alt", "sort-amount-up", "sort-circle-down", "sort-circle-up", "sort-circle", "sort-down", "sort-numeric-down-alt", "sort-numeric-down", "sort-numeric-up-alt", "sort-numeric-up", "sort-shapes-down-alt", "sort-shapes-down", "sort-shapes-up-alt", "sort-shapes-up", "sort-size-down-alt", "sort-size-down", "sort-size-up-alt", "sort-size-up", "sort-up", "sort", "soup", "spa", "space-shuttle", "space-station-moon-alt", "space-station-moon", "spade", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-third", "spinner", "splotch", "spray-can", "sprinkler", "square-full", "square-root-alt", "square-root", "square", "squirrel", "staff", "stamp", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-alt", "star-half", "star-of-david", "star-of-life", "star-shooting", "star", "starfighter-alt", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "step-backward", "step-forward", "stethoscope", "sticky-note", "stocking", "stomach", "stop-circle", "stop", "stopwatch-20", "stopwatch", "store-alt-slash", "store-alt", "store-slash", "store", "stream", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subway", "suitcase-rolling", "suitcase", "sun-cloud", "sun-dust", "sun-haze", "sun", "sunglasses", "sunrise", "sunset", "superscript", "surprise", "swatchbook", "swimmer", "swimming-pool", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "synagogue", "sync-alt", "sync", "syringe", "table-tennis", "table", "tablet-alt", "tablet-android-alt", "tablet-android", "tablet-rugged", "tablet", "tablets", "tachometer-alt-average", "tachometer-alt-fast", "tachometer-alt-fastest", "tachometer-alt-slow", "tachometer-alt-slowest", "tachometer-alt", "tachometer-average", "tachometer-fast", "tachometer-fastest", "tachometer-slow", "tachometer-slowest", "tachometer", "taco", "tag", "tags", "tally", "tanakh", "tape", "tasks-alt", "tasks", "taxi", "teeth-open", "teeth", "telescope", "temperature-down", "temperature-frigid", "temperature-high", "temperature-hot", "temperature-low", "temperature-up", "tenge", "tennis-ball", "terminal", "text-height", "text-size", "text-width", "text", "th-large", "th-list", "th", "theater-masks", "thermometer-empty", "thermometer-full", "thermometer-half", "thermometer-quarter", "thermometer-three-quarters", "thermometer", "theta", "thumbs-down", "thumbs-up", "thumbtack", "thunderstorm-moon", "thunderstorm-sun", "thunderstorm", "ticket-alt", "ticket", "tilde", "times-circle", "times-hexagon", "times-octagon", "times-square", "times", "tint-slash", "tint", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "tired", "toggle-off", "toggle-on", "toilet-paper-alt", "toilet-paper-slash", "toilet-paper", "toilet", "tombstone-alt", "tombstone", "toolbox", "tools", "tooth", "toothbrush", "torah", "torii-gate", "tornado", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train", "tram", "transgender-alt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-empty", "transporter", "trash-alt", "trash-restore-alt", "trash-restore", "trash-undo-alt", "trash-undo", "trash", "treasure-chest", "tree-alt", "tree-christmas", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-music", "triangle", "trophy-alt", "trophy", "truck-container", "truck-couch", "truck-loading", "truck-monster", "truck-moving", "truck-pickup", "truck-plow", "truck-ramp", "truck", "trumpet", "tshirt", "tty", "turkey", "turntable", "turtle", "tv-alt", "tv-music", "tv-retro", "tv", "typewriter", "ufo-beam", "ufo", "umbrella-beach", "umbrella", "underline", "undo-alt", "undo", "unicorn", "union", "universal-access", "university", "unlink", "unlock-alt", "unlock", "upload", "usb-drive", "usd-circle", "usd-square", "user-alien", "user-alt-slash", "user-alt", "user-astronaut", "user-chart", "user-check", "user-circle", "user-clock", "user-cog", "user-cowboy", "user-crown", "user-edit", "user-friends", "user-graduate", "user-hard-hat", "user-headset", "user-injured", "user-lock", "user-md-chat", "user-md", "user-minus", "user-music", "user-ninja", "user-nurse", "user-plus", "user-robot", "user-secret", "user-shield", "user-slash", "user-tag", "user-tie", "user-times", "user-unlock", "user-visor", "user", "users-class", "users-cog", "users-crown", "users-medical", "users-slash", "users", "utensil-fork", "utensil-knife", "utensil-spoon", "utensils-alt", "utensils", "vacuum-robot", "vacuum", "value-absolute", "vector-square", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vhs", "vial", "vials", "video-plus", "video-slash", "video", "vihara", "violin", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball-ball", "volume-down", "volume-mute", "volume-off", "volume-slash", "volume-up", "volume", "vote-nay", "vote-yea", "vr-cardboard", "wagon-covered", "walker", "walkie-talkie", "walking", "wallet", "wand-magic", "wand", "warehouse-alt", "warehouse", "washer", "watch-calculator", "watch-fitness", "watch", "water-lower", "water-rise", "water", "wave-sine", "wave-square", "wave-triangle", "waveform-path", "waveform", "webcam-slash", "webcam", "weight-hanging", "weight", "whale", "wheat", "wheelchair", "whistle", "wifi-1", "wifi-2", "wifi-slash", "wifi", "wind-turbine", "wind-warning", "wind", "window-alt", "window-close", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-alt", "wine-glass", "won-sign", "wreath", "wrench", "x-ray", "yen-sign", "yin-yang" ], "solid": [ "abacus", "acorn", "ad", "address-book", "address-card", "adjust", "air-conditioner", "air-freshener", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-collection", "album", "alicorn", "alien-monster", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "allergies", "ambulance", "american-sign-language-interpreting", "amp-guitar", "analytics", "anchor", "angel", "angle-double-down", "angle-double-left", "angle-double-right", "angle-double-up", "angle-down", "angle-left", "angle-right", "angle-up", "angry", "ankh", "apple-alt", "apple-crate", "archive", "archway", "arrow-alt-circle-down", "arrow-alt-circle-left", "arrow-alt-circle-right", "arrow-alt-circle-up", "arrow-alt-down", "arrow-alt-from-bottom", "arrow-alt-from-left", "arrow-alt-from-right", "arrow-alt-from-top", "arrow-alt-left", "arrow-alt-right", "arrow-alt-square-down", "arrow-alt-square-left", "arrow-alt-square-right", "arrow-alt-square-up", "arrow-alt-to-bottom", "arrow-alt-to-left", "arrow-alt-to-right", "arrow-alt-to-top", "arrow-alt-up", "arrow-circle-down", "arrow-circle-left", "arrow-circle-right", "arrow-circle-up", "arrow-down", "arrow-from-bottom", "arrow-from-left", "arrow-from-right", "arrow-from-top", "arrow-left", "arrow-right", "arrow-square-down", "arrow-square-left", "arrow-square-right", "arrow-square-up", "arrow-to-bottom", "arrow-to-left", "arrow-to-right", "arrow-to-top", "arrow-up", "arrows-alt-h", "arrows-alt-v", "arrows-alt", "arrows-h", "arrows-v", "arrows", "assistive-listening-systems", "asterisk", "at", "atlas", "atom-alt", "atom", "audio-description", "award", "axe-battle", "axe", "baby-carriage", "baby", "backpack", "backspace", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "bags-shopping", "bahai", "balance-scale-left", "balance-scale-right", "balance-scale", "ball-pile", "ballot-check", "ballot", "ban", "band-aid", "banjo", "barcode-alt", "barcode-read", "barcode-scan", "barcode", "bars", "baseball-ball", "baseball", "basketball-ball", "basketball-hoop", "bat", "bath", "battery-bolt", "battery-empty", "battery-full", "battery-half", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-alt", "bed-bunk", "bed-empty", "bed", "beer", "bell-exclamation", "bell-on", "bell-plus", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "betamax", "bezier-curve", "bible", "bicycle", "biking-mountain", "biking", "binoculars", "biohazard", "birthday-cake", "blanket", "blender-phone", "blender", "blind", "blinds-open", "blinds-raised", "blinds", "blog", "bold", "bolt", "bomb", "bone-break", "bone", "bong", "book-alt", "book-dead", "book-heart", "book-medical", "book-open", "book-reader", "book-spells", "book-user", "book", "bookmark", "books-medical", "books", "boombox", "boot", "booth-curtain", "border-all", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-style-alt", "border-style", "border-top", "bow-arrow", "bowling-ball", "bowling-pins", "box-alt", "box-ballot", "box-check", "box-fragile", "box-full", "box-heart", "box-open", "box-tissue", "box-up", "box-usd", "box", "boxes-alt", "boxes", "boxing-glove", "brackets-curly", "brackets", "braille", "brain", "bread-loaf", "bread-slice", "briefcase-medical", "briefcase", "bring-forward", "bring-front", "broadcast-tower", "broom", "browser", "brush", "bug", "building", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "burger-soda", "burn", "burrito", "bus-alt", "bus-school", "bus", "business-time", "cabinet-filing", "cactus", "calculator-alt", "calculator", "calendar-alt", "calendar-check", "calendar-day", "calendar-edit", "calendar-exclamation", "calendar-minus", "calendar-plus", "calendar-star", "calendar-times", "calendar-week", "calendar", "camcorder", "camera-alt", "camera-home", "camera-movie", "camera-polaroid", "camera-retro", "camera", "campfire", "campground", "candle-holder", "candy-cane", "candy-corn", "cannabis", "capsules", "car-alt", "car-battery", "car-building", "car-bump", "car-bus", "car-crash", "car-garage", "car-mechanic", "car-side", "car-tilt", "car-wash", "car", "caravan-alt", "caravan", "caret-circle-down", "caret-circle-left", "caret-circle-right", "caret-circle-up", "caret-down", "caret-left", "caret-right", "caret-square-down", "caret-square-left", "caret-square-right", "caret-square-up", "caret-up", "carrot", "cars", "cart-arrow-down", "cart-plus", "cash-register", "cassette-tape", "cat-space", "cat", "cauldron", "cctv", "certificate", "chair-office", "chair", "chalkboard-teacher", "chalkboard", "charging-station", "chart-area", "chart-bar", "chart-line-down", "chart-line", "chart-network", "chart-pie-alt", "chart-pie", "chart-scatter", "check-circle", "check-double", "check-square", "check", "cheese-swiss", "cheese", "cheeseburger", "chess-bishop-alt", "chess-bishop", "chess-board", "chess-clock-alt", "chess-clock", "chess-king-alt", "chess-king", "chess-knight-alt", "chess-knight", "chess-pawn-alt", "chess-pawn", "chess-queen-alt", "chess-queen", "chess-rook-alt", "chess-rook", "chess", "chevron-circle-down", "chevron-circle-left", "chevron-circle-right", "chevron-circle-up", "chevron-double-down", "chevron-double-left", "chevron-double-right", "chevron-double-up", "chevron-down", "chevron-left", "chevron-right", "chevron-square-down", "chevron-square-left", "chevron-square-right", "chevron-square-up", "chevron-up", "child", "chimney", "church", "circle-notch", "circle", "city", "clarinet", "claw-marks", "clinic-medical", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-prescription", "clipboard-user", "clipboard", "clock", "clone", "closed-captioning", "cloud-download-alt", "cloud-download", "cloud-drizzle", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-upload-alt", "cloud-upload", "cloud", "clouds-moon", "clouds-sun", "clouds", "club", "cocktail", "code-branch", "code-commit", "code-merge", "code", "coffee-pot", "coffee-togo", "coffee", "coffin-cross", "coffin", "cog", "cogs", "coin", "coins", "columns", "comet", "comment-alt-check", "comment-alt-dollar", "comment-alt-dots", "comment-alt-edit", "comment-alt-exclamation", "comment-alt-lines", "comment-alt-medical", "comment-alt-minus", "comment-alt-music", "comment-alt-plus", "comment-alt-slash", "comment-alt-smile", "comment-alt-times", "comment-alt", "comment-check", "comment-dollar", "comment-dots", "comment-edit", "comment-exclamation", "comment-lines", "comment-medical", "comment-minus", "comment-music", "comment-plus", "comment-slash", "comment-smile", "comment-times", "comment", "comments-alt-dollar", "comments-alt", "comments-dollar", "comments", "compact-disc", "compass-slash", "compass", "compress-alt", "compress-arrows-alt", "compress-wide", "compress", "computer-classic", "computer-speaker", "concierge-bell", "construction", "container-storage", "conveyor-belt-alt", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "couch", "cow", "cowbell-more", "cowbell", "credit-card-blank", "credit-card-front", "credit-card", "cricket", "croissant", "crop-alt", "crop", "cross", "crosshairs", "crow", "crown", "crutch", "crutches", "cube", "cubes", "curling", "cut", "dagger", "database", "deaf", "debug", "deer-rudolph", "deer", "democrat", "desktop-alt", "desktop", "dewpoint", "dharmachakra", "diagnoses", "diamond", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "digging", "digital-tachograph", "diploma", "directions", "disc-drive", "disease", "divide", "dizzy", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly-flatbed-alt", "dolly-flatbed-empty", "dolly-flatbed", "dolly", "donate", "door-closed", "door-open", "dot-circle", "dove", "download", "drafting-compass", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-alt", "drone", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-alt", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "ear-muffs", "ear", "eclipse-alt", "eclipse", "edit", "egg-fried", "egg", "eject", "elephant", "ellipsis-h-alt", "ellipsis-h", "ellipsis-v-alt", "ellipsis-v", "empty-set", "engine-warning", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope-square", "envelope", "equals", "eraser", "ethernet", "euro-sign", "exchange-alt", "exchange", "exclamation-circle", "exclamation-square", "exclamation-triangle", "exclamation", "expand-alt", "expand-arrows-alt", "expand-arrows", "expand-wide", "expand", "external-link-alt", "external-link-square-alt", "external-link-square", "external-link", "eye-dropper", "eye-evil", "eye-slash", "eye", "fan-table", "fan", "farm", "fast-backward", "fast-forward", "faucet-drip", "faucet", "fax", "feather-alt", "feather", "female", "field-hockey", "fighter-jet", "file-alt", "file-archive", "file-audio", "file-certificate", "file-chart-line", "file-chart-pie", "file-check", "file-code", "file-contract", "file-csv", "file-download", "file-edit", "file-excel", "file-exclamation", "file-export", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-medical-alt", "file-medical", "file-minus", "file-music", "file-pdf", "file-plus", "file-powerpoint", "file-prescription", "file-search", "file-signature", "file-spreadsheet", "file-times", "file-upload", "file-user", "file-video", "file-word", "file", "files-medical", "fill-drip", "fill", "film-alt", "film-canister", "film", "filter", "fingerprint", "fire-alt", "fire-extinguisher", "fire-smoke", "fire", "fireplace", "first-aid", "fish-cooked", "fish", "fist-raised", "flag-alt", "flag-checkered", "flag-usa", "flag", "flame", "flashlight", "flask-poison", "flask-potion", "flask", "flower-daffodil", "flower-tulip", "flower", "flushed", "flute", "flux-capacitor", "fog", "folder-download", "folder-minus", "folder-open", "folder-plus", "folder-times", "folder-tree", "folder-upload", "folder", "folders", "font-awesome-logo-full", "font-case", "font", "football-ball", "football-helmet", "forklift", "forward", "fragile", "french-fries", "frog", "frosty-head", "frown-open", "frown", "function", "funnel-dollar", "futbol", "galaxy", "game-board-alt", "game-board", "game-console-handheld", "gamepad-alt", "gamepad", "garage-car", "garage-open", "garage", "gas-pump-slash", "gas-pump", "gavel", "gem", "genderless", "ghost", "gift-card", "gift", "gifts", "gingerbread-man", "glass-champagne", "glass-cheers", "glass-citrus", "glass-martini-alt", "glass-martini", "glass-whiskey-rocks", "glass-whiskey", "glass", "glasses-alt", "glasses", "globe-africa", "globe-americas", "globe-asia", "globe-europe", "globe-snow", "globe-stand", "globe", "golf-ball", "golf-club", "gopuram", "graduation-cap", "gramophone", "greater-than-equal", "greater-than", "grimace", "grin-alt", "grin-beam-sweat", "grin-beam", "grin-hearts", "grin-squint-tears", "grin-squint", "grin-stars", "grin-tears", "grin-tongue-squint", "grin-tongue-wink", "grin-tongue", "grin-wink", "grin", "grip-horizontal", "grip-lines-vertical", "grip-lines", "grip-vertical", "guitar-electric", "guitar", "guitars", "h-square", "h1", "h2", "h3", "h4", "hamburger", "hammer-war", "hammer", "hamsa", "hand-heart", "hand-holding-box", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-usd", "hand-holding-water", "hand-holding", "hand-lizard", "hand-middle-finger", "hand-paper", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-right", "hand-point-up", "hand-pointer", "hand-receiving", "hand-rock", "hand-scissors", "hand-sparkles", "hand-spock", "hands-heart", "hands-helping", "hands-usd", "hands-wash", "hands", "handshake-alt-slash", "handshake-alt", "handshake-slash", "handshake", "hanukiah", "hard-hat", "hashtag", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "hdd", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-headphones", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "head-vr", "heading", "headphones-alt", "headphones", "headset", "heart-broken", "heart-circle", "heart-rate", "heart-square", "heart", "heartbeat", "heat", "helicopter", "helmet-battle", "hexagon", "highlighter", "hiking", "hippo", "history", "hockey-mask", "hockey-puck", "hockey-sticks", "holly-berry", "home-alt", "home-heart", "home-lg-alt", "home-lg", "home", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hospital-alt", "hospital-symbol", "hospital-user", "hospital", "hospitals", "hot-tub", "hotdog", "hotel", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-damage", "house-day", "house-flood", "house-leave", "house-night", "house-return", "house-signal", "house-user", "house", "hryvnia", "humidity", "hurricane", "i-cursor", "ice-cream", "ice-skate", "icicles", "icons-alt", "icons", "id-badge", "id-card-alt", "id-card", "igloo", "image-polaroid", "image", "images", "inbox-in", "inbox-out", "inbox", "indent", "industry-alt", "industry", "infinity", "info-circle", "info-square", "info", "inhaler", "integral", "intersection", "inventory", "island-tropical", "italic", "jack-o-lantern", "jedi", "joint", "journal-whills", "joystick", "jug", "kaaba", "kazoo", "kerning", "key-skeleton", "key", "keyboard", "keynote", "khanda", "kidneys", "kiss-beam", "kiss-wink-heart", "kiss", "kite", "kiwi-bird", "knife-kitchen", "lambda", "lamp-desk", "lamp-floor", "lamp", "landmark-alt", "landmark", "language", "laptop-code", "laptop-house", "laptop-medical", "laptop", "lasso", "laugh-beam", "laugh-squint", "laugh-wink", "laugh", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "lemon", "less-than-equal", "less-than", "level-down-alt", "level-down", "level-up-alt", "level-up", "life-ring", "light-ceiling", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-dollar", "lightbulb-exclamation", "lightbulb-on", "lightbulb-slash", "lightbulb", "lights-holiday", "line-columns", "line-height", "link", "lips", "lira-sign", "list-alt", "list-music", "list-ol", "list-ul", "list", "location-arrow", "location-circle", "location-slash", "location", "lock-alt", "lock-open-alt", "lock-open", "lock", "long-arrow-alt-down", "long-arrow-alt-left", "long-arrow-alt-right", "long-arrow-alt-up", "long-arrow-down", "long-arrow-left", "long-arrow-right", "long-arrow-up", "loveseat", "low-vision", "luchador", "luggage-cart", "lungs-virus", "lungs", "mace", "magic", "magnet", "mail-bulk", "mailbox", "male", "mandolin", "map-marked-alt", "map-marked", "map-marker-alt-slash", "map-marker-alt", "map-marker-check", "map-marker-edit", "map-marker-exclamation", "map-marker-minus", "map-marker-plus", "map-marker-question", "map-marker-slash", "map-marker-smile", "map-marker-times", "map-marker", "map-pin", "map-signs", "map", "marker", "mars-double", "mars-stroke-h", "mars-stroke-v", "mars-stroke", "mars", "mask", "meat", "medal", "medkit", "megaphone", "meh-blank", "meh-rolling-eyes", "meh", "memory", "menorah", "mercury", "meteor", "microchip", "microphone-alt-slash", "microphone-alt", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mind-share", "minus-circle", "minus-hexagon", "minus-octagon", "minus-square", "minus", "mistletoe", "mitten", "mobile-alt", "mobile-android-alt", "mobile-android", "mobile", "money-bill-alt", "money-bill-wave-alt", "money-bill-wave", "money-bill", "money-check-alt", "money-check-edit-alt", "money-check-edit", "money-check", "monitor-heart-rate", "monkey", "monument", "moon-cloud", "moon-stars", "moon", "mortar-pestle", "mosque", "motorcycle", "mountain", "mountains", "mouse-alt", "mouse-pointer", "mouse", "mp3-player", "mug-hot", "mug-marshmallows", "mug-tea", "mug", "music-alt-slash", "music-alt", "music-slash", "music", "narwhal", "network-wired", "neuter", "newspaper", "not-equal", "notes-medical", "object-group", "object-ungroup", "octagon", "oil-can", "oil-temp", "om", "omega", "ornament", "otter", "outdent", "outlet", "oven", "overline", "page-break", "pager", "paint-brush-alt", "paint-brush", "paint-roller", "palette", "pallet-alt", "pallet", "paper-plane", "paperclip", "parachute-box", "paragraph-rtl", "paragraph", "parking-circle-slash", "parking-circle", "parking-slash", "parking", "passport", "pastafarianism", "paste", "pause-circle", "pause", "paw-alt", "paw-claws", "paw", "peace", "pegasus", "pen-alt", "pen-fancy", "pen-nib", "pen-square", "pen", "pencil-alt", "pencil-paintbrush", "pencil-ruler", "pencil", "pennant", "people-arrows", "people-carry", "pepper-hot", "percent", "percentage", "person-booth", "person-carry", "person-dolly-empty", "person-dolly", "person-sign", "phone-alt", "phone-laptop", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-square-alt", "phone-square", "phone-volume", "phone", "photo-video", "pi", "piano-keyboard", "piano", "pie", "pig", "piggy-bank", "pills", "pizza-slice", "pizza", "place-of-worship", "plane-alt", "plane-arrival", "plane-departure", "plane-slash", "plane", "planet-moon", "planet-ringed", "play-circle", "play", "plug", "plus-circle", "plus-hexagon", "plus-octagon", "plus-square", "plus", "podcast", "podium-star", "podium", "police-box", "poll-h", "poll-people", "poll", "poo-storm", "poo", "poop", "popcorn", "portal-enter", "portal-exit", "portrait", "pound-sign", "power-off", "pray", "praying-hands", "prescription-bottle-alt", "prescription-bottle", "prescription", "presentation", "print-search", "print-slash", "print", "procedures", "project-diagram", "projector", "pump-medical", "pump-soap", "pumpkin", "puzzle-piece", "qrcode", "question-circle", "question-square", "question", "quidditch", "quote-left", "quote-right", "quran", "rabbit-fast", "rabbit", "racquet", "radar", "radiation-alt", "radiation", "radio-alt", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "random", "raygun", "receipt", "record-vinyl", "rectangle-landscape", "rectangle-portrait", "rectangle-wide", "recycle", "redo-alt", "redo", "refrigerator", "registered", "remove-format", "repeat-1-alt", "repeat-1", "repeat-alt", "repeat", "reply-all", "reply", "republican", "restroom", "retweet-alt", "retweet", "ribbon", "ring", "rings-wedding", "road", "robot", "rocket-launch", "rocket", "route-highway", "route-interstate", "route", "router", "rss-square", "rss", "ruble-sign", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "running", "rupee-sign", "rv", "sack-dollar", "sack", "sad-cry", "sad-tear", "salad", "sandwich", "satellite-dish", "satellite", "sausage", "save", "sax-hot", "saxophone", "scalpel-path", "scalpel", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scanner", "scarecrow", "scarf", "school", "screwdriver", "scroll-old", "scroll", "scrubber", "scythe", "sd-card", "search-dollar", "search-location", "search-minus", "search-plus", "search", "seedling", "send-back", "send-backward", "sensor-alert", "sensor-fire", "sensor-on", "sensor-smoke", "sensor", "server", "shapes", "share-all", "share-alt-square", "share-alt", "share-square", "share", "sheep", "shekel-sign", "shield-alt", "shield-check", "shield-cross", "shield-virus", "shield", "ship", "shipping-fast", "shipping-timed", "shish-kebab", "shoe-prints", "shopping-bag", "shopping-basket", "shopping-cart", "shovel-snow", "shovel", "shower", "shredder", "shuttle-van", "shuttlecock", "sickle", "sigma", "sign-in-alt", "sign-in", "sign-language", "sign-out-alt", "sign-out", "sign", "signal-1", "signal-2", "signal-3", "signal-4", "signal-alt-1", "signal-alt-2", "signal-alt-3", "signal-alt-slash", "signal-alt", "signal-slash", "signal-stream", "signal", "signature", "sim-card", "sink", "siren-on", "siren", "sitemap", "skating", "skeleton", "ski-jump", "ski-lift", "skiing-nordic", "skiing", "skull-cow", "skull-crossbones", "skull", "slash", "sledding", "sleigh", "sliders-h-square", "sliders-h", "sliders-v-square", "sliders-v", "smile-beam", "smile-plus", "smile-wink", "smile", "smog", "smoke", "smoking-ban", "smoking", "sms", "snake", "snooze", "snow-blowing", "snowboarding", "snowflake", "snowflakes", "snowman", "snowmobile", "snowplow", "soap", "socks", "solar-panel", "solar-system", "sort-alpha-down-alt", "sort-alpha-down", "sort-alpha-up-alt", "sort-alpha-up", "sort-alt", "sort-amount-down-alt", "sort-amount-down", "sort-amount-up-alt", "sort-amount-up", "sort-circle-down", "sort-circle-up", "sort-circle", "sort-down", "sort-numeric-down-alt", "sort-numeric-down", "sort-numeric-up-alt", "sort-numeric-up", "sort-shapes-down-alt", "sort-shapes-down", "sort-shapes-up-alt", "sort-shapes-up", "sort-size-down-alt", "sort-size-down", "sort-size-up-alt", "sort-size-up", "sort-up", "sort", "soup", "spa", "space-shuttle", "space-station-moon-alt", "space-station-moon", "spade", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-third", "spinner", "splotch", "spray-can", "sprinkler", "square-full", "square-root-alt", "square-root", "square", "squirrel", "staff", "stamp", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-alt", "star-half", "star-of-david", "star-of-life", "star-shooting", "star", "starfighter-alt", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "step-backward", "step-forward", "stethoscope", "sticky-note", "stocking", "stomach", "stop-circle", "stop", "stopwatch-20", "stopwatch", "store-alt-slash", "store-alt", "store-slash", "store", "stream", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subway", "suitcase-rolling", "suitcase", "sun-cloud", "sun-dust", "sun-haze", "sun", "sunglasses", "sunrise", "sunset", "superscript", "surprise", "swatchbook", "swimmer", "swimming-pool", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "synagogue", "sync-alt", "sync", "syringe", "table-tennis", "table", "tablet-alt", "tablet-android-alt", "tablet-android", "tablet-rugged", "tablet", "tablets", "tachometer-alt-average", "tachometer-alt-fast", "tachometer-alt-fastest", "tachometer-alt-slow", "tachometer-alt-slowest", "tachometer-alt", "tachometer-average", "tachometer-fast", "tachometer-fastest", "tachometer-slow", "tachometer-slowest", "tachometer", "taco", "tag", "tags", "tally", "tanakh", "tape", "tasks-alt", "tasks", "taxi", "teeth-open", "teeth", "telescope", "temperature-down", "temperature-frigid", "temperature-high", "temperature-hot", "temperature-low", "temperature-up", "tenge", "tennis-ball", "terminal", "text-height", "text-size", "text-width", "text", "th-large", "th-list", "th", "theater-masks", "thermometer-empty", "thermometer-full", "thermometer-half", "thermometer-quarter", "thermometer-three-quarters", "thermometer", "theta", "thumbs-down", "thumbs-up", "thumbtack", "thunderstorm-moon", "thunderstorm-sun", "thunderstorm", "ticket-alt", "ticket", "tilde", "times-circle", "times-hexagon", "times-octagon", "times-square", "times", "tint-slash", "tint", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "tired", "toggle-off", "toggle-on", "toilet-paper-alt", "toilet-paper-slash", "toilet-paper", "toilet", "tombstone-alt", "tombstone", "toolbox", "tools", "tooth", "toothbrush", "torah", "torii-gate", "tornado", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train", "tram", "transgender-alt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-empty", "transporter", "trash-alt", "trash-restore-alt", "trash-restore", "trash-undo-alt", "trash-undo", "trash", "treasure-chest", "tree-alt", "tree-christmas", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-music", "triangle", "trophy-alt", "trophy", "truck-container", "truck-couch", "truck-loading", "truck-monster", "truck-moving", "truck-pickup", "truck-plow", "truck-ramp", "truck", "trumpet", "tshirt", "tty", "turkey", "turntable", "turtle", "tv-alt", "tv-music", "tv-retro", "tv", "typewriter", "ufo-beam", "ufo", "umbrella-beach", "umbrella", "underline", "undo-alt", "undo", "unicorn", "union", "universal-access", "university", "unlink", "unlock-alt", "unlock", "upload", "usb-drive", "usd-circle", "usd-square", "user-alien", "user-alt-slash", "user-alt", "user-astronaut", "user-chart", "user-check", "user-circle", "user-clock", "user-cog", "user-cowboy", "user-crown", "user-edit", "user-friends", "user-graduate", "user-hard-hat", "user-headset", "user-injured", "user-lock", "user-md-chat", "user-md", "user-minus", "user-music", "user-ninja", "user-nurse", "user-plus", "user-robot", "user-secret", "user-shield", "user-slash", "user-tag", "user-tie", "user-times", "user-unlock", "user-visor", "user", "users-class", "users-cog", "users-crown", "users-medical", "users-slash", "users", "utensil-fork", "utensil-knife", "utensil-spoon", "utensils-alt", "utensils", "vacuum-robot", "vacuum", "value-absolute", "vector-square", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vhs", "vial", "vials", "video-plus", "video-slash", "video", "vihara", "violin", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball-ball", "volume-down", "volume-mute", "volume-off", "volume-slash", "volume-up", "volume", "vote-nay", "vote-yea", "vr-cardboard", "wagon-covered", "walker", "walkie-talkie", "walking", "wallet", "wand-magic", "wand", "warehouse-alt", "warehouse", "washer", "watch-calculator", "watch-fitness", "watch", "water-lower", "water-rise", "water", "wave-sine", "wave-square", "wave-triangle", "waveform-path", "waveform", "webcam-slash", "webcam", "weight-hanging", "weight", "whale", "wheat", "wheelchair", "whistle", "wifi-1", "wifi-2", "wifi-slash", "wifi", "wind-turbine", "wind-warning", "wind", "window-alt", "window-close", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-alt", "wine-glass", "won-sign", "wreath", "wrench", "x-ray", "yen-sign", "yin-yang" ] } ================================================ FILE: packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_regular.json ================================================ {"abacus":63040,"acorn":63150,"ad":63041,"address-book":62137,"address-card":62139,"adjust":61506,"air-conditioner":63732,"air-freshener":62928,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-collection":63648,"album":63647,"alicorn":63152,"alien-monster":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"allergies":62561,"ambulance":61689,"american-sign-language-interpreting":62115,"amp-guitar":63649,"analytics":63043,"anchor":61757,"angel":63353,"angle-double-down":61699,"angle-double-left":61696,"angle-double-right":61697,"angle-double-up":61698,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angry":62806,"ankh":63044,"apple-alt":62929,"apple-crate":63153,"archive":61831,"archway":62807,"arrow-alt-circle-down":62296,"arrow-alt-circle-left":62297,"arrow-alt-circle-right":62298,"arrow-alt-circle-up":62299,"arrow-alt-down":62292,"arrow-alt-from-bottom":62278,"arrow-alt-from-left":62279,"arrow-alt-from-right":62280,"arrow-alt-from-top":62281,"arrow-alt-left":62293,"arrow-alt-right":62294,"arrow-alt-square-down":62288,"arrow-alt-square-left":62289,"arrow-alt-square-right":62290,"arrow-alt-square-up":62291,"arrow-alt-to-bottom":62282,"arrow-alt-to-left":62283,"arrow-alt-to-right":62284,"arrow-alt-to-top":62285,"arrow-alt-up":62295,"arrow-circle-down":61611,"arrow-circle-left":61608,"arrow-circle-right":61609,"arrow-circle-up":61610,"arrow-down":61539,"arrow-from-bottom":62274,"arrow-from-left":62275,"arrow-from-right":62276,"arrow-from-top":62277,"arrow-left":61536,"arrow-right":61537,"arrow-square-down":62265,"arrow-square-left":62266,"arrow-square-right":62267,"arrow-square-up":62268,"arrow-to-bottom":62269,"arrow-to-left":62270,"arrow-to-right":62272,"arrow-to-top":62273,"arrow-up":61538,"arrows-alt-h":62263,"arrows-alt-v":62264,"arrows-alt":61618,"arrows-h":61566,"arrows-v":61565,"arrows":61511,"assistive-listening-systems":62114,"asterisk":61545,"at":61946,"atlas":62808,"atom-alt":62931,"atom":62930,"audio-description":62110,"award":62809,"axe-battle":63155,"axe":63154,"baby-carriage":63357,"baby":63356,"backpack":62932,"backspace":62810,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"bags-shopping":63559,"bahai":63078,"balance-scale-left":62741,"balance-scale-right":62742,"balance-scale":62030,"ball-pile":63358,"ballot-check":63283,"ballot":63282,"ban":61534,"band-aid":62562,"banjo":63651,"barcode-alt":62563,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars":61641,"baseball-ball":62515,"baseball":62514,"basketball-ball":62516,"basketball-hoop":62517,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-full":62016,"battery-half":62018,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-alt":63735,"bed-bunk":63736,"bed-empty":63737,"bed":62006,"beer":61692,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"betamax":63652,"bezier-curve":62811,"bible":63047,"bicycle":61958,"biking-mountain":63563,"biking":63562,"binoculars":61925,"biohazard":63360,"birthday-cake":61949,"blanket":62616,"blender-phone":63158,"blender":62743,"blind":62109,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"blog":63361,"bold":61490,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-alt":62937,"book-dead":63159,"book-heart":62617,"book-medical":63462,"book-open":62744,"book-reader":62938,"book-spells":63160,"book-user":63463,"book":61485,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-style-alt":63572,"border-style":63571,"border-top":63573,"bow-arrow":63161,"bowling-ball":62518,"bowling-pins":62519,"box-alt":62618,"box-ballot":63285,"box-check":62567,"box-fragile":62619,"box-full":62620,"box-heart":62621,"box-open":62622,"box-tissue":57435,"box-up":62623,"box-usd":62624,"box":62566,"boxes-alt":62625,"boxes":62568,"boxing-glove":62520,"brackets-curly":63466,"brackets":63465,"braille":62113,"brain":62940,"bread-loaf":63467,"bread-slice":63468,"briefcase-medical":62569,"briefcase":61617,"bring-forward":63574,"bring-front":63575,"broadcast-tower":62745,"broom":62746,"browser":62334,"brush":62813,"bug":61832,"building":61869,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"burger-soda":63576,"burn":62570,"burrito":63469,"bus-alt":62814,"bus-school":62941,"bus":61959,"business-time":63050,"cabinet-filing":63051,"cactus":63655,"calculator-alt":63052,"calculator":61932,"calendar-alt":61555,"calendar-check":62068,"calendar-day":63363,"calendar-edit":62259,"calendar-exclamation":62260,"calendar-minus":62066,"calendar-plus":62065,"calendar-star":63286,"calendar-times":62067,"calendar-week":63364,"calendar":61747,"camcorder":63656,"camera-alt":62258,"camera-home":63742,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera":61488,"campfire":63162,"campground":63163,"candle-holder":63164,"candy-cane":63366,"candy-corn":63165,"cannabis":62815,"capsules":62571,"car-alt":62942,"car-battery":62943,"car-building":63577,"car-bump":62944,"car-bus":63578,"car-crash":62945,"car-garage":62946,"car-mechanic":62947,"car-side":62948,"car-tilt":62949,"car-wash":62950,"car":61881,"caravan-alt":57344,"caravan":63743,"caret-circle-down":62253,"caret-circle-left":62254,"caret-circle-right":62256,"caret-circle-up":62257,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-square-down":61776,"caret-square-left":61841,"caret-square-right":61778,"caret-square-up":61777,"caret-up":61656,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-plus":61975,"cash-register":63368,"cassette-tape":63659,"cat-space":57345,"cat":63166,"cauldron":63167,"cctv":63660,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-teacher":62748,"chalkboard":62747,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-line-down":63053,"chart-line":61953,"chart-network":63370,"chart-pie-alt":63054,"chart-pie":61952,"chart-scatter":63470,"check-circle":61528,"check-double":62816,"check-square":61770,"check":61452,"cheese-swiss":63472,"cheese":63471,"cheeseburger":63473,"chess-bishop-alt":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-alt":62526,"chess-clock":62525,"chess-king-alt":62528,"chess-king":62527,"chess-knight-alt":62530,"chess-knight":62529,"chess-pawn-alt":62532,"chess-pawn":62531,"chess-queen-alt":62534,"chess-queen":62533,"chess-rook-alt":62536,"chess-rook":62535,"chess":62521,"chevron-circle-down":61754,"chevron-circle-left":61751,"chevron-circle-right":61752,"chevron-circle-up":61753,"chevron-double-down":62242,"chevron-double-left":62243,"chevron-double-right":62244,"chevron-double-up":62245,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-square-down":62249,"chevron-square-left":62250,"chevron-square-right":62251,"chevron-square-up":62252,"chevron-up":61559,"child":61870,"chimney":63371,"church":62749,"circle-notch":61902,"circle":61713,"city":63055,"clarinet":63661,"claw-marks":63170,"clinic-medical":63474,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-prescription":62952,"clipboard-user":63475,"clipboard":62248,"clock":61463,"clone":62029,"closed-captioning":61962,"cloud-download-alt":62337,"cloud-download":61677,"cloud-drizzle":63288,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers":63295,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-upload-alt":62338,"cloud-upload":61678,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"club":62247,"cocktail":62817,"code-branch":61734,"code-commit":62342,"code-merge":62343,"code":61729,"coffee-pot":57346,"coffee-togo":63173,"coffee":61684,"coffin-cross":57425,"coffin":63174,"cog":61459,"cogs":61573,"coin":63580,"coins":62750,"columns":61659,"comet":57347,"comment-alt-check":62626,"comment-alt-dollar":63056,"comment-alt-dots":62627,"comment-alt-edit":62628,"comment-alt-exclamation":62629,"comment-alt-lines":62630,"comment-alt-medical":63476,"comment-alt-minus":62631,"comment-alt-music":63663,"comment-alt-plus":62632,"comment-alt-slash":62633,"comment-alt-smile":62634,"comment-alt-times":62635,"comment-alt":62074,"comment-check":62636,"comment-dollar":63057,"comment-dots":62637,"comment-edit":62638,"comment-exclamation":62639,"comment-lines":62640,"comment-medical":63477,"comment-minus":62641,"comment-music":63664,"comment-plus":62642,"comment-slash":62643,"comment-smile":62644,"comment-times":62645,"comment":61557,"comments-alt-dollar":63058,"comments-alt":62646,"comments-dollar":63059,"comments":61574,"compact-disc":62751,"compass-slash":62953,"compass":61774,"compress-alt":62498,"compress-arrows-alt":63372,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-speaker":63666,"concierge-bell":62818,"construction":63581,"container-storage":62647,"conveyor-belt-alt":62575,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"couch":62648,"cow":63176,"cowbell-more":63668,"cowbell":63667,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket":62537,"croissant":63478,"crop-alt":62821,"crop":61733,"cross":63060,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cube":61874,"cubes":61875,"curling":62538,"cut":61636,"dagger":63179,"database":61888,"deaf":62116,"debug":63481,"deer-rudolph":63375,"deer":63374,"democrat":63303,"desktop-alt":62352,"desktop":61704,"dewpoint":63304,"dharmachakra":63061,"diagnoses":62576,"diamond":61977,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"digging":63582,"digital-tachograph":62822,"diploma":62954,"directions":62955,"disc-drive":63669,"disease":63482,"divide":62761,"dizzy":62823,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":61781,"dolly-empty":62579,"dolly-flatbed-alt":62581,"dolly-flatbed-empty":62582,"dolly-flatbed":62580,"dolly":62578,"donate":62649,"door-closed":62762,"door-open":62763,"dot-circle":61842,"dove":62650,"download":61465,"drafting-compass":62824,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-alt":63584,"drone":63583,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-alt":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"ear-muffs":63381,"ear":62960,"eclipse-alt":63306,"eclipse":63305,"edit":61508,"egg-fried":63484,"egg":63483,"eject":61522,"elephant":63194,"ellipsis-h-alt":62363,"ellipsis-h":61761,"ellipsis-v-alt":62364,"ellipsis-v":61762,"empty-set":63062,"engine-warning":62962,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope-square":61849,"envelope":61664,"equals":62764,"eraser":61741,"ethernet":63382,"euro-sign":61779,"exchange-alt":62306,"exchange":61676,"exclamation-circle":61546,"exclamation-square":62241,"exclamation-triangle":61553,"exclamation":61738,"expand-alt":62500,"expand-arrows-alt":62238,"expand-arrows":62237,"expand-wide":62240,"expand":61541,"external-link-alt":62301,"external-link-square-alt":62304,"external-link-square":61772,"external-link":61582,"eye-dropper":61947,"eye-evil":63195,"eye-slash":61552,"eye":61550,"fan-table":57348,"fan":63587,"farm":63588,"fast-backward":61513,"fast-forward":61520,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-alt":62827,"feather":62765,"female":61826,"field-hockey":62540,"fighter-jet":61691,"file-alt":61788,"file-archive":61894,"file-audio":61895,"file-certificate":62963,"file-chart-line":63065,"file-chart-pie":63066,"file-check":62230,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-download":62829,"file-edit":62236,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-medical-alt":62584,"file-medical":62583,"file-minus":62232,"file-music":63670,"file-pdf":61889,"file-plus":62233,"file-powerpoint":61892,"file-prescription":62834,"file-search":63589,"file-signature":62835,"file-spreadsheet":63067,"file-times":62231,"file-upload":62836,"file-user":63068,"file-video":61896,"file-word":61890,"file":61787,"files-medical":63485,"fill-drip":62838,"fill":62837,"film-alt":62368,"film-canister":63671,"film":61448,"filter":61616,"fingerprint":62839,"fire-alt":63460,"fire-extinguisher":61748,"fire-smoke":63307,"fire":61549,"fireplace":63386,"first-aid":62585,"fish-cooked":63486,"fish":62840,"fist-raised":63198,"flag-alt":63308,"flag-checkered":61726,"flag-usa":63309,"flag":61476,"flame":63199,"flashlight":63672,"flask-poison":63200,"flask-potion":63201,"flask":61635,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flushed":62841,"flute":63673,"flux-capacitor":63674,"fog":63310,"folder-download":57427,"folder-minus":63069,"folder-open":61564,"folder-plus":63070,"folder-times":63071,"folder-tree":63490,"folder-upload":57428,"folder":61563,"folders":63072,"font-awesome-logo-full":62694,"font-case":63590,"font":61489,"football-ball":62542,"football-helmet":62543,"forklift":62586,"forward":61518,"fragile":62651,"french-fries":63491,"frog":62766,"frosty-head":63387,"frown-open":62842,"frown":61721,"function":63073,"funnel-dollar":63074,"futbol":61923,"galaxy":57352,"game-board-alt":63592,"game-board":63591,"game-console-handheld":63675,"gamepad-alt":63676,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"gas-pump-slash":62964,"gas-pump":62767,"gavel":61667,"gem":62373,"genderless":61997,"ghost":63202,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-champagne":63390,"glass-cheers":63391,"glass-citrus":63593,"glass-martini-alt":62843,"glass-martini":61440,"glass-whiskey-rocks":63393,"glass-whiskey":63392,"glass":63492,"glasses-alt":62965,"glasses":62768,"globe-africa":62844,"globe-americas":62845,"globe-asia":62846,"globe-europe":63394,"globe-snow":63395,"globe-stand":62966,"globe":61612,"golf-ball":62544,"golf-club":62545,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"greater-than-equal":62770,"greater-than":62769,"grimace":62847,"grin-alt":62849,"grin-beam-sweat":62851,"grin-beam":62850,"grin-hearts":62852,"grin-squint-tears":62854,"grin-squint":62853,"grin-stars":62855,"grin-tears":62856,"grin-tongue-squint":62858,"grin-tongue-wink":62859,"grin-tongue":62857,"grin-wink":62860,"grin":62848,"grip-horizontal":62861,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"guitar-electric":63678,"guitar":63398,"guitars":63679,"h-square":61693,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"hamburger":63493,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-usd":62656,"hand-holding-water":62657,"hand-holding":62653,"hand-lizard":62040,"hand-middle-finger":63494,"hand-paper":62038,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-receiving":62588,"hand-rock":62037,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hands-heart":62659,"hands-helping":62660,"hands-usd":62661,"hands-wash":57438,"hands":62658,"handshake-alt-slash":57439,"handshake-alt":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-hat":63495,"hashtag":62098,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"hdd":61600,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-headphones":63682,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"head-vr":63210,"heading":61916,"headphones-alt":62863,"headphones":61477,"headset":62864,"heart-broken":63401,"heart-circle":62663,"heart-rate":62968,"heart-square":62664,"heart":61444,"heartbeat":61982,"heat":57356,"helicopter":62771,"helmet-battle":63211,"hexagon":62226,"highlighter":62865,"hiking":63212,"hippo":63213,"history":61914,"hockey-mask":63214,"hockey-puck":62547,"hockey-sticks":62548,"holly-berry":63402,"home-alt":63498,"home-heart":62665,"home-lg-alt":63500,"home-lg":63499,"home":61461,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hospital-alt":62589,"hospital-symbol":62590,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub":62867,"hotdog":63503,"hotel":62868,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-damage":63217,"house-day":57358,"house-flood":63311,"house-leave":57359,"house-night":57360,"house-return":57361,"house-signal":57362,"house-user":57445,"house":57357,"hryvnia":63218,"humidity":63312,"hurricane":63313,"i-cursor":62022,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons-alt":63598,"icons":63597,"id-badge":62145,"id-card-alt":62591,"id-card":62146,"igloo":63406,"image-polaroid":63684,"image":61502,"images":62210,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"indent":61500,"industry-alt":62387,"industry":62069,"infinity":62772,"info-circle":61530,"info-square":62223,"info":61737,"inhaler":62969,"integral":63079,"intersection":63080,"inventory":62592,"island-tropical":63505,"italic":61491,"jack-o-lantern":62222,"jedi":63081,"joint":62869,"journal-whills":63082,"joystick":63685,"jug":63686,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton":63219,"key":61572,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kiss-beam":62871,"kiss-wink-heart":62872,"kiss":62870,"kite":63220,"kiwi-bird":62773,"knife-kitchen":63221,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp":62666,"landmark-alt":63314,"landmark":63087,"language":61867,"laptop-code":62972,"laptop-house":57446,"laptop-medical":63506,"laptop":61705,"lasso":63688,"laugh-beam":62874,"laugh-squint":62875,"laugh-wink":62876,"laugh":62873,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"lemon":61588,"less-than-equal":62775,"less-than":62774,"level-down-alt":62398,"level-down":61769,"level-up-alt":62399,"level-up":61768,"life-ring":61901,"light-ceiling":57366,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-dollar":63088,"lightbulb-exclamation":63089,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"link":61633,"lips":62976,"lira-sign":61845,"list-alt":61474,"list-music":63689,"list-ol":61643,"list-ul":61642,"list":61498,"location-arrow":61732,"location-circle":62978,"location-slash":62979,"location":62977,"lock-alt":62221,"lock-open-alt":62402,"lock-open":62401,"lock":61475,"long-arrow-alt-down":62217,"long-arrow-alt-left":62218,"long-arrow-alt-right":62219,"long-arrow-alt-up":62220,"long-arrow-down":61813,"long-arrow-left":61815,"long-arrow-right":61816,"long-arrow-up":61814,"loveseat":62668,"low-vision":62120,"luchador":62549,"luggage-cart":62877,"lungs-virus":57447,"lungs":62980,"mace":63224,"magic":61648,"magnet":61558,"mail-bulk":63092,"mailbox":63507,"male":61827,"mandolin":63225,"map-marked-alt":62880,"map-marked":62879,"map-marker-alt-slash":62981,"map-marker-alt":62405,"map-marker-check":62982,"map-marker-edit":62983,"map-marker-exclamation":62984,"map-marker-minus":62985,"map-marker-plus":62986,"map-marker-question":62987,"map-marker-slash":62988,"map-marker-smile":62989,"map-marker-times":62990,"map-marker":61505,"map-pin":62070,"map-signs":62071,"map":62073,"marker":62881,"mars-double":61991,"mars-stroke-h":61995,"mars-stroke-v":61994,"mars-stroke":61993,"mars":61986,"mask":63226,"meat":63508,"medal":62882,"medkit":61690,"megaphone":63093,"meh-blank":62884,"meh-rolling-eyes":62885,"meh":61722,"memory":62776,"menorah":63094,"mercury":61987,"meteor":63315,"microchip":62171,"microphone-alt-slash":62777,"microphone-alt":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mind-share":63095,"minus-circle":61526,"minus-hexagon":62215,"minus-octagon":62216,"minus-square":61766,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-alt":62413,"mobile-android-alt":62415,"mobile-android":62414,"mobile":61707,"money-bill-alt":62417,"money-bill-wave-alt":62779,"money-bill-wave":62778,"money-bill":61654,"money-check-alt":62781,"money-check-edit-alt":63603,"money-check-edit":63602,"money-check":62780,"monitor-heart-rate":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-stars":63317,"moon":61830,"mortar-pestle":62887,"mosque":63096,"motorcycle":61980,"mountain":63228,"mountains":63229,"mouse-alt":63693,"mouse-pointer":62021,"mouse":63692,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-tea":63605,"mug":63604,"music-alt-slash":63696,"music-alt":63695,"music-slash":63697,"music":61441,"narwhal":63230,"network-wired":63231,"neuter":61996,"newspaper":61930,"not-equal":62782,"notes-medical":62593,"object-group":62023,"object-ungroup":62024,"octagon":62214,"oil-can":62995,"oil-temp":62996,"om":63097,"omega":63098,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"page-break":63607,"pager":63509,"paint-brush-alt":62889,"paint-brush":61948,"paint-roller":62890,"palette":62783,"pallet-alt":62595,"pallet":62594,"paper-plane":61912,"paperclip":61638,"parachute-box":62669,"paragraph-rtl":63608,"paragraph":61917,"parking-circle-slash":62998,"parking-circle":62997,"parking-slash":62999,"parking":62784,"passport":62891,"pastafarianism":63099,"paste":61674,"pause-circle":62091,"pause":61516,"paw-alt":63233,"paw-claws":63234,"paw":61872,"peace":63100,"pegasus":63235,"pen-alt":62213,"pen-fancy":62892,"pen-nib":62893,"pen-square":61771,"pen":62212,"pencil-alt":62211,"pencil-paintbrush":63000,"pencil-ruler":62894,"pencil":61504,"pennant":62550,"people-arrows":57448,"people-carry":62670,"pepper-hot":63510,"percent":62101,"percentage":62785,"person-booth":63318,"person-carry":62671,"person-dolly-empty":62673,"person-dolly":62672,"person-sign":63319,"phone-alt":63609,"phone-laptop":63610,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-square-alt":63611,"phone-square":61592,"phone-volume":62112,"phone":61589,"photo-video":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-alt":62430,"plane-arrival":62895,"plane-departure":62896,"plane-slash":57449,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"play-circle":61764,"play":61515,"plug":61926,"plus-circle":61525,"plus-hexagon":62208,"plus-octagon":62209,"plus-square":61694,"plus":61543,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-h":63106,"poll-people":63321,"poll":63105,"poo-storm":63322,"poo":62206,"poop":63001,"popcorn":63513,"portal-enter":57378,"portal-exit":57379,"portrait":62432,"pound-sign":61780,"power-off":61457,"pray":63107,"praying-hands":63108,"prescription-bottle-alt":62598,"prescription-bottle":62597,"prescription":62897,"presentation":63109,"print-search":63514,"print-slash":63110,"print":61487,"procedures":62599,"project-diagram":62786,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pumpkin":63239,"puzzle-piece":61742,"qrcode":61481,"question-circle":61529,"question-square":62205,"question":61736,"quidditch":62552,"quote-left":61709,"quote-right":61710,"quran":63111,"rabbit-fast":63241,"rabbit":63240,"racquet":62554,"radar":57380,"radiation-alt":63418,"radiation":63417,"radio-alt":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"random":61556,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-landscape":62202,"rectangle-portrait":62203,"rectangle-wide":62204,"recycle":61880,"redo-alt":62201,"redo":61470,"refrigerator":57382,"registered":62045,"remove-format":63613,"repeat-1-alt":62310,"repeat-1":62309,"repeat-alt":62308,"repeat":62307,"reply-all":61730,"reply":62437,"republican":63326,"restroom":63421,"retweet-alt":62305,"retweet":61561,"ribbon":62678,"ring":63243,"rings-wedding":63515,"road":61464,"robot":62788,"rocket-launch":57383,"rocket":61749,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss-square":61763,"rss":61598,"ruble-sign":61784,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"running":63244,"rupee-sign":61782,"rv":63422,"sack-dollar":63517,"sack":63516,"sad-cry":62899,"sad-tear":62900,"salad":63518,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"save":61639,"sax-hot":63707,"saxophone":63708,"scalpel-path":63006,"scalpel":63005,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scanner":62600,"scarecrow":63245,"scarf":63425,"school":62793,"screwdriver":62794,"scroll-old":63247,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"search-dollar":63112,"search-location":63113,"search-minus":61456,"search-plus":61454,"search":61442,"seedling":62680,"send-back":63614,"send-backward":63615,"sensor-alert":57385,"sensor-fire":57386,"sensor-on":57387,"sensor-smoke":57388,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-alt-square":61921,"share-alt":61920,"share-square":61773,"share":61540,"sheep":63249,"shekel-sign":61963,"shield-alt":62445,"shield-check":62199,"shield-cross":63250,"shield-virus":57452,"shield":61746,"ship":61978,"shipping-fast":62603,"shipping-timed":62604,"shish-kebab":63521,"shoe-prints":62795,"shopping-bag":62096,"shopping-basket":62097,"shopping-cart":61562,"shovel-snow":63427,"shovel":63251,"shower":62156,"shredder":63114,"shuttle-van":62902,"shuttlecock":62555,"sickle":63522,"sigma":63115,"sign-in-alt":62198,"sign-in":61584,"sign-language":62119,"sign-out-alt":62197,"sign-out":61579,"sign":62681,"signal-1":63116,"signal-2":63117,"signal-3":63118,"signal-4":63119,"signal-alt-1":63121,"signal-alt-2":63122,"signal-alt-3":63123,"signal-alt-slash":63124,"signal-alt":63120,"signal-slash":63125,"signal-stream":63709,"signal":61458,"signature":62903,"sim-card":63428,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skating":63429,"skeleton":63008,"ski-jump":63431,"ski-lift":63432,"skiing-nordic":63434,"skiing":63433,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash":63253,"sledding":63435,"sleigh":63436,"sliders-h-square":62448,"sliders-h":61918,"sliders-v-square":62450,"sliders-v":62449,"smile-beam":62904,"smile-plus":62905,"smile-wink":62682,"smile":61720,"smog":63327,"smoke":63328,"smoking-ban":62797,"smoking":62605,"sms":63437,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowboarding":63438,"snowflake":62172,"snowflakes":63439,"snowman":63440,"snowmobile":63441,"snowplow":63442,"soap":57454,"socks":63126,"solar-panel":62906,"solar-system":57391,"sort-alpha-down-alt":63617,"sort-alpha-down":61789,"sort-alpha-up-alt":63618,"sort-alpha-up":61790,"sort-alt":63619,"sort-amount-down-alt":63620,"sort-amount-down":61792,"sort-amount-up-alt":63621,"sort-amount-up":61793,"sort-circle-down":57393,"sort-circle-up":57394,"sort-circle":57392,"sort-down":61661,"sort-numeric-down-alt":63622,"sort-numeric-down":61794,"sort-numeric-up-alt":63623,"sort-numeric-up":61795,"sort-shapes-down-alt":63625,"sort-shapes-down":63624,"sort-shapes-up-alt":63627,"sort-shapes-up":63626,"sort-size-down-alt":63629,"sort-size-down":63628,"sort-size-up-alt":63631,"sort-size-up":63630,"sort-up":61662,"sort":61660,"soup":63523,"spa":62907,"space-shuttle":61847,"space-station-moon-alt":57396,"space-station-moon":57395,"spade":62196,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-third":62452,"spinner":61712,"splotch":62908,"spray-can":62909,"sprinkler":57397,"square-full":62556,"square-root-alt":63128,"square-root":63127,"square":61640,"squirrel":63258,"staff":63259,"stamp":62911,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-alt":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-shooting":57398,"star":61445,"starfighter-alt":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"step-backward":61512,"step-forward":61521,"stethoscope":61681,"sticky-note":62025,"stocking":63445,"stomach":63011,"stop-circle":62093,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-alt-slash":57456,"store-alt":62799,"store-slash":57457,"store":62798,"stream":62800,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subway":62009,"suitcase-rolling":62913,"suitcase":61682,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"surprise":62914,"swatchbook":62915,"swimmer":62916,"swimming-pool":62917,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"synagogue":63131,"sync-alt":62193,"sync":61473,"syringe":62606,"table-tennis":62557,"table":61646,"tablet-alt":62458,"tablet-android-alt":62460,"tablet-android":62459,"tablet-rugged":62607,"tablet":61706,"tablets":62608,"tachometer-alt-average":63012,"tachometer-alt-fast":63013,"tachometer-alt-fastest":63014,"tachometer-alt-slow":63015,"tachometer-alt-slowest":63016,"tachometer-alt":62461,"tachometer-average":63017,"tachometer-fast":63018,"tachometer-fastest":63019,"tachometer-slow":63020,"tachometer-slowest":63021,"tachometer":61668,"taco":63526,"tag":61483,"tags":61484,"tally":63132,"tanakh":63527,"tape":62683,"tasks-alt":63528,"tasks":61614,"taxi":61882,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-down":57407,"temperature-frigid":63336,"temperature-high":63337,"temperature-hot":63338,"temperature-low":63339,"temperature-up":57408,"tenge":63447,"tennis-ball":62558,"terminal":61728,"text-height":61492,"text-size":63636,"text-width":61493,"text":63635,"th-large":61449,"th-list":61451,"th":61450,"theater-masks":63024,"thermometer-empty":62155,"thermometer-full":62151,"thermometer-half":62153,"thermometer-quarter":62154,"thermometer-three-quarters":62152,"thermometer":62609,"theta":63134,"thumbs-down":61797,"thumbs-up":61796,"thumbtack":61581,"thunderstorm-moon":63341,"thunderstorm-sun":63342,"thunderstorm":63340,"ticket-alt":62463,"ticket":61765,"tilde":63135,"times-circle":61527,"times-hexagon":62190,"times-octagon":62192,"times-square":62163,"times":61453,"tint-slash":62919,"tint":61507,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"tired":62920,"toggle-off":61956,"toggle-on":61957,"toilet-paper-alt":63263,"toilet-paper-slash":57458,"toilet-paper":63262,"toilet":63448,"tombstone-alt":63265,"tombstone":63264,"toolbox":62802,"tools":63449,"tooth":62921,"toothbrush":63029,"torah":63136,"torii-gate":63137,"tornado":63343,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train":62008,"tram":63450,"transgender-alt":61989,"transgender":61988,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-empty":57414,"transporter":57410,"trash-alt":62189,"trash-restore-alt":63530,"trash-restore":63529,"trash-undo-alt":63638,"trash-undo":63637,"trash":61944,"treasure-chest":63267,"tree-alt":62464,"tree-christmas":63451,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-music":63714,"triangle":62188,"trophy-alt":62187,"trophy":61585,"truck-container":62684,"truck-couch":62685,"truck-loading":62686,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plow":63454,"truck-ramp":62688,"truck":61649,"trumpet":63715,"tshirt":62803,"tty":61924,"turkey":63269,"turntable":63716,"turtle":63270,"tv-alt":63717,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella":61673,"underline":61645,"undo-alt":62186,"undo":61666,"unicorn":63271,"union":63138,"universal-access":62106,"university":61852,"unlink":61735,"unlock-alt":61758,"unlock":61596,"upload":61587,"usb-drive":63721,"usd-circle":62184,"usd-square":62185,"user-alien":57418,"user-alt-slash":62714,"user-alt":62470,"user-astronaut":62715,"user-chart":63139,"user-check":62716,"user-circle":62141,"user-clock":62717,"user-cog":62718,"user-cowboy":63722,"user-crown":63140,"user-edit":62719,"user-friends":62720,"user-graduate":62721,"user-hard-hat":63532,"user-headset":63533,"user-injured":63272,"user-lock":62722,"user-md-chat":63534,"user-md":61680,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse":63535,"user-plus":62004,"user-robot":57419,"user-secret":61979,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie":62728,"user-times":62005,"user-unlock":57432,"user-visor":57420,"user":61447,"users-class":63037,"users-cog":62729,"users-crown":63141,"users-medical":63536,"users-slash":57459,"users":61632,"utensil-fork":62179,"utensil-knife":62180,"utensil-spoon":62181,"utensils-alt":62182,"utensils":62183,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"vector-square":62923,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vhs":63724,"vial":62610,"vials":62611,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball-ball":62559,"volume-down":61479,"volume-mute":63145,"volume-off":61478,"volume-slash":62178,"volume-up":61480,"volume":63144,"vote-nay":63345,"vote-yea":63346,"vr-cardboard":63273,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"walking":62804,"wallet":62805,"wand-magic":63275,"wand":63274,"warehouse-alt":62613,"warehouse":62612,"washer":63640,"watch-calculator":63728,"watch-fitness":63038,"watch":62177,"water-lower":63348,"water-rise":63349,"water":63347,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"waveform-path":63730,"waveform":63729,"webcam-slash":63539,"webcam":63538,"weight-hanging":62925,"weight":62614,"whale":63276,"wheat":63277,"wheelchair":61843,"whistle":62560,"wifi-1":63146,"wifi-2":63147,"wifi-slash":63148,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-alt":62479,"window-close":62480,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-alt":62926,"wine-glass":62691,"won-sign":61785,"wreath":63458,"wrench":61613,"x-ray":62615,"yen-sign":61783,"yin-yang":63149} ================================================ FILE: packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_solid.json ================================================ {"abacus":63040,"acorn":63150,"ad":63041,"address-book":62137,"address-card":62139,"adjust":61506,"air-conditioner":63732,"air-freshener":62928,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-collection":63648,"album":63647,"alicorn":63152,"alien-monster":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"allergies":62561,"ambulance":61689,"american-sign-language-interpreting":62115,"amp-guitar":63649,"analytics":63043,"anchor":61757,"angel":63353,"angle-double-down":61699,"angle-double-left":61696,"angle-double-right":61697,"angle-double-up":61698,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angry":62806,"ankh":63044,"apple-alt":62929,"apple-crate":63153,"archive":61831,"archway":62807,"arrow-alt-circle-down":62296,"arrow-alt-circle-left":62297,"arrow-alt-circle-right":62298,"arrow-alt-circle-up":62299,"arrow-alt-down":62292,"arrow-alt-from-bottom":62278,"arrow-alt-from-left":62279,"arrow-alt-from-right":62280,"arrow-alt-from-top":62281,"arrow-alt-left":62293,"arrow-alt-right":62294,"arrow-alt-square-down":62288,"arrow-alt-square-left":62289,"arrow-alt-square-right":62290,"arrow-alt-square-up":62291,"arrow-alt-to-bottom":62282,"arrow-alt-to-left":62283,"arrow-alt-to-right":62284,"arrow-alt-to-top":62285,"arrow-alt-up":62295,"arrow-circle-down":61611,"arrow-circle-left":61608,"arrow-circle-right":61609,"arrow-circle-up":61610,"arrow-down":61539,"arrow-from-bottom":62274,"arrow-from-left":62275,"arrow-from-right":62276,"arrow-from-top":62277,"arrow-left":61536,"arrow-right":61537,"arrow-square-down":62265,"arrow-square-left":62266,"arrow-square-right":62267,"arrow-square-up":62268,"arrow-to-bottom":62269,"arrow-to-left":62270,"arrow-to-right":62272,"arrow-to-top":62273,"arrow-up":61538,"arrows-alt-h":62263,"arrows-alt-v":62264,"arrows-alt":61618,"arrows-h":61566,"arrows-v":61565,"arrows":61511,"assistive-listening-systems":62114,"asterisk":61545,"at":61946,"atlas":62808,"atom-alt":62931,"atom":62930,"audio-description":62110,"award":62809,"axe-battle":63155,"axe":63154,"baby-carriage":63357,"baby":63356,"backpack":62932,"backspace":62810,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"bags-shopping":63559,"bahai":63078,"balance-scale-left":62741,"balance-scale-right":62742,"balance-scale":62030,"ball-pile":63358,"ballot-check":63283,"ballot":63282,"ban":61534,"band-aid":62562,"banjo":63651,"barcode-alt":62563,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars":61641,"baseball-ball":62515,"baseball":62514,"basketball-ball":62516,"basketball-hoop":62517,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-full":62016,"battery-half":62018,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-alt":63735,"bed-bunk":63736,"bed-empty":63737,"bed":62006,"beer":61692,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"betamax":63652,"bezier-curve":62811,"bible":63047,"bicycle":61958,"biking-mountain":63563,"biking":63562,"binoculars":61925,"biohazard":63360,"birthday-cake":61949,"blanket":62616,"blender-phone":63158,"blender":62743,"blind":62109,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"blog":63361,"bold":61490,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-alt":62937,"book-dead":63159,"book-heart":62617,"book-medical":63462,"book-open":62744,"book-reader":62938,"book-spells":63160,"book-user":63463,"book":61485,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-style-alt":63572,"border-style":63571,"border-top":63573,"bow-arrow":63161,"bowling-ball":62518,"bowling-pins":62519,"box-alt":62618,"box-ballot":63285,"box-check":62567,"box-fragile":62619,"box-full":62620,"box-heart":62621,"box-open":62622,"box-tissue":57435,"box-up":62623,"box-usd":62624,"box":62566,"boxes-alt":62625,"boxes":62568,"boxing-glove":62520,"brackets-curly":63466,"brackets":63465,"braille":62113,"brain":62940,"bread-loaf":63467,"bread-slice":63468,"briefcase-medical":62569,"briefcase":61617,"bring-forward":63574,"bring-front":63575,"broadcast-tower":62745,"broom":62746,"browser":62334,"brush":62813,"bug":61832,"building":61869,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"burger-soda":63576,"burn":62570,"burrito":63469,"bus-alt":62814,"bus-school":62941,"bus":61959,"business-time":63050,"cabinet-filing":63051,"cactus":63655,"calculator-alt":63052,"calculator":61932,"calendar-alt":61555,"calendar-check":62068,"calendar-day":63363,"calendar-edit":62259,"calendar-exclamation":62260,"calendar-minus":62066,"calendar-plus":62065,"calendar-star":63286,"calendar-times":62067,"calendar-week":63364,"calendar":61747,"camcorder":63656,"camera-alt":62258,"camera-home":63742,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera":61488,"campfire":63162,"campground":63163,"candle-holder":63164,"candy-cane":63366,"candy-corn":63165,"cannabis":62815,"capsules":62571,"car-alt":62942,"car-battery":62943,"car-building":63577,"car-bump":62944,"car-bus":63578,"car-crash":62945,"car-garage":62946,"car-mechanic":62947,"car-side":62948,"car-tilt":62949,"car-wash":62950,"car":61881,"caravan-alt":57344,"caravan":63743,"caret-circle-down":62253,"caret-circle-left":62254,"caret-circle-right":62256,"caret-circle-up":62257,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-square-down":61776,"caret-square-left":61841,"caret-square-right":61778,"caret-square-up":61777,"caret-up":61656,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-plus":61975,"cash-register":63368,"cassette-tape":63659,"cat-space":57345,"cat":63166,"cauldron":63167,"cctv":63660,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-teacher":62748,"chalkboard":62747,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-line-down":63053,"chart-line":61953,"chart-network":63370,"chart-pie-alt":63054,"chart-pie":61952,"chart-scatter":63470,"check-circle":61528,"check-double":62816,"check-square":61770,"check":61452,"cheese-swiss":63472,"cheese":63471,"cheeseburger":63473,"chess-bishop-alt":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-alt":62526,"chess-clock":62525,"chess-king-alt":62528,"chess-king":62527,"chess-knight-alt":62530,"chess-knight":62529,"chess-pawn-alt":62532,"chess-pawn":62531,"chess-queen-alt":62534,"chess-queen":62533,"chess-rook-alt":62536,"chess-rook":62535,"chess":62521,"chevron-circle-down":61754,"chevron-circle-left":61751,"chevron-circle-right":61752,"chevron-circle-up":61753,"chevron-double-down":62242,"chevron-double-left":62243,"chevron-double-right":62244,"chevron-double-up":62245,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-square-down":62249,"chevron-square-left":62250,"chevron-square-right":62251,"chevron-square-up":62252,"chevron-up":61559,"child":61870,"chimney":63371,"church":62749,"circle-notch":61902,"circle":61713,"city":63055,"clarinet":63661,"claw-marks":63170,"clinic-medical":63474,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-prescription":62952,"clipboard-user":63475,"clipboard":62248,"clock":61463,"clone":62029,"closed-captioning":61962,"cloud-download-alt":62337,"cloud-download":61677,"cloud-drizzle":63288,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers":63295,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-upload-alt":62338,"cloud-upload":61678,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"club":62247,"cocktail":62817,"code-branch":61734,"code-commit":62342,"code-merge":62343,"code":61729,"coffee-pot":57346,"coffee-togo":63173,"coffee":61684,"coffin-cross":57425,"coffin":63174,"cog":61459,"cogs":61573,"coin":63580,"coins":62750,"columns":61659,"comet":57347,"comment-alt-check":62626,"comment-alt-dollar":63056,"comment-alt-dots":62627,"comment-alt-edit":62628,"comment-alt-exclamation":62629,"comment-alt-lines":62630,"comment-alt-medical":63476,"comment-alt-minus":62631,"comment-alt-music":63663,"comment-alt-plus":62632,"comment-alt-slash":62633,"comment-alt-smile":62634,"comment-alt-times":62635,"comment-alt":62074,"comment-check":62636,"comment-dollar":63057,"comment-dots":62637,"comment-edit":62638,"comment-exclamation":62639,"comment-lines":62640,"comment-medical":63477,"comment-minus":62641,"comment-music":63664,"comment-plus":62642,"comment-slash":62643,"comment-smile":62644,"comment-times":62645,"comment":61557,"comments-alt-dollar":63058,"comments-alt":62646,"comments-dollar":63059,"comments":61574,"compact-disc":62751,"compass-slash":62953,"compass":61774,"compress-alt":62498,"compress-arrows-alt":63372,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-speaker":63666,"concierge-bell":62818,"construction":63581,"container-storage":62647,"conveyor-belt-alt":62575,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"couch":62648,"cow":63176,"cowbell-more":63668,"cowbell":63667,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket":62537,"croissant":63478,"crop-alt":62821,"crop":61733,"cross":63060,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cube":61874,"cubes":61875,"curling":62538,"cut":61636,"dagger":63179,"database":61888,"deaf":62116,"debug":63481,"deer-rudolph":63375,"deer":63374,"democrat":63303,"desktop-alt":62352,"desktop":61704,"dewpoint":63304,"dharmachakra":63061,"diagnoses":62576,"diamond":61977,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"digging":63582,"digital-tachograph":62822,"diploma":62954,"directions":62955,"disc-drive":63669,"disease":63482,"divide":62761,"dizzy":62823,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":61781,"dolly-empty":62579,"dolly-flatbed-alt":62581,"dolly-flatbed-empty":62582,"dolly-flatbed":62580,"dolly":62578,"donate":62649,"door-closed":62762,"door-open":62763,"dot-circle":61842,"dove":62650,"download":61465,"drafting-compass":62824,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-alt":63584,"drone":63583,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-alt":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"ear-muffs":63381,"ear":62960,"eclipse-alt":63306,"eclipse":63305,"edit":61508,"egg-fried":63484,"egg":63483,"eject":61522,"elephant":63194,"ellipsis-h-alt":62363,"ellipsis-h":61761,"ellipsis-v-alt":62364,"ellipsis-v":61762,"empty-set":63062,"engine-warning":62962,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope-square":61849,"envelope":61664,"equals":62764,"eraser":61741,"ethernet":63382,"euro-sign":61779,"exchange-alt":62306,"exchange":61676,"exclamation-circle":61546,"exclamation-square":62241,"exclamation-triangle":61553,"exclamation":61738,"expand-alt":62500,"expand-arrows-alt":62238,"expand-arrows":62237,"expand-wide":62240,"expand":61541,"external-link-alt":62301,"external-link-square-alt":62304,"external-link-square":61772,"external-link":61582,"eye-dropper":61947,"eye-evil":63195,"eye-slash":61552,"eye":61550,"fan-table":57348,"fan":63587,"farm":63588,"fast-backward":61513,"fast-forward":61520,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-alt":62827,"feather":62765,"female":61826,"field-hockey":62540,"fighter-jet":61691,"file-alt":61788,"file-archive":61894,"file-audio":61895,"file-certificate":62963,"file-chart-line":63065,"file-chart-pie":63066,"file-check":62230,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-download":62829,"file-edit":62236,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-medical-alt":62584,"file-medical":62583,"file-minus":62232,"file-music":63670,"file-pdf":61889,"file-plus":62233,"file-powerpoint":61892,"file-prescription":62834,"file-search":63589,"file-signature":62835,"file-spreadsheet":63067,"file-times":62231,"file-upload":62836,"file-user":63068,"file-video":61896,"file-word":61890,"file":61787,"files-medical":63485,"fill-drip":62838,"fill":62837,"film-alt":62368,"film-canister":63671,"film":61448,"filter":61616,"fingerprint":62839,"fire-alt":63460,"fire-extinguisher":61748,"fire-smoke":63307,"fire":61549,"fireplace":63386,"first-aid":62585,"fish-cooked":63486,"fish":62840,"fist-raised":63198,"flag-alt":63308,"flag-checkered":61726,"flag-usa":63309,"flag":61476,"flame":63199,"flashlight":63672,"flask-poison":63200,"flask-potion":63201,"flask":61635,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flushed":62841,"flute":63673,"flux-capacitor":63674,"fog":63310,"folder-download":57427,"folder-minus":63069,"folder-open":61564,"folder-plus":63070,"folder-times":63071,"folder-tree":63490,"folder-upload":57428,"folder":61563,"folders":63072,"font-awesome-logo-full":62694,"font-case":63590,"font":61489,"football-ball":62542,"football-helmet":62543,"forklift":62586,"forward":61518,"fragile":62651,"french-fries":63491,"frog":62766,"frosty-head":63387,"frown-open":62842,"frown":61721,"function":63073,"funnel-dollar":63074,"futbol":61923,"galaxy":57352,"game-board-alt":63592,"game-board":63591,"game-console-handheld":63675,"gamepad-alt":63676,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"gas-pump-slash":62964,"gas-pump":62767,"gavel":61667,"gem":62373,"genderless":61997,"ghost":63202,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-champagne":63390,"glass-cheers":63391,"glass-citrus":63593,"glass-martini-alt":62843,"glass-martini":61440,"glass-whiskey-rocks":63393,"glass-whiskey":63392,"glass":63492,"glasses-alt":62965,"glasses":62768,"globe-africa":62844,"globe-americas":62845,"globe-asia":62846,"globe-europe":63394,"globe-snow":63395,"globe-stand":62966,"globe":61612,"golf-ball":62544,"golf-club":62545,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"greater-than-equal":62770,"greater-than":62769,"grimace":62847,"grin-alt":62849,"grin-beam-sweat":62851,"grin-beam":62850,"grin-hearts":62852,"grin-squint-tears":62854,"grin-squint":62853,"grin-stars":62855,"grin-tears":62856,"grin-tongue-squint":62858,"grin-tongue-wink":62859,"grin-tongue":62857,"grin-wink":62860,"grin":62848,"grip-horizontal":62861,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"guitar-electric":63678,"guitar":63398,"guitars":63679,"h-square":61693,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"hamburger":63493,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-usd":62656,"hand-holding-water":62657,"hand-holding":62653,"hand-lizard":62040,"hand-middle-finger":63494,"hand-paper":62038,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-receiving":62588,"hand-rock":62037,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hands-heart":62659,"hands-helping":62660,"hands-usd":62661,"hands-wash":57438,"hands":62658,"handshake-alt-slash":57439,"handshake-alt":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-hat":63495,"hashtag":62098,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"hdd":61600,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-headphones":63682,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"head-vr":63210,"heading":61916,"headphones-alt":62863,"headphones":61477,"headset":62864,"heart-broken":63401,"heart-circle":62663,"heart-rate":62968,"heart-square":62664,"heart":61444,"heartbeat":61982,"heat":57356,"helicopter":62771,"helmet-battle":63211,"hexagon":62226,"highlighter":62865,"hiking":63212,"hippo":63213,"history":61914,"hockey-mask":63214,"hockey-puck":62547,"hockey-sticks":62548,"holly-berry":63402,"home-alt":63498,"home-heart":62665,"home-lg-alt":63500,"home-lg":63499,"home":61461,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hospital-alt":62589,"hospital-symbol":62590,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub":62867,"hotdog":63503,"hotel":62868,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-damage":63217,"house-day":57358,"house-flood":63311,"house-leave":57359,"house-night":57360,"house-return":57361,"house-signal":57362,"house-user":57445,"house":57357,"hryvnia":63218,"humidity":63312,"hurricane":63313,"i-cursor":62022,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons-alt":63598,"icons":63597,"id-badge":62145,"id-card-alt":62591,"id-card":62146,"igloo":63406,"image-polaroid":63684,"image":61502,"images":62210,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"indent":61500,"industry-alt":62387,"industry":62069,"infinity":62772,"info-circle":61530,"info-square":62223,"info":61737,"inhaler":62969,"integral":63079,"intersection":63080,"inventory":62592,"island-tropical":63505,"italic":61491,"jack-o-lantern":62222,"jedi":63081,"joint":62869,"journal-whills":63082,"joystick":63685,"jug":63686,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton":63219,"key":61572,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kiss-beam":62871,"kiss-wink-heart":62872,"kiss":62870,"kite":63220,"kiwi-bird":62773,"knife-kitchen":63221,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp":62666,"landmark-alt":63314,"landmark":63087,"language":61867,"laptop-code":62972,"laptop-house":57446,"laptop-medical":63506,"laptop":61705,"lasso":63688,"laugh-beam":62874,"laugh-squint":62875,"laugh-wink":62876,"laugh":62873,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"lemon":61588,"less-than-equal":62775,"less-than":62774,"level-down-alt":62398,"level-down":61769,"level-up-alt":62399,"level-up":61768,"life-ring":61901,"light-ceiling":57366,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-dollar":63088,"lightbulb-exclamation":63089,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"link":61633,"lips":62976,"lira-sign":61845,"list-alt":61474,"list-music":63689,"list-ol":61643,"list-ul":61642,"list":61498,"location-arrow":61732,"location-circle":62978,"location-slash":62979,"location":62977,"lock-alt":62221,"lock-open-alt":62402,"lock-open":62401,"lock":61475,"long-arrow-alt-down":62217,"long-arrow-alt-left":62218,"long-arrow-alt-right":62219,"long-arrow-alt-up":62220,"long-arrow-down":61813,"long-arrow-left":61815,"long-arrow-right":61816,"long-arrow-up":61814,"loveseat":62668,"low-vision":62120,"luchador":62549,"luggage-cart":62877,"lungs-virus":57447,"lungs":62980,"mace":63224,"magic":61648,"magnet":61558,"mail-bulk":63092,"mailbox":63507,"male":61827,"mandolin":63225,"map-marked-alt":62880,"map-marked":62879,"map-marker-alt-slash":62981,"map-marker-alt":62405,"map-marker-check":62982,"map-marker-edit":62983,"map-marker-exclamation":62984,"map-marker-minus":62985,"map-marker-plus":62986,"map-marker-question":62987,"map-marker-slash":62988,"map-marker-smile":62989,"map-marker-times":62990,"map-marker":61505,"map-pin":62070,"map-signs":62071,"map":62073,"marker":62881,"mars-double":61991,"mars-stroke-h":61995,"mars-stroke-v":61994,"mars-stroke":61993,"mars":61986,"mask":63226,"meat":63508,"medal":62882,"medkit":61690,"megaphone":63093,"meh-blank":62884,"meh-rolling-eyes":62885,"meh":61722,"memory":62776,"menorah":63094,"mercury":61987,"meteor":63315,"microchip":62171,"microphone-alt-slash":62777,"microphone-alt":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mind-share":63095,"minus-circle":61526,"minus-hexagon":62215,"minus-octagon":62216,"minus-square":61766,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-alt":62413,"mobile-android-alt":62415,"mobile-android":62414,"mobile":61707,"money-bill-alt":62417,"money-bill-wave-alt":62779,"money-bill-wave":62778,"money-bill":61654,"money-check-alt":62781,"money-check-edit-alt":63603,"money-check-edit":63602,"money-check":62780,"monitor-heart-rate":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-stars":63317,"moon":61830,"mortar-pestle":62887,"mosque":63096,"motorcycle":61980,"mountain":63228,"mountains":63229,"mouse-alt":63693,"mouse-pointer":62021,"mouse":63692,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-tea":63605,"mug":63604,"music-alt-slash":63696,"music-alt":63695,"music-slash":63697,"music":61441,"narwhal":63230,"network-wired":63231,"neuter":61996,"newspaper":61930,"not-equal":62782,"notes-medical":62593,"object-group":62023,"object-ungroup":62024,"octagon":62214,"oil-can":62995,"oil-temp":62996,"om":63097,"omega":63098,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"page-break":63607,"pager":63509,"paint-brush-alt":62889,"paint-brush":61948,"paint-roller":62890,"palette":62783,"pallet-alt":62595,"pallet":62594,"paper-plane":61912,"paperclip":61638,"parachute-box":62669,"paragraph-rtl":63608,"paragraph":61917,"parking-circle-slash":62998,"parking-circle":62997,"parking-slash":62999,"parking":62784,"passport":62891,"pastafarianism":63099,"paste":61674,"pause-circle":62091,"pause":61516,"paw-alt":63233,"paw-claws":63234,"paw":61872,"peace":63100,"pegasus":63235,"pen-alt":62213,"pen-fancy":62892,"pen-nib":62893,"pen-square":61771,"pen":62212,"pencil-alt":62211,"pencil-paintbrush":63000,"pencil-ruler":62894,"pencil":61504,"pennant":62550,"people-arrows":57448,"people-carry":62670,"pepper-hot":63510,"percent":62101,"percentage":62785,"person-booth":63318,"person-carry":62671,"person-dolly-empty":62673,"person-dolly":62672,"person-sign":63319,"phone-alt":63609,"phone-laptop":63610,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-square-alt":63611,"phone-square":61592,"phone-volume":62112,"phone":61589,"photo-video":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-alt":62430,"plane-arrival":62895,"plane-departure":62896,"plane-slash":57449,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"play-circle":61764,"play":61515,"plug":61926,"plus-circle":61525,"plus-hexagon":62208,"plus-octagon":62209,"plus-square":61694,"plus":61543,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-h":63106,"poll-people":63321,"poll":63105,"poo-storm":63322,"poo":62206,"poop":63001,"popcorn":63513,"portal-enter":57378,"portal-exit":57379,"portrait":62432,"pound-sign":61780,"power-off":61457,"pray":63107,"praying-hands":63108,"prescription-bottle-alt":62598,"prescription-bottle":62597,"prescription":62897,"presentation":63109,"print-search":63514,"print-slash":63110,"print":61487,"procedures":62599,"project-diagram":62786,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pumpkin":63239,"puzzle-piece":61742,"qrcode":61481,"question-circle":61529,"question-square":62205,"question":61736,"quidditch":62552,"quote-left":61709,"quote-right":61710,"quran":63111,"rabbit-fast":63241,"rabbit":63240,"racquet":62554,"radar":57380,"radiation-alt":63418,"radiation":63417,"radio-alt":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"random":61556,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-landscape":62202,"rectangle-portrait":62203,"rectangle-wide":62204,"recycle":61880,"redo-alt":62201,"redo":61470,"refrigerator":57382,"registered":62045,"remove-format":63613,"repeat-1-alt":62310,"repeat-1":62309,"repeat-alt":62308,"repeat":62307,"reply-all":61730,"reply":62437,"republican":63326,"restroom":63421,"retweet-alt":62305,"retweet":61561,"ribbon":62678,"ring":63243,"rings-wedding":63515,"road":61464,"robot":62788,"rocket-launch":57383,"rocket":61749,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss-square":61763,"rss":61598,"ruble-sign":61784,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"running":63244,"rupee-sign":61782,"rv":63422,"sack-dollar":63517,"sack":63516,"sad-cry":62899,"sad-tear":62900,"salad":63518,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"save":61639,"sax-hot":63707,"saxophone":63708,"scalpel-path":63006,"scalpel":63005,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scanner":62600,"scarecrow":63245,"scarf":63425,"school":62793,"screwdriver":62794,"scroll-old":63247,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"search-dollar":63112,"search-location":63113,"search-minus":61456,"search-plus":61454,"search":61442,"seedling":62680,"send-back":63614,"send-backward":63615,"sensor-alert":57385,"sensor-fire":57386,"sensor-on":57387,"sensor-smoke":57388,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-alt-square":61921,"share-alt":61920,"share-square":61773,"share":61540,"sheep":63249,"shekel-sign":61963,"shield-alt":62445,"shield-check":62199,"shield-cross":63250,"shield-virus":57452,"shield":61746,"ship":61978,"shipping-fast":62603,"shipping-timed":62604,"shish-kebab":63521,"shoe-prints":62795,"shopping-bag":62096,"shopping-basket":62097,"shopping-cart":61562,"shovel-snow":63427,"shovel":63251,"shower":62156,"shredder":63114,"shuttle-van":62902,"shuttlecock":62555,"sickle":63522,"sigma":63115,"sign-in-alt":62198,"sign-in":61584,"sign-language":62119,"sign-out-alt":62197,"sign-out":61579,"sign":62681,"signal-1":63116,"signal-2":63117,"signal-3":63118,"signal-4":63119,"signal-alt-1":63121,"signal-alt-2":63122,"signal-alt-3":63123,"signal-alt-slash":63124,"signal-alt":63120,"signal-slash":63125,"signal-stream":63709,"signal":61458,"signature":62903,"sim-card":63428,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skating":63429,"skeleton":63008,"ski-jump":63431,"ski-lift":63432,"skiing-nordic":63434,"skiing":63433,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash":63253,"sledding":63435,"sleigh":63436,"sliders-h-square":62448,"sliders-h":61918,"sliders-v-square":62450,"sliders-v":62449,"smile-beam":62904,"smile-plus":62905,"smile-wink":62682,"smile":61720,"smog":63327,"smoke":63328,"smoking-ban":62797,"smoking":62605,"sms":63437,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowboarding":63438,"snowflake":62172,"snowflakes":63439,"snowman":63440,"snowmobile":63441,"snowplow":63442,"soap":57454,"socks":63126,"solar-panel":62906,"solar-system":57391,"sort-alpha-down-alt":63617,"sort-alpha-down":61789,"sort-alpha-up-alt":63618,"sort-alpha-up":61790,"sort-alt":63619,"sort-amount-down-alt":63620,"sort-amount-down":61792,"sort-amount-up-alt":63621,"sort-amount-up":61793,"sort-circle-down":57393,"sort-circle-up":57394,"sort-circle":57392,"sort-down":61661,"sort-numeric-down-alt":63622,"sort-numeric-down":61794,"sort-numeric-up-alt":63623,"sort-numeric-up":61795,"sort-shapes-down-alt":63625,"sort-shapes-down":63624,"sort-shapes-up-alt":63627,"sort-shapes-up":63626,"sort-size-down-alt":63629,"sort-size-down":63628,"sort-size-up-alt":63631,"sort-size-up":63630,"sort-up":61662,"sort":61660,"soup":63523,"spa":62907,"space-shuttle":61847,"space-station-moon-alt":57396,"space-station-moon":57395,"spade":62196,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-third":62452,"spinner":61712,"splotch":62908,"spray-can":62909,"sprinkler":57397,"square-full":62556,"square-root-alt":63128,"square-root":63127,"square":61640,"squirrel":63258,"staff":63259,"stamp":62911,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-alt":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-shooting":57398,"star":61445,"starfighter-alt":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"step-backward":61512,"step-forward":61521,"stethoscope":61681,"sticky-note":62025,"stocking":63445,"stomach":63011,"stop-circle":62093,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-alt-slash":57456,"store-alt":62799,"store-slash":57457,"store":62798,"stream":62800,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subway":62009,"suitcase-rolling":62913,"suitcase":61682,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"surprise":62914,"swatchbook":62915,"swimmer":62916,"swimming-pool":62917,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"synagogue":63131,"sync-alt":62193,"sync":61473,"syringe":62606,"table-tennis":62557,"table":61646,"tablet-alt":62458,"tablet-android-alt":62460,"tablet-android":62459,"tablet-rugged":62607,"tablet":61706,"tablets":62608,"tachometer-alt-average":63012,"tachometer-alt-fast":63013,"tachometer-alt-fastest":63014,"tachometer-alt-slow":63015,"tachometer-alt-slowest":63016,"tachometer-alt":62461,"tachometer-average":63017,"tachometer-fast":63018,"tachometer-fastest":63019,"tachometer-slow":63020,"tachometer-slowest":63021,"tachometer":61668,"taco":63526,"tag":61483,"tags":61484,"tally":63132,"tanakh":63527,"tape":62683,"tasks-alt":63528,"tasks":61614,"taxi":61882,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-down":57407,"temperature-frigid":63336,"temperature-high":63337,"temperature-hot":63338,"temperature-low":63339,"temperature-up":57408,"tenge":63447,"tennis-ball":62558,"terminal":61728,"text-height":61492,"text-size":63636,"text-width":61493,"text":63635,"th-large":61449,"th-list":61451,"th":61450,"theater-masks":63024,"thermometer-empty":62155,"thermometer-full":62151,"thermometer-half":62153,"thermometer-quarter":62154,"thermometer-three-quarters":62152,"thermometer":62609,"theta":63134,"thumbs-down":61797,"thumbs-up":61796,"thumbtack":61581,"thunderstorm-moon":63341,"thunderstorm-sun":63342,"thunderstorm":63340,"ticket-alt":62463,"ticket":61765,"tilde":63135,"times-circle":61527,"times-hexagon":62190,"times-octagon":62192,"times-square":62163,"times":61453,"tint-slash":62919,"tint":61507,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"tired":62920,"toggle-off":61956,"toggle-on":61957,"toilet-paper-alt":63263,"toilet-paper-slash":57458,"toilet-paper":63262,"toilet":63448,"tombstone-alt":63265,"tombstone":63264,"toolbox":62802,"tools":63449,"tooth":62921,"toothbrush":63029,"torah":63136,"torii-gate":63137,"tornado":63343,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train":62008,"tram":63450,"transgender-alt":61989,"transgender":61988,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-empty":57414,"transporter":57410,"trash-alt":62189,"trash-restore-alt":63530,"trash-restore":63529,"trash-undo-alt":63638,"trash-undo":63637,"trash":61944,"treasure-chest":63267,"tree-alt":62464,"tree-christmas":63451,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-music":63714,"triangle":62188,"trophy-alt":62187,"trophy":61585,"truck-container":62684,"truck-couch":62685,"truck-loading":62686,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plow":63454,"truck-ramp":62688,"truck":61649,"trumpet":63715,"tshirt":62803,"tty":61924,"turkey":63269,"turntable":63716,"turtle":63270,"tv-alt":63717,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella":61673,"underline":61645,"undo-alt":62186,"undo":61666,"unicorn":63271,"union":63138,"universal-access":62106,"university":61852,"unlink":61735,"unlock-alt":61758,"unlock":61596,"upload":61587,"usb-drive":63721,"usd-circle":62184,"usd-square":62185,"user-alien":57418,"user-alt-slash":62714,"user-alt":62470,"user-astronaut":62715,"user-chart":63139,"user-check":62716,"user-circle":62141,"user-clock":62717,"user-cog":62718,"user-cowboy":63722,"user-crown":63140,"user-edit":62719,"user-friends":62720,"user-graduate":62721,"user-hard-hat":63532,"user-headset":63533,"user-injured":63272,"user-lock":62722,"user-md-chat":63534,"user-md":61680,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse":63535,"user-plus":62004,"user-robot":57419,"user-secret":61979,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie":62728,"user-times":62005,"user-unlock":57432,"user-visor":57420,"user":61447,"users-class":63037,"users-cog":62729,"users-crown":63141,"users-medical":63536,"users-slash":57459,"users":61632,"utensil-fork":62179,"utensil-knife":62180,"utensil-spoon":62181,"utensils-alt":62182,"utensils":62183,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"vector-square":62923,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vhs":63724,"vial":62610,"vials":62611,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball-ball":62559,"volume-down":61479,"volume-mute":63145,"volume-off":61478,"volume-slash":62178,"volume-up":61480,"volume":63144,"vote-nay":63345,"vote-yea":63346,"vr-cardboard":63273,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"walking":62804,"wallet":62805,"wand-magic":63275,"wand":63274,"warehouse-alt":62613,"warehouse":62612,"washer":63640,"watch-calculator":63728,"watch-fitness":63038,"watch":62177,"water-lower":63348,"water-rise":63349,"water":63347,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"waveform-path":63730,"waveform":63729,"webcam-slash":63539,"webcam":63538,"weight-hanging":62925,"weight":62614,"whale":63276,"wheat":63277,"wheelchair":61843,"whistle":62560,"wifi-1":63146,"wifi-2":63147,"wifi-slash":63148,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-alt":62479,"window-close":62480,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-alt":62926,"wine-glass":62691,"won-sign":61785,"wreath":63458,"wrench":61613,"x-ray":62615,"yen-sign":61783,"yin-yang":63149} ================================================ FILE: packages/fontawesome5-pro/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome5-pro", "version": "12.4.0", "description": "Fontawesome5 Pro font for react native vector icons", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome5-pro" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome5-pro" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^", "@react-native-vector-icons/fontawesome-common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome5-pro/react-native-vector-icons-fontawesome5-pro.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome5-pro' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome5-pro)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome5-pro" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome5-pro/src/index.tsx ================================================ /* eslint-disable react/jsx-pascal-case, no-console */ /** * This is a generated file. If you modify it manually, your changes will be lost! * Instead, modify the template in `fontawesome-common/generator`. * * FontAwesome5Pro icon set component. * Usage: */ import type { ComponentProps } from 'react'; import { Platform, type TextStyle } from 'react-native'; import { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common'; import brandGM from '../glyphmaps/FontAwesome5Pro_brand.json'; import duotoneGM from '../glyphmaps/FontAwesome5Pro_duotone.json'; import lightGM from '../glyphmaps/FontAwesome5Pro_light.json'; import regularGM from '../glyphmaps/FontAwesome5Pro_regular.json'; import solidGM from '../glyphmaps/FontAwesome5Pro_solid.json'; import metadata from '../glyphmaps/FontAwesome5Pro_meta.json'; const glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph); const fontStyle = (fontWeight: TextStyle['fontWeight']) => Platform.select({ ios: { fontWeight, }, default: {}, }); // biome-ignore format: We want these to be consistent and we are fine with single for all const LightIcon = createIconSet(lightGM, { postScriptName: 'FontAwesome5Pro-Light', fontFileName: 'FontAwesome5_Pro_Light.ttf', fontStyle: fontStyle('300') }); export type FontAwesome5ProLightIconName = keyof typeof lightGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const RegularIcon = createIconSet(regularGM, { postScriptName: 'FontAwesome5Pro-Regular', fontFileName: 'FontAwesome5_Pro_Regular.ttf', fontStyle: fontStyle('400') }); export type FontAwesome5ProRegularIconName = keyof typeof regularGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SolidIcon = createIconSet(solidGM, { postScriptName: 'FontAwesome5Pro-Solid', fontFileName: 'FontAwesome5_Pro_Solid.ttf', fontStyle: fontStyle('900') }); export type FontAwesome5ProSolidIconName = keyof typeof solidGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const DuotoneIcon = createIconSet(duotoneGM, { postScriptName: 'FontAwesome5Duotone-Solid', fontFileName: 'FontAwesome5_Pro_Duotone.ttf', fontStyle: fontStyle('900') }); export type FontAwesome5ProDuotoneIconName = keyof typeof duotoneGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const BrandIcon = createIconSet(brandGM, { postScriptName: 'FontAwesome5Brands-Regular', fontFileName: 'FontAwesome5_Pro_Brands.ttf', fontStyle: fontStyle('400') }); export type FontAwesome5ProBrandIconName = keyof typeof brandGM; type Props = | ({ iconStyle: 'light' } & ComponentProps) | ({ iconStyle: 'regular' } & ComponentProps) | ({ iconStyle: 'solid' } & ComponentProps) | ({ iconStyle: 'duotone' } & ComponentProps) | ({ iconStyle: 'brand' } & ComponentProps) | ({ iconStyle?: never } & ComponentProps); export const FontAwesome5Pro = (props: Props) => { const { iconStyle, name } = props; if (!iconStyle) { if (!glyphValidator(name, 'regular')) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome5Pro`); } return ; } if (!glyphValidator(name, iconStyle)) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome5Pro`); return )} />; } switch (iconStyle) { case 'brand': return ; case 'duotone': return ; case 'light': return ; case 'regular': return ; case 'solid': return ; default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`); return )} />; } }; type GetImageSourceFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSource']>; ( iconStyle: 'duotone', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof DuotoneIcon)['getImageSource']>; ( iconStyle: 'light', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof LightIcon)['getImageSource']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSource']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSource']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color); case 'duotone': return DuotoneIcon.getImageSource(name as keyof typeof duotoneGM, size, color); case 'light': return LightIcon.getImageSource(name as keyof typeof lightGM, size, color); case 'regular': return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`); return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); } }; FontAwesome5Pro.getImageSource = getImageSource; type GetImageSourceSyncFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>; ( iconStyle: 'duotone', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof DuotoneIcon)['getImageSourceSync']>; ( iconStyle: 'light', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof LightIcon)['getImageSourceSync']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color); case 'duotone': return DuotoneIcon.getImageSourceSync(name as keyof typeof duotoneGM, size, color); case 'light': return LightIcon.getImageSourceSync(name as keyof typeof lightGM, size, color); case 'regular': return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`); return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); } }; FontAwesome5Pro.getImageSourceSync = getImageSourceSync; export type FontAwesome5ProIconName = ComponentProps['name']; /** @alias */ export default FontAwesome5Pro; ================================================ FILE: packages/fontawesome5-pro/src/static.tsx ================================================ /* eslint-disable react/jsx-pascal-case, no-console */ /** * This is a generated file. If you modify it manually, your changes will be lost! * Instead, modify the template in `fontawesome-common/generator`. * * FontAwesome5Pro icon set component. * Usage: */ import type { ComponentProps } from 'react'; import { Platform, type TextStyle } from 'react-native'; import { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common'; import brandGM from '../glyphmaps/FontAwesome5Pro_brand.json'; import duotoneGM from '../glyphmaps/FontAwesome5Pro_duotone.json'; import lightGM from '../glyphmaps/FontAwesome5Pro_light.json'; import regularGM from '../glyphmaps/FontAwesome5Pro_regular.json'; import solidGM from '../glyphmaps/FontAwesome5Pro_solid.json'; import metadata from '../glyphmaps/FontAwesome5Pro_meta.json'; const glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph); const fontStyle = (fontWeight: TextStyle['fontWeight']) => Platform.select({ ios: { fontWeight, }, default: {}, }); // biome-ignore format: We want these to be consistent and we are fine with single for all const LightIcon = createIconSet(lightGM, { postScriptName: 'FontAwesome5Pro-Light', fontFileName: 'FontAwesome5_Pro_Light.ttf', fontStyle: fontStyle('300') }); export type FontAwesome5ProLightIconName = keyof typeof lightGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const RegularIcon = createIconSet(regularGM, { postScriptName: 'FontAwesome5Pro-Regular', fontFileName: 'FontAwesome5_Pro_Regular.ttf', fontStyle: fontStyle('400') }); export type FontAwesome5ProRegularIconName = keyof typeof regularGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SolidIcon = createIconSet(solidGM, { postScriptName: 'FontAwesome5Pro-Solid', fontFileName: 'FontAwesome5_Pro_Solid.ttf', fontStyle: fontStyle('900') }); export type FontAwesome5ProSolidIconName = keyof typeof solidGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const DuotoneIcon = createIconSet(duotoneGM, { postScriptName: 'FontAwesome5Duotone-Solid', fontFileName: 'FontAwesome5_Pro_Duotone.ttf', fontStyle: fontStyle('900') }); export type FontAwesome5ProDuotoneIconName = keyof typeof duotoneGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const BrandIcon = createIconSet(brandGM, { postScriptName: 'FontAwesome5Brands-Regular', fontFileName: 'FontAwesome5_Pro_Brands.ttf', fontStyle: fontStyle('400') }); export type FontAwesome5ProBrandIconName = keyof typeof brandGM; type Props = | ({ iconStyle: 'light' } & ComponentProps) | ({ iconStyle: 'regular' } & ComponentProps) | ({ iconStyle: 'solid' } & ComponentProps) | ({ iconStyle: 'duotone' } & ComponentProps) | ({ iconStyle: 'brand' } & ComponentProps) | ({ iconStyle?: never } & ComponentProps); export const FontAwesome5Pro = (props: Props) => { const { iconStyle, name } = props; if (!iconStyle) { if (!glyphValidator(name, 'regular')) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome5Pro`); } return ; } if (!glyphValidator(name, iconStyle)) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome5Pro`); return )} />; } switch (iconStyle) { case 'brand': return ; case 'duotone': return ; case 'light': return ; case 'regular': return ; case 'solid': return ; default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`); return )} />; } }; type GetImageSourceFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSource']>; ( iconStyle: 'duotone', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof DuotoneIcon)['getImageSource']>; ( iconStyle: 'light', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof LightIcon)['getImageSource']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSource']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSource']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color); case 'duotone': return DuotoneIcon.getImageSource(name as keyof typeof duotoneGM, size, color); case 'light': return LightIcon.getImageSource(name as keyof typeof lightGM, size, color); case 'regular': return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`); return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); } }; FontAwesome5Pro.getImageSource = getImageSource; type GetImageSourceSyncFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>; ( iconStyle: 'duotone', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof DuotoneIcon)['getImageSourceSync']>; ( iconStyle: 'light', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof LightIcon)['getImageSourceSync']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color); case 'duotone': return DuotoneIcon.getImageSourceSync(name as keyof typeof duotoneGM, size, color); case 'light': return LightIcon.getImageSourceSync(name as keyof typeof lightGM, size, color); case 'regular': return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`); return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); } }; FontAwesome5Pro.getImageSourceSync = getImageSourceSync; export type FontAwesome5ProIconName = ComponentProps['name']; /** @alias */ export default FontAwesome5Pro; ================================================ FILE: packages/fontawesome5-pro/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome5-pro/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome6/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome6", "className": "FontAwesome6", "commonPackage": "fontawesome-common/fontawesome6", "customSrc": "../../../../fontawesome-common/generators/app/templates/src/index.tsx", "customReadme": true, "upstreamFont": { "packageName": "@fortawesome/fontawesome-free", "versionRange": "^6" }, "meta": { "defaultStyleName": "regular", "styleNames": [ "regular", "solid", "brand" ], "styles": { "regular": { "family": "FontAwesome6Free-Regular", "name": "FontAwesome6_Regular.ttf", "weight": 400 }, "solid": { "family": "FontAwesome6Free-Solid", "name": "FontAwesome6_Solid.ttf", "weight": 900 }, "brand": { "family": "FontAwesome6Brands-Regular", "name": "FontAwesome6_Brands.ttf", "weight": 400 } } }, "buildSteps": { "glyphmap": { "location": "node_modules/@fortawesome/fontawesome-free/css/all.css", "mode": "css", "prefix": ".fa-" }, "copyFont": { "location": [ [ "node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf", "FontAwesome6_Brands" ], [ "node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf", "FontAwesome6_Regular" ], [ "node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf", "FontAwesome6_Solid" ] ] }, "postScript": { "script": "node ../fontawesome-common/scripts/generate-fontawesome-metadata --path node_modules/@fortawesome/fontawesome-free --output glyphmaps/FontAwesome6_meta.json" } }, "versions": [ { "rnvi": "12.0.0", "upstream": "6.7.2" } ] } } ================================================ FILE: packages/fontawesome6/CHANGELOG.md ================================================ ## 12.4.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.3.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.3.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.3.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.2.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - update fontawesome fonts to new createIcon format so font loads in expo ([#1769](https://github.com/oblador/react-native-vector-icons/pull/1769)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - improve warning if glyph does not exist for default IconStyle in fontawesome fonts ([#1718](https://github.com/oblador/react-native-vector-icons/pull/1718)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Lukas @WookieFPV - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/fontawesome6/README.md ================================================ # FontAwesome 6 ### Table of Content - [`Usage`](#usage) - [`Upgrading to Pro`](#upgrading-to-pro) # Usage Using the standard icons works just like the standard icons in this library. ```javascript import { FontAwesome6 } from "@react-native-vector-icons/fontawesome6"; const icon = ; ``` Something special about the FontAwesome6 class is that you can also pass props to change the style of the icon: ```javascript import { FontAwesome6 } from "@react-native-vector-icons/fontawesome6"; const icon = ; const icon = ; ``` **Valid types** | Type | Description | | ----------- | --------------------- | | **regular** | Uses the Regular font | | **brand** | Uses the Brands font | | **solid** | Uses the Solid font | No specified type indicates Regular font. ## getImageSource `getImageSource` works a little different due to its native backend and how the font is separated into different files. An extra argument to specify the font style is required. Use this to select which style the generated image should have: ```javascript import { FontAwesome6 } from "@react-native-vector-icons/fontawesome6"; FontAwesome6.getImageSource("solid", "comments", 30, "#000").then((source) => this.setState({ image: source }), ); ``` # Upgrading to Pro Use the `@react-native-vector-icons/fontawesome6-pro` package instead. ================================================ FILE: packages/fontawesome6/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome6" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesome6" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome6" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome6") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome6/fonts" eachFile { println "(RNVI:fontawesome6) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/fontawesome6/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome6/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome6/android/src/main/java/VectorIconsFontAwesome6Package.kt ================================================ package com.reactnativevectoricons.fontawesome6 import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesome6Package : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome6/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome6/glyphmaps/FontAwesome6.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "fill-drip": 62838, "arrows-to-circle": 58557, "circle-chevron-right": 61752, "chevron-circle-right": 61752, "at": 64, "trash-can": 62189, "trash-alt": 62189, "text-height": 61492, "user-xmark": 62005, "user-times": 62005, "stethoscope": 61681, "message": 62074, "comment-alt": 62074, "info": 61737, "down-left-and-up-right-to-center": 62498, "compress-alt": 62498, "explosion": 58601, "file-lines": 61788, "file-alt": 61788, "file-text": 61788, "wave-square": 63550, "ring": 63243, "building-un": 58585, "dice-three": 62759, "calendar-days": 61555, "calendar-alt": 61555, "anchor-circle-check": 58538, "building-circle-arrow-right": 58577, "volleyball": 62559, "volleyball-ball": 62559, "arrows-up-to-line": 58562, "sort-down": 61661, "sort-desc": 61661, "circle-minus": 61526, "minus-circle": 61526, "door-open": 62763, "right-from-bracket": 62197, "sign-out-alt": 62197, "atom": 62930, "soap": 57454, "icons": 63597, "heart-music-camera-bolt": 63597, "microphone-lines-slash": 62777, "microphone-alt-slash": 62777, "bridge-circle-check": 58569, "pump-medical": 57450, "fingerprint": 62839, "hand-point-right": 61604, "magnifying-glass-location": 63113, "search-location": 63113, "forward-step": 61521, "step-forward": 61521, "face-smile-beam": 62904, "smile-beam": 62904, "flag-checkered": 61726, "football": 62542, "football-ball": 62542, "school-circle-exclamation": 58732, "crop": 61733, "angles-down": 61699, "angle-double-down": 61699, "users-rectangle": 58772, "people-roof": 58679, "people-line": 58676, "beer-mug-empty": 61692, "beer": 61692, "diagram-predecessor": 58487, "arrow-up-long": 61814, "long-arrow-up": 61814, "fire-flame-simple": 62570, "burn": 62570, "person": 61827, "male": 61827, "laptop": 61705, "file-csv": 63197, "menorah": 63094, "truck-plane": 58767, "record-vinyl": 63705, "face-grin-stars": 62855, "grin-stars": 62855, "bong": 62812, "spaghetti-monster-flying": 63099, "pastafarianism": 63099, "arrow-down-up-across-line": 58543, "spoon": 62181, "utensil-spoon": 62181, "jar-wheat": 58647, "envelopes-bulk": 63092, "mail-bulk": 63092, "file-circle-exclamation": 58603, "circle-h": 62590, "hospital-symbol": 62590, "pager": 63509, "address-book": 62137, "contact-book": 62137, "strikethrough": 61644, "k": 75, "landmark-flag": 58652, "pencil": 62211, "pencil-alt": 62211, "backward": 61514, "caret-right": 61658, "comments": 61574, "paste": 61674, "file-clipboard": 61674, "code-pull-request": 57660, "clipboard-list": 62573, "truck-ramp-box": 62686, "truck-loading": 62686, "user-check": 62716, "vial-virus": 58775, "sheet-plastic": 58737, "blog": 63361, "user-ninja": 62724, "person-arrow-up-from-line": 58681, "scroll-torah": 63136, "torah": 63136, "broom-ball": 62552, "quidditch": 62552, "quidditch-broom-ball": 62552, "toggle-off": 61956, "box-archive": 61831, "archive": 61831, "person-drowning": 58693, "arrow-down-9-1": 63622, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "face-grin-tongue-squint": 62858, "grin-tongue-squint": 62858, "spray-can": 62909, "truck-monster": 63035, "w": 87, "earth-africa": 62844, "globe-africa": 62844, "rainbow": 63323, "circle-notch": 61902, "tablet-screen-button": 62458, "tablet-alt": 62458, "paw": 61872, "cloud": 61634, "trowel-bricks": 58762, "face-flushed": 62841, "flushed": 62841, "hospital-user": 63501, "tent-arrow-left-right": 58751, "gavel": 61667, "legal": 61667, "binoculars": 61925, "microphone-slash": 61745, "box-tissue": 57435, "motorcycle": 61980, "bell-concierge": 62818, "concierge-bell": 62818, "pen-ruler": 62894, "pencil-ruler": 62894, "people-arrows": 57448, "people-arrows-left-right": 57448, "mars-and-venus-burst": 58659, "square-caret-right": 61778, "caret-square-right": 61778, "scissors": 61636, "cut": 61636, "sun-plant-wilt": 58746, "toilets-portable": 58756, "hockey-puck": 62547, "table": 61646, "magnifying-glass-arrow-right": 58657, "tachograph-digital": 62822, "digital-tachograph": 62822, "users-slash": 57459, "clover": 57657, "reply": 62437, "mail-reply": 62437, "star-and-crescent": 63129, "house-fire": 58636, "square-minus": 61766, "minus-square": 61766, "helicopter": 62771, "compass": 61774, "square-caret-down": 61776, "caret-square-down": 61776, "file-circle-question": 58607, "laptop-code": 62972, "swatchbook": 62915, "prescription-bottle": 62597, "bars": 61641, "navicon": 61641, "people-group": 58675, "hourglass-end": 62035, "hourglass-3": 62035, "heart-crack": 63401, "heart-broken": 63401, "square-up-right": 62304, "external-link-square-alt": 62304, "face-kiss-beam": 62871, "kiss-beam": 62871, "film": 61448, "ruler-horizontal": 62791, "people-robbery": 58678, "lightbulb": 61675, "caret-left": 61657, "circle-exclamation": 61546, "exclamation-circle": 61546, "school-circle-xmark": 58733, "arrow-right-from-bracket": 61579, "sign-out": 61579, "circle-chevron-down": 61754, "chevron-circle-down": 61754, "unlock-keyhole": 61758, "unlock-alt": 61758, "cloud-showers-heavy": 63296, "headphones-simple": 62863, "headphones-alt": 62863, "sitemap": 61672, "circle-dollar-to-slot": 62649, "donate": 62649, "memory": 62776, "road-spikes": 58728, "fire-burner": 58609, "flag": 61476, "hanukiah": 63206, "feather": 62765, "volume-low": 61479, "volume-down": 61479, "comment-slash": 62643, "cloud-sun-rain": 63299, "compress": 61542, "wheat-awn": 58061, "wheat-alt": 58061, "ankh": 63044, "hands-holding-child": 58618, "asterisk": 42, "square-check": 61770, "check-square": 61770, "peseta-sign": 57889, "heading": 61916, "header": 61916, "ghost": 63202, "list": 61498, "list-squares": 61498, "square-phone-flip": 63611, "phone-square-alt": 63611, "cart-plus": 61975, "gamepad": 61723, "circle-dot": 61842, "dot-circle": 61842, "face-dizzy": 62823, "dizzy": 62823, "egg": 63483, "house-medical-circle-xmark": 58643, "campground": 63163, "folder-plus": 63070, "futbol": 61923, "futbol-ball": 61923, "soccer-ball": 61923, "paintbrush": 61948, "paint-brush": 61948, "lock": 61475, "gas-pump": 62767, "hot-tub-person": 62867, "hot-tub": 62867, "map-location": 62879, "map-marked": 62879, "house-flood-water": 58638, "tree": 61883, "bridge-lock": 58572, "sack-dollar": 63517, "pen-to-square": 61508, "edit": 61508, "car-side": 62948, "share-nodes": 61920, "share-alt": 61920, "heart-circle-minus": 58623, "hourglass-half": 62034, "hourglass-2": 62034, "microscope": 62992, "sink": 57453, "bag-shopping": 62096, "shopping-bag": 62096, "arrow-down-z-a": 63617, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "mitten": 63413, "person-rays": 58701, "users": 61632, "eye-slash": 61552, "flask-vial": 58611, "hand": 62038, "hand-paper": 62038, "om": 63097, "worm": 58777, "house-circle-xmark": 58635, "plug": 61926, "chevron-up": 61559, "hand-spock": 62041, "stopwatch": 62194, "face-kiss": 62870, "kiss": 62870, "bridge-circle-xmark": 58571, "face-grin-tongue": 62857, "grin-tongue": 62857, "chess-bishop": 62522, "face-grin-wink": 62860, "grin-wink": 62860, "ear-deaf": 62116, "deaf": 62116, "deafness": 62116, "hard-of-hearing": 62116, "road-circle-check": 58724, "dice-five": 62755, "square-rss": 61763, "rss-square": 61763, "land-mine-on": 58651, "i-cursor": 62022, "stamp": 62911, "stairs": 57993, "i": 73, "hryvnia-sign": 63218, "hryvnia": 63218, "pills": 62596, "face-grin-wide": 62849, "grin-alt": 62849, "tooth": 62921, "v": 86, "bangladeshi-taka-sign": 58086, "bicycle": 61958, "staff-snake": 58745, "rod-asclepius": 58745, "rod-snake": 58745, "staff-aesculapius": 58745, "head-side-cough-slash": 57442, "truck-medical": 61689, "ambulance": 61689, "wheat-awn-circle-exclamation": 58776, "snowman": 63440, "mortar-pestle": 62887, "road-barrier": 58722, "school": 62793, "igloo": 63406, "joint": 62869, "angle-right": 61701, "horse": 63216, "q": 81, "g": 71, "notes-medical": 62593, "temperature-half": 62153, "temperature-2": 62153, "thermometer-2": 62153, "thermometer-half": 62153, "dong-sign": 57705, "capsules": 62571, "poo-storm": 63322, "poo-bolt": 63322, "face-frown-open": 62842, "frown-open": 62842, "hand-point-up": 61606, "money-bill": 61654, "bookmark": 61486, "align-justify": 61497, "umbrella-beach": 62922, "helmet-un": 58627, "bullseye": 61760, "bacon": 63461, "hand-point-down": 61607, "arrow-up-from-bracket": 57498, "folder": 61563, "folder-blank": 61563, "file-waveform": 62584, "file-medical-alt": 62584, "radiation": 63417, "chart-simple": 58483, "mars-stroke": 61993, "vial": 62610, "gauge": 63012, "dashboard": 63012, "gauge-med": 63012, "tachometer-alt-average": 63012, "wand-magic-sparkles": 58058, "magic-wand-sparkles": 58058, "e": 69, "pen-clip": 62213, "pen-alt": 62213, "bridge-circle-exclamation": 58570, "user": 61447, "school-circle-check": 58731, "dumpster": 63379, "van-shuttle": 62902, "shuttle-van": 62902, "building-user": 58586, "square-caret-left": 61841, "caret-square-left": 61841, "highlighter": 62865, "key": 61572, "bullhorn": 61601, "globe": 61612, "synagogue": 63131, "person-half-dress": 58696, "road-bridge": 58723, "location-arrow": 61732, "c": 67, "tablet-button": 61706, "building-lock": 58582, "pizza-slice": 63512, "money-bill-wave": 62778, "chart-area": 61950, "area-chart": 61950, "house-flag": 58637, "person-circle-minus": 58688, "ban": 61534, "cancel": 61534, "camera-rotate": 57560, "spray-can-sparkles": 62928, "air-freshener": 62928, "star": 61445, "repeat": 62307, "cross": 63060, "box": 62566, "venus-mars": 61992, "arrow-pointer": 62021, "mouse-pointer": 62021, "maximize": 62238, "expand-arrows-alt": 62238, "charging-station": 62951, "shapes": 63007, "triangle-circle-square": 63007, "shuffle": 61556, "random": 61556, "person-running": 63244, "running": 63244, "mobile-retro": 58663, "grip-lines-vertical": 63397, "spider": 63255, "hands-bound": 58617, "file-invoice-dollar": 62833, "plane-circle-exclamation": 58710, "x-ray": 62615, "spell-check": 63633, "slash": 63253, "computer-mouse": 63692, "mouse": 63692, "arrow-right-to-bracket": 61584, "sign-in": 61584, "shop-slash": 57456, "store-alt-slash": 57456, "server": 62003, "virus-covid-slash": 58537, "shop-lock": 58533, "hourglass-start": 62033, "hourglass-1": 62033, "blender-phone": 63158, "building-wheat": 58587, "person-breastfeeding": 58682, "right-to-bracket": 62198, "sign-in-alt": 62198, "venus": 61985, "passport": 62891, "thumbtack-slash": 59023, "thumb-tack-slash": 59023, "heart-pulse": 61982, "heartbeat": 61982, "people-carry-box": 62670, "people-carry": 62670, "temperature-high": 63337, "microchip": 62171, "crown": 62753, "weight-hanging": 62925, "xmarks-lines": 58778, "file-prescription": 62834, "weight-scale": 62614, "weight": 62614, "user-group": 62720, "user-friends": 62720, "arrow-up-a-z": 61790, "sort-alpha-up": 61790, "chess-knight": 62529, "face-laugh-squint": 62875, "laugh-squint": 62875, "wheelchair": 61843, "circle-arrow-up": 61610, "arrow-circle-up": 61610, "toggle-on": 61957, "person-walking": 62804, "walking": 62804, "l": 76, "fire": 61549, "bed-pulse": 62599, "procedures": 62599, "shuttle-space": 61847, "space-shuttle": 61847, "face-laugh": 62873, "laugh": 62873, "folder-open": 61564, "heart-circle-plus": 58624, "code-fork": 57659, "city": 63055, "microphone-lines": 62409, "microphone-alt": 62409, "pepper-hot": 63510, "unlock": 61596, "colon-sign": 57664, "headset": 62864, "store-slash": 57457, "road-circle-xmark": 58726, "user-minus": 62723, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "champagne-glasses": 63391, "glass-cheers": 63391, "clipboard": 62248, "house-circle-exclamation": 58634, "file-arrow-up": 62836, "file-upload": 62836, "wifi": 61931, "wifi-3": 61931, "wifi-strong": 61931, "bath": 62157, "bathtub": 62157, "underline": 61645, "user-pen": 62719, "user-edit": 62719, "signature": 62903, "stroopwafel": 62801, "bold": 61490, "anchor-lock": 58541, "building-ngo": 58583, "manat-sign": 57813, "not-equal": 62782, "border-top-left": 63571, "border-style": 63571, "map-location-dot": 62880, "map-marked-alt": 62880, "jedi": 63081, "square-poll-vertical": 63105, "poll": 63105, "mug-hot": 63414, "car-battery": 62943, "battery-car": 62943, "gift": 61547, "dice-two": 62760, "chess-queen": 62533, "glasses": 62768, "chess-board": 62524, "building-circle-check": 58578, "person-chalkboard": 58685, "mars-stroke-right": 61995, "mars-stroke-h": 61995, "hand-back-fist": 62037, "hand-rock": 62037, "square-caret-up": 61777, "caret-square-up": 61777, "cloud-showers-water": 58596, "chart-bar": 61568, "bar-chart": 61568, "hands-bubbles": 57438, "hands-wash": 57438, "less-than-equal": 62775, "train": 62008, "eye-low-vision": 62120, "low-vision": 62120, "crow": 62752, "sailboat": 58437, "window-restore": 62162, "square-plus": 61694, "plus-square": 61694, "torii-gate": 63137, "frog": 62766, "bucket": 58575, "image": 61502, "microphone": 61744, "cow": 63176, "caret-up": 61656, "screwdriver": 62794, "folder-closed": 57733, "house-tsunami": 58645, "square-nfi": 58742, "arrow-up-from-ground-water": 58549, "martini-glass": 62843, "glass-martini-alt": 62843, "square-binary": 59035, "rotate-left": 62186, "rotate-back": 62186, "rotate-backward": 62186, "undo-alt": 62186, "table-columns": 61659, "columns": 61659, "lemon": 61588, "head-side-mask": 57443, "handshake": 62133, "gem": 62373, "dolly": 62578, "dolly-box": 62578, "smoking": 62605, "minimize": 63372, "compress-arrows-alt": 63372, "monument": 62886, "snowplow": 63442, "angles-right": 61697, "angle-double-right": 61697, "cannabis": 62815, "circle-play": 61764, "play-circle": 61764, "tablets": 62608, "ethernet": 63382, "euro-sign": 61779, "eur": 61779, "euro": 61779, "chair": 63168, "circle-check": 61528, "check-circle": 61528, "circle-stop": 62093, "stop-circle": 62093, "compass-drafting": 62824, "drafting-compass": 62824, "plate-wheat": 58714, "icicles": 63405, "person-shelter": 58703, "neuter": 61996, "id-badge": 62145, "marker": 62881, "face-laugh-beam": 62874, "laugh-beam": 62874, "helicopter-symbol": 58626, "universal-access": 62106, "circle-chevron-up": 61753, "chevron-circle-up": 61753, "lari-sign": 57800, "volcano": 63344, "person-walking-dashed-line-arrow-right": 58707, "sterling-sign": 61780, "gbp": 61780, "pound-sign": 61780, "viruses": 57462, "square-person-confined": 58743, "user-tie": 62728, "arrow-down-long": 61813, "long-arrow-down": 61813, "tent-arrow-down-to-line": 58750, "certificate": 61603, "reply-all": 61730, "mail-reply-all": 61730, "suitcase": 61682, "person-skating": 63429, "skating": 63429, "filter-circle-dollar": 63074, "funnel-dollar": 63074, "camera-retro": 61571, "circle-arrow-down": 61611, "arrow-circle-down": 61611, "file-import": 62831, "arrow-right-to-file": 62831, "square-arrow-up-right": 61772, "external-link-square": 61772, "box-open": 62622, "scroll": 63246, "spa": 62907, "location-pin-lock": 58655, "pause": 61516, "hill-avalanche": 58631, "temperature-empty": 62155, "temperature-0": 62155, "thermometer-0": 62155, "thermometer-empty": 62155, "bomb": 61922, "registered": 62045, "address-card": 62139, "contact-card": 62139, "vcard": 62139, "scale-unbalanced-flip": 62742, "balance-scale-right": 62742, "subscript": 61740, "diamond-turn-right": 62955, "directions": 62955, "burst": 58588, "house-laptop": 57446, "laptop-house": 57446, "face-tired": 62920, "tired": 62920, "money-bills": 57843, "smog": 63327, "crutch": 63479, "cloud-arrow-up": 61678, "cloud-upload": 61678, "cloud-upload-alt": 61678, "palette": 62783, "arrows-turn-right": 58560, "vest": 57477, "ferry": 58602, "arrows-down-to-people": 58553, "seedling": 62680, "sprout": 62680, "left-right": 62263, "arrows-alt-h": 62263, "boxes-packing": 58567, "circle-arrow-left": 61608, "arrow-circle-left": 61608, "group-arrows-rotate": 58614, "bowl-food": 58566, "candy-cane": 63366, "arrow-down-wide-short": 61792, "sort-amount-asc": 61792, "sort-amount-down": 61792, "cloud-bolt": 63340, "thunderstorm": 63340, "text-slash": 63613, "remove-format": 63613, "face-smile-wink": 62682, "smile-wink": 62682, "file-word": 61890, "file-powerpoint": 61892, "arrows-left-right": 61566, "arrows-h": 61566, "house-lock": 58640, "cloud-arrow-down": 61677, "cloud-download": 61677, "cloud-download-alt": 61677, "children": 58593, "chalkboard": 62747, "blackboard": 62747, "user-large-slash": 62714, "user-alt-slash": 62714, "envelope-open": 62134, "handshake-simple-slash": 57439, "handshake-alt-slash": 57439, "mattress-pillow": 58661, "guarani-sign": 57754, "arrows-rotate": 61473, "refresh": 61473, "sync": 61473, "fire-extinguisher": 61748, "cruzeiro-sign": 57682, "greater-than-equal": 62770, "shield-halved": 62445, "shield-alt": 62445, "book-atlas": 62808, "atlas": 62808, "virus": 57460, "envelope-circle-check": 58600, "layer-group": 62973, "arrows-to-dot": 58558, "archway": 62807, "heart-circle-check": 58621, "house-chimney-crack": 63217, "house-damage": 63217, "file-zipper": 61894, "file-archive": 61894, "square": 61640, "martini-glass-empty": 61440, "glass-martini": 61440, "couch": 62648, "cedi-sign": 57567, "italic": 61491, "table-cells-column-lock": 59000, "church": 62749, "comments-dollar": 63059, "democrat": 63303, "z": 90, "person-skiing": 63433, "skiing": 63433, "road-lock": 58727, "a": 65, "temperature-arrow-down": 57407, "temperature-down": 57407, "feather-pointed": 62827, "feather-alt": 62827, "p": 80, "snowflake": 62172, "newspaper": 61930, "rectangle-ad": 63041, "ad": 63041, "circle-arrow-right": 61609, "arrow-circle-right": 61609, "filter-circle-xmark": 57723, "locust": 58656, "sort": 61660, "unsorted": 61660, "list-ol": 61643, "list-1-2": 61643, "list-numeric": 61643, "person-dress-burst": 58692, "money-check-dollar": 62781, "money-check-alt": 62781, "vector-square": 62923, "bread-slice": 63468, "language": 61867, "face-kiss-wink-heart": 62872, "kiss-wink-heart": 62872, "filter": 61616, "question": 63, "file-signature": 62835, "up-down-left-right": 61618, "arrows-alt": 61618, "house-chimney-user": 57445, "hand-holding-heart": 62654, "puzzle-piece": 61742, "money-check": 62780, "star-half-stroke": 62912, "star-half-alt": 62912, "code": 61729, "whiskey-glass": 63392, "glass-whiskey": 63392, "building-circle-exclamation": 58579, "magnifying-glass-chart": 58658, "arrow-up-right-from-square": 61582, "external-link": 61582, "cubes-stacked": 58598, "won-sign": 61785, "krw": 61785, "won": 61785, "virus-covid": 58536, "austral-sign": 57513, "f": 70, "leaf": 61548, "road": 61464, "taxi": 61882, "cab": 61882, "person-circle-plus": 58689, "chart-pie": 61952, "pie-chart": 61952, "bolt-lightning": 57527, "sack-xmark": 58730, "file-excel": 61891, "file-contract": 62828, "fish-fins": 58610, "building-flag": 58581, "face-grin-beam": 62850, "grin-beam": 62850, "object-ungroup": 62024, "poop": 63001, "location-pin": 61505, "map-marker": 61505, "kaaba": 63083, "toilet-paper": 63262, "helmet-safety": 63495, "hard-hat": 63495, "hat-hard": 63495, "eject": 61522, "circle-right": 62298, "arrow-alt-circle-right": 62298, "plane-circle-check": 58709, "face-rolling-eyes": 62885, "meh-rolling-eyes": 62885, "object-group": 62023, "chart-line": 61953, "line-chart": 61953, "mask-ventilator": 58660, "arrow-right": 61537, "signs-post": 62071, "map-signs": 62071, "cash-register": 63368, "person-circle-question": 58690, "h": 72, "tarp": 58747, "screwdriver-wrench": 63449, "tools": 63449, "arrows-to-eye": 58559, "plug-circle-bolt": 58715, "heart": 61444, "mars-and-venus": 61988, "house-user": 57776, "home-user": 57776, "dumpster-fire": 63380, "house-crack": 58289, "martini-glass-citrus": 62817, "cocktail": 62817, "face-surprise": 62914, "surprise": 62914, "bottle-water": 58565, "circle-pause": 62091, "pause-circle": 62091, "toilet-paper-slash": 57458, "apple-whole": 62929, "apple-alt": 62929, "kitchen-set": 58650, "r": 82, "temperature-quarter": 62154, "temperature-1": 62154, "thermometer-1": 62154, "thermometer-quarter": 62154, "cube": 61874, "bitcoin-sign": 57524, "shield-dog": 58739, "solar-panel": 62906, "lock-open": 62401, "elevator": 57709, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "house-flood-water-circle-arrow-right": 58639, "square-poll-horizontal": 63106, "poll-h": 63106, "circle": 61713, "backward-fast": 61513, "fast-backward": 61513, "recycle": 61880, "user-astronaut": 62715, "plane-slash": 57449, "trademark": 62044, "basketball": 62516, "basketball-ball": 62516, "satellite-dish": 63424, "circle-up": 62299, "arrow-alt-circle-up": 62299, "mobile-screen-button": 62413, "mobile-alt": 62413, "volume-high": 61480, "volume-up": 61480, "users-rays": 58771, "wallet": 62805, "clipboard-check": 62572, "file-audio": 61895, "burger": 63493, "hamburger": 63493, "wrench": 61613, "bugs": 58576, "rupee-sign": 61782, "rupee": 61782, "file-image": 61893, "circle-question": 61529, "question-circle": 61529, "plane-departure": 62896, "handshake-slash": 57440, "book-bookmark": 57531, "code-branch": 61734, "hat-cowboy": 63680, "bridge": 58568, "phone-flip": 63609, "phone-alt": 63609, "truck-front": 58039, "cat": 63166, "anchor-circle-exclamation": 58539, "truck-field": 58765, "route": 62679, "clipboard-question": 58595, "panorama": 57865, "comment-medical": 63477, "teeth-open": 63023, "file-circle-minus": 58605, "tags": 61484, "wine-glass": 62691, "forward-fast": 61520, "fast-forward": 61520, "face-meh-blank": 62884, "meh-blank": 62884, "square-parking": 62784, "parking": 62784, "house-signal": 57362, "bars-progress": 63528, "tasks-alt": 63528, "faucet-drip": 57350, "cart-flatbed": 62580, "dolly-flatbed": 62580, "ban-smoking": 62797, "smoking-ban": 62797, "terminal": 61728, "mobile-button": 61707, "house-medical-flag": 58644, "basket-shopping": 62097, "shopping-basket": 62097, "tape": 62683, "bus-simple": 62814, "bus-alt": 62814, "eye": 61550, "face-sad-cry": 62899, "sad-cry": 62899, "audio-description": 62110, "person-military-to-person": 58700, "file-shield": 58608, "user-slash": 62726, "pen": 62212, "tower-observation": 58758, "file-code": 61897, "signal": 61458, "signal-5": 61458, "signal-perfect": 61458, "bus": 61959, "heart-circle-xmark": 58625, "house-chimney": 58287, "home-lg": 58287, "window-maximize": 62160, "face-frown": 61721, "frown": 61721, "prescription": 62897, "shop": 62799, "store-alt": 62799, "floppy-disk": 61639, "save": 61639, "vihara": 63143, "scale-unbalanced": 62741, "balance-scale-left": 62741, "sort-up": 61662, "sort-asc": 61662, "comment-dots": 62637, "commenting": 62637, "plant-wilt": 58794, "diamond": 61977, "face-grin-squint": 62853, "grin-squint": 62853, "hand-holding-dollar": 62656, "hand-holding-usd": 62656, "chart-diagram": 59029, "bacterium": 57434, "hand-pointer": 62042, "drum-steelpan": 62826, "hand-scissors": 62039, "hands-praying": 63108, "praying-hands": 63108, "arrow-rotate-right": 61470, "arrow-right-rotate": 61470, "arrow-rotate-forward": 61470, "redo": 61470, "biohazard": 63360, "location-crosshairs": 62977, "location": 62977, "mars-double": 61991, "child-dress": 58780, "users-between-lines": 58769, "lungs-virus": 57447, "face-grin-tears": 62856, "grin-tears": 62856, "phone": 61589, "calendar-xmark": 62067, "calendar-times": 62067, "child-reaching": 58781, "head-side-virus": 57444, "user-gear": 62718, "user-cog": 62718, "arrow-up-1-9": 61795, "sort-numeric-up": 61795, "door-closed": 62762, "shield-virus": 57452, "dice-six": 62758, "mosquito-net": 58668, "file-fragment": 59031, "bridge-water": 58574, "person-booth": 63318, "text-width": 61493, "hat-wizard": 63208, "pen-fancy": 62892, "person-digging": 63582, "digging": 63582, "trash": 61944, "gauge-simple": 63017, "gauge-simple-med": 63017, "tachometer-average": 63017, "book-medical": 63462, "poo": 62206, "quote-right": 61710, "quote-right-alt": 61710, "shirt": 62803, "t-shirt": 62803, "tshirt": 62803, "cubes": 61875, "divide": 62761, "tenge-sign": 63447, "tenge": 63447, "headphones": 61477, "hands-holding": 62658, "hands-clapping": 57768, "republican": 63326, "arrow-left": 61536, "person-circle-xmark": 58691, "ruler": 62789, "align-left": 61494, "dice-d6": 63185, "restroom": 63421, "j": 74, "users-viewfinder": 58773, "file-video": 61896, "up-right-from-square": 62301, "external-link-alt": 62301, "table-cells": 61450, "th": 61450, "file-pdf": 61889, "book-bible": 63047, "bible": 63047, "o": 79, "suitcase-medical": 61690, "medkit": 61690, "user-secret": 61979, "otter": 63232, "person-dress": 61826, "female": 61826, "comment-dollar": 63057, "business-time": 63050, "briefcase-clock": 63050, "table-cells-large": 61449, "th-large": 61449, "book-tanakh": 63527, "tanakh": 63527, "phone-volume": 62112, "volume-control-phone": 62112, "hat-cowboy-side": 63681, "clipboard-user": 63475, "child": 61870, "lira-sign": 61845, "satellite": 63423, "plane-lock": 58712, "tag": 61483, "comment": 61557, "cake-candles": 61949, "birthday-cake": 61949, "cake": 61949, "envelope": 61664, "angles-up": 61698, "angle-double-up": 61698, "paperclip": 61638, "arrow-right-to-city": 58547, "ribbon": 62678, "lungs": 62980, "arrow-up-9-1": 63623, "sort-numeric-up-alt": 63623, "litecoin-sign": 57811, "border-none": 63568, "circle-nodes": 58594, "parachute-box": 62669, "indent": 61500, "truck-field-un": 58766, "hourglass": 62036, "hourglass-empty": 62036, "mountain": 63228, "user-doctor": 61680, "user-md": 61680, "circle-info": 61530, "info-circle": 61530, "cloud-meatball": 63291, "camera": 61488, "camera-alt": 61488, "square-virus": 58744, "meteor": 63315, "car-on": 58589, "sleigh": 63436, "arrow-down-1-9": 61794, "sort-numeric-asc": 61794, "sort-numeric-down": 61794, "hand-holding-droplet": 62657, "hand-holding-water": 62657, "water": 63347, "calendar-check": 62068, "braille": 62113, "prescription-bottle-medical": 62598, "prescription-bottle-alt": 62598, "landmark": 63087, "truck": 61649, "crosshairs": 61531, "person-cane": 58684, "tent": 58749, "vest-patches": 57478, "check-double": 62816, "arrow-down-a-z": 61789, "sort-alpha-asc": 61789, "sort-alpha-down": 61789, "money-bill-wheat": 58666, "cookie": 62819, "arrow-rotate-left": 61666, "arrow-left-rotate": 61666, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "undo": 61666, "hard-drive": 61600, "hdd": 61600, "face-grin-squint-tears": 62854, "grin-squint-tears": 62854, "dumbbell": 62539, "rectangle-list": 61474, "list-alt": 61474, "tarp-droplet": 58748, "house-medical-circle-check": 58641, "person-skiing-nordic": 63434, "skiing-nordic": 63434, "calendar-plus": 62065, "plane-arrival": 62895, "circle-left": 62297, "arrow-alt-circle-left": 62297, "train-subway": 62009, "subway": 62009, "chart-gantt": 57572, "indian-rupee-sign": 57788, "indian-rupee": 57788, "inr": 57788, "crop-simple": 62821, "crop-alt": 62821, "money-bill-1": 62417, "money-bill-alt": 62417, "left-long": 62218, "long-arrow-alt-left": 62218, "dna": 62577, "virus-slash": 57461, "minus": 61544, "subtract": 61544, "chess": 62521, "arrow-left-long": 61815, "long-arrow-left": 61815, "plug-circle-check": 58716, "street-view": 61981, "franc-sign": 57743, "volume-off": 61478, "hands-asl-interpreting": 62115, "american-sign-language-interpreting": 62115, "asl-interpreting": 62115, "hands-american-sign-language-interpreting": 62115, "gear": 61459, "cog": 61459, "droplet-slash": 62919, "tint-slash": 62919, "mosque": 63096, "mosquito": 58667, "star-of-david": 63130, "person-military-rifle": 58699, "cart-shopping": 61562, "shopping-cart": 61562, "vials": 62611, "plug-circle-plus": 58719, "place-of-worship": 63103, "grip-vertical": 62862, "hexagon-nodes": 59033, "arrow-turn-up": 61768, "level-up": 61768, "u": 85, "square-root-variable": 63128, "square-root-alt": 63128, "clock": 61463, "clock-four": 61463, "backward-step": 61512, "step-backward": 61512, "pallet": 62594, "faucet": 57349, "baseball-bat-ball": 62514, "s": 83, "timeline": 58012, "keyboard": 61724, "caret-down": 61655, "house-chimney-medical": 63474, "clinic-medical": 63474, "temperature-three-quarters": 62152, "temperature-3": 62152, "thermometer-3": 62152, "thermometer-three-quarters": 62152, "mobile-screen": 62415, "mobile-android-alt": 62415, "plane-up": 57901, "piggy-bank": 62675, "battery-half": 62018, "battery-3": 62018, "mountain-city": 58670, "coins": 62750, "khanda": 63085, "sliders": 61918, "sliders-h": 61918, "folder-tree": 63490, "network-wired": 63231, "map-pin": 62070, "hamsa": 63077, "cent-sign": 58357, "flask": 61635, "person-pregnant": 58142, "wand-sparkles": 63275, "ellipsis-vertical": 61762, "ellipsis-v": 61762, "ticket": 61765, "power-off": 61457, "right-long": 62219, "long-arrow-alt-right": 62219, "flag-usa": 63309, "laptop-file": 58653, "tty": 61924, "teletype": 61924, "diagram-next": 58486, "person-rifle": 58702, "house-medical-circle-exclamation": 58642, "closed-captioning": 61962, "person-hiking": 63212, "hiking": 63212, "venus-double": 61990, "images": 62210, "calculator": 61932, "people-pulling": 58677, "n": 78, "cable-car": 63450, "tram": 63450, "cloud-rain": 63293, "building-circle-xmark": 58580, "ship": 61978, "arrows-down-to-line": 58552, "download": 61465, "face-grin": 62848, "grin": 62848, "delete-left": 62810, "backspace": 62810, "eye-dropper": 61947, "eye-dropper-empty": 61947, "eyedropper": 61947, "file-circle-check": 58784, "forward": 61518, "mobile": 62414, "mobile-android": 62414, "mobile-phone": 62414, "face-meh": 61722, "meh": 61722, "align-center": 61495, "book-skull": 63159, "book-dead": 63159, "id-card": 62146, "drivers-license": 62146, "outdent": 61499, "dedent": 61499, "heart-circle-exclamation": 58622, "house": 61461, "home": 61461, "home-alt": 61461, "home-lg-alt": 61461, "calendar-week": 63364, "laptop-medical": 63506, "b": 66, "file-medical": 62583, "dice-one": 62757, "kiwi-bird": 62773, "arrow-right-arrow-left": 61676, "exchange": 61676, "rotate-right": 62201, "redo-alt": 62201, "rotate-forward": 62201, "utensils": 62183, "cutlery": 62183, "arrow-up-wide-short": 61793, "sort-amount-up": 61793, "mill-sign": 57837, "bowl-rice": 58091, "skull": 62796, "tower-broadcast": 62745, "broadcast-tower": 62745, "truck-pickup": 63036, "up-long": 62220, "long-arrow-alt-up": 62220, "stop": 61517, "code-merge": 62343, "upload": 61587, "hurricane": 63313, "mound": 58669, "toilet-portable": 58755, "compact-disc": 62751, "file-arrow-down": 62829, "file-download": 62829, "caravan": 63743, "shield-cat": 58738, "bolt": 61671, "zap": 61671, "glass-water": 58612, "oil-well": 58674, "vault": 58053, "mars": 61986, "toilet": 63448, "plane-circle-xmark": 58711, "yen-sign": 61783, "cny": 61783, "jpy": 61783, "rmb": 61783, "yen": 61783, "ruble-sign": 61784, "rouble": 61784, "rub": 61784, "ruble": 61784, "sun": 61829, "guitar": 63398, "face-laugh-wink": 62876, "laugh-wink": 62876, "horse-head": 63403, "bore-hole": 58563, "industry": 62069, "circle-down": 62296, "arrow-alt-circle-down": 62296, "arrows-turn-to-dots": 58561, "florin-sign": 57732, "arrow-down-short-wide": 63620, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "less-than": 60, "angle-down": 61703, "car-tunnel": 58590, "head-side-cough": 57441, "grip-lines": 63396, "thumbs-down": 61797, "user-lock": 62722, "arrow-right-long": 61816, "long-arrow-right": 61816, "anchor-circle-xmark": 58540, "ellipsis": 61761, "ellipsis-h": 61761, "chess-pawn": 62531, "kit-medical": 62585, "first-aid": 62585, "person-through-window": 58793, "toolbox": 62802, "hands-holding-circle": 58619, "bug": 61832, "credit-card": 61597, "credit-card-alt": 61597, "car": 61881, "automobile": 61881, "hand-holding-hand": 58615, "book-open-reader": 62938, "book-reader": 62938, "mountain-sun": 58671, "arrows-left-right-to-line": 58554, "dice-d20": 63183, "truck-droplet": 58764, "file-circle-xmark": 58785, "temperature-arrow-up": 57408, "temperature-up": 57408, "medal": 62882, "bed": 62006, "square-h": 61693, "h-square": 61693, "podcast": 62158, "temperature-full": 62151, "temperature-4": 62151, "thermometer-4": 62151, "thermometer-full": 62151, "bell": 61683, "superscript": 61739, "plug-circle-xmark": 58720, "star-of-life": 63009, "phone-slash": 62429, "paint-roller": 62890, "handshake-angle": 62660, "hands-helping": 62660, "location-dot": 62405, "map-marker-alt": 62405, "file": 61787, "greater-than": 62, "person-swimming": 62916, "swimmer": 62916, "arrow-down": 61539, "droplet": 61507, "tint": 61507, "eraser": 61741, "earth-americas": 62845, "earth": 62845, "earth-america": 62845, "globe-americas": 62845, "person-burst": 58683, "dove": 62650, "battery-empty": 62020, "battery-0": 62020, "socks": 63126, "inbox": 61468, "section": 58439, "gauge-high": 63013, "tachometer-alt": 63013, "tachometer-alt-fast": 63013, "envelope-open-text": 63064, "hospital": 61688, "hospital-alt": 61688, "hospital-wide": 61688, "wine-bottle": 63279, "chess-rook": 62535, "bars-staggered": 62800, "reorder": 62800, "stream": 62800, "dharmachakra": 63061, "hotdog": 63503, "person-walking-with-cane": 62109, "blind": 62109, "drum": 62825, "ice-cream": 63504, "heart-circle-bolt": 58620, "fax": 61868, "paragraph": 61917, "check-to-slot": 63346, "vote-yea": 63346, "star-half": 61577, "boxes-stacked": 62568, "boxes": 62568, "boxes-alt": 62568, "link": 61633, "chain": 61633, "ear-listen": 62114, "assistive-listening-systems": 62114, "tree-city": 58759, "play": 61515, "font": 61489, "table-cells-row-lock": 59002, "rupiah-sign": 57917, "magnifying-glass": 61442, "search": 61442, "table-tennis-paddle-ball": 62557, "ping-pong-paddle-ball": 62557, "table-tennis": 62557, "person-dots-from-line": 62576, "diagnoses": 62576, "trash-can-arrow-up": 63530, "trash-restore-alt": 63530, "naira-sign": 57846, "cart-arrow-down": 61976, "walkie-talkie": 63727, "file-pen": 62236, "file-edit": 62236, "receipt": 62787, "square-pen": 61771, "pen-square": 61771, "pencil-square": 61771, "suitcase-rolling": 62913, "person-circle-exclamation": 58687, "chevron-down": 61560, "battery-full": 62016, "battery": 62016, "battery-5": 62016, "skull-crossbones": 63252, "code-compare": 57658, "list-ul": 61642, "list-dots": 61642, "school-lock": 58735, "tower-cell": 58757, "down-long": 62217, "long-arrow-alt-down": 62217, "ranking-star": 58721, "chess-king": 62527, "person-harassing": 58697, "brazilian-real-sign": 58476, "landmark-dome": 63314, "landmark-alt": 63314, "arrow-up": 61538, "tv": 62060, "television": 62060, "tv-alt": 62060, "shrimp": 58440, "list-check": 61614, "tasks": 61614, "jug-detergent": 58649, "circle-user": 62141, "user-circle": 62141, "user-shield": 62725, "wind": 63278, "car-burst": 62945, "car-crash": 62945, "y": 89, "person-snowboarding": 63438, "snowboarding": 63438, "truck-fast": 62603, "shipping-fast": 62603, "fish": 62840, "user-graduate": 62721, "circle-half-stroke": 61506, "adjust": 61506, "clapperboard": 57649, "circle-radiation": 63418, "radiation-alt": 63418, "baseball": 62515, "baseball-ball": 62515, "jet-fighter-up": 58648, "diagram-project": 62786, "project-diagram": 62786, "copy": 61637, "volume-xmark": 63145, "volume-mute": 63145, "volume-times": 63145, "hand-sparkles": 57437, "grip": 62861, "grip-horizontal": 62861, "share-from-square": 61773, "share-square": 61773, "child-combatant": 58592, "child-rifle": 58592, "gun": 57755, "square-phone": 61592, "phone-square": 61592, "plus": 43, "add": 43, "expand": 61541, "computer": 58597, "xmark": 61453, "close": 61453, "multiply": 61453, "remove": 61453, "times": 61453, "arrows-up-down-left-right": 61511, "arrows": 61511, "chalkboard-user": 62748, "chalkboard-teacher": 62748, "peso-sign": 57890, "building-shield": 58584, "baby": 63356, "users-line": 58770, "quote-left": 61709, "quote-left-alt": 61709, "tractor": 63266, "trash-arrow-up": 63529, "trash-restore": 63529, "arrow-down-up-lock": 58544, "lines-leaning": 58654, "ruler-combined": 62790, "copyright": 61945, "equals": 61, "blender": 62743, "teeth": 63022, "shekel-sign": 61963, "ils": 61963, "shekel": 61963, "sheqel": 61963, "sheqel-sign": 61963, "map": 62073, "rocket": 61749, "photo-film": 63612, "photo-video": 63612, "folder-minus": 63069, "hexagon-nodes-bolt": 59034, "store": 62798, "arrow-trend-up": 57496, "plug-circle-minus": 58718, "sign-hanging": 62681, "sign": 62681, "bezier-curve": 62811, "bell-slash": 61942, "tablet": 62459, "tablet-android": 62459, "school-flag": 58734, "fill": 62837, "angle-up": 61702, "drumstick-bite": 63191, "holly-berry": 63402, "chevron-left": 61523, "bacteria": 57433, "hand-lizard": 62040, "notdef": 57854, "disease": 63482, "briefcase-medical": 62569, "genderless": 61997, "chevron-right": 61524, "retweet": 61561, "car-rear": 62942, "car-alt": 62942, "pump-soap": 57451, "video-slash": 62690, "battery-quarter": 62019, "battery-2": 62019, "radio": 63703, "baby-carriage": 63357, "carriage-baby": 63357, "traffic-light": 63031, "thermometer": 62609, "vr-cardboard": 63273, "hand-middle-finger": 63494, "percent": 37, "percentage": 37, "truck-moving": 62687, "glass-water-droplet": 58613, "display": 57699, "face-smile": 61720, "smile": 61720, "thumbtack": 61581, "thumb-tack": 61581, "trophy": 61585, "person-praying": 63107, "pray": 63107, "hammer": 63203, "hand-peace": 62043, "rotate": 62193, "sync-alt": 62193, "spinner": 61712, "robot": 62788, "peace": 63100, "gears": 61573, "cogs": 61573, "warehouse": 62612, "arrow-up-right-dots": 58551, "splotch": 62908, "face-grin-hearts": 62852, "grin-hearts": 62852, "dice-four": 62756, "sim-card": 63428, "transgender": 61989, "transgender-alt": 61989, "mercury": 61987, "arrow-turn-down": 61769, "level-down": 61769, "person-falling-burst": 58695, "award": 62809, "ticket-simple": 62463, "ticket-alt": 62463, "building": 61869, "angles-left": 61696, "angle-double-left": 61696, "qrcode": 61481, "clock-rotate-left": 61914, "history": 61914, "face-grin-beam-sweat": 62851, "grin-beam-sweat": 62851, "file-export": 62830, "arrow-right-from-file": 62830, "shield": 61746, "shield-blank": 61746, "arrow-up-short-wide": 63621, "sort-amount-up-alt": 63621, "comment-nodes": 59030, "house-medical": 58290, "golf-ball-tee": 62544, "golf-ball": 62544, "circle-chevron-left": 61751, "chevron-circle-left": 61751, "house-chimney-window": 57357, "pen-nib": 62893, "tent-arrow-turn-left": 58752, "tents": 58754, "wand-magic": 61648, "magic": 61648, "dog": 63187, "carrot": 63367, "moon": 61830, "wine-glass-empty": 62926, "wine-glass-alt": 62926, "cheese": 63471, "yin-yang": 63149, "music": 61441, "code-commit": 62342, "temperature-low": 63339, "person-biking": 63562, "biking": 63562, "broom": 62746, "shield-heart": 58740, "gopuram": 63076, "earth-oceania": 58491, "globe-oceania": 58491, "square-xmark": 62163, "times-square": 62163, "xmark-square": 62163, "hashtag": 35, "up-right-and-down-left-from-center": 62500, "expand-alt": 62500, "oil-can": 62995, "t": 84, "hippo": 63213, "chart-column": 57571, "infinity": 62772, "vial-circle-check": 58774, "person-arrow-down-to-line": 58680, "voicemail": 63639, "fan": 63587, "person-walking-luggage": 58708, "up-down": 62264, "arrows-alt-v": 62264, "cloud-moon-rain": 63292, "calendar": 61747, "trailer": 57409, "bahai": 63078, "haykal": 63078, "sd-card": 63426, "dragon": 63189, "shoe-prints": 62795, "circle-plus": 61525, "plus-circle": 61525, "face-grin-tongue-wink": 62859, "grin-tongue-wink": 62859, "hand-holding": 62653, "plug-circle-exclamation": 58717, "link-slash": 61735, "chain-broken": 61735, "chain-slash": 61735, "unlink": 61735, "clone": 62029, "person-walking-arrow-loop-left": 58705, "arrow-up-z-a": 63618, "sort-alpha-up-alt": 63618, "fire-flame-curved": 63460, "fire-alt": 63460, "tornado": 63343, "file-circle-plus": 58516, "book-quran": 63111, "quran": 63111, "anchor": 61757, "border-all": 63564, "face-angry": 62806, "angry": 62806, "cookie-bite": 62820, "arrow-trend-down": 57495, "rss": 61598, "feed": 61598, "draw-polygon": 62958, "scale-balanced": 62030, "balance-scale": 62030, "gauge-simple-high": 63018, "tachometer": 63018, "tachometer-fast": 63018, "shower": 62156, "desktop": 62352, "desktop-alt": 62352, "m": 77, "table-list": 61451, "th-list": 61451, "comment-sms": 63437, "sms": 63437, "book": 61485, "user-plus": 62004, "check": 61452, "battery-three-quarters": 62017, "battery-4": 62017, "house-circle-check": 58633, "angle-left": 61700, "diagram-successor": 58490, "truck-arrow-right": 58763, "arrows-split-up-and-left": 58556, "hand-fist": 63198, "fist-raised": 63198, "cloud-moon": 63171, "briefcase": 61617, "person-falling": 58694, "image-portrait": 62432, "portrait": 62432, "user-tag": 62727, "rug": 58729, "earth-europe": 63394, "globe-europe": 63394, "cart-flatbed-suitcase": 62877, "luggage-cart": 62877, "rectangle-xmark": 62480, "rectangle-times": 62480, "times-rectangle": 62480, "window-close": 62480, "baht-sign": 57516, "book-open": 62744, "book-journal-whills": 63082, "journal-whills": 63082, "handcuffs": 58616, "triangle-exclamation": 61553, "exclamation-triangle": 61553, "warning": 61553, "database": 61888, "share": 61540, "mail-forward": 61540, "bottle-droplet": 58564, "mask-face": 57815, "hill-rockslide": 58632, "right-left": 62306, "exchange-alt": 62306, "paper-plane": 61912, "road-circle-exclamation": 58725, "dungeon": 63193, "align-right": 61496, "money-bill-1-wave": 62779, "money-bill-wave-alt": 62779, "life-ring": 61901, "hands": 62119, "sign-language": 62119, "signing": 62119, "calendar-day": 63363, "water-ladder": 62917, "ladder-water": 62917, "swimming-pool": 62917, "arrows-up-down": 61565, "arrows-v": 61565, "face-grimace": 62847, "grimace": 62847, "wheelchair-move": 58062, "wheelchair-alt": 58062, "turn-down": 62398, "level-down-alt": 62398, "person-walking-arrow-right": 58706, "square-envelope": 61849, "envelope-square": 61849, "dice": 62754, "bowling-ball": 62518, "brain": 62940, "bandage": 62562, "band-aid": 62562, "calendar-minus": 62066, "circle-xmark": 61527, "times-circle": 61527, "xmark-circle": 61527, "gifts": 63388, "hotel": 62868, "earth-asia": 62846, "globe-asia": 62846, "id-card-clip": 62591, "id-card-alt": 62591, "magnifying-glass-plus": 61454, "search-plus": 61454, "thumbs-up": 61796, "user-clock": 62717, "hand-dots": 62561, "allergies": 62561, "file-invoice": 62832, "window-minimize": 62161, "mug-saucer": 61684, "coffee": 61684, "brush": 62813, "file-half-dashed": 59032, "mask": 63226, "magnifying-glass-minus": 61456, "search-minus": 61456, "ruler-vertical": 62792, "user-large": 62470, "user-alt": 62470, "train-tram": 58804, "user-nurse": 63535, "syringe": 62606, "cloud-sun": 63172, "stopwatch-20": 57455, "square-full": 62556, "magnet": 61558, "jar": 58646, "note-sticky": 62025, "sticky-note": 62025, "bug-slash": 58512, "arrow-up-from-water-pump": 58550, "bone": 62935, "table-cells-row-unlock": 59025, "user-injured": 63272, "face-sad-tear": 62900, "sad-tear": 62900, "plane": 61554, "tent-arrows-down": 58753, "exclamation": 33, "arrows-spin": 58555, "print": 61487, "turkish-lira-sign": 58043, "try": 58043, "turkish-lira": 58043, "dollar-sign": 36, "dollar": 36, "usd": 36, "x": 88, "magnifying-glass-dollar": 63112, "search-dollar": 63112, "users-gear": 62729, "users-cog": 62729, "person-military-pointing": 58698, "building-columns": 61852, "bank": 61852, "institution": 61852, "museum": 61852, "university": 61852, "umbrella": 61673, "trowel": 58761, "d": 68, "stapler": 58799, "masks-theater": 63024, "theater-masks": 63024, "kip-sign": 57796, "hand-point-left": 61605, "handshake-simple": 62662, "handshake-alt": 62662, "jet-fighter": 61691, "fighter-jet": 61691, "square-share-nodes": 61921, "share-alt-square": 61921, "barcode": 61482, "plus-minus": 58428, "video": 61501, "video-camera": 61501, "graduation-cap": 61853, "mortar-board": 61853, "hand-holding-medical": 57436, "person-circle-check": 58686, "turn-up": 62399, "level-up-alt": 62399, "monero": 62416, "hooli": 62503, "yelp": 61929, "cc-visa": 61936, "lastfm": 61954, "shopware": 62901, "creative-commons-nc": 62696, "aws": 62325, "redhat": 63420, "yoast": 62129, "cloudflare": 57469, "ups": 63456, "pixiv": 58944, "wpexplorer": 62174, "dyalog": 62361, "bity": 62330, "stackpath": 63554, "buysellads": 61965, "first-order": 62128, "modx": 62085, "guilded": 57470, "vnv": 62475, "square-js": 62393, "js-square": 62393, "microsoft": 62410, "qq": 61910, "orcid": 63698, "java": 62692, "invision": 63408, "creative-commons-pd-alt": 62701, "centercode": 62336, "glide-g": 62118, "drupal": 61865, "jxl": 59003, "dart-lang": 59027, "hire-a-helper": 62384, "creative-commons-by": 62695, "unity": 57417, "whmcs": 62477, "rocketchat": 62440, "vk": 61833, "untappd": 62469, "mailchimp": 62878, "css3-alt": 62347, "square-reddit": 61858, "reddit-square": 61858, "vimeo-v": 62077, "contao": 62061, "square-font-awesome": 58797, "deskpro": 62351, "brave": 58940, "sistrix": 62446, "square-instagram": 57429, "instagram-square": 57429, "battle-net": 63541, "the-red-yeti": 63133, "square-hacker-news": 62383, "hacker-news-square": 62383, "edge": 62082, "threads": 58904, "napster": 62418, "square-snapchat": 62125, "snapchat-square": 62125, "google-plus-g": 61653, "artstation": 63354, "markdown": 62991, "sourcetree": 63443, "google-plus": 62131, "diaspora": 63377, "foursquare": 61824, "stack-overflow": 61804, "github-alt": 61715, "phoenix-squadron": 62737, "pagelines": 61836, "algolia": 62316, "red-river": 62435, "creative-commons-sa": 62703, "safari": 62055, "google": 61856, "square-font-awesome-stroke": 62300, "font-awesome-alt": 62300, "atlassian": 63355, "linkedin-in": 61665, "digital-ocean": 62353, "nimblr": 62888, "chromecast": 63544, "evernote": 63545, "hacker-news": 61908, "creative-commons-sampling": 62704, "adversal": 62314, "creative-commons": 62046, "watchman-monitoring": 57479, "fonticons": 62080, "weixin": 61911, "shirtsinbulk": 61972, "codepen": 61899, "git-alt": 63553, "lyft": 62403, "rev": 62898, "windows": 61818, "wizards-of-the-coast": 63280, "square-viadeo": 62122, "viadeo-square": 62122, "meetup": 62176, "centos": 63369, "adn": 61808, "cloudsmith": 62340, "opensuse": 58923, "pied-piper-alt": 61864, "square-dribbble": 62359, "dribbble-square": 62359, "codiepie": 62084, "node": 62489, "mix": 62411, "steam": 61878, "cc-apple-pay": 62486, "scribd": 62090, "debian": 58891, "openid": 61851, "instalod": 57473, "files-pinwheel": 59039, "expeditedssl": 62014, "sellcast": 62170, "square-twitter": 61569, "twitter-square": 61569, "r-project": 62711, "delicious": 61861, "freebsd": 62372, "vuejs": 62495, "accusoft": 62313, "ioxhost": 61960, "fonticons-fi": 62370, "app-store": 62319, "cc-mastercard": 61937, "itunes-note": 62389, "golang": 58383, "kickstarter": 62395, "square-kickstarter": 62395, "grav": 62166, "weibo": 61834, "uncharted": 57476, "firstdraft": 62369, "square-youtube": 62513, "youtube-square": 62513, "wikipedia-w": 62054, "wpressr": 62436, "rendact": 62436, "angellist": 61961, "galactic-republic": 62732, "nfc-directional": 58672, "skype": 61822, "joget": 62391, "fedora": 63384, "stripe-s": 62506, "meta": 58523, "laravel": 62397, "hotjar": 62385, "bluetooth-b": 62100, "square-letterboxd": 58926, "sticker-mule": 62455, "creative-commons-zero": 62707, "hips": 62546, "css": 59042, "behance": 61876, "reddit": 61857, "discord": 62354, "chrome": 62056, "app-store-ios": 62320, "cc-discover": 61938, "wpbeginner": 62103, "confluence": 63373, "shoelace": 58892, "mdb": 63690, "dochub": 62356, "accessible-icon": 62312, "ebay": 62708, "amazon": 62064, "unsplash": 57468, "yarn": 63459, "square-steam": 61879, "steam-square": 61879, "500px": 62062, "square-vimeo": 61844, "vimeo-square": 61844, "asymmetrik": 62322, "font-awesome": 62132, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "gratipay": 61828, "apple": 61817, "hive": 57471, "gitkraken": 62374, "keybase": 62709, "apple-pay": 62485, "padlet": 58528, "amazon-pay": 62508, "square-github": 61586, "github-square": 61586, "stumbleupon": 61860, "fedex": 63383, "phoenix-framework": 62428, "shopify": 57431, "neos": 62994, "square-threads": 58905, "hackerrank": 62967, "researchgate": 62712, "swift": 63713, "angular": 62496, "speakap": 62451, "angrycreative": 62318, "y-combinator": 62011, "empire": 61905, "envira": 62105, "google-scholar": 58939, "square-gitlab": 58798, "gitlab-square": 58798, "studiovinari": 62456, "pied-piper": 62126, "wordpress": 61850, "product-hunt": 62088, "firefox": 62057, "linode": 62136, "goodreads": 62376, "square-odnoklassniki": 62052, "odnoklassniki-square": 62052, "jsfiddle": 61900, "sith": 62738, "themeisle": 62130, "page4": 62423, "hashnode": 58521, "react": 62491, "cc-paypal": 61940, "squarespace": 62910, "cc-stripe": 61941, "creative-commons-share": 62706, "bitcoin": 62329, "keycdn": 62394, "opera": 62058, "itch-io": 63546, "umbraco": 63720, "galactic-senate": 62733, "ubuntu": 63455, "draft2digital": 62358, "stripe": 62505, "houzz": 62076, "gg": 62048, "dhl": 63376, "square-pinterest": 61651, "pinterest-square": 61651, "xing": 61800, "blackberry": 62331, "creative-commons-pd": 62700, "playstation": 62431, "quinscape": 62553, "less": 62493, "blogger-b": 62333, "opencart": 62013, "vine": 61898, "signal-messenger": 58979, "paypal": 61933, "gitlab": 62102, "typo3": 62507, "reddit-alien": 62081, "yahoo": 61854, "dailymotion": 57426, "affiliatetheme": 62315, "pied-piper-pp": 61863, "bootstrap": 63542, "odnoklassniki": 62051, "nfc-symbol": 58673, "mintbit": 58927, "ethereum": 62510, "speaker-deck": 63548, "creative-commons-nc-eu": 62697, "patreon": 62425, "avianex": 62324, "ello": 62961, "gofore": 62375, "bimobject": 62328, "brave-reverse": 58941, "facebook-f": 62366, "square-google-plus": 61652, "google-plus-square": 61652, "web-awesome": 59010, "mandalorian": 62735, "first-order-alt": 62730, "osi": 62490, "google-wallet": 61934, "d-and-d-beyond": 63178, "periscope": 62426, "fulcrum": 62731, "cloudscale": 62339, "forumbee": 61969, "mizuni": 62412, "schlix": 62442, "square-xing": 61801, "xing-square": 61801, "bandcamp": 62165, "wpforms": 62104, "cloudversify": 62341, "usps": 63457, "megaport": 62883, "magento": 62404, "spotify": 61884, "optin-monster": 62012, "fly": 62487, "square-bluesky": 59043, "aviato": 62497, "itunes": 62388, "cuttlefish": 62348, "blogger": 62332, "flickr": 61806, "viber": 62473, "soundcloud": 61886, "digg": 61862, "tencent-weibo": 61909, "letterboxd": 58925, "symfony": 63549, "maxcdn": 61750, "etsy": 62167, "facebook-messenger": 62367, "audible": 62323, "think-peaks": 63281, "bilibili": 58329, "erlang": 62365, "x-twitter": 58907, "cotton-bureau": 63646, "dashcube": 61968, "42-group": 57472, "innosoft": 57472, "stack-exchange": 61837, "elementor": 62512, "square-pied-piper": 57374, "pied-piper-square": 57374, "creative-commons-nd": 62699, "palfed": 62424, "superpowers": 62173, "resolving": 62439, "xbox": 62482, "square-web-awesome-stroke": 59012, "searchengin": 62443, "tiktok": 57467, "square-facebook": 61570, "facebook-square": 61570, "renren": 61835, "linux": 61820, "glide": 62117, "linkedin": 61580, "hubspot": 62386, "deploydog": 62350, "twitch": 61928, "flutter": 59028, "ravelry": 62169, "mixer": 57430, "square-lastfm": 61955, "lastfm-square": 61955, "vimeo": 62474, "mendeley": 63411, "uniregistry": 62468, "figma": 63385, "creative-commons-remix": 62702, "cc-amazon-pay": 62509, "dropbox": 61803, "instagram": 61805, "cmplid": 58208, "upwork": 58945, "facebook": 61594, "gripfire": 62380, "jedi-order": 62734, "uikit": 62467, "fort-awesome-alt": 62371, "phabricator": 62427, "ussunnah": 62471, "earlybirds": 62362, "trade-federation": 62739, "autoprefixer": 62492, "whatsapp": 62002, "square-upwork": 59004, "slideshare": 61927, "google-play": 62379, "viadeo": 62121, "line": 62400, "google-drive": 62378, "servicestack": 62444, "simplybuilt": 61973, "bitbucket": 61809, "imdb": 62168, "deezer": 57463, "raspberry-pi": 63419, "jira": 63409, "docker": 62357, "screenpal": 58736, "bluetooth": 62099, "gitter": 62502, "d-and-d": 62349, "microblog": 57370, "cc-diners-club": 62028, "gg-circle": 62049, "pied-piper-hat": 62693, "kickstarter-k": 62396, "yandex": 62483, "readme": 62677, "html5": 61755, "sellsy": 61971, "square-web-awesome": 59011, "sass": 62494, "wirsindhandwerk": 58064, "wsh": 58064, "buromobelexperte": 62335, "salesforce": 63547, "octopus-deploy": 57474, "medapps": 62406, "ns8": 62421, "pinterest-p": 62001, "apper": 62321, "fort-awesome": 62086, "waze": 63551, "bluesky": 58993, "cc-jcb": 62027, "snapchat": 62123, "snapchat-ghost": 62123, "fantasy-flight-games": 63196, "rust": 57466, "wix": 62927, "square-behance": 61877, "behance-square": 61877, "supple": 62457, "webflow": 58972, "rebel": 61904, "css3": 61756, "staylinked": 62453, "kaggle": 62970, "space-awesome": 58796, "deviantart": 61885, "cpanel": 62344, "goodreads-g": 62377, "square-git": 61906, "git-square": 61906, "square-tumblr": 61812, "tumblr-square": 61812, "trello": 61825, "creative-commons-nc-jp": 62698, "get-pocket": 62053, "perbyte": 57475, "grunt": 62381, "weebly": 62924, "connectdevelop": 61966, "leanpub": 61970, "black-tie": 62078, "themeco": 62918, "python": 62434, "android": 61819, "bots": 58176, "free-code-camp": 62149, "hornbill": 62866, "js": 62392, "ideal": 57363, "git": 61907, "dev": 63180, "sketch": 63430, "yandex-international": 62484, "cc-amex": 61939, "uber": 62466, "github": 61595, "php": 62551, "alipay": 63042, "youtube": 61799, "skyatlas": 61974, "firefox-browser": 57351, "replyd": 62438, "suse": 63446, "jenkins": 62390, "twitter": 61593, "rockrms": 62441, "pinterest": 61650, "buffer": 63543, "npm": 62420, "yammer": 63552, "btc": 61786, "dribbble": 61821, "stumbleupon-circle": 61859, "internet-explorer": 62059, "stubber": 58823, "telegram": 62150, "telegram-plane": 62150, "old-republic": 62736, "odysee": 58822, "square-whatsapp": 62476, "whatsapp-square": 62476, "node-js": 62419, "edge-legacy": 57464, "slack": 61848, "slack-hash": 61848, "medrt": 62408, "usb": 62087, "tumblr": 61811, "vaadin": 62472, "quora": 62148, "square-x-twitter": 58906, "reacteurope": 63325, "medium": 62010, "medium-m": 62010, "amilia": 62317, "mixcloud": 62089, "flipboard": 62541, "viacoin": 62007, "critical-role": 63177, "sitrox": 58442, "discourse": 62355, "joomla": 61866, "mastodon": 62710, "airbnb": 63540, "wolf-pack-battalion": 62740, "buy-n-large": 63654, "gulp": 62382, "creative-commons-sampling-plus": 62705, "strava": 62504, "ember": 62499, "canadian-maple-leaf": 63365, "teamspeak": 62713, "pushed": 62433, "wordpress-simple": 62481, "nutritionix": 62422, "wodu": 57480, "google-pay": 57465, "intercom": 63407, "zhihu": 63039, "korvue": 62511, "pix": 58426, "steam-symbol": 62454 } ================================================ FILE: packages/fontawesome6/glyphmaps/FontAwesome6_brand.json ================================================ {"42-group":57472,"500px":62062,"accessible-icon":62312,"accusoft":62313,"adn":61808,"adversal":62314,"affiliatetheme":62315,"airbnb":63540,"algolia":62316,"alipay":63042,"amazon-pay":62508,"amazon":62064,"amilia":62317,"android":61819,"angellist":61961,"angrycreative":62318,"angular":62496,"app-store-ios":62320,"app-store":62319,"apper":62321,"apple-pay":62485,"apple":61817,"artstation":63354,"asymmetrik":62322,"atlassian":63355,"audible":62323,"autoprefixer":62492,"avianex":62324,"aviato":62497,"aws":62325,"bandcamp":62165,"battle-net":63541,"behance":61876,"bilibili":58329,"bimobject":62328,"bitbucket":61809,"bitcoin":62329,"bity":62330,"black-tie":62078,"blackberry":62331,"blogger-b":62333,"blogger":62332,"bluesky":58993,"bluetooth-b":62100,"bluetooth":62099,"bootstrap":63542,"bots":58176,"brave-reverse":58941,"brave":58940,"btc":61786,"buffer":63543,"buromobelexperte":62335,"buy-n-large":63654,"buysellads":61965,"canadian-maple-leaf":63365,"cc-amazon-pay":62509,"cc-amex":61939,"cc-apple-pay":62486,"cc-diners-club":62028,"cc-discover":61938,"cc-jcb":62027,"cc-mastercard":61937,"cc-paypal":61940,"cc-stripe":61941,"cc-visa":61936,"centercode":62336,"centos":63369,"chrome":62056,"chromecast":63544,"cloudflare":57469,"cloudscale":62339,"cloudsmith":62340,"cloudversify":62341,"cmplid":58208,"codepen":61899,"codiepie":62084,"confluence":63373,"connectdevelop":61966,"contao":62061,"cotton-bureau":63646,"cpanel":62344,"creative-commons-by":62695,"creative-commons-nc-eu":62697,"creative-commons-nc-jp":62698,"creative-commons-nc":62696,"creative-commons-nd":62699,"creative-commons-pd-alt":62701,"creative-commons-pd":62700,"creative-commons-remix":62702,"creative-commons-sa":62703,"creative-commons-sampling-plus":62705,"creative-commons-sampling":62704,"creative-commons-share":62706,"creative-commons-zero":62707,"creative-commons":62046,"critical-role":63177,"css":59042,"css3-alt":62347,"css3":61756,"cuttlefish":62348,"d-and-d-beyond":63178,"d-and-d":62349,"dailymotion":57426,"dart-lang":59027,"dashcube":61968,"debian":58891,"deezer":57463,"delicious":61861,"deploydog":62350,"deskpro":62351,"dev":63180,"deviantart":61885,"dhl":63376,"diaspora":63377,"digg":61862,"digital-ocean":62353,"discord":62354,"discourse":62355,"dochub":62356,"docker":62357,"draft2digital":62358,"dribbble":61821,"dropbox":61803,"drupal":61865,"dyalog":62361,"earlybirds":62362,"ebay":62708,"edge-legacy":57464,"edge":62082,"elementor":62512,"ello":62961,"ember":62499,"empire":61905,"envira":62105,"erlang":62365,"ethereum":62510,"etsy":62167,"evernote":63545,"expeditedssl":62014,"facebook-f":62366,"facebook-messenger":62367,"facebook":61594,"fantasy-flight-games":63196,"fedex":63383,"fedora":63384,"figma":63385,"files-pinwheel":59039,"firefox-browser":57351,"firefox":62057,"first-order-alt":62730,"first-order":62128,"firstdraft":62369,"flickr":61806,"flipboard":62541,"flutter":59028,"fly":62487,"font-awesome":62132,"fonticons-fi":62370,"fonticons":62080,"fort-awesome-alt":62371,"fort-awesome":62086,"forumbee":61969,"foursquare":61824,"free-code-camp":62149,"freebsd":62372,"fulcrum":62731,"galactic-republic":62732,"galactic-senate":62733,"get-pocket":62053,"gg-circle":62049,"gg":62048,"git-alt":63553,"git":61907,"github-alt":61715,"github":61595,"gitkraken":62374,"gitlab":62102,"gitter":62502,"glide-g":62118,"glide":62117,"gofore":62375,"golang":58383,"goodreads-g":62377,"goodreads":62376,"google-drive":62378,"google-pay":57465,"google-play":62379,"google-plus-g":61653,"google-plus":62131,"google-scholar":58939,"google-wallet":61934,"google":61856,"gratipay":61828,"grav":62166,"gripfire":62380,"grunt":62381,"guilded":57470,"gulp":62382,"hacker-news":61908,"hackerrank":62967,"hashnode":58521,"hips":62546,"hire-a-helper":62384,"hive":57471,"hooli":62503,"hornbill":62866,"hotjar":62385,"houzz":62076,"html5":61755,"hubspot":62386,"ideal":57363,"imdb":62168,"instagram":61805,"instalod":57473,"intercom":63407,"internet-explorer":62059,"invision":63408,"ioxhost":61960,"itch-io":63546,"itunes-note":62389,"itunes":62388,"java":62692,"jedi-order":62734,"jenkins":62390,"jira":63409,"joget":62391,"joomla":61866,"js":62392,"jsfiddle":61900,"jxl":59003,"kaggle":62970,"keybase":62709,"keycdn":62394,"kickstarter-k":62396,"kickstarter":62395,"korvue":62511,"laravel":62397,"lastfm":61954,"leanpub":61970,"less":62493,"letterboxd":58925,"line":62400,"linkedin-in":61665,"linkedin":61580,"linode":62136,"linux":61820,"lyft":62403,"magento":62404,"mailchimp":62878,"mandalorian":62735,"markdown":62991,"mastodon":62710,"maxcdn":61750,"mdb":63690,"medapps":62406,"medium":62010,"medrt":62408,"meetup":62176,"megaport":62883,"mendeley":63411,"meta":58523,"microblog":57370,"microsoft":62410,"mintbit":58927,"mix":62411,"mixcloud":62089,"mixer":57430,"mizuni":62412,"modx":62085,"monero":62416,"napster":62418,"neos":62994,"nfc-directional":58672,"nfc-symbol":58673,"nimblr":62888,"node-js":62419,"node":62489,"npm":62420,"ns8":62421,"nutritionix":62422,"octopus-deploy":57474,"odnoklassniki":62051,"odysee":58822,"old-republic":62736,"opencart":62013,"openid":61851,"opensuse":58923,"opera":62058,"optin-monster":62012,"orcid":63698,"osi":62490,"padlet":58528,"page4":62423,"pagelines":61836,"palfed":62424,"patreon":62425,"paypal":61933,"perbyte":57475,"periscope":62426,"phabricator":62427,"phoenix-framework":62428,"phoenix-squadron":62737,"php":62551,"pied-piper-alt":61864,"pied-piper-hat":62693,"pied-piper-pp":61863,"pied-piper":62126,"pinterest-p":62001,"pinterest":61650,"pix":58426,"pixiv":58944,"playstation":62431,"product-hunt":62088,"pushed":62433,"python":62434,"qq":61910,"quinscape":62553,"quora":62148,"r-project":62711,"raspberry-pi":63419,"ravelry":62169,"react":62491,"reacteurope":63325,"readme":62677,"rebel":61904,"red-river":62435,"reddit-alien":62081,"reddit":61857,"redhat":63420,"renren":61835,"replyd":62438,"researchgate":62712,"resolving":62439,"rev":62898,"rocketchat":62440,"rockrms":62441,"rust":57466,"safari":62055,"salesforce":63547,"sass":62494,"schlix":62442,"screenpal":58736,"scribd":62090,"searchengin":62443,"sellcast":62170,"sellsy":61971,"servicestack":62444,"shirtsinbulk":61972,"shoelace":58892,"shopify":57431,"shopware":62901,"signal-messenger":58979,"simplybuilt":61973,"sistrix":62446,"sith":62738,"sitrox":58442,"sketch":63430,"skyatlas":61974,"skype":61822,"slack":61848,"slideshare":61927,"snapchat":62123,"soundcloud":61886,"sourcetree":63443,"space-awesome":58796,"speakap":62451,"speaker-deck":63548,"spotify":61884,"square-behance":61877,"square-bluesky":59043,"square-dribbble":62359,"square-facebook":61570,"square-font-awesome-stroke":62300,"square-font-awesome":58797,"square-git":61906,"square-github":61586,"square-gitlab":58798,"square-google-plus":61652,"square-hacker-news":62383,"square-instagram":57429,"square-js":62393,"square-lastfm":61955,"square-letterboxd":58926,"square-odnoklassniki":62052,"square-pied-piper":57374,"square-pinterest":61651,"square-reddit":61858,"square-snapchat":62125,"square-steam":61879,"square-threads":58905,"square-tumblr":61812,"square-twitter":61569,"square-upwork":59004,"square-viadeo":62122,"square-vimeo":61844,"square-web-awesome-stroke":59012,"square-web-awesome":59011,"square-whatsapp":62476,"square-x-twitter":58906,"square-xing":61801,"square-youtube":62513,"squarespace":62910,"stack-exchange":61837,"stack-overflow":61804,"stackpath":63554,"staylinked":62453,"steam-symbol":62454,"steam":61878,"sticker-mule":62455,"strava":62504,"stripe-s":62506,"stripe":62505,"stubber":58823,"studiovinari":62456,"stumbleupon-circle":61859,"stumbleupon":61860,"superpowers":62173,"supple":62457,"suse":63446,"swift":63713,"symfony":63549,"teamspeak":62713,"telegram":62150,"tencent-weibo":61909,"the-red-yeti":63133,"themeco":62918,"themeisle":62130,"think-peaks":63281,"threads":58904,"tiktok":57467,"trade-federation":62739,"trello":61825,"tumblr":61811,"twitch":61928,"twitter":61593,"typo3":62507,"uber":62466,"ubuntu":63455,"uikit":62467,"umbraco":63720,"uncharted":57476,"uniregistry":62468,"unity":57417,"unsplash":57468,"untappd":62469,"ups":63456,"upwork":58945,"usb":62087,"usps":63457,"ussunnah":62471,"vaadin":62472,"viacoin":62007,"viadeo":62121,"viber":62473,"vimeo-v":62077,"vimeo":62474,"vine":61898,"vk":61833,"vnv":62475,"vuejs":62495,"watchman-monitoring":57479,"waze":63551,"web-awesome":59010,"webflow":58972,"weebly":62924,"weibo":61834,"weixin":61911,"whatsapp":62002,"whmcs":62477,"wikipedia-w":62054,"windows":61818,"wirsindhandwerk":58064,"wix":62927,"wizards-of-the-coast":63280,"wodu":57480,"wolf-pack-battalion":62740,"wordpress-simple":62481,"wordpress":61850,"wpbeginner":62103,"wpexplorer":62174,"wpforms":62104,"wpressr":62436,"x-twitter":58907,"xbox":62482,"xing":61800,"y-combinator":62011,"yahoo":61854,"yammer":63552,"yandex-international":62484,"yandex":62483,"yarn":63459,"yelp":61929,"yoast":62129,"youtube":61799,"zhihu":63039} ================================================ FILE: packages/fontawesome6/glyphmaps/FontAwesome6_meta.json ================================================ { "brand": [ "42-group", "500px", "accessible-icon", "accusoft", "adn", "adversal", "affiliatetheme", "airbnb", "algolia", "alipay", "amazon-pay", "amazon", "amilia", "android", "angellist", "angrycreative", "angular", "app-store-ios", "app-store", "apper", "apple-pay", "apple", "artstation", "asymmetrik", "atlassian", "audible", "autoprefixer", "avianex", "aviato", "aws", "bandcamp", "battle-net", "behance", "bilibili", "bimobject", "bitbucket", "bitcoin", "bity", "black-tie", "blackberry", "blogger-b", "blogger", "bluesky", "bluetooth-b", "bluetooth", "bootstrap", "bots", "brave-reverse", "brave", "btc", "buffer", "buromobelexperte", "buy-n-large", "buysellads", "canadian-maple-leaf", "cc-amazon-pay", "cc-amex", "cc-apple-pay", "cc-diners-club", "cc-discover", "cc-jcb", "cc-mastercard", "cc-paypal", "cc-stripe", "cc-visa", "centercode", "centos", "chrome", "chromecast", "cloudflare", "cloudscale", "cloudsmith", "cloudversify", "cmplid", "codepen", "codiepie", "confluence", "connectdevelop", "contao", "cotton-bureau", "cpanel", "creative-commons-by", "creative-commons-nc-eu", "creative-commons-nc-jp", "creative-commons-nc", "creative-commons-nd", "creative-commons-pd-alt", "creative-commons-pd", "creative-commons-remix", "creative-commons-sa", "creative-commons-sampling-plus", "creative-commons-sampling", "creative-commons-share", "creative-commons-zero", "creative-commons", "critical-role", "css", "css3-alt", "css3", "cuttlefish", "d-and-d-beyond", "d-and-d", "dailymotion", "dart-lang", "dashcube", "debian", "deezer", "delicious", "deploydog", "deskpro", "dev", "deviantart", "dhl", "diaspora", "digg", "digital-ocean", "discord", "discourse", "dochub", "docker", "draft2digital", "dribbble", "dropbox", "drupal", "dyalog", "earlybirds", "ebay", "edge-legacy", "edge", "elementor", "ello", "ember", "empire", "envira", "erlang", "ethereum", "etsy", "evernote", "expeditedssl", "facebook-f", "facebook-messenger", "facebook", "fantasy-flight-games", "fedex", "fedora", "figma", "files-pinwheel", "firefox-browser", "firefox", "first-order-alt", "first-order", "firstdraft", "flickr", "flipboard", "flutter", "fly", "font-awesome", "fonticons-fi", "fonticons", "fort-awesome-alt", "fort-awesome", "forumbee", "foursquare", "free-code-camp", "freebsd", "fulcrum", "galactic-republic", "galactic-senate", "get-pocket", "gg-circle", "gg", "git-alt", "git", "github-alt", "github", "gitkraken", "gitlab", "gitter", "glide-g", "glide", "gofore", "golang", "goodreads-g", "goodreads", "google-drive", "google-pay", "google-play", "google-plus-g", "google-plus", "google-scholar", "google-wallet", "google", "gratipay", "grav", "gripfire", "grunt", "guilded", "gulp", "hacker-news", "hackerrank", "hashnode", "hips", "hire-a-helper", "hive", "hooli", "hornbill", "hotjar", "houzz", "html5", "hubspot", "ideal", "imdb", "instagram", "instalod", "intercom", "internet-explorer", "invision", "ioxhost", "itch-io", "itunes-note", "itunes", "java", "jedi-order", "jenkins", "jira", "joget", "joomla", "js", "jsfiddle", "jxl", "kaggle", "keybase", "keycdn", "kickstarter-k", "kickstarter", "korvue", "laravel", "lastfm", "leanpub", "less", "letterboxd", "line", "linkedin-in", "linkedin", "linode", "linux", "lyft", "magento", "mailchimp", "mandalorian", "markdown", "mastodon", "maxcdn", "mdb", "medapps", "medium", "medrt", "meetup", "megaport", "mendeley", "meta", "microblog", "microsoft", "mintbit", "mix", "mixcloud", "mixer", "mizuni", "modx", "monero", "napster", "neos", "nfc-directional", "nfc-symbol", "nimblr", "node-js", "node", "npm", "ns8", "nutritionix", "octopus-deploy", "odnoklassniki", "odysee", "old-republic", "opencart", "openid", "opensuse", "opera", "optin-monster", "orcid", "osi", "padlet", "page4", "pagelines", "palfed", "patreon", "paypal", "perbyte", "periscope", "phabricator", "phoenix-framework", "phoenix-squadron", "php", "pied-piper-alt", "pied-piper-hat", "pied-piper-pp", "pied-piper", "pinterest-p", "pinterest", "pix", "pixiv", "playstation", "product-hunt", "pushed", "python", "qq", "quinscape", "quora", "r-project", "raspberry-pi", "ravelry", "react", "reacteurope", "readme", "rebel", "red-river", "reddit-alien", "reddit", "redhat", "renren", "replyd", "researchgate", "resolving", "rev", "rocketchat", "rockrms", "rust", "safari", "salesforce", "sass", "schlix", "screenpal", "scribd", "searchengin", "sellcast", "sellsy", "servicestack", "shirtsinbulk", "shoelace", "shopify", "shopware", "signal-messenger", "simplybuilt", "sistrix", "sith", "sitrox", "sketch", "skyatlas", "skype", "slack", "slideshare", "snapchat", "soundcloud", "sourcetree", "space-awesome", "speakap", "speaker-deck", "spotify", "square-behance", "square-bluesky", "square-dribbble", "square-facebook", "square-font-awesome-stroke", "square-font-awesome", "square-git", "square-github", "square-gitlab", "square-google-plus", "square-hacker-news", "square-instagram", "square-js", "square-lastfm", "square-letterboxd", "square-odnoklassniki", "square-pied-piper", "square-pinterest", "square-reddit", "square-snapchat", "square-steam", "square-threads", "square-tumblr", "square-twitter", "square-upwork", "square-viadeo", "square-vimeo", "square-web-awesome-stroke", "square-web-awesome", "square-whatsapp", "square-x-twitter", "square-xing", "square-youtube", "squarespace", "stack-exchange", "stack-overflow", "stackpath", "staylinked", "steam-symbol", "steam", "sticker-mule", "strava", "stripe-s", "stripe", "stubber", "studiovinari", "stumbleupon-circle", "stumbleupon", "superpowers", "supple", "suse", "swift", "symfony", "teamspeak", "telegram", "tencent-weibo", "the-red-yeti", "themeco", "themeisle", "think-peaks", "threads", "tiktok", "trade-federation", "trello", "tumblr", "twitch", "twitter", "typo3", "uber", "ubuntu", "uikit", "umbraco", "uncharted", "uniregistry", "unity", "unsplash", "untappd", "ups", "upwork", "usb", "usps", "ussunnah", "vaadin", "viacoin", "viadeo", "viber", "vimeo-v", "vimeo", "vine", "vk", "vnv", "vuejs", "watchman-monitoring", "waze", "web-awesome", "webflow", "weebly", "weibo", "weixin", "whatsapp", "whmcs", "wikipedia-w", "windows", "wirsindhandwerk", "wix", "wizards-of-the-coast", "wodu", "wolf-pack-battalion", "wordpress-simple", "wordpress", "wpbeginner", "wpexplorer", "wpforms", "wpressr", "x-twitter", "xbox", "xing", "y-combinator", "yahoo", "yammer", "yandex-international", "yandex", "yarn", "yelp", "yoast", "youtube", "zhihu" ], "regular": [ "address-book", "address-card", "bell-slash", "bell", "bookmark", "building", "calendar-check", "calendar-days", "calendar-minus", "calendar-plus", "calendar-xmark", "calendar", "chart-bar", "chess-bishop", "chess-king", "chess-knight", "chess-pawn", "chess-queen", "chess-rook", "circle-check", "circle-dot", "circle-down", "circle-left", "circle-pause", "circle-play", "circle-question", "circle-right", "circle-stop", "circle-up", "circle-user", "circle-xmark", "circle", "clipboard", "clock", "clone", "closed-captioning", "comment-dots", "comment", "comments", "compass", "copy", "copyright", "credit-card", "envelope-open", "envelope", "eye-slash", "eye", "face-angry", "face-dizzy", "face-flushed", "face-frown-open", "face-frown", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-kiss-beam", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-meh-blank", "face-meh", "face-rolling-eyes", "face-sad-cry", "face-sad-tear", "face-smile-beam", "face-smile-wink", "face-smile", "face-surprise", "face-tired", "file-audio", "file-code", "file-excel", "file-image", "file-lines", "file-pdf", "file-powerpoint", "file-video", "file-word", "file-zipper", "file", "flag", "floppy-disk", "folder-closed", "folder-open", "folder", "font-awesome", "futbol", "gem", "hand-back-fist", "hand-lizard", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-spock", "hand", "handshake", "hard-drive", "heart", "hospital", "hourglass-half", "hourglass", "id-badge", "id-card", "image", "images", "keyboard", "lemon", "life-ring", "lightbulb", "map", "message", "money-bill-1", "moon", "newspaper", "note-sticky", "object-group", "object-ungroup", "paper-plane", "paste", "pen-to-square", "rectangle-list", "rectangle-xmark", "registered", "share-from-square", "snowflake", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-full", "square-minus", "square-plus", "square", "star-half-stroke", "star-half", "star", "sun", "thumbs-down", "thumbs-up", "trash-can", "user", "window-maximize", "window-minimize", "window-restore" ], "solid": [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "address-book", "address-card", "align-center", "align-justify", "align-left", "align-right", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angle-down", "angle-left", "angle-right", "angle-up", "angles-down", "angles-left", "angles-right", "angles-up", "ankh", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-long", "arrow-down-short-wide", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-long", "arrow-left", "arrow-pointer", "arrow-right-arrow-left", "arrow-right-from-bracket", "arrow-right-long", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-from-bracket", "arrow-up-from-ground-water", "arrow-up-from-water-pump", "arrow-up-long", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-short-wide", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-down-to-line", "arrows-down-to-people", "arrows-left-right-to-line", "arrows-left-right", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-eye", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom", "audio-description", "austral-sign", "award", "b", "baby-carriage", "baby", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "bag-shopping", "bahai", "baht-sign", "ban-smoking", "ban", "bandage", "bangladeshi-taka-sign", "barcode", "bars-progress", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping", "basketball", "bath", "battery-empty", "battery-full", "battery-half", "battery-quarter", "battery-three-quarters", "bed-pulse", "bed", "beer-mug-empty", "bell-concierge", "bell-slash", "bell", "bezier-curve", "bicycle", "binoculars", "biohazard", "bitcoin-sign", "blender-phone", "blender", "blog", "bold", "bolt-lightning", "bolt", "bomb", "bone", "bong", "book-atlas", "book-bible", "book-bookmark", "book-journal-whills", "book-medical", "book-open-reader", "book-open", "book-quran", "book-skull", "book-tanakh", "book", "bookmark", "border-all", "border-none", "border-top-left", "bore-hole", "bottle-droplet", "bottle-water", "bowl-food", "bowl-rice", "bowling-ball", "box-archive", "box-open", "box-tissue", "box", "boxes-packing", "boxes-stacked", "braille", "brain", "brazilian-real-sign", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-water", "bridge", "briefcase-medical", "briefcase", "broom-ball", "broom", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "bullhorn", "bullseye", "burger", "burst", "bus-simple", "bus", "business-time", "c", "cable-car", "cake-candles", "calculator", "calendar-check", "calendar-day", "calendar-days", "calendar-minus", "calendar-plus", "calendar-week", "calendar-xmark", "calendar", "camera-retro", "camera-rotate", "camera", "campground", "candy-cane", "cannabis", "capsules", "car-battery", "car-burst", "car-on", "car-rear", "car-side", "car-tunnel", "car", "caravan", "caret-down", "caret-left", "caret-right", "caret-up", "carrot", "cart-arrow-down", "cart-flatbed-suitcase", "cart-flatbed", "cart-plus", "cart-shopping", "cash-register", "cat", "cedi-sign", "cent-sign", "certificate", "chair", "chalkboard-user", "chalkboard", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-column", "chart-diagram", "chart-gantt", "chart-line", "chart-pie", "chart-simple", "check-double", "check-to-slot", "check", "cheese", "chess-bishop", "chess-board", "chess-king", "chess-knight", "chess-pawn", "chess-queen", "chess-rook", "chess", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "child-combatant", "child-dress", "child-reaching", "child", "children", "church", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-dollar-to-slot", "circle-dot", "circle-down", "circle-exclamation", "circle-h", "circle-half-stroke", "circle-info", "circle-left", "circle-minus", "circle-nodes", "circle-notch", "circle-pause", "circle-play", "circle-plus", "circle-question", "circle-radiation", "circle-right", "circle-stop", "circle-up", "circle-user", "circle-xmark", "circle", "city", "clapperboard", "clipboard-check", "clipboard-list", "clipboard-question", "clipboard-user", "clipboard", "clock-rotate-left", "clock", "clone", "closed-captioning", "cloud-arrow-down", "cloud-arrow-up", "cloud-bolt", "cloud-meatball", "cloud-moon-rain", "cloud-moon", "cloud-rain", "cloud-showers-heavy", "cloud-showers-water", "cloud-sun-rain", "cloud-sun", "cloud", "clover", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request", "code", "coins", "colon-sign", "comment-dollar", "comment-dots", "comment-medical", "comment-nodes", "comment-slash", "comment-sms", "comment", "comments-dollar", "comments", "compact-disc", "compass-drafting", "compass", "compress", "computer-mouse", "computer", "cookie-bite", "cookie", "copy", "copyright", "couch", "cow", "credit-card", "crop-simple", "crop", "cross", "crosshairs", "crow", "crown", "crutch", "cruzeiro-sign", "cube", "cubes-stacked", "cubes", "d", "database", "delete-left", "democrat", "desktop", "dharmachakra", "diagram-next", "diagram-predecessor", "diagram-project", "diagram-successor", "diamond-turn-right", "diamond", "dice-d20", "dice-d6", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "disease", "display", "divide", "dna", "dog", "dollar-sign", "dolly", "dong-sign", "door-closed", "door-open", "dove", "down-left-and-up-right-to-center", "down-long", "download", "dragon", "draw-polygon", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "egg", "eject", "elevator", "ellipsis-vertical", "ellipsis", "envelope-circle-check", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "equals", "eraser", "ethernet", "euro-sign", "exclamation", "expand", "explosion", "eye-dropper", "eye-low-vision", "eye-slash", "eye", "f", "face-angry", "face-dizzy", "face-flushed", "face-frown-open", "face-frown", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-kiss-beam", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-meh-blank", "face-meh", "face-rolling-eyes", "face-sad-cry", "face-sad-tear", "face-smile-beam", "face-smile-wink", "face-smile", "face-surprise", "face-tired", "fan", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "ferry", "file-arrow-down", "file-arrow-up", "file-audio", "file-circle-check", "file-circle-exclamation", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-excel", "file-export", "file-fragment", "file-half-dashed", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-lines", "file-medical", "file-pdf", "file-pen", "file-powerpoint", "file-prescription", "file-shield", "file-signature", "file-video", "file-waveform", "file-word", "file-zipper", "file", "fill-drip", "fill", "film", "filter-circle-dollar", "filter-circle-xmark", "filter", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire", "fish-fins", "fish", "flag-checkered", "flag-usa", "flag", "flask-vial", "flask", "floppy-disk", "florin-sign", "folder-closed", "folder-minus", "folder-open", "folder-plus", "folder-tree", "folder", "font-awesome", "font", "football", "forward-fast", "forward-step", "forward", "franc-sign", "frog", "futbol", "g", "gamepad", "gas-pump", "gauge-high", "gauge-simple-high", "gauge-simple", "gauge", "gavel", "gear", "gears", "gem", "genderless", "ghost", "gift", "gifts", "glass-water-droplet", "glass-water", "glasses", "globe", "golf-ball-tee", "gopuram", "graduation-cap", "greater-than-equal", "greater-than", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar", "gun", "h", "hammer", "hamsa", "hand-back-fist", "hand-dots", "hand-fist", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-medical", "hand-holding", "hand-lizard", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag", "hat-cowboy-side", "hat-cowboy", "hat-wizard", "head-side-cough-slash", "head-side-cough", "head-side-mask", "head-side-virus", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-pulse", "heart", "helicopter-symbol", "helicopter", "helmet-safety", "helmet-un", "hexagon-nodes-bolt", "hexagon-nodes", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-puck", "holly-berry", "horse-head", "horse", "hospital-user", "hospital", "hot-tub-person", "hotdog", "hotel", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-chimney-crack", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-signal", "house-tsunami", "house-user", "house", "hryvnia-sign", "hurricane", "i-cursor", "i", "ice-cream", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-portrait", "image", "images", "inbox", "indent", "indian-rupee-sign", "industry", "infinity", "info", "italic", "j", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "jug-detergent", "k", "kaaba", "key", "keyboard", "khanda", "kip-sign", "kit-medical", "kitchen-set", "kiwi-bird", "l", "land-mine-on", "landmark-dome", "landmark-flag", "landmark", "language", "laptop-code", "laptop-file", "laptop-medical", "laptop", "lari-sign", "layer-group", "leaf", "left-long", "left-right", "lemon", "less-than-equal", "less-than", "life-ring", "lightbulb", "lines-leaning", "link-slash", "link", "lira-sign", "list-check", "list-ol", "list-ul", "list", "litecoin-sign", "location-arrow", "location-crosshairs", "location-dot", "location-pin-lock", "location-pin", "lock-open", "lock", "locust", "lungs-virus", "lungs", "m", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-plus", "magnifying-glass", "manat-sign", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "medal", "memory", "menorah", "mercury", "message", "meteor", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone", "microscope", "mill-sign", "minimize", "minus", "mitten", "mobile-button", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills", "money-check-dollar", "money-check", "monument", "moon", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mug-hot", "mug-saucer", "music", "n", "naira-sign", "network-wired", "neuter", "newspaper", "not-equal", "notdef", "note-sticky", "notes-medical", "o", "object-group", "object-ungroup", "oil-can", "oil-well", "om", "otter", "outdent", "p", "pager", "paint-roller", "paintbrush", "palette", "pallet", "panorama", "paper-plane", "paperclip", "parachute-box", "paragraph", "passport", "paste", "pause", "paw", "peace", "pen-clip", "pen-fancy", "pen-nib", "pen-ruler", "pen-to-square", "pen", "pencil", "people-arrows", "people-carry-box", "people-group", "people-line", "people-pulling", "people-robbery", "people-roof", "pepper-hot", "percent", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dots-from-line", "person-dress-burst", "person-dress", "person-drowning", "person-falling-burst", "person-falling", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running", "person-shelter", "person-skating", "person-skiing-nordic", "person-skiing", "person-snowboarding", "person-swimming", "person-through-window", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-flip", "phone-slash", "phone-volume", "phone", "photo-film", "piggy-bank", "pills", "pizza-slice", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-lock", "plane-slash", "plane-up", "plane", "plant-wilt", "plate-wheat", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-minus", "plus", "podcast", "poo-storm", "poo", "poop", "power-off", "prescription-bottle-medical", "prescription-bottle", "prescription", "print", "pump-medical", "pump-soap", "puzzle-piece", "q", "qrcode", "question", "quote-left", "quote-right", "r", "radiation", "radio", "rainbow", "ranking-star", "receipt", "record-vinyl", "rectangle-ad", "rectangle-list", "rectangle-xmark", "recycle", "registered", "repeat", "reply-all", "reply", "republican", "restroom", "retweet", "ribbon", "right-from-bracket", "right-left", "right-long", "right-to-bracket", "ring", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot", "rocket", "rotate-left", "rotate-right", "rotate", "route", "rss", "ruble-sign", "rug", "ruler-combined", "ruler-horizontal", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "s", "sack-dollar", "sack-xmark", "sailboat", "satellite-dish", "satellite", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screwdriver-wrench", "screwdriver", "scroll-torah", "scroll", "sd-card", "section", "seedling", "server", "shapes", "share-from-square", "share-nodes", "share", "sheet-plastic", "shekel-sign", "shield-cat", "shield-dog", "shield-halved", "shield-heart", "shield-virus", "shield", "ship", "shirt", "shoe-prints", "shop-lock", "shop-slash", "shop", "shower", "shrimp", "shuffle", "shuttle-space", "sign-hanging", "signal", "signature", "signs-post", "sim-card", "sink", "sitemap", "skull-crossbones", "skull", "slash", "sleigh", "sliders", "smog", "smoking", "snowflake", "snowman", "snowplow", "soap", "socks", "solar-panel", "sort-down", "sort-up", "sort", "spa", "spaghetti-monster-flying", "spell-check", "spider", "spinner", "splotch", "spoon", "spray-can-sparkles", "spray-can", "square-arrow-up-right", "square-binary", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-envelope", "square-full", "square-h", "square-minus", "square-nfi", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-root-variable", "square-rss", "square-share-nodes", "square-up-right", "square-virus", "square-xmark", "square", "staff-snake", "stairs", "stamp", "stapler", "star-and-crescent", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star", "sterling-sign", "stethoscope", "stop", "stopwatch-20", "stopwatch", "store-slash", "store", "street-view", "strikethrough", "stroopwafel", "subscript", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-plant-wilt", "sun", "superscript", "swatchbook", "synagogue", "syringe", "t", "table-cells-column-lock", "table-cells-large", "table-cells-row-lock", "table-cells-row-unlock", "table-cells", "table-columns", "table-list", "table-tennis-paddle-ball", "table", "tablet-button", "tablet-screen-button", "tablet", "tablets", "tachograph-digital", "tag", "tags", "tape", "tarp-droplet", "tarp", "taxi", "teeth-open", "teeth", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-low", "temperature-quarter", "temperature-three-quarters", "tenge-sign", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent", "tents", "terminal", "text-height", "text-slash", "text-width", "thermometer", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "ticket-simple", "ticket", "timeline", "toggle-off", "toggle-on", "toilet-paper-slash", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "toolbox", "tooth", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-observation", "tractor", "trademark", "traffic-light", "trailer", "train-subway", "train-tram", "train", "transgender", "trash-arrow-up", "trash-can-arrow-up", "trash-can", "trash", "tree-city", "tree", "triangle-exclamation", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-front", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-ramp-box", "truck", "tty", "turkish-lira-sign", "turn-down", "turn-up", "tv", "u", "umbrella-beach", "umbrella", "underline", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "upload", "user-astronaut", "user-check", "user-clock", "user-doctor", "user-gear", "user-graduate", "user-group", "user-injured", "user-large-slash", "user-large", "user-lock", "user-minus", "user-ninja", "user-nurse", "user-pen", "user-plus", "user-secret", "user-shield", "user-slash", "user-tag", "user-tie", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils", "v", "van-shuttle", "vault", "vector-square", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-slash", "video", "vihara", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-xmark", "vr-cardboard", "w", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "warehouse", "water-ladder", "water", "wave-square", "web-awesome", "weight-hanging", "weight-scale", "wheat-awn-circle-exclamation", "wheat-awn", "wheelchair-move", "wheelchair", "whiskey-glass", "wifi", "wind", "window-maximize", "window-minimize", "window-restore", "wine-bottle", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wrench", "x-ray", "x", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ] } ================================================ FILE: packages/fontawesome6/glyphmaps/FontAwesome6_regular.json ================================================ {"address-book":62137,"address-card":62139,"bell-slash":61942,"bell":61683,"bookmark":61486,"building":61869,"calendar-check":62068,"calendar-days":61555,"calendar-minus":62066,"calendar-plus":62065,"calendar-xmark":62067,"calendar":61747,"chart-bar":61568,"chess-bishop":62522,"chess-king":62527,"chess-knight":62529,"chess-pawn":62531,"chess-queen":62533,"chess-rook":62535,"circle-check":61528,"circle-dot":61842,"circle-down":62296,"circle-left":62297,"circle-pause":62091,"circle-play":61764,"circle-question":61529,"circle-right":62298,"circle-stop":62093,"circle-up":62299,"circle-user":62141,"circle-xmark":61527,"circle":61713,"clipboard":62248,"clock":61463,"clone":62029,"closed-captioning":61962,"comment-dots":62637,"comment":61557,"comments":61574,"compass":61774,"copy":61637,"copyright":61945,"credit-card":61597,"envelope-open":62134,"envelope":61664,"eye-slash":61552,"eye":61550,"face-angry":62806,"face-dizzy":62823,"face-flushed":62841,"face-frown-open":62842,"face-frown":61721,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-kiss-beam":62871,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-meh-blank":62884,"face-meh":61722,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-tear":62900,"face-smile-beam":62904,"face-smile-wink":62682,"face-smile":61720,"face-surprise":62914,"face-tired":62920,"file-audio":61895,"file-code":61897,"file-excel":61891,"file-image":61893,"file-lines":61788,"file-pdf":61889,"file-powerpoint":61892,"file-video":61896,"file-word":61890,"file-zipper":61894,"file":61787,"flag":61476,"floppy-disk":61639,"folder-closed":57733,"folder-open":61564,"folder":61563,"font-awesome":62132,"futbol":61923,"gem":62373,"hand-back-fist":62037,"hand-lizard":62040,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-spock":62041,"hand":62038,"handshake":62133,"hard-drive":61600,"heart":61444,"hospital":61688,"hourglass-half":62034,"hourglass":62036,"id-badge":62145,"id-card":62146,"image":61502,"images":62210,"keyboard":61724,"lemon":61588,"life-ring":61901,"lightbulb":61675,"map":62073,"message":62074,"money-bill-1":62417,"moon":61830,"newspaper":61930,"note-sticky":62025,"object-group":62023,"object-ungroup":62024,"paper-plane":61912,"paste":61674,"pen-to-square":61508,"rectangle-list":61474,"rectangle-xmark":62480,"registered":62045,"share-from-square":61773,"snowflake":62172,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-full":62556,"square-minus":61766,"square-plus":61694,"square":61640,"star-half-stroke":62912,"star-half":61577,"star":61445,"sun":61829,"thumbs-down":61797,"thumbs-up":61796,"trash-can":62189,"user":61447,"window-maximize":62160,"window-minimize":62161,"window-restore":62162} ================================================ FILE: packages/fontawesome6/glyphmaps/FontAwesome6_solid.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"a":65,"address-book":62137,"address-card":62139,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up":61698,"ankh":63044,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-long":61813,"arrow-down-short-wide":63620,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-long":61815,"arrow-left":61536,"arrow-pointer":62021,"arrow-right-arrow-left":61676,"arrow-right-from-bracket":61579,"arrow-right-long":61816,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down":61769,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-from-bracket":57498,"arrow-up-from-ground-water":58549,"arrow-up-from-water-pump":58550,"arrow-up-long":61814,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-short-wide":63621,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-eye":58559,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom":62930,"audio-description":62110,"austral-sign":57513,"award":62809,"b":66,"baby-carriage":63357,"baby":63356,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"bag-shopping":62096,"bahai":63078,"baht-sign":57516,"ban-smoking":62797,"ban":61534,"bandage":62562,"bangladeshi-taka-sign":58086,"barcode":61482,"bars-progress":63528,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping":62097,"basketball":62516,"bath":62157,"battery-empty":62020,"battery-full":62016,"battery-half":62018,"battery-quarter":62019,"battery-three-quarters":62017,"bed-pulse":62599,"bed":62006,"beer-mug-empty":61692,"bell-concierge":62818,"bell-slash":61942,"bell":61683,"bezier-curve":62811,"bicycle":61958,"binoculars":61925,"biohazard":63360,"bitcoin-sign":57524,"blender-phone":63158,"blender":62743,"blog":63361,"bold":61490,"bolt-lightning":57527,"bolt":61671,"bomb":61922,"bone":62935,"bong":62812,"book-atlas":62808,"book-bible":63047,"book-bookmark":57531,"book-journal-whills":63082,"book-medical":63462,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-skull":63159,"book-tanakh":63527,"book":61485,"bookmark":61486,"border-all":63564,"border-none":63568,"border-top-left":63571,"bore-hole":58563,"bottle-droplet":58564,"bottle-water":58565,"bowl-food":58566,"bowl-rice":58091,"bowling-ball":62518,"box-archive":61831,"box-open":62622,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"braille":62113,"brain":62940,"brazilian-real-sign":58476,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-water":58574,"bridge":58568,"briefcase-medical":62569,"briefcase":61617,"broom-ball":62552,"broom":62746,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"bullhorn":61601,"bullseye":61760,"burger":63493,"burst":58588,"bus-simple":62814,"bus":61959,"business-time":63050,"c":67,"cable-car":63450,"cake-candles":61949,"calculator":61932,"calendar-check":62068,"calendar-day":63363,"calendar-days":61555,"calendar-minus":62066,"calendar-plus":62065,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"camera-retro":61571,"camera-rotate":57560,"camera":61488,"campground":63163,"candy-cane":63366,"cannabis":62815,"capsules":62571,"car-battery":62943,"car-burst":62945,"car-on":58589,"car-rear":62942,"car-side":62948,"car-tunnel":58590,"car":61881,"caravan":63743,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carrot":63367,"cart-arrow-down":61976,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-plus":61975,"cart-shopping":61562,"cash-register":63368,"cat":63166,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-column":57571,"chart-diagram":59029,"chart-gantt":57572,"chart-line":61953,"chart-pie":61952,"chart-simple":58483,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese":63471,"chess-bishop":62522,"chess-board":62524,"chess-king":62527,"chess-knight":62529,"chess-pawn":62531,"chess-queen":62533,"chess-rook":62535,"chess":62521,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"church":62749,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up":61610,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-dollar-to-slot":62649,"circle-dot":61842,"circle-down":62296,"circle-exclamation":61546,"circle-h":62590,"circle-half-stroke":61506,"circle-info":61530,"circle-left":62297,"circle-minus":61526,"circle-nodes":58594,"circle-notch":61902,"circle-pause":62091,"circle-play":61764,"circle-plus":61525,"circle-question":61529,"circle-radiation":63418,"circle-right":62298,"circle-stop":62093,"circle-up":62299,"circle-user":62141,"circle-xmark":61527,"circle":61713,"city":63055,"clapperboard":57649,"clipboard-check":62572,"clipboard-list":62573,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-rotate-left":61914,"clock":61463,"clone":62029,"closed-captioning":61962,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-bolt":63340,"cloud-meatball":63291,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-rain":63293,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud":61634,"clover":57657,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request":57660,"code":61729,"coins":62750,"colon-sign":57664,"comment-dollar":63057,"comment-dots":62637,"comment-medical":63477,"comment-nodes":59030,"comment-slash":62643,"comment-sms":63437,"comment":61557,"comments-dollar":63059,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass":61774,"compress":61542,"computer-mouse":63692,"computer":58597,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"couch":62648,"cow":63176,"credit-card":61597,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"cruzeiro-sign":57682,"cube":61874,"cubes-stacked":58598,"cubes":61875,"d":68,"database":61888,"delete-left":62810,"democrat":63303,"desktop":62352,"dharmachakra":63061,"diagram-next":58486,"diagram-predecessor":58487,"diagram-project":62786,"diagram-successor":58490,"diamond-turn-right":62955,"diamond":61977,"dice-d20":63183,"dice-d6":63185,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"disease":63482,"display":57699,"divide":62761,"dna":62577,"dog":63187,"dollar-sign":36,"dolly":62578,"dong-sign":57705,"door-closed":62762,"door-open":62763,"dove":62650,"down-left-and-up-right-to-center":62498,"down-long":62217,"download":61465,"dragon":63189,"draw-polygon":62958,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"egg":63483,"eject":61522,"elevator":57709,"ellipsis-vertical":61762,"ellipsis":61761,"envelope-circle-check":58600,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"equals":61,"eraser":61741,"ethernet":63382,"euro-sign":61779,"exclamation":33,"expand":61541,"explosion":58601,"eye-dropper":61947,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"f":70,"face-angry":62806,"face-dizzy":62823,"face-flushed":62841,"face-frown-open":62842,"face-frown":61721,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-kiss-beam":62871,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-meh-blank":62884,"face-meh":61722,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-tear":62900,"face-smile-beam":62904,"face-smile-wink":62682,"face-smile":61720,"face-surprise":62914,"face-tired":62920,"fan":63587,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"ferry":58602,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-excel":61891,"file-export":62830,"file-fragment":59031,"file-half-dashed":59032,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-lines":61788,"file-medical":62583,"file-pdf":61889,"file-pen":62236,"file-powerpoint":61892,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-zipper":61894,"file":61787,"fill-drip":62838,"fill":62837,"film":61448,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter":61616,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire":61549,"fish-fins":58610,"fish":62840,"flag-checkered":61726,"flag-usa":63309,"flag":61476,"flask-vial":58611,"flask":61635,"floppy-disk":61639,"florin-sign":57732,"folder-closed":57733,"folder-minus":63069,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder":61563,"font-awesome":62132,"font":61489,"football":62542,"forward-fast":61520,"forward-step":61521,"forward":61518,"franc-sign":57743,"frog":62766,"futbol":61923,"g":71,"gamepad":61723,"gas-pump":62767,"gauge-high":63013,"gauge-simple-high":63018,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gift":61547,"gifts":63388,"glass-water-droplet":58613,"glass-water":58612,"glasses":62768,"globe":61612,"golf-ball-tee":62544,"gopuram":63076,"graduation-cap":61853,"greater-than-equal":62770,"greater-than":62,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar":63398,"gun":57755,"h":72,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-dots":62561,"hand-fist":63198,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-medical":57436,"hand-holding":62653,"hand-lizard":62040,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag":35,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-wizard":63208,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-mask":57443,"head-side-virus":57444,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-pulse":61982,"heart":61444,"helicopter-symbol":58626,"helicopter":62771,"helmet-safety":63495,"helmet-un":58627,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-puck":62547,"holly-berry":63402,"horse-head":63403,"horse":63216,"hospital-user":63501,"hospital":61688,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-chimney-crack":63217,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-signal":57362,"house-tsunami":58645,"house-user":57776,"house":61461,"hryvnia-sign":63218,"hurricane":63313,"i-cursor":62022,"i":73,"ice-cream":63504,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-portrait":62432,"image":61502,"images":62210,"inbox":61468,"indent":61500,"indian-rupee-sign":57788,"industry":62069,"infinity":62772,"info":61737,"italic":61491,"j":74,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"jug-detergent":58649,"k":75,"kaaba":63083,"key":61572,"keyboard":61724,"khanda":63085,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kiwi-bird":62773,"l":76,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark":63087,"language":61867,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop":61705,"lari-sign":57800,"layer-group":62973,"leaf":61548,"left-long":62218,"left-right":62263,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"lightbulb":61675,"lines-leaning":58654,"link-slash":61735,"link":61633,"lira-sign":61845,"list-check":61614,"list-ol":61643,"list-ul":61642,"list":61498,"litecoin-sign":57811,"location-arrow":61732,"location-crosshairs":62977,"location-dot":62405,"location-pin-lock":58655,"location-pin":61505,"lock-open":62401,"lock":61475,"locust":58656,"lungs-virus":57447,"lungs":62980,"m":77,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-plus":61454,"magnifying-glass":61442,"manat-sign":57813,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"medal":62882,"memory":62776,"menorah":63094,"mercury":61987,"message":62074,"meteor":63315,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone":61744,"microscope":62992,"mill-sign":57837,"minimize":63372,"minus":61544,"mitten":63413,"mobile-button":61707,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills":57843,"money-check-dollar":62781,"money-check":62780,"monument":62886,"moon":61830,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mug-hot":63414,"mug-saucer":61684,"music":61441,"n":78,"naira-sign":57846,"network-wired":63231,"neuter":61996,"newspaper":61930,"not-equal":62782,"notdef":57854,"note-sticky":62025,"notes-medical":62593,"o":79,"object-group":62023,"object-ungroup":62024,"oil-can":62995,"oil-well":58674,"om":63097,"otter":63232,"outdent":61499,"p":80,"pager":63509,"paint-roller":62890,"paintbrush":61948,"palette":62783,"pallet":62594,"panorama":57865,"paper-plane":61912,"paperclip":61638,"parachute-box":62669,"paragraph":61917,"passport":62891,"paste":61674,"pause":61516,"paw":61872,"peace":63100,"pen-clip":62213,"pen-fancy":62892,"pen-nib":62893,"pen-ruler":62894,"pen-to-square":61508,"pen":62212,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-group":58675,"people-line":58676,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"pepper-hot":63510,"percent":37,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress":61826,"person-drowning":58693,"person-falling-burst":58695,"person-falling":58694,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running":63244,"person-shelter":58703,"person-skating":63429,"person-skiing-nordic":63434,"person-skiing":63433,"person-snowboarding":63438,"person-swimming":62916,"person-through-window":58793,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-flip":63609,"phone-slash":62429,"phone-volume":62112,"phone":61589,"photo-film":63612,"piggy-bank":62675,"pills":62596,"pizza-slice":63512,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-lock":58712,"plane-slash":57449,"plane-up":57901,"plane":61554,"plant-wilt":58794,"plate-wheat":58714,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-minus":58428,"plus":43,"podcast":62158,"poo-storm":63322,"poo":62206,"poop":63001,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle":62597,"prescription":62897,"print":61487,"pump-medical":57450,"pump-soap":57451,"puzzle-piece":61742,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"r":82,"radiation":63417,"radio":63703,"rainbow":63323,"ranking-star":58721,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-list":61474,"rectangle-xmark":62480,"recycle":61880,"registered":62045,"repeat":62307,"reply-all":61730,"reply":62437,"republican":63326,"restroom":63421,"retweet":61561,"ribbon":62678,"right-from-bracket":62197,"right-left":62306,"right-long":62219,"right-to-bracket":62198,"ring":63243,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot":62788,"rocket":61749,"rotate-left":62186,"rotate-right":62201,"rotate":62193,"route":62679,"rss":61598,"ruble-sign":61784,"rug":58729,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sailboat":58437,"satellite-dish":63424,"satellite":63423,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screwdriver-wrench":63449,"screwdriver":62794,"scroll-torah":63136,"scroll":63246,"sd-card":63426,"section":58439,"seedling":62680,"server":62003,"shapes":63007,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheet-plastic":58737,"shekel-sign":61963,"shield-cat":58738,"shield-dog":58739,"shield-halved":62445,"shield-heart":58740,"shield-virus":57452,"shield":61746,"ship":61978,"shirt":62803,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shower":62156,"shrimp":58440,"shuffle":61556,"shuttle-space":61847,"sign-hanging":62681,"signal":61458,"signature":62903,"signs-post":62071,"sim-card":63428,"sink":57453,"sitemap":61672,"skull-crossbones":63252,"skull":62796,"slash":63253,"sleigh":63436,"sliders":61918,"smog":63327,"smoking":62605,"snowflake":62172,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"solar-panel":62906,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"spaghetti-monster-flying":63099,"spell-check":63633,"spider":63255,"spinner":61712,"splotch":62908,"spoon":62181,"spray-can-sparkles":62928,"spray-can":62909,"square-arrow-up-right":61772,"square-binary":59035,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-envelope":61849,"square-full":62556,"square-h":61693,"square-minus":61766,"square-nfi":58742,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-root-variable":63128,"square-rss":61763,"square-share-nodes":61921,"square-up-right":62304,"square-virus":58744,"square-xmark":62163,"square":61640,"staff-snake":58745,"stairs":57993,"stamp":62911,"stapler":58799,"star-and-crescent":63129,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star":61445,"sterling-sign":61780,"stethoscope":61681,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-slash":57457,"store":62798,"street-view":61981,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-plant-wilt":58746,"sun":61829,"superscript":61739,"swatchbook":62915,"synagogue":63131,"syringe":62606,"t":84,"table-cells-column-lock":59000,"table-cells-large":61449,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells":61450,"table-columns":61659,"table-list":61451,"table-tennis-paddle-ball":62557,"table":61646,"tablet-button":61706,"tablet-screen-button":62458,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"tag":61483,"tags":61484,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi":61882,"teeth-open":63023,"teeth":63022,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-low":63339,"temperature-quarter":62154,"temperature-three-quarters":62152,"tenge-sign":63447,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-slash":63613,"text-width":61493,"thermometer":62609,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"ticket-simple":62463,"ticket":61765,"timeline":58012,"toggle-off":61956,"toggle-on":61957,"toilet-paper-slash":57458,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"toolbox":62802,"tooth":62921,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-light":63031,"trailer":57409,"train-subway":62009,"train-tram":58804,"train":62008,"transgender":61989,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can":62189,"trash":61944,"tree-city":58759,"tree":61883,"triangle-exclamation":61553,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-front":58039,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-ramp-box":62686,"truck":61649,"tty":61924,"turkish-lira-sign":58043,"turn-down":62398,"turn-up":62399,"tv":62060,"u":85,"umbrella-beach":62922,"umbrella":61673,"underline":61645,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"upload":61587,"user-astronaut":62715,"user-check":62716,"user-clock":62717,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group":62720,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-minus":62723,"user-ninja":62724,"user-nurse":63535,"user-pen":62719,"user-plus":62004,"user-secret":61979,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie":62728,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils":62183,"v":86,"van-shuttle":62902,"vault":58053,"vector-square":62923,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-slash":62690,"video":61501,"vihara":63143,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-xmark":63145,"vr-cardboard":63273,"w":87,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"warehouse":62612,"water-ladder":62917,"water":63347,"wave-square":63550,"web-awesome":59010,"weight-hanging":62925,"weight-scale":62614,"wheat-awn-circle-exclamation":58776,"wheat-awn":58061,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass":63392,"wifi":61931,"wind":63278,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"wine-bottle":63279,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wrench":61613,"x-ray":62615,"x":88,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome6", "version": "12.4.0", "description": "Fontawesome6 font for react native vector icons", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome6" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome6" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "@fortawesome/fontawesome-free": "6.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome6/react-native-vector-icons-fontawesome6.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome6' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/fontawesome6/src/index.tsx ================================================ /* eslint-disable react/jsx-pascal-case, no-console */ /** * This is a generated file. If you modify it manually, your changes will be lost! * Instead, modify the template in `fontawesome-common/generator`. * * FontAwesome6 icon set component. * Usage: */ import type { ComponentProps } from 'react'; import { Platform, type TextStyle } from 'react-native'; import { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common'; import brandGM from '../glyphmaps/FontAwesome6_brand.json'; import regularGM from '../glyphmaps/FontAwesome6_regular.json'; import solidGM from '../glyphmaps/FontAwesome6_solid.json'; import metadata from '../glyphmaps/FontAwesome6_meta.json'; const glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph); const fontStyle = (fontWeight: TextStyle['fontWeight']) => Platform.select({ ios: { fontWeight, }, default: {}, }); // biome-ignore format: We want these to be consistent and we are fine with single for all const RegularIcon = createIconSet(regularGM, { postScriptName: 'FontAwesome6Free-Regular', fontFileName: 'FontAwesome6_Regular.ttf', fontSource: require('../fonts/FontAwesome6_Regular.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require fontStyle: fontStyle('400') }); export type FontAwesome6RegularIconName = keyof typeof regularGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SolidIcon = createIconSet(solidGM, { postScriptName: 'FontAwesome6Free-Solid', fontFileName: 'FontAwesome6_Solid.ttf', fontSource: require('../fonts/FontAwesome6_Solid.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require fontStyle: fontStyle('900') }); export type FontAwesome6SolidIconName = keyof typeof solidGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const BrandIcon = createIconSet(brandGM, { postScriptName: 'FontAwesome6Brands-Regular', fontFileName: 'FontAwesome6_Brands.ttf', fontSource: require('../fonts/FontAwesome6_Brands.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require fontStyle: fontStyle('400') }); export type FontAwesome6BrandIconName = keyof typeof brandGM; type Props = | ({ iconStyle: 'regular' } & ComponentProps) | ({ iconStyle: 'solid' } & ComponentProps) | ({ iconStyle: 'brand' } & ComponentProps) | ({ iconStyle?: never } & ComponentProps); export const FontAwesome6 = (props: Props) => { const { iconStyle, name } = props; if (!iconStyle) { if (!glyphValidator(name, 'regular')) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome6`); } return ; } if (!glyphValidator(name, iconStyle)) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome6`); return )} />; } switch (iconStyle) { case 'brand': return ; case 'regular': return ; case 'solid': return ; default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`); return )} />; } }; type GetImageSourceFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSource']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSource']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSource']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color); case 'regular': return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`); return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); } }; FontAwesome6.getImageSource = getImageSource; type GetImageSourceSyncFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color); case 'regular': return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`); return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); } }; FontAwesome6.getImageSourceSync = getImageSourceSync; export type FontAwesome6IconName = ComponentProps['name']; /** @alias */ export default FontAwesome6; ================================================ FILE: packages/fontawesome6/src/static.tsx ================================================ /* eslint-disable react/jsx-pascal-case, no-console */ /** * This is a generated file. If you modify it manually, your changes will be lost! * Instead, modify the template in `fontawesome-common/generator`. * * FontAwesome6 icon set component. * Usage: */ import type { ComponentProps } from 'react'; import { Platform, type TextStyle } from 'react-native'; import { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common'; import brandGM from '../glyphmaps/FontAwesome6_brand.json'; import regularGM from '../glyphmaps/FontAwesome6_regular.json'; import solidGM from '../glyphmaps/FontAwesome6_solid.json'; import metadata from '../glyphmaps/FontAwesome6_meta.json'; const glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph); const fontStyle = (fontWeight: TextStyle['fontWeight']) => Platform.select({ ios: { fontWeight, }, default: {}, }); // biome-ignore format: We want these to be consistent and we are fine with single for all const RegularIcon = createIconSet(regularGM, { postScriptName: 'FontAwesome6Free-Regular', fontFileName: 'FontAwesome6_Regular.ttf', fontStyle: fontStyle('400') }); export type FontAwesome6RegularIconName = keyof typeof regularGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SolidIcon = createIconSet(solidGM, { postScriptName: 'FontAwesome6Free-Solid', fontFileName: 'FontAwesome6_Solid.ttf', fontStyle: fontStyle('900') }); export type FontAwesome6SolidIconName = keyof typeof solidGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const BrandIcon = createIconSet(brandGM, { postScriptName: 'FontAwesome6Brands-Regular', fontFileName: 'FontAwesome6_Brands.ttf', fontStyle: fontStyle('400') }); export type FontAwesome6BrandIconName = keyof typeof brandGM; type Props = | ({ iconStyle: 'regular' } & ComponentProps) | ({ iconStyle: 'solid' } & ComponentProps) | ({ iconStyle: 'brand' } & ComponentProps) | ({ iconStyle?: never } & ComponentProps); export const FontAwesome6 = (props: Props) => { const { iconStyle, name } = props; if (!iconStyle) { if (!glyphValidator(name, 'regular')) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome6`); } return ; } if (!glyphValidator(name, iconStyle)) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome6`); return )} />; } switch (iconStyle) { case 'brand': return ; case 'regular': return ; case 'solid': return ; default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`); return )} />; } }; type GetImageSourceFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSource']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSource']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSource']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color); case 'regular': return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`); return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); } }; FontAwesome6.getImageSource = getImageSource; type GetImageSourceSyncFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color); case 'regular': return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); case 'solid': return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`); return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); } }; FontAwesome6.getImageSourceSync = getImageSourceSync; export type FontAwesome6IconName = ComponentProps['name']; /** @alias */ export default FontAwesome6; ================================================ FILE: packages/fontawesome6/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome6/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontawesome6-pro/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontawesome6-pro", "className": "FontAwesome6Pro", "commonPackage": "fontawesome-common/fontawesome6-pro", "customSrc": "../../../../fontawesome-common/generators/app/templates/src/index.tsx", "copyCustomFonts": true, "customReadme": true, "upstreamFont": { "registry": "https://npm.fontawesome.com", "packageName": "@fortawesome/fontawesome-pro", "versionRange": "^6", "versionOnly": true }, "dependencies": { "@react-native-vector-icons/fontawesome-common": "workspace:^" }, "meta": { "defaultStyleName": "regular", "styleNames": [ "thin", "light", "regular", "solid", "sharpThin", "sharpLight", "sharp", "sharpSolid", "duotone", "brand" ], "styles": { "thin": { "family": "FontAwesome6Pro-Thin", "name": "FontAwesome6_Pro_Thin.ttf", "weight": 100 }, "light": { "family": "FontAwesome6Pro-Light", "name": "FontAwesome6_Pro_Light.ttf", "weight": 300 }, "regular": { "family": "FontAwesome6Pro-Regular", "name": "FontAwesome6_Pro_Regular.ttf", "weight": 400 }, "solid": { "family": "FontAwesome6Pro-Solid", "name": "FontAwesome6_Pro_Solid.ttf", "weight": 900 }, "sharpThin": { "family": "FontAwesome6Sharp-Thin", "name": "FontAwesome6_Pro_Sharp_Thin.ttf", "weight": 100 }, "sharpLight": { "family": "FontAwesome6Sharp-Light", "name": "FontAwesome6_Pro_Sharp_Light.ttf", "weight": 300 }, "sharp": { "family": "FontAwesome6Sharp-Regular", "name": "FontAwesome6_Pro_Sharp_Regular.ttf", "weight": 400 }, "sharpSolid": { "family": "FontAwesome6Sharp-Solid", "name": "FontAwesome6_Pro_Sharp_Solid.ttf", "weight": 900 }, "duotone": { "family": "FontAwesome6Duotone-Solid", "name": "FontAwesome6_Pro_Duotone.ttf", "weight": 900 }, "brand": { "family": "FontAwesome6Brands-Regular", "name": "FontAwesome6_Pro_Brands.ttf", "weight": 400 } } }, "buildSteps": { "preScript": { "script": "../fontawesome-common/scripts/fetch-pro.sh 6" }, "glyphmap": { "location": "fa/pro/css/all.css", "mode": "css", "prefix": ".fa-" }, "postScript": { "script": "node ../fontawesome-common/scripts/generate-fontawesome-metadata --path fa/pro --output glyphmaps/FontAwesome6Pro_meta.json\nrm -rf fa" } }, "versions": [ { "rnvi": "12.0.0", "upstream": "6.7.2" } ] } } ================================================ FILE: packages/fontawesome6-pro/CHANGELOG.md ================================================ ## 12.4.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.4.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.3.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.3.2 - Updated @react-native-vector-icons/common to 12.4.2 ## 12.3.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.3.1 - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.3.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.3.0 - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.2.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.2.0 - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.1.0 - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.0.2 - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - update fontawesome fonts to new createIcon format so font loads in expo ([#1769](https://github.com/oblador/react-native-vector-icons/pull/1769)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - improve warning if glyph does not exist for default IconStyle in fontawesome fonts ([#1718](https://github.com/oblador/react-native-vector-icons/pull/1718)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) - **fontawesome-common,fontawesome5-pro,fontawesome6-pro:** fix FA upgrade scripts (fixes: #1727) ([#1741](https://github.com/oblador/react-native-vector-icons/pull/1741), [#1727](https://github.com/oblador/react-native-vector-icons/issues/1727)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/fontawesome-common to 12.0.1 - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Lukas @WookieFPV - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/fontawesome6-pro/README.md ================================================ # FontAwesome 6 Pro ## Installing the Pro Fonts You need your FontAwesome npm token which can be obtained by logging into your account and then access the `Services` tab. Run `npx fa-upgrade6` and enter the token when asked to in order to upgrade to the Pro version. It will install the fonts in your repo in the `rnvi-fonts/fontawesome6-pro` directory. The top-level `rnvi-fonts` folder name can be customized by setting it when executing the command: `npx fa-upgrade6 [destination]` and setting the `fontDir` in `package.json`. ### Manually If the shell script does not work you can install the Pro version manually. All you really need to do is adding the Pro fonts to the `rnvi-fonts/fontawesome6-pro` directory. ## Usage Using the standard icons works just like the standard icons in this library. ```javascript import { FontAwesome6Pro } from "@react-native-vector-icons/fontawesome6-pro"; const icon = ; ``` Something special about the FontAwesome6Pro class is that you can also pass props to change the style of the icon: ```javascript import { FontAwesome6Pro } from "@react-native-vector-icons/fontawesome6-pro"; const icon = ; const icon = ; ``` **Valid types** | Type | Description | | -------------- | ------------------------- | | **brand** | Uses the Brands font | | **solid** | Uses the Solid font | | **light** | Uses the Light font | | **thin** | Uses the Thin font | | **duotone** | Uses the Duotone font | | **sharpSolid** | Uses the Sharp Solid font | | **sharpThin** | Uses the Sharp Thin font | | **sharpLight** | Uses the Sharp Light font | | **sharp** | Uses the Sharp font | No specified type indicates Regular font. ### getImageSource `getImageSource` works a little different due to its native backend and how the font is separated into different files. An extra argument to specify the font style is required. Use this to select which style the generated image should have: ```javascript import { FontAwesome6Pro } from "@react-native-vector-icons/fontawesome6-pro"; FontAwesome6Pro.getImageSource("solid", "comments", 30, "#000").then((source) => this.setState({ image: source }), ); ``` ================================================ FILE: packages/fontawesome6-pro/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontawesome6_pro" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontAwesome6Pro" codegenJavaPackageName = "com.reactnativevectoricons.fontawesome6_pro" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontawesome6-pro") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome6-pro/fonts" eachFile { println "(RNVI:fontawesome6-pro) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome6-pro" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontawesome6-pro/fonts" eachFile { println "(RNVI:fontawesome6-pro) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontawesome6-pro/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontawesome6-pro/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontawesome6-pro/android/src/main/java/VectorIconsFontAwesome6ProPackage.kt ================================================ package com.reactnativevectoricons.fontawesome6_pro import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontAwesome6ProPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontawesome6-pro/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro.json ================================================ { "0": 48, "1": 49, "2": 50, "3": 51, "4": 52, "5": 53, "6": 54, "7": 55, "8": 56, "9": 57, "100": 58396, "fill-drip": 62838, "arrows-to-circle": 58557, "circle-chevron-right": 61752, "chevron-circle-right": 61752, "wagon-covered": 63726, "line-height": 63601, "bagel": 58327, "transporter-7": 58024, "at": 64, "rectangles-mixed": 58147, "phone-arrow-up-right": 57892, "phone-arrow-up": 57892, "phone-outgoing": 57892, "trash-can": 62189, "trash-alt": 62189, "circle-l": 57620, "head-side-goggles": 63210, "head-vr": 63210, "text-height": 61492, "user-xmark": 62005, "user-times": 62005, "face-hand-yawn": 58233, "gauge-simple-min": 63021, "tachometer-slowest": 63021, "stethoscope": 61681, "coffin": 63174, "message": 62074, "comment-alt": 62074, "salad": 63518, "bowl-salad": 63518, "info": 61737, "robot-astromech": 58066, "ring-diamond": 58795, "fondue-pot": 58381, "theta": 63134, "face-hand-peeking": 58497, "square-user": 57987, "down-left-and-up-right-to-center": 62498, "compress-alt": 62498, "explosion": 58601, "file-lines": 61788, "file-alt": 61788, "file-text": 61788, "wave-square": 63550, "ring": 63243, "building-un": 58585, "dice-three": 62759, "tire-pressure-warning": 63027, "wifi-fair": 63147, "wifi-2": 63147, "calendar-days": 61555, "calendar-alt": 61555, "mp3-player": 63694, "anchor-circle-check": 58538, "tally-4": 58007, "rectangle-history": 58530, "building-circle-arrow-right": 58577, "volleyball": 62559, "volleyball-ball": 62559, "sun-haze": 63333, "text-size": 63636, "ufo": 57415, "fork": 62179, "utensil-fork": 62179, "arrows-up-to-line": 58562, "mobile-signal": 57839, "barcode-scan": 62565, "sort-down": 61661, "sort-desc": 61661, "folder-arrow-down": 57427, "folder-download": 57427, "circle-minus": 61526, "minus-circle": 61526, "face-icicles": 58236, "shovel": 63251, "door-open": 62763, "films": 57722, "right-from-bracket": 62197, "sign-out-alt": 62197, "face-glasses": 58231, "nfc": 57847, "atom": 62930, "soap": 57454, "icons": 63597, "heart-music-camera-bolt": 63597, "microphone-lines-slash": 62777, "microphone-alt-slash": 62777, "closed-captioning-slash": 57653, "calculator-simple": 63052, "calculator-alt": 63052, "bridge-circle-check": 58569, "sliders-up": 62449, "sliders-v": 62449, "location-minus": 62985, "map-marker-minus": 62985, "pump-medical": 57450, "fingerprint": 62839, "ski-boot": 58316, "standard-definition": 57994, "rectangle-sd": 57994, "h1": 62227, "hand-point-right": 61604, "magnifying-glass-location": 63113, "search-location": 63113, "message-bot": 58296, "forward-step": 61521, "step-forward": 61521, "face-smile-beam": 62904, "smile-beam": 62904, "light-ceiling": 57366, "message-exclamation": 62629, "comment-alt-exclamation": 62629, "bowl-scoop": 58334, "bowl-shaved-ice": 58334, "square-x": 57990, "building-memo": 58910, "utility-pole-double": 58052, "flag-checkered": 61726, "chevrons-up": 62245, "chevron-double-up": 62245, "football": 62542, "football-ball": 62542, "user-vneck": 58465, "school-circle-exclamation": 58732, "crop": 61733, "angles-down": 61699, "angle-double-down": 61699, "users-rectangle": 58772, "people-roof": 58679, "square-arrow-right": 62267, "arrow-square-right": 62267, "location-plus": 62986, "map-marker-plus": 62986, "lightbulb-exclamation-on": 57802, "people-line": 58676, "beer-mug-empty": 61692, "beer": 61692, "carpool": 59036, "car-people": 59036, "crate-empty": 57681, "diagram-predecessor": 58487, "transporter": 57410, "calendar-circle-user": 58481, "arrow-up-long": 61814, "long-arrow-up": 61814, "person-carry-box": 62671, "person-carry": 62671, "fire-flame-simple": 62570, "burn": 62570, "person": 61827, "male": 61827, "laptop": 61705, "file-csv": 63197, "menorah": 63094, "union": 63138, "chevrons-left": 62243, "chevron-double-left": 62243, "circle-heart": 62663, "heart-circle": 62663, "truck-plane": 58767, "record-vinyl": 63705, "bring-forward": 63574, "square-p": 57977, "face-grin-stars": 62855, "grin-stars": 62855, "sigma": 63115, "camera-movie": 63657, "bong": 62812, "clarinet": 63661, "truck-flatbed": 58038, "spaghetti-monster-flying": 63099, "pastafarianism": 63099, "arrow-down-up-across-line": 58543, "arrows-rotate-reverse": 58928, "leaf-heart": 62667, "house-building": 57777, "cheese-swiss": 63472, "spoon": 62181, "utensil-spoon": 62181, "jar-wheat": 58647, "envelopes-bulk": 63092, "mail-bulk": 63092, "file-circle-exclamation": 58603, "bow-arrow": 63161, "cart-xmark": 57565, "hexagon-xmark": 62190, "times-hexagon": 62190, "xmark-hexagon": 62190, "circle-h": 62590, "hospital-symbol": 62590, "merge": 58662, "pager": 63509, "cart-minus": 57563, "address-book": 62137, "contact-book": 62137, "pan-frying": 58412, "grid": 57749, "grid-3": 57749, "football-helmet": 62543, "hand-love": 57765, "trees": 63268, "strikethrough": 61644, "page": 58408, "k": 75, "diagram-previous": 58488, "gauge-min": 63016, "tachometer-alt-slowest": 63016, "folder-grid": 57736, "eggplant": 57708, "excavator": 58966, "ram": 63242, "landmark-flag": 58652, "lips": 62976, "pencil": 62211, "pencil-alt": 62211, "backward": 61514, "caret-right": 61658, "comments": 61574, "paste": 61674, "file-clipboard": 61674, "desktop-arrow-down": 57685, "code-pull-request": 57660, "pumpkin": 63239, "clipboard-list": 62573, "pen-field": 57873, "chart-sine": 59037, "blueberries": 58088, "truck-ramp-box": 62686, "truck-loading": 62686, "note": 57855, "arrow-down-to-square": 57494, "user-check": 62716, "cloud-xmark": 58207, "vial-virus": 58775, "book-blank": 62937, "book-alt": 62937, "golf-flag-hole": 58284, "message-arrow-down": 57819, "comment-alt-arrow-down": 57819, "face-unamused": 58271, "sheet-plastic": 58737, "circle-9": 57590, "blog": 63361, "user-ninja": 62724, "pencil-slash": 57877, "bowling-pins": 62519, "person-arrow-up-from-line": 58681, "down-right": 57707, "scroll-torah": 63136, "torah": 63136, "webhook": 58837, "blinds-open": 63740, "fence": 58115, "up": 62295, "arrow-alt-up": 62295, "broom-ball": 62552, "quidditch": 62552, "quidditch-broom-ball": 62552, "drumstick": 63190, "square-v": 57988, "face-awesome": 58377, "gave-dandy": 58377, "dial-off": 57698, "toggle-off": 61956, "face-smile-horns": 58257, "box-archive": 61831, "archive": 61831, "grapes": 58118, "person-drowning": 58693, "dial-max": 57694, "circle-m": 57621, "calendar-image": 57556, "circle-caret-down": 62253, "caret-circle-down": 62253, "arrow-down-9-1": 63622, "sort-numeric-desc": 63622, "sort-numeric-down-alt": 63622, "face-grin-tongue-squint": 62858, "grin-tongue-squint": 62858, "shish-kebab": 63521, "spray-can": 62909, "alarm-snooze": 63557, "scarecrow": 63245, "truck-monster": 63035, "gift-card": 63075, "w": 87, "code-pull-request-draft": 58362, "square-b": 57956, "elephant": 63194, "earth-africa": 62844, "globe-africa": 62844, "rainbow": 63323, "circle-notch": 61902, "tablet-screen-button": 62458, "tablet-alt": 62458, "paw": 61872, "message-question": 57827, "cloud": 61634, "trowel-bricks": 58762, "square-3": 57944, "face-flushed": 62841, "flushed": 62841, "hospital-user": 63501, "microwave": 57371, "chf-sign": 58882, "tent-arrow-left-right": 58751, "cart-circle-arrow-up": 58352, "trash-clock": 58032, "reflect-both": 58991, "gavel": 61667, "legal": 61667, "sprinkler-ceiling": 58444, "browsers": 57547, "trillium": 58760, "table-cells-unlock": 59026, "music-slash": 63697, "truck-ramp": 62688, "binoculars": 61925, "microphone-slash": 61745, "box-tissue": 57435, "circle-c": 57601, "star-christmas": 63444, "chart-bullet": 57569, "motorcycle": 61980, "tree-christmas": 63451, "tire-flat": 63026, "sunglasses": 63634, "badge": 62261, "message-pen": 62628, "comment-alt-edit": 62628, "message-edit": 62628, "bell-concierge": 62818, "concierge-bell": 62818, "pen-ruler": 62894, "pencil-ruler": 62894, "file-mp3": 58952, "arrow-progress": 58847, "chess-rook-piece": 62536, "chess-rook-alt": 62536, "square-root": 63127, "album-collection-circle-plus": 58510, "people-arrows": 57448, "people-arrows-left-right": 57448, "sign-post": 58916, "face-angry-horns": 58216, "mars-and-venus-burst": 58659, "tombstone": 63264, "square-caret-right": 61778, "caret-square-right": 61778, "scissors": 61636, "cut": 61636, "list-music": 63689, "sun-plant-wilt": 58746, "toilets-portable": 58756, "hockey-puck": 62547, "mustache": 58812, "hyphen": 45, "table": 61646, "user-chef": 58322, "message-image": 57824, "comment-alt-image": 57824, "users-medical": 63536, "sensor-triangle-exclamation": 57385, "sensor-alert": 57385, "magnifying-glass-arrow-right": 58657, "tachograph-digital": 62822, "digital-tachograph": 62822, "face-mask": 58239, "pickleball": 58421, "star-sharp-half": 57996, "users-slash": 57459, "clover": 57657, "meat": 63508, "reply": 62437, "mail-reply": 62437, "star-and-crescent": 63129, "empty-set": 63062, "house-fire": 58636, "square-minus": 61766, "minus-square": 61766, "helicopter": 62771, "bird": 58473, "compass": 61774, "square-caret-down": 61776, "caret-square-down": 61776, "heart-half-stroke": 57772, "heart-half-alt": 57772, "file-circle-question": 58607, "truck-utensils": 58920, "laptop-code": 62972, "joystick": 63685, "grill-fire": 58788, "rectangle-vertical-history": 57911, "swatchbook": 62915, "prescription-bottle": 62597, "bars": 61641, "navicon": 61641, "keyboard-left": 57795, "people-group": 58675, "hourglass-end": 62035, "hourglass-3": 62035, "heart-crack": 63401, "heart-broken": 63401, "face-beam-hand-over-mouth": 58492, "droplet-percent": 63312, "humidity": 63312, "square-up-right": 62304, "external-link-square-alt": 62304, "face-kiss-beam": 62871, "kiss-beam": 62871, "corn": 63175, "roller-coaster": 58148, "photo-film-music": 57896, "radar": 57380, "sickle": 63522, "film": 61448, "coconut": 58102, "ruler-horizontal": 62791, "shield-cross": 63250, "cassette-tape": 63659, "square-terminal": 58154, "people-robbery": 58678, "lightbulb": 61675, "caret-left": 61657, "comment-middle": 57673, "trash-can-list": 58027, "block": 58474, "circle-exclamation": 61546, "exclamation-circle": 61546, "school-circle-xmark": 58733, "arrow-right-from-bracket": 61579, "sign-out": 61579, "face-frown-slight": 58230, "circle-chevron-down": 61754, "chevron-circle-down": 61754, "sidebar-flip": 57935, "unlock-keyhole": 61758, "unlock-alt": 61758, "temperature-list": 58009, "cloud-showers-heavy": 63296, "headphones-simple": 62863, "headphones-alt": 62863, "sitemap": 61672, "pipe-section": 58424, "space-station-moon-construction": 57396, "space-station-moon-alt": 57396, "circle-dollar-to-slot": 62649, "donate": 62649, "memory": 62776, "face-sleeping": 58253, "road-spikes": 58728, "fire-burner": 58609, "squirrel": 63258, "arrow-up-to-line": 62273, "arrow-to-top": 62273, "flag": 61476, "face-cowboy-hat": 58222, "hanukiah": 63206, "chart-scatter-3d": 57576, "display-chart-up": 58851, "square-code": 57959, "feather": 62765, "volume-low": 61479, "volume-down": 61479, "xmark-to-slot": 63345, "times-to-slot": 63345, "vote-nay": 63345, "box-taped": 62618, "box-alt": 62618, "comment-slash": 62643, "swords": 63261, "cloud-sun-rain": 63299, "album": 63647, "circle-n": 57624, "compress": 61542, "wheat-awn": 58061, "wheat-alt": 58061, "ankh": 63044, "hands-holding-child": 58618, "asterisk": 42, "key-skeleton-left-right": 58292, "comment-lines": 62640, "luchador-mask": 62549, "luchador": 62549, "mask-luchador": 62549, "square-check": 61770, "check-square": 61770, "shredder": 63114, "book-open-cover": 57536, "book-open-alt": 57536, "sandwich": 63519, "peseta-sign": 57889, "square-parking-slash": 62999, "parking-slash": 62999, "train-tunnel": 58452, "heading": 61916, "header": 61916, "ghost": 63202, "face-anguished": 58217, "hockey-sticks": 62548, "abacus": 63040, "film-simple": 62368, "film-alt": 62368, "list": 61498, "list-squares": 61498, "tree-palm": 63531, "square-phone-flip": 63611, "phone-square-alt": 63611, "user-beard-bolt": 59017, "cart-plus": 61975, "gamepad": 61723, "border-center-v": 63645, "circle-dot": 61842, "dot-circle": 61842, "clipboard-medical": 57651, "face-dizzy": 62823, "dizzy": 62823, "egg": 63483, "up-to-line": 62285, "arrow-alt-to-top": 62285, "house-medical-circle-xmark": 58643, "watch-fitness": 63038, "clock-nine-thirty": 58189, "campground": 63163, "folder-plus": 63070, "jug": 63686, "futbol": 61923, "futbol-ball": 61923, "soccer-ball": 61923, "snow-blowing": 63329, "paintbrush": 61948, "paint-brush": 61948, "lock": 61475, "arrow-down-from-line": 62277, "arrow-from-top": 62277, "gas-pump": 62767, "signal-bars-slash": 63124, "signal-alt-slash": 63124, "monkey": 63227, "rectangle-pro": 57909, "pro": 57909, "house-night": 57360, "hot-tub-person": 62867, "hot-tub": 62867, "globe-pointer": 58894, "blanket": 62616, "map-location": 62879, "map-marked": 62879, "house-flood-water": 58638, "comments-question-check": 57679, "tree": 61883, "arrows-cross": 57506, "backpack": 62932, "square-small": 57982, "folder-arrow-up": 57428, "folder-upload": 57428, "bridge-lock": 58572, "crosshairs-simple": 58783, "sack-dollar": 63517, "pen-to-square": 61508, "edit": 61508, "square-sliders": 62448, "sliders-h-square": 62448, "car-side": 62948, "message-middle-top": 57826, "comment-middle-top-alt": 57826, "lightbulb-on": 63090, "knife": 62180, "utensil-knife": 62180, "share-nodes": 61920, "share-alt": 61920, "display-chart-up-circle-dollar": 58854, "wave-sine": 63641, "heart-circle-minus": 58623, "circle-w": 57644, "circle-calendar": 57602, "calendar-circle": 57602, "hourglass-half": 62034, "hourglass-2": 62034, "microscope": 62992, "sunset": 63335, "sink": 57453, "calendar-exclamation": 62260, "truck-container-empty": 58037, "hand-heart": 62652, "bag-shopping": 62096, "shopping-bag": 62096, "arrow-down-z-a": 63617, "sort-alpha-desc": 63617, "sort-alpha-down-alt": 63617, "mitten": 63413, "reply-clock": 57913, "reply-time": 57913, "person-rays": 58701, "right": 62294, "arrow-alt-right": 62294, "circle-f": 57614, "users": 61632, "face-pleading": 58246, "eye-slash": 61552, "flask-vial": 58611, "police-box": 57377, "cucumber": 58369, "head-side-brain": 63496, "hand": 62038, "hand-paper": 62038, "person-biking-mountain": 63563, "biking-mountain": 63563, "utensils-slash": 58468, "print-magnifying-glass": 63514, "print-search": 63514, "turn-right": 58937, "folder-bookmark": 57734, "arrow-turn-left-down": 58931, "om": 63097, "pi": 63102, "flask-round-potion": 63201, "flask-potion": 63201, "face-shush": 58252, "worm": 58777, "house-circle-xmark": 58635, "plug": 61926, "calendar-circle-exclamation": 58478, "square-i": 57970, "chevron-up": 61559, "face-saluting": 58500, "gauge-simple-low": 63020, "tachometer-slow": 63020, "face-persevering": 58245, "circle-camera": 57603, "camera-circle": 57603, "hand-spock": 62041, "spider-web": 63257, "circle-microphone": 57622, "microphone-circle": 57622, "book-arrow-up": 57530, "popsicle": 58430, "command": 57666, "blinds": 63739, "stopwatch": 62194, "saxophone": 63708, "square-2": 57943, "field-hockey-stick-ball": 62540, "field-hockey": 62540, "arrow-up-square-triangle": 63627, "sort-shapes-up-alt": 63627, "face-scream": 58251, "square-m": 57974, "camera-web": 63538, "webcam": 63538, "comment-arrow-down": 57667, "lightbulb-cfl": 58790, "window-frame-open": 57424, "face-kiss": 62870, "kiss": 62870, "bridge-circle-xmark": 58571, "period": 46, "face-grin-tongue": 62857, "grin-tongue": 62857, "up-to-dotted-line": 58455, "thought-bubble": 58158, "skeleton-ribs": 58827, "raygun": 57381, "flute": 63673, "acorn": 63150, "video-arrow-up-right": 58057, "grate-droplet": 57748, "seal-exclamation": 57922, "chess-bishop": 62522, "message-sms": 57829, "coffee-beans": 57663, "hat-witch": 63207, "face-grin-wink": 62860, "grin-wink": 62860, "clock-three-thirty": 58199, "ear-deaf": 62116, "deaf": 62116, "deafness": 62116, "hard-of-hearing": 62116, "alarm-clock": 62286, "eclipse": 63305, "face-relieved": 58249, "road-circle-check": 58724, "dice-five": 62755, "octagon-minus": 62216, "minus-octagon": 62216, "square-rss": 61763, "rss-square": 61763, "face-zany": 58276, "tricycle": 58819, "land-mine-on": 58651, "square-arrow-up-left": 57955, "i-cursor": 62022, "chart-mixed-up-circle-dollar": 58841, "salt-shaker": 58438, "stamp": 62911, "file-plus": 62233, "draw-square": 62959, "toilet-paper-under-slash": 58017, "toilet-paper-reverse-slash": 58017, "stairs": 57993, "drone-front": 63584, "drone-alt": 63584, "glass-empty": 57745, "dial-high": 57692, "user-helmet-safety": 63532, "user-construction": 63532, "user-hard-hat": 63532, "i": 73, "hryvnia-sign": 63218, "hryvnia": 63218, "arrow-down-left-and-arrow-up-right-to-center": 57490, "pills": 62596, "face-grin-wide": 62849, "grin-alt": 62849, "tooth": 62921, "basketball-hoop": 62517, "objects-align-bottom": 58299, "v": 86, "sparkles": 63632, "squid": 58448, "leafy-green": 58397, "circle-arrow-up-right": 57596, "calendars": 57559, "bangladeshi-taka-sign": 58086, "bicycle": 61958, "hammer-war": 63204, "circle-d": 57604, "spider-black-widow": 63256, "staff-snake": 58745, "rod-asclepius": 58745, "rod-snake": 58745, "staff-aesculapius": 58745, "pear": 57868, "head-side-cough-slash": 57442, "file-mov": 58951, "triangle": 62188, "apartment": 58472, "truck-medical": 61689, "ambulance": 61689, "pepper": 58418, "piano": 63700, "gun-squirt": 57757, "wheat-awn-circle-exclamation": 58776, "snowman": 63440, "user-alien": 57418, "shield-check": 62199, "mortar-pestle": 62887, "road-barrier": 58722, "chart-candlestick": 57570, "briefcase-blank": 57544, "school": 62793, "igloo": 63406, "bracket-round": 40, "parenthesis": 40, "joint": 62869, "horse-saddle": 63683, "mug-marshmallows": 63415, "filters": 57726, "bell-on": 63738, "angle-right": 61701, "dial-med": 57695, "horse": 63216, "q": 81, "monitor-waveform": 62993, "monitor-heart-rate": 62993, "link-simple": 57805, "whistle": 62560, "g": 71, "wine-glass-crack": 62651, "fragile": 62651, "slot-machine": 58318, "notes-medical": 62593, "car-wash": 62950, "escalator": 57713, "comment-image": 57672, "temperature-half": 62153, "temperature-2": 62153, "thermometer-2": 62153, "thermometer-half": 62153, "dong-sign": 57705, "donut": 58374, "doughnut": 58374, "capsules": 62571, "poo-storm": 63322, "poo-bolt": 63322, "tally-1": 58004, "file-vector": 58956, "face-frown-open": 62842, "frown-open": 62842, "square-dashed": 57961, "bag-shopping-plus": 58961, "square-j": 57971, "hand-point-up": 61606, "money-bill": 61654, "arrow-up-big-small": 63630, "sort-size-up": 63630, "barcode-read": 62564, "baguette": 58328, "bowl-soft-serve": 58475, "face-holding-back-tears": 58498, "square-up": 62291, "arrow-alt-square-up": 62291, "train-subway-tunnel": 58019, "subway-tunnel": 58019, "square-exclamation": 62241, "exclamation-square": 62241, "semicolon": 59, "bookmark": 61486, "fan-table": 57348, "align-justify": 61497, "battery-low": 57521, "battery-1": 57521, "credit-card-front": 62346, "brain-arrow-curved-right": 63095, "mind-share": 63095, "umbrella-beach": 62922, "helmet-un": 58627, "location-smile": 62989, "map-marker-smile": 62989, "arrow-left-to-line": 62270, "arrow-to-left": 62270, "bullseye": 61760, "sushi": 58506, "nigiri": 58506, "message-captions": 57822, "comment-alt-captions": 57822, "trash-list": 58033, "bacon": 63461, "option": 58136, "raccoon": 58899, "hand-point-down": 61607, "arrow-up-from-bracket": 57498, "head-side-gear": 58897, "trash-plus": 58034, "file-cad": 58994, "objects-align-top": 58304, "folder": 61563, "folder-blank": 61563, "face-anxious-sweat": 58218, "credit-card-blank": 62345, "file-waveform": 62584, "file-medical-alt": 62584, "microchip-ai": 57836, "mug": 63604, "plane-up-slash": 57902, "radiation": 63417, "pen-circle": 57870, "bag-seedling": 58866, "chart-simple": 58483, "crutches": 63480, "circle-parking": 62997, "parking-circle": 62997, "mars-stroke": 61993, "leaf-oak": 63223, "square-bolt": 57957, "vial": 62610, "gauge": 63012, "dashboard": 63012, "gauge-med": 63012, "tachometer-alt-average": 63012, "wand-magic-sparkles": 58058, "magic-wand-sparkles": 58058, "lambda": 63086, "e": 69, "pizza": 63511, "bowl-chopsticks-noodles": 58090, "h3": 62229, "pen-clip": 62213, "pen-alt": 62213, "bridge-circle-exclamation": 58570, "badge-percent": 63046, "rotate-reverse": 58929, "user": 61447, "sensor": 57384, "comma": 44, "school-circle-check": 58731, "toilet-paper-under": 58016, "toilet-paper-reverse": 58016, "light-emergency": 58399, "arrow-down-to-arc": 58542, "dumpster": 63379, "van-shuttle": 62902, "shuttle-van": 62902, "building-user": 58586, "light-switch": 57367, "square-caret-left": 61841, "caret-square-left": 61841, "highlighter": 62865, "wave-pulse": 62968, "heart-rate": 62968, "key": 61572, "arrow-left-to-bracket": 58985, "hat-santa": 63399, "tamale": 58449, "box-check": 62567, "bullhorn": 61601, "steak": 63524, "location-crosshairs-slash": 62979, "location-slash": 62979, "person-dolly": 62672, "globe": 61612, "synagogue": 63131, "file-chart-column": 63065, "file-chart-line": 63065, "person-half-dress": 58696, "folder-image": 57738, "calendar-pen": 62259, "calendar-edit": 62259, "road-bridge": 58723, "face-smile-tear": 58259, "message-plus": 62632, "comment-alt-plus": 62632, "location-arrow": 61732, "c": 67, "tablet-button": 61706, "person-dress-fairy": 58887, "rectangle-history-circle-user": 58532, "building-lock": 58582, "chart-line-up": 57573, "mailbox": 63507, "sign-posts": 58917, "truck-bolt": 58320, "pizza-slice": 63512, "money-bill-wave": 62778, "chart-area": 61950, "area-chart": 61950, "house-flag": 58637, "circle-three-quarters-stroke": 58836, "person-circle-minus": 58688, "scalpel": 63005, "ban": 61534, "cancel": 61534, "bell-exclamation": 63560, "circle-bookmark": 57600, "bookmark-circle": 57600, "egg-fried": 63484, "face-weary": 58273, "uniform-martial-arts": 58321, "camera-rotate": 57560, "sun-dust": 63332, "comment-text": 57677, "spray-can-sparkles": 62928, "air-freshener": 62928, "signal-bars": 63120, "signal-alt": 63120, "signal-alt-4": 63120, "signal-bars-strong": 63120, "diamond-exclamation": 58373, "star": 61445, "dial-min": 57697, "repeat": 62307, "cross": 63060, "page-caret-down": 58409, "file-caret-down": 58409, "box": 62566, "venus-mars": 61992, "clock-seven-thirty": 58193, "arrow-pointer": 62021, "mouse-pointer": 62021, "clock-four-thirty": 58187, "signal-bars-good": 63123, "signal-alt-3": 63123, "cactus": 63655, "lightbulb-gear": 58877, "maximize": 62238, "expand-arrows-alt": 62238, "charging-station": 62951, "shapes": 63007, "triangle-circle-square": 63007, "plane-tail": 57900, "gauge-simple-max": 63019, "tachometer-fastest": 63019, "circle-u": 57639, "shield-slash": 57931, "square-phone-hangup": 57978, "phone-square-down": 57978, "arrow-up-left": 57501, "transporter-1": 57411, "peanuts": 58417, "shuffle": 61556, "random": 61556, "person-running": 63244, "running": 63244, "mobile-retro": 58663, "grip-lines-vertical": 63397, "bin-bottles-recycle": 58870, "arrow-up-from-square": 57500, "file-dashed-line": 63607, "page-break": 63607, "bracket-curly-right": 125, "spider": 63255, "clock-three": 58198, "hands-bound": 58617, "scalpel-line-dashed": 63006, "scalpel-path": 63006, "file-invoice-dollar": 62833, "pipe-smoking": 58308, "face-astonished": 58219, "window": 62478, "plane-circle-exclamation": 58710, "ear": 62960, "file-lock": 58278, "diagram-venn": 57690, "arrow-down-from-bracket": 58983, "x-ray": 62615, "goal-net": 58283, "coffin-cross": 57425, "octopus": 59016, "spell-check": 63633, "location-xmark": 62990, "map-marker-times": 62990, "map-marker-xmark": 62990, "circle-quarter-stroke": 58835, "lasso": 63688, "slash": 63253, "person-to-portal": 57378, "portal-enter": 57378, "calendar-star": 63286, "computer-mouse": 63692, "mouse": 63692, "arrow-right-to-bracket": 61584, "sign-in": 61584, "pegasus": 63235, "files-medical": 63485, "cannon": 58946, "nfc-lock": 57848, "person-ski-lift": 63432, "ski-lift": 63432, "square-6": 57947, "shop-slash": 57456, "store-alt-slash": 57456, "wind-turbine": 63643, "sliders-simple": 57939, "grid-round": 58842, "badge-sheriff": 63650, "server": 62003, "virus-covid-slash": 58537, "intersection": 63080, "shop-lock": 58533, "family": 58112, "hourglass-start": 62033, "hourglass-1": 62033, "user-hair-buns": 58323, "blender-phone": 63158, "hourglass-clock": 58395, "person-seat-reclined": 57887, "paper-plane-top": 57866, "paper-plane-alt": 57866, "send": 57866, "message-arrow-up": 57820, "comment-alt-arrow-up": 57820, "lightbulb-exclamation": 63089, "layer-minus": 62974, "layer-group-minus": 62974, "chart-pie-simple-circle-currency": 58884, "circle-e": 57609, "building-wheat": 58587, "gauge-max": 63014, "tachometer-alt-fastest": 63014, "person-breastfeeding": 58682, "apostrophe": 39, "file-png": 58982, "fire-hydrant": 57727, "right-to-bracket": 62198, "sign-in-alt": 62198, "video-plus": 62689, "square-right": 62290, "arrow-alt-square-right": 62290, "comment-smile": 62644, "venus": 61985, "passport": 62891, "thumbtack-slash": 59023, "thumb-tack-slash": 59023, "inbox-in": 62224, "inbox-arrow-down": 62224, "heart-pulse": 61982, "heartbeat": 61982, "circle-8": 57589, "clouds-moon": 63301, "clock-ten-thirty": 58197, "people-carry-box": 62670, "people-carry": 62670, "folder-user": 57742, "trash-can-xmark": 58030, "temperature-high": 63337, "microchip": 62171, "left-long-to-line": 58398, "crown": 62753, "weight-hanging": 62925, "xmarks-lines": 58778, "file-prescription": 62834, "table-cells-lock": 59001, "calendar-range": 57558, "flower-daffodil": 63488, "hand-back-point-up": 57762, "weight-scale": 62614, "weight": 62614, "arrow-up-to-arc": 58903, "star-exclamation": 62195, "books": 62939, "user-group": 62720, "user-friends": 62720, "arrow-up-a-z": 61790, "sort-alpha-up": 61790, "layer-plus": 62975, "layer-group-plus": 62975, "play-pause": 57903, "block-question": 58333, "snooze": 63616, "zzz": 63616, "scanner-image": 63731, "tv-retro": 62465, "square-t": 57984, "farm": 63588, "barn-silo": 63588, "chess-knight": 62529, "bars-sort": 57518, "pallet-boxes": 62595, "palette-boxes": 62595, "pallet-alt": 62595, "face-laugh-squint": 62875, "laugh-squint": 62875, "code-simple": 57661, "bolt-slash": 57528, "panel-fire": 58415, "binary-circle-check": 58172, "comment-minus": 62641, "burrito": 63469, "violin": 63725, "objects-column": 58305, "square-chevron-down": 62249, "chevron-square-down": 62249, "comment-plus": 62642, "triangle-instrument": 63714, "triangle-music": 63714, "wheelchair": 61843, "user-pilot-tie": 58049, "piano-keyboard": 63701, "bed-empty": 63737, "circle-arrow-up": 61610, "arrow-circle-up": 61610, "toggle-on": 61957, "rectangle-vertical": 62203, "rectangle-portrait": 62203, "person-walking": 62804, "walking": 62804, "l": 76, "signal-stream": 63709, "down-to-bracket": 58599, "circle-z": 57648, "stars": 63330, "fire": 61549, "bed-pulse": 62599, "procedures": 62599, "house-day": 57358, "shuttle-space": 61847, "space-shuttle": 61847, "shirt-long-sleeve": 58311, "chart-pie-simple": 63054, "chart-pie-alt": 63054, "face-laugh": 62873, "laugh": 62873, "folder-open": 61564, "album-collection-circle-user": 58511, "candy": 58343, "bowl-hot": 63523, "soup": 63523, "flatbread": 58379, "heart-circle-plus": 58624, "code-fork": 57659, "city": 63055, "signal-bars-weak": 63121, "signal-alt-1": 63121, "microphone-lines": 62409, "microphone-alt": 62409, "clock-twelve": 58200, "pepper-hot": 63510, "citrus-slice": 58101, "sheep": 63249, "unlock": 61596, "colon-sign": 57664, "headset": 62864, "badger-honey": 63156, "h4": 63594, "store-slash": 57457, "road-circle-xmark": 58726, "signal-slash": 63125, "user-minus": 62723, "mars-stroke-up": 61994, "mars-stroke-v": 61994, "champagne-glasses": 63391, "glass-cheers": 63391, "taco": 63526, "hexagon-plus": 62208, "plus-hexagon": 62208, "clipboard": 62248, "house-circle-exclamation": 58634, "file-arrow-up": 62836, "file-upload": 62836, "wifi": 61931, "wifi-3": 61931, "wifi-strong": 61931, "messages": 62646, "comments-alt": 62646, "bath": 62157, "bathtub": 62157, "umbrella-simple": 58044, "umbrella-alt": 58044, "rectangle-history-circle-plus": 58531, "underline": 61645, "prescription-bottle-pill": 58816, "user-pen": 62719, "user-edit": 62719, "binary-slash": 58174, "square-o": 57976, "caduceus": 59009, "signature": 62903, "stroopwafel": 62801, "bold": 61490, "anchor-lock": 58541, "building-ngo": 58583, "transporter-3": 57413, "engine-warning": 62962, "engine-exclamation": 62962, "circle-down-right": 57608, "square-k": 57972, "manat-sign": 57813, "money-check-pen": 63602, "money-check-edit": 63602, "not-equal": 62782, "border-top-left": 63571, "border-style": 63571, "map-location-dot": 62880, "map-marked-alt": 62880, "tilde": 126, "jedi": 63081, "square-poll-vertical": 63105, "poll": 63105, "arrow-down-square-triangle": 63625, "sort-shapes-down-alt": 63625, "mug-hot": 63414, "dog-leashed": 63188, "car-battery": 62943, "battery-car": 62943, "face-downcast-sweat": 58225, "mailbox-flag-up": 58811, "memo-circle-info": 58522, "gift": 61547, "dice-two": 62760, "volume": 63144, "volume-medium": 63144, "transporter-5": 58022, "gauge-circle-bolt": 58518, "coin-front": 58364, "file-slash": 58279, "message-arrow-up-right": 57821, "treasure-chest": 63267, "chess-queen": 62533, "paintbrush-fine": 62889, "paint-brush-alt": 62889, "paint-brush-fine": 62889, "paintbrush-alt": 62889, "glasses": 62768, "hood-cloak": 63215, "square-quote": 58153, "up-left": 58045, "bring-front": 63575, "chess-board": 62524, "burger-cheese": 63473, "cheeseburger": 63473, "building-circle-check": 58578, "repeat-1": 62309, "arrow-down-to-line": 62269, "arrow-to-bottom": 62269, "grid-5": 57753, "swap-arrows": 58890, "right-long-to-line": 58436, "person-chalkboard": 58685, "mars-stroke-right": 61995, "mars-stroke-h": 61995, "hand-back-fist": 62037, "hand-rock": 62037, "grid-round-5": 58846, "tally": 63132, "tally-5": 63132, "square-caret-up": 61777, "caret-square-up": 61777, "cloud-showers-water": 58596, "chart-bar": 61568, "bar-chart": 61568, "hands-bubbles": 57438, "hands-wash": 57438, "less-than-equal": 62775, "train": 62008, "up-from-dotted-line": 58454, "eye-low-vision": 62120, "low-vision": 62120, "traffic-light-go": 63032, "face-exhaling": 58496, "sensor-fire": 57386, "user-unlock": 57432, "hexagon-divide": 57773, "00": 58471, "crow": 62752, "cassette-betamax": 63652, "betamax": 63652, "sailboat": 58437, "window-restore": 62162, "nfc-magnifying-glass": 57849, "file-binary": 57717, "circle-v": 57642, "square-plus": 61694, "plus-square": 61694, "bowl-scoops": 58335, "mistletoe": 63412, "custard": 58371, "lacrosse-stick": 58293, "hockey-mask": 63214, "sunrise": 63334, "subtitles": 58895, "panel-ews": 58414, "torii-gate": 63137, "cloud-exclamation": 58513, "message-lines": 62630, "comment-alt-lines": 62630, "frog": 62766, "bucket": 58575, "floppy-disk-pen": 57730, "image": 61502, "window-frame": 57423, "microphone": 61744, "cow": 63176, "file-zip": 58862, "square-ring": 58447, "down-from-line": 62281, "arrow-alt-from-top": 62281, "caret-up": 61656, "shield-xmark": 57932, "shield-times": 57932, "screwdriver": 62794, "circle-sort-down": 57393, "sort-circle-down": 57393, "folder-closed": 57733, "house-tsunami": 58645, "square-nfi": 58742, "forklift": 62586, "arrow-up-from-ground-water": 58549, "bracket-square-right": 93, "martini-glass": 62843, "glass-martini-alt": 62843, "square-binary": 59035, "rotate-left": 62186, "rotate-back": 62186, "rotate-backward": 62186, "undo-alt": 62186, "table-columns": 61659, "columns": 61659, "square-a": 57951, "tick": 58159, "lemon": 61588, "head-side-mask": 57443, "handshake": 62133, "gem": 62373, "dolly": 62578, "dolly-box": 62578, "smoking": 62605, "minimize": 63372, "compress-arrows-alt": 63372, "refrigerator": 57382, "monument": 62886, "octagon-xmark": 62192, "times-octagon": 62192, "xmark-octagon": 62192, "align-slash": 63558, "snowplow": 63442, "angles-right": 61697, "angle-double-right": 61697, "truck-ramp-couch": 62685, "truck-couch": 62685, "cannabis": 62815, "circle-play": 61764, "play-circle": 61764, "arrow-up-right-and-arrow-down-left-from-center": 57504, "location-arrow-up": 58938, "tablets": 62608, "360-degrees": 58076, "ethernet": 63382, "euro-sign": 61779, "eur": 61779, "euro": 61779, "chair": 63168, "circle-check": 61528, "check-circle": 61528, "square-dashed-circle-plus": 58818, "hand-holding-circle-dollar": 58913, "money-simple-from-bracket": 58131, "bat": 63157, "circle-stop": 62093, "stop-circle": 62093, "head-side-headphones": 63682, "phone-rotary": 63699, "arrow-up-to-bracket": 58986, "compass-drafting": 62824, "drafting-compass": 62824, "plate-wheat": 58714, "calendar-circle-minus": 58479, "chopsticks": 58359, "car-wrench": 62947, "car-mechanic": 62947, "icicles": 63405, "person-shelter": 58703, "neuter": 61996, "id-badge": 62145, "kazoo": 63687, "marker": 62881, "bin-bottles": 58869, "face-laugh-beam": 62874, "laugh-beam": 62874, "square-arrow-down-left": 57953, "battery-bolt": 62326, "tree-large": 63453, "helicopter-symbol": 58626, "aperture": 58079, "universal-access": 62106, "gear-complex": 58857, "file-magnifying-glass": 63589, "file-search": 63589, "up-right": 58046, "circle-chevron-up": 61753, "chevron-circle-up": 61753, "user-police": 58163, "lari-sign": 57800, "volcano": 63344, "teddy-bear": 58319, "stocking": 63445, "person-walking-dashed-line-arrow-right": 58707, "image-slash": 57783, "mask-snorkel": 58295, "smoke": 63328, "sterling-sign": 61780, "gbp": 61780, "pound-sign": 61780, "battery-exclamation": 57520, "viruses": 57462, "square-person-confined": 58743, "user-tie": 62728, "up-to-bracket": 58990, "arrow-down-long": 61813, "long-arrow-down": 61813, "tent-arrow-down-to-line": 58750, "certificate": 61603, "crystal-ball": 58210, "reply-all": 61730, "mail-reply-all": 61730, "suitcase": 61682, "person-skating": 63429, "skating": 63429, "star-shooting": 57398, "binary-lock": 58173, "filter-circle-dollar": 63074, "funnel-dollar": 63074, "camera-retro": 61571, "circle-arrow-down": 61611, "arrow-circle-down": 61611, "comment-pen": 62638, "comment-edit": 62638, "file-import": 62831, "arrow-right-to-file": 62831, "banjo": 63651, "square-arrow-up-right": 61772, "external-link-square": 61772, "light-emergency-on": 58400, "kerning": 63599, "box-open": 62622, "square-f": 57968, "scroll": 63246, "spa": 62907, "arrow-left-from-line": 62276, "arrow-from-right": 62276, "strawberry": 58155, "location-pin-lock": 58655, "pause": 61516, "clock-eight-thirty": 58182, "plane-engines": 62430, "plane-alt": 62430, "hill-avalanche": 58631, "temperature-empty": 62155, "temperature-0": 62155, "thermometer-0": 62155, "thermometer-empty": 62155, "bomb": 61922, "gauge-low": 63015, "tachometer-alt-slow": 63015, "registered": 62045, "trash-can-plus": 58028, "address-card": 62139, "contact-card": 62139, "vcard": 62139, "chart-fft": 59038, "scale-unbalanced-flip": 62742, "balance-scale-right": 62742, "globe-snow": 63395, "subscript": 61740, "diamond-turn-right": 62955, "directions": 62955, "integral": 63079, "burst": 58588, "house-laptop": 57446, "laptop-house": 57446, "face-tired": 62920, "tired": 62920, "money-bills": 57843, "blinds-raised": 63741, "smog": 63327, "ufo-beam": 57416, "hydra": 59014, "circle-caret-up": 62257, "caret-circle-up": 62257, "user-vneck-hair-long": 58467, "square-a-lock": 58445, "crutch": 63479, "gas-pump-slash": 62964, "cloud-arrow-up": 61678, "cloud-upload": 61678, "cloud-upload-alt": 61678, "palette": 62783, "transporter-4": 58021, "chart-mixed-up-circle-currency": 58840, "objects-align-right": 58303, "arrows-turn-right": 58560, "vest": 57477, "pig": 63238, "inbox-full": 57786, "circle-envelope": 57612, "envelope-circle": 57612, "triangle-person-digging": 63581, "construction": 63581, "ferry": 58602, "bullseye-arrow": 63048, "arrows-down-to-people": 58553, "seedling": 62680, "sprout": 62680, "clock-seven": 58192, "left-right": 62263, "arrows-alt-h": 62263, "boxes-packing": 58567, "circle-arrow-left": 61608, "arrow-circle-left": 61608, "flashlight": 63672, "file-jpg": 58950, "group-arrows-rotate": 58614, "bowl-food": 58566, "square-9": 57950, "candy-cane": 63366, "arrow-down-wide-short": 61792, "sort-amount-asc": 61792, "sort-amount-down": 61792, "square-dollar": 62185, "dollar-square": 62185, "usd-square": 62185, "phone-arrow-right": 58814, "hand-holding-seedling": 62655, "message-check": 62626, "comment-alt-check": 62626, "cloud-bolt": 63340, "thunderstorm": 63340, "chart-line-up-down": 58839, "text-slash": 63613, "remove-format": 63613, "watch": 62177, "circle-down-left": 57607, "text": 63635, "projector": 63702, "face-smile-wink": 62682, "smile-wink": 62682, "tombstone-blank": 63265, "tombstone-alt": 63265, "chess-king-piece": 62528, "chess-king-alt": 62528, "circle-6": 57587, "waves-sine": 58973, "left": 62293, "arrow-alt-left": 62293, "file-word": 61890, "file-powerpoint": 61892, "square-down": 62288, "arrow-alt-square-down": 62288, "objects-align-center-vertical": 58301, "arrows-left-right": 61566, "arrows-h": 61566, "house-lock": 58640, "cloud-arrow-down": 61677, "cloud-download": 61677, "cloud-download-alt": 61677, "wreath": 63458, "children": 58593, "meter-droplet": 57834, "chalkboard": 62747, "blackboard": 62747, "user-large-slash": 62714, "user-alt-slash": 62714, "signal-strong": 63119, "signal-4": 63119, "lollipop": 58404, "lollypop": 58404, "list-tree": 57810, "envelope-open": 62134, "draw-circle": 62957, "cat-space": 57345, "handshake-simple-slash": 57439, "handshake-alt-slash": 57439, "rabbit-running": 63241, "rabbit-fast": 63241, "memo-pad": 57818, "mattress-pillow": 58661, "alarm-plus": 63556, "alicorn": 63152, "comment-question": 57675, "gingerbread-man": 63389, "guarani-sign": 57754, "burger-fries": 57549, "mug-tea": 63605, "border-top": 63573, "arrows-rotate": 61473, "refresh": 61473, "sync": 61473, "circle-book-open": 57599, "book-circle": 57599, "arrows-to-dotted-line": 57510, "fire-extinguisher": 61748, "magnifying-glass-arrows-rotate": 58974, "garage-open": 57355, "shelves-empty": 57926, "cruzeiro-sign": 57682, "watch-apple": 58059, "watch-calculator": 63728, "list-dropdown": 57807, "cabinet-filing": 63051, "burger-soda": 63576, "square-arrow-up": 62268, "arrow-square-up": 62268, "greater-than-equal": 62770, "pallet-box": 57864, "face-confounded": 58220, "shield-halved": 62445, "shield-alt": 62445, "truck-plow": 63454, "book-atlas": 62808, "atlas": 62808, "virus": 57460, "grid-round-2": 58843, "comment-middle-top": 57674, "wave": 58971, "envelope-circle-check": 58600, "layer-group": 62973, "restroom-simple": 57914, "arrows-to-dot": 58558, "border-outer": 63569, "hashtag-lock": 58389, "clock-two-thirty": 58203, "archway": 62807, "heart-circle-check": 58621, "house-chimney-crack": 63217, "house-damage": 63217, "file-zipper": 61894, "file-archive": 61894, "ticket-perforated": 58942, "heart-half": 57771, "comment-check": 62636, "square": 61640, "memo": 57816, "martini-glass-empty": 61440, "glass-martini": 61440, "couch": 62648, "cedi-sign": 57567, "italic": 61491, "glass-citrus": 63593, "calendar-lines-pen": 58482, "table-cells-column-lock": 59000, "church": 62749, "person-snowmobiling": 63441, "snowmobile": 63441, "face-hushed": 58235, "comments-dollar": 63059, "tickets-simple": 58969, "pickaxe": 58815, "link-simple-slash": 57806, "democrat": 63303, "face-confused": 58221, "pinball": 57897, "z": 90, "person-skiing": 63433, "skiing": 63433, "deer": 63374, "input-pipe": 57790, "road-lock": 58727, "a": 65, "bookmark-slash": 57538, "temperature-arrow-down": 57407, "temperature-down": 57407, "mace": 63224, "feather-pointed": 62827, "feather-alt": 62827, "sausage": 63520, "trash-can-clock": 58026, "p": 80, "broom-wide": 58833, "snowflake": 62172, "stomach": 63011, "newspaper": 61930, "rectangle-ad": 63041, "ad": 63041, "guitar-electric": 63678, "arrow-turn-down-right": 58326, "moon-cloud": 63316, "bread-slice-butter": 58337, "circle-arrow-right": 61609, "arrow-circle-right": 61609, "user-group-crown": 63141, "users-crown": 63141, "circle-i": 57617, "toilet-paper-check": 58802, "filter-circle-xmark": 57723, "locust": 58656, "sort": 61660, "unsorted": 61660, "list-ol": 61643, "list-1-2": 61643, "list-numeric": 61643, "chart-waterfall": 57579, "sparkle": 58838, "face-party": 58243, "kidneys": 62971, "wifi-exclamation": 58063, "chart-network": 63370, "person-dress-burst": 58692, "dice-d4": 63184, "money-check-dollar": 62781, "money-check-alt": 62781, "vector-square": 62923, "bread-slice": 63468, "language": 61867, "wheat-awn-slash": 58168, "face-kiss-wink-heart": 62872, "kiss-wink-heart": 62872, "dagger": 63179, "podium": 63104, "diamonds-4": 59019, "memo-circle-check": 57817, "route-highway": 63002, "down-to-line": 62282, "arrow-alt-to-bottom": 62282, "filter": 61616, "square-g": 57969, "circle-phone": 57627, "phone-circle": 57627, "clipboard-prescription": 62952, "user-nurse-hair": 58461, "question": 63, "file-signature": 62835, "toggle-large-on": 58801, "up-down-left-right": 61618, "arrows-alt": 61618, "dryer-heat": 63586, "dryer-alt": 63586, "house-chimney-user": 57445, "hand-holding-heart": 62654, "arrow-up-small-big": 63631, "sort-size-up-alt": 63631, "train-track": 58451, "puzzle-piece": 61742, "money-check": 62780, "star-half-stroke": 62912, "star-half-alt": 62912, "file-exclamation": 62234, "code": 61729, "whiskey-glass": 63392, "glass-whiskey": 63392, "moon-stars": 63317, "building-circle-exclamation": 58579, "clothes-hanger": 57654, "mobile-notch": 57838, "mobile-iphone": 57838, "magnifying-glass-chart": 58658, "arrow-up-right-from-square": 61582, "external-link": 61582, "cubes-stacked": 58598, "images-user": 57785, "won-sign": 61785, "krw": 61785, "won": 61785, "image-polaroid-user": 57782, "virus-covid": 58536, "square-ellipsis": 57966, "pie": 63237, "chess-knight-piece": 62530, "chess-knight-alt": 62530, "austral-sign": 57513, "cloud-plus": 58206, "f": 70, "leaf": 61548, "bed-bunk": 63736, "road": 61464, "taxi": 61882, "cab": 61882, "person-circle-plus": 58689, "chart-pie": 61952, "pie-chart": 61952, "bolt-lightning": 57527, "clock-eight": 58181, "sack-xmark": 58730, "file-xls": 58957, "file-excel": 61891, "file-contract": 62828, "fish-fins": 58610, "circle-q": 57630, "building-flag": 58581, "face-grin-beam": 62850, "grin-beam": 62850, "object-ungroup": 62024, "face-disguise": 58224, "circle-arrow-down-right": 57594, "alien-8bit": 63734, "alien-monster": 63734, "hand-point-ribbon": 57766, "poop": 63001, "object-exclude": 58524, "telescope": 57406, "location-pin": 61505, "map-marker": 61505, "square-list": 58505, "kaaba": 63083, "toilet-paper": 63262, "helmet-safety": 63495, "hard-hat": 63495, "hat-hard": 63495, "comment-code": 57671, "sim-cards": 57937, "starship": 57401, "eject": 61522, "circle-right": 62298, "arrow-alt-circle-right": 62298, "plane-circle-check": 58709, "seal": 57921, "user-cowboy": 63722, "hexagon-vertical-nft": 58629, "face-rolling-eyes": 62885, "meh-rolling-eyes": 62885, "bread-loaf": 63467, "rings-wedding": 63515, "object-group": 62023, "french-fries": 63491, "chart-line": 61953, "line-chart": 61953, "calendar-arrow-down": 57552, "calendar-download": 57552, "send-back": 63614, "mask-ventilator": 58660, "tickets": 58968, "signature-lock": 58314, "arrow-right": 61537, "signs-post": 62071, "map-signs": 62071, "octagon-plus": 62209, "plus-octagon": 62209, "cash-register": 63368, "person-circle-question": 58690, "melon-slice": 58129, "space-station-moon": 57395, "message-smile": 62634, "comment-alt-smile": 62634, "cup-straw": 58211, "left-from-line": 62280, "arrow-alt-from-right": 62280, "h": 72, "basket-shopping-simple": 57519, "shopping-basket-alt": 57519, "hands-holding-heart": 62659, "hands-heart": 62659, "clock-nine": 58188, "hammer-brush": 58912, "tarp": 58747, "face-sleepy": 58254, "hand-horns": 57769, "screwdriver-wrench": 63449, "tools": 63449, "arrows-to-eye": 58559, "circle-three-quarters": 57637, "trophy-star": 62187, "trophy-alt": 62187, "plug-circle-bolt": 58715, "face-thermometer": 58266, "grid-round-4": 58845, "sign-posts-wrench": 58918, "shirt-running": 58312, "book-circle-arrow-up": 57533, "face-nauseated": 58241, "heart": 61444, "file-chart-pie": 63066, "mars-and-venus": 61988, "house-user": 57776, "home-user": 57776, "circle-arrow-down-left": 57593, "dumpster-fire": 63380, "hexagon-minus": 62215, "minus-hexagon": 62215, "left-to-line": 62283, "arrow-alt-to-left": 62283, "house-crack": 58289, "paw-simple": 63233, "paw-alt": 63233, "arrow-left-long-to-line": 58324, "brackets-round": 57541, "parentheses": 57541, "martini-glass-citrus": 62817, "cocktail": 62817, "user-shakespeare": 58050, "arrow-right-to-arc": 58546, "face-surprise": 62914, "surprise": 62914, "bottle-water": 58565, "circle-pause": 62091, "pause-circle": 62091, "gauge-circle-plus": 58520, "folders": 63072, "angel": 63353, "value-absolute": 63142, "rabbit": 63240, "toilet-paper-slash": 57458, "circle-euro": 58830, "apple-whole": 62929, "apple-alt": 62929, "kitchen-set": 58650, "diamond-half": 58807, "lock-keyhole": 62221, "lock-alt": 62221, "r": 82, "temperature-quarter": 62154, "temperature-1": 62154, "thermometer-1": 62154, "thermometer-quarter": 62154, "square-info": 62223, "info-square": 62223, "wifi-slash": 63148, "toilet-paper-xmark": 58803, "hands-holding-dollar": 62661, "hands-usd": 62661, "cube": 61874, "arrow-down-triangle-square": 63624, "sort-shapes-down": 63624, "bitcoin-sign": 57524, "shutters": 58441, "shield-dog": 58739, "solar-panel": 62906, "lock-open": 62401, "table-tree": 58003, "house-chimney-heart": 57778, "tally-3": 58006, "elevator": 57709, "money-bill-transfer": 58664, "money-bill-trend-up": 58665, "house-flood-water-circle-arrow-right": 58639, "square-poll-horizontal": 63106, "poll-h": 63106, "circle": 61713, "left-to-bracket": 58989, "cart-circle-exclamation": 58354, "sword": 63260, "backward-fast": 61513, "fast-backward": 61513, "recycle": 61880, "user-astronaut": 62715, "interrobang": 58810, "plane-slash": 57449, "circle-dashed": 57605, "trademark": 62044, "basketball": 62516, "basketball-ball": 62516, "fork-knife": 62182, "utensils-alt": 62182, "satellite-dish": 63424, "badge-check": 62262, "circle-up": 62299, "arrow-alt-circle-up": 62299, "slider": 57938, "mobile-screen-button": 62413, "mobile-alt": 62413, "clock-one-thirty": 58191, "inbox-out": 62225, "inbox-arrow-up": 62225, "cloud-slash": 57655, "volume-high": 61480, "volume-up": 61480, "users-rays": 58771, "wallet": 62805, "octagon-check": 58406, "flatbread-stuffed": 58380, "clipboard-check": 62572, "cart-circle-plus": 58355, "truck-clock": 62604, "shipping-timed": 62604, "pool-8-ball": 58309, "file-audio": 61895, "turn-down-left": 58161, "lock-hashtag": 58403, "chart-radar": 57575, "staff": 63259, "burger": 63493, "hamburger": 63493, "utility-pole": 58051, "transporter-6": 58023, "arrow-turn-left": 58930, "wrench": 61613, "bugs": 58576, "vector-polygon": 58055, "diagram-nested": 57687, "rupee-sign": 61782, "rupee": 61782, "file-image": 61893, "circle-question": 61529, "question-circle": 61529, "tickets-perforated": 58943, "image-user": 57784, "buoy": 58805, "plane-departure": 62896, "handshake-slash": 57440, "book-bookmark": 57531, "border-center-h": 63644, "can-food": 58342, "typewriter": 63719, "arrow-right-from-arc": 58545, "circle-k": 57619, "face-hand-over-mouth": 58232, "popcorn": 63513, "house-water": 63311, "house-flood": 63311, "object-subtract": 58526, "code-branch": 61734, "warehouse-full": 62613, "warehouse-alt": 62613, "hat-cowboy": 63680, "bridge": 58568, "phone-flip": 63609, "phone-alt": 63609, "arrow-down-from-dotted-line": 57488, "file-doc": 58861, "square-quarters": 58446, "truck-front": 58039, "cat": 63166, "trash-xmark": 58036, "circle-caret-left": 62254, "caret-circle-left": 62254, "files": 57720, "anchor-circle-exclamation": 58539, "face-clouds": 58493, "user-crown": 63140, "basket-shopping-plus": 58963, "truck-field": 58765, "route": 62679, "cart-circle-check": 58353, "clipboard-question": 58595, "panorama": 57865, "comment-medical": 63477, "teeth-open": 63023, "user-tie-hair-long": 58464, "file-circle-minus": 58605, "head-side-medical": 63497, "arrow-turn-right": 58933, "tags": 61484, "wine-glass": 62691, "forward-fast": 61520, "fast-forward": 61520, "face-meh-blank": 62884, "meh-blank": 62884, "user-robot": 57419, "square-parking": 62784, "parking": 62784, "card-diamond": 58346, "face-zipper": 58277, "face-raised-eyebrow": 58248, "house-signal": 57362, "square-chevron-up": 62252, "chevron-square-up": 62252, "bars-progress": 63528, "tasks-alt": 63528, "faucet-drip": 57350, "arrows-to-line": 57511, "dolphin": 57704, "arrow-up-right": 57503, "circle-r": 57632, "cart-flatbed": 62580, "dolly-flatbed": 62580, "ban-smoking": 62797, "smoking-ban": 62797, "circle-sort-up": 57394, "sort-circle-up": 57394, "terminal": 61728, "mobile-button": 61707, "house-medical-flag": 58644, "basket-shopping": 62097, "shopping-basket": 62097, "tape": 62683, "chestnut": 58358, "bus-simple": 62814, "bus-alt": 62814, "eye": 61550, "face-sad-cry": 62899, "sad-cry": 62899, "heat": 57356, "ticket-airline": 58010, "ticket-perforated-plane": 58010, "ticket-plane": 58010, "boot-heeled": 58175, "arrows-minimize": 57509, "compress-arrows": 57509, "audio-description": 62110, "person-military-to-person": 58700, "file-shield": 58608, "hexagon": 62226, "manhole": 57814, "user-slash": 62726, "pen": 62212, "tower-observation": 58758, "floppy-disks": 57731, "toilet-paper-blank-under": 58015, "toilet-paper-reverse-alt": 58015, "file-code": 61897, "signal": 61458, "signal-5": 61458, "signal-perfect": 61458, "pump": 58434, "bus": 61959, "heart-circle-xmark": 58625, "arrow-up-left-from-circle": 57502, "house-chimney": 58287, "home-lg": 58287, "window-maximize": 62160, "dryer": 63585, "face-frown": 61721, "frown": 61721, "chess-bishop-piece": 62523, "chess-bishop-alt": 62523, "shirt-tank-top": 58313, "diploma": 62954, "scroll-ribbon": 62954, "screencast": 57918, "walker": 63537, "prescription": 62897, "shop": 62799, "store-alt": 62799, "floppy-disk": 61639, "save": 61639, "vihara": 63143, "face-kiss-closed-eyes": 58237, "scale-unbalanced": 62741, "balance-scale-left": 62741, "file-user": 63068, "user-police-tie": 58164, "face-tongue-money": 58269, "tennis-ball": 62558, "square-l": 57973, "sort-up": 61662, "sort-asc": 61662, "calendar-arrow-up": 57553, "calendar-upload": 57553, "comment-dots": 62637, "commenting": 62637, "plant-wilt": 58794, "scarf": 63425, "album-circle-plus": 58508, "user-nurse-hair-long": 58462, "diamond": 61977, "square-left": 62289, "arrow-alt-square-left": 62289, "face-grin-squint": 62853, "grin-squint": 62853, "circle-ellipsis-vertical": 57611, "hand-holding-dollar": 62656, "hand-holding-usd": 62656, "grid-dividers": 58285, "chart-diagram": 59029, "bacterium": 57434, "hand-pointer": 62042, "drum-steelpan": 62826, "hand-scissors": 62039, "hands-praying": 63108, "praying-hands": 63108, "face-pensive": 58244, "user-music": 63723, "arrow-rotate-right": 61470, "arrow-right-rotate": 61470, "arrow-rotate-forward": 61470, "redo": 61470, "messages-dollar": 63058, "comments-alt-dollar": 63058, "sensor-on": 57387, "balloon": 58083, "biohazard": 63360, "chess-queen-piece": 62534, "chess-queen-alt": 62534, "location-crosshairs": 62977, "location": 62977, "mars-double": 61991, "left-from-bracket": 58988, "house-person-leave": 57359, "house-leave": 57359, "house-person-depart": 57359, "ruler-triangle": 63004, "card-club": 58345, "child-dress": 58780, "users-between-lines": 58769, "lungs-virus": 57447, "spinner-third": 62452, "face-grin-tears": 62856, "grin-tears": 62856, "phone": 61589, "computer-mouse-scrollwheel": 63693, "mouse-alt": 63693, "calendar-xmark": 62067, "calendar-times": 62067, "child-reaching": 58781, "table-layout": 58000, "narwhal": 63230, "ramp-loading": 62676, "calendar-circle-plus": 58480, "toothbrush": 63029, "border-inner": 63566, "paw-claws": 63234, "kiwi-fruit": 58124, "traffic-light-slow": 63033, "rectangle-code": 58146, "head-side-virus": 57444, "keyboard-brightness": 57792, "books-medical": 63464, "lightbulb-slash": 63091, "house-blank": 58503, "home-blank": 58503, "square-5": 57946, "square-heart": 62664, "heart-square": 62664, "puzzle": 58435, "user-gear": 62718, "user-cog": 62718, "pipe-circle-check": 58422, "arrow-up-1-9": 61795, "sort-numeric-up": 61795, "octagon-exclamation": 57860, "dial-low": 57693, "door-closed": 62762, "laptop-mobile": 63610, "phone-laptop": 63610, "conveyor-belt-boxes": 62575, "conveyor-belt-alt": 62575, "shield-virus": 57452, "starfighter-twin-ion-engine-advanced": 57998, "starfighter-alt-advanced": 57998, "dice-six": 62758, "starfighter-twin-ion-engine": 57400, "starfighter-alt": 57400, "rocket-launch": 57383, "mosquito-net": 58668, "file-fragment": 59031, "vent-damper": 58469, "bridge-water": 58574, "ban-bug": 63481, "debug": 63481, "person-booth": 63318, "text-width": 61493, "garage-car": 57354, "square-kanban": 58504, "hat-wizard": 63208, "chart-kanban": 58959, "pen-fancy": 62892, "coffee-pot": 57346, "mouse-field": 58792, "person-digging": 63582, "digging": 63582, "shower-down": 57933, "shower-alt": 57933, "box-circle-check": 57540, "brightness": 57545, "car-side-bolt": 58180, "file-xml": 58964, "ornament": 63416, "phone-arrow-down-left": 57891, "phone-arrow-down": 57891, "phone-incoming": 57891, "cloud-word": 57656, "hand-fingers-crossed": 57763, "trash": 61944, "gauge-simple": 63017, "gauge-simple-med": 63017, "tachometer-average": 63017, "arrow-down-small-big": 63629, "sort-size-down-alt": 63629, "book-medical": 63462, "face-melting": 58499, "poo": 62206, "pen-clip-slash": 57871, "pen-alt-slash": 57871, "quote-right": 61710, "quote-right-alt": 61710, "scroll-old": 63247, "guitars": 63679, "phone-xmark": 57895, "hose": 58393, "clock-six": 58194, "shirt": 62803, "t-shirt": 62803, "tshirt": 62803, "billboard": 58829, "square-r": 57980, "cubes": 61875, "envelope-open-dollar": 63063, "divide": 62761, "sun-cloud": 63331, "lamp-floor": 57365, "square-7": 57948, "tenge-sign": 63447, "tenge": 63447, "headphones": 61477, "hands-holding": 62658, "campfire": 63162, "circle-ampersand": 57592, "snowflakes": 63439, "hands-clapping": 57768, "republican": 63326, "leaf-maple": 63222, "arrow-left": 61536, "person-circle-xmark": 58691, "ruler": 62789, "arrow-left-from-bracket": 58984, "cup-straw-swoosh": 58212, "temperature-sun": 63338, "temperature-hot": 63338, "align-left": 61494, "dice-d6": 63185, "restroom": 63421, "high-definition": 57774, "rectangle-hd": 57774, "j": 74, "galaxy": 57352, "users-viewfinder": 58773, "file-video": 61896, "cherries": 57580, "up-right-from-square": 62301, "external-link-alt": 62301, "circle-sort": 57392, "sort-circle": 57392, "table-cells": 61450, "th": 61450, "bag-shopping-minus": 58960, "file-pdf": 61889, "siren": 57389, "arrow-up-to-dotted-line": 57505, "image-landscape": 57781, "landscape": 57781, "tank-water": 58450, "curling-stone": 62538, "curling": 62538, "gamepad-modern": 58786, "gamepad-alt": 58786, "messages-question": 57831, "book-bible": 63047, "bible": 63047, "o": 79, "suitcase-medical": 61690, "medkit": 61690, "briefcase-arrow-right": 58098, "expand-wide": 62240, "clock-eleven-thirty": 58184, "rv": 63422, "user-secret": 61979, "otter": 63232, "dreidel": 63378, "person-dress": 61826, "female": 61826, "comment-dollar": 63057, "business-time": 63050, "briefcase-clock": 63050, "flower-tulip": 63489, "people-pants-simple": 57882, "cloud-drizzle": 63288, "table-cells-large": 61449, "th-large": 61449, "book-tanakh": 63527, "tanakh": 63527, "solar-system": 57391, "seal-question": 57923, "phone-volume": 62112, "volume-control-phone": 62112, "disc-drive": 63669, "hat-cowboy-side": 63681, "table-rows": 58002, "rows": 58002, "location-exclamation": 62984, "map-marker-exclamation": 62984, "face-fearful": 58229, "clipboard-user": 63475, "bus-school": 62941, "film-slash": 57721, "square-arrow-down-right": 57954, "book-sparkles": 63160, "book-spells": 63160, "washing-machine": 63640, "washer": 63640, "child": 61870, "lira-sign": 61845, "user-visor": 57420, "file-plus-minus": 57719, "chess-clock-flip": 62526, "chess-clock-alt": 62526, "satellite": 63423, "truck-fire": 58970, "plane-lock": 58712, "steering-wheel": 63010, "tag": 61483, "stretcher": 63525, "book-section": 57537, "book-law": 57537, "inboxes": 57787, "coffee-bean": 57662, "circle-yen": 58832, "brackets-curly": 63466, "ellipsis-stroke-vertical": 62364, "ellipsis-v-alt": 62364, "comment": 61557, "square-1": 57942, "cake-candles": 61949, "birthday-cake": 61949, "cake": 61949, "head-side": 63209, "truck-ladder": 58967, "envelope": 61664, "dolly-empty": 62579, "face-tissue": 58268, "angles-up": 61698, "angle-double-up": 61698, "bin-recycle": 58871, "paperclip": 61638, "chart-line-down": 63053, "arrow-right-to-city": 58547, "lock-a": 58402, "ribbon": 62678, "lungs": 62980, "person-pinball": 57885, "arrow-up-9-1": 63623, "sort-numeric-up-alt": 63623, "apple-core": 57487, "circle-y": 57647, "h6": 58387, "litecoin-sign": 57811, "bottle-baby": 58995, "circle-small": 57634, "border-none": 63568, "arrow-turn-down-left": 58081, "circle-wifi-circle-wifi": 59006, "circle-wifi-group": 59006, "circle-nodes": 58594, "parachute-box": 62669, "reflect-horizontal": 58980, "message-medical": 63476, "comment-alt-medical": 63476, "rugby-ball": 58310, "comment-music": 63664, "indent": 61500, "tree-deciduous": 62464, "tree-alt": 62464, "puzzle-piece-simple": 57905, "puzzle-piece-alt": 57905, "truck-field-un": 58766, "nfc-trash": 57853, "hourglass": 62036, "hourglass-empty": 62036, "mountain": 63228, "file-xmark": 62231, "file-times": 62231, "house-heart": 62665, "home-heart": 62665, "house-chimney-blank": 58288, "meter-bolt": 57833, "user-doctor": 61680, "user-md": 61680, "slash-back": 92, "circle-info": 61530, "info-circle": 61530, "fishing-rod": 58280, "hammer-crash": 58388, "message-heart": 58825, "cloud-meatball": 63291, "camera-polaroid": 63658, "camera": 61488, "camera-alt": 61488, "square-virus": 58744, "cart-arrow-up": 58350, "meteor": 63315, "car-on": 58589, "sleigh": 63436, "arrow-down-1-9": 61794, "sort-numeric-asc": 61794, "sort-numeric-down": 61794, "buoy-mooring": 58806, "square-4": 57945, "hand-holding-droplet": 62657, "hand-holding-water": 62657, "file-eps": 58948, "tricycle-adult": 58820, "waveform": 63729, "water": 63347, "star-sharp-half-stroke": 57997, "star-sharp-half-alt": 57997, "nfc-signal": 57851, "plane-prop": 57899, "calendar-check": 62068, "clock-desk": 57652, "calendar-clock": 57554, "calendar-time": 57554, "braille": 62113, "prescription-bottle-medical": 62598, "prescription-bottle-alt": 62598, "plate-utensils": 58427, "family-pants": 58114, "hose-reel": 58394, "house-window": 58291, "landmark": 63087, "truck": 61649, "music-magnifying-glass": 58978, "crosshairs": 61531, "cloud-rainbow": 63294, "person-cane": 58684, "alien": 63733, "tent": 58749, "laptop-binary": 58855, "vest-patches": 57478, "people-dress-simple": 57880, "check-double": 62816, "arrow-down-a-z": 61789, "sort-alpha-asc": 61789, "sort-alpha-down": 61789, "bowling-ball-pin": 57539, "bell-school-slash": 62934, "plus-large": 58782, "money-bill-wheat": 58666, "camera-viewfinder": 57562, "screenshot": 57562, "message-music": 63663, "comment-alt-music": 63663, "car-building": 63577, "border-bottom-right": 63572, "border-style-alt": 63572, "octagon": 62214, "comment-arrow-up-right": 57669, "octagon-divide": 57859, "cookie": 62819, "arrow-rotate-left": 61666, "arrow-left-rotate": 61666, "arrow-rotate-back": 61666, "arrow-rotate-backward": 61666, "undo": 61666, "tv-music": 63718, "hard-drive": 61600, "hdd": 61600, "reel": 57912, "face-grin-squint-tears": 62854, "grin-squint-tears": 62854, "dumbbell": 62539, "rectangle-list": 61474, "list-alt": 61474, "tarp-droplet": 58748, "alarm-exclamation": 63555, "house-medical-circle-check": 58641, "traffic-cone": 63030, "grate": 57747, "arrow-down-right": 57491, "person-skiing-nordic": 63434, "skiing-nordic": 63434, "calendar-plus": 62065, "person-from-portal": 57379, "portal-exit": 57379, "plane-arrival": 62895, "cowbell-circle-plus": 63668, "cowbell-more": 63668, "circle-left": 62297, "arrow-alt-circle-left": 62297, "distribute-spacing-vertical": 58214, "signal-bars-fair": 63122, "signal-alt-2": 63122, "sportsball": 58443, "game-console-handheld-crank": 58809, "train-subway": 62009, "subway": 62009, "chart-gantt": 57572, "face-smile-upside-down": 58261, "ball-pile": 63358, "badge-dollar": 63045, "money-bills-simple": 57844, "money-bills-alt": 57844, "list-timeline": 57809, "indian-rupee-sign": 57788, "indian-rupee": 57788, "inr": 57788, "crop-simple": 62821, "crop-alt": 62821, "money-bill-1": 62417, "money-bill-alt": 62417, "left-long": 62218, "long-arrow-alt-left": 62218, "keyboard-down": 57794, "circle-up-right": 57641, "cloud-bolt-moon": 63341, "thunderstorm-moon": 63341, "turn-left-up": 58936, "dna": 62577, "virus-slash": 57461, "bracket-round-right": 41, "circle-sterling": 58831, "circle-5": 57586, "minus": 61544, "subtract": 61544, "fire-flame": 63199, "flame": 63199, "right-to-line": 62284, "arrow-alt-to-right": 62284, "gif": 57744, "chess": 62521, "trash-slash": 58035, "arrow-left-long": 61815, "long-arrow-left": 61815, "plug-circle-check": 58716, "font-case": 63590, "street-view": 61981, "arrow-down-left": 57489, "franc-sign": 57743, "flask-round-poison": 63200, "flask-poison": 63200, "volume-off": 61478, "book-circle-arrow-right": 57532, "chart-user": 63139, "user-chart": 63139, "hands-asl-interpreting": 62115, "american-sign-language-interpreting": 62115, "asl-interpreting": 62115, "hands-american-sign-language-interpreting": 62115, "presentation-screen": 63109, "presentation": 63109, "circle-bolt": 57598, "face-smile-halo": 58255, "cart-circle-arrow-down": 58351, "house-person-return": 57361, "house-person-arrive": 57361, "house-return": 57361, "message-xmark": 62635, "comment-alt-times": 62635, "message-times": 62635, "file-certificate": 62963, "file-award": 62963, "user-doctor-hair-long": 58457, "camera-security": 63742, "camera-home": 63742, "gear": 61459, "cog": 61459, "droplet-slash": 62919, "tint-slash": 62919, "book-heart": 62617, "mosque": 63096, "duck": 63192, "mosquito": 58667, "star-of-david": 63130, "flag-swallowtail": 63308, "flag-alt": 63308, "person-military-rifle": 58699, "car-garage": 62946, "cart-shopping": 61562, "shopping-cart": 61562, "book-font": 57535, "shield-plus": 57930, "vials": 62611, "eye-dropper-full": 57714, "distribute-spacing-horizontal": 58213, "tablet-rugged": 62607, "temperature-snow": 63336, "temperature-frigid": 63336, "moped": 58297, "face-smile-plus": 62905, "smile-plus": 62905, "radio-tuner": 63704, "radio-alt": 63704, "face-swear": 58265, "water-arrow-down": 63348, "water-lower": 63348, "scanner-touchscreen": 62602, "circle-7": 57588, "plug-circle-plus": 58719, "person-ski-jumping": 63431, "ski-jump": 63431, "place-of-worship": 63103, "water-arrow-up": 63349, "water-rise": 63349, "waveform-lines": 63730, "waveform-path": 63730, "split": 57940, "film-canister": 63671, "film-cannister": 63671, "folder-xmark": 63071, "folder-times": 63071, "toilet-paper-blank": 63263, "toilet-paper-alt": 63263, "tablet-screen": 62460, "tablet-android-alt": 62460, "hexagon-vertical-nft-slanted": 58630, "folder-music": 57741, "display-medical": 57702, "desktop-medical": 57702, "share-all": 62311, "peapod": 58140, "chess-clock": 62525, "axe": 63154, "square-d": 57960, "grip-vertical": 62862, "mobile-signal-out": 57840, "hexagon-nodes": 59033, "arrow-turn-up": 61768, "level-up": 61768, "u": 85, "arrow-up-from-dotted-line": 57499, "square-root-variable": 63128, "square-root-alt": 63128, "light-switch-on": 57369, "arrow-down-arrow-up": 63619, "sort-alt": 63619, "raindrops": 63324, "dash": 58372, "minus-large": 58372, "clock": 61463, "clock-four": 61463, "input-numeric": 57789, "truck-tow": 58040, "backward-step": 61512, "step-backward": 61512, "pallet": 62594, "car-bolt": 58177, "arrows-maximize": 62237, "expand-arrows": 62237, "faucet": 57349, "cloud-sleet": 63297, "lamp-street": 57797, "list-radio": 57808, "pen-nib-slash": 58529, "baseball-bat-ball": 62514, "square-up-left": 57986, "overline": 63606, "s": 83, "timeline": 58012, "keyboard": 61724, "arrows-from-dotted-line": 57507, "usb-drive": 63721, "ballot": 63282, "caret-down": 61655, "location-dot-slash": 62981, "map-marker-alt-slash": 62981, "cards": 58349, "house-chimney-medical": 63474, "clinic-medical": 63474, "boxing-glove": 62520, "glove-boxing": 62520, "temperature-three-quarters": 62152, "temperature-3": 62152, "thermometer-3": 62152, "thermometer-three-quarters": 62152, "bell-school": 62933, "mobile-screen": 62415, "mobile-android-alt": 62415, "plane-up": 57901, "folder-heart": 57737, "circle-location-arrow": 62978, "location-circle": 62978, "face-head-bandage": 58234, "sushi-roll": 58507, "maki-roll": 58507, "makizushi": 58507, "car-bump": 62944, "piggy-bank": 62675, "racquet": 62554, "car-mirrors": 58179, "industry-windows": 62387, "industry-alt": 62387, "bolt-auto": 57526, "battery-half": 62018, "battery-3": 62018, "flux-capacitor": 63674, "mountain-city": 58670, "coins": 62750, "honey-pot": 58392, "olive": 58134, "khanda": 63085, "filter-list": 57724, "outlet": 57372, "sliders": 61918, "sliders-h": 61918, "cauldron": 63167, "people": 57878, "folder-tree": 63490, "network-wired": 63231, "croissant": 63478, "map-pin": 62070, "hamsa": 63077, "cent-sign": 58357, "swords-laser": 57405, "flask": 61635, "person-pregnant": 58142, "square-u": 57985, "wand-sparkles": 63275, "router": 63706, "ellipsis-vertical": 61762, "ellipsis-v": 61762, "sword-laser-alt": 57404, "ticket": 61765, "power-off": 61457, "coin": 63580, "laptop-slash": 57799, "right-long": 62219, "long-arrow-alt-right": 62219, "circle-b": 57597, "person-dress-simple": 57884, "pipe-collar": 58423, "lights-holiday": 63410, "citrus": 58100, "flag-usa": 63309, "laptop-file": 58653, "tty": 61924, "teletype": 61924, "chart-tree-map": 57578, "diagram-next": 58486, "person-rifle": 58702, "clock-five-thirty": 58186, "pipe-valve": 58425, "lightbulb-message": 59015, "arrow-up-from-arc": 58548, "face-spiral-eyes": 58501, "compress-wide": 62246, "circle-phone-hangup": 57629, "phone-circle-down": 57629, "gear-complex-code": 58859, "house-medical-circle-exclamation": 58642, "badminton": 58170, "closed-captioning": 61962, "person-hiking": 63212, "hiking": 63212, "right-from-line": 62279, "arrow-alt-from-left": 62279, "venus-double": 61990, "images": 62210, "calculator": 61932, "shuttlecock": 62555, "user-hair": 58458, "eye-evil": 63195, "people-pulling": 58677, "n": 78, "swap": 58889, "garage": 57353, "cable-car": 63450, "tram": 63450, "shovel-snow": 63427, "cloud-rain": 63293, "face-lying": 58238, "sprinkler": 57397, "building-circle-xmark": 58580, "person-sledding": 63435, "sledding": 63435, "game-console-handheld": 63675, "ship": 61978, "clock-six-thirty": 58195, "battery-slash": 62327, "tugrik-sign": 58042, "arrows-down-to-line": 58552, "download": 61465, "angles-up-down": 58893, "shelves": 62592, "inventory": 62592, "cloud-snow": 63298, "face-grin": 62848, "grin": 62848, "delete-left": 62810, "backspace": 62810, "oven": 57373, "cloud-binary": 58881, "eye-dropper": 61947, "eye-dropper-empty": 61947, "eyedropper": 61947, "comment-captions": 57670, "comments-question": 57678, "scribble": 57919, "rotate-exclamation": 57916, "file-circle-check": 58784, "glass": 63492, "loader": 57812, "forward": 61518, "user-pilot": 58048, "mobile": 62414, "mobile-android": 62414, "mobile-phone": 62414, "code-pull-request-closed": 58361, "face-meh": 61722, "meh": 61722, "align-center": 61495, "book-skull": 63159, "book-dead": 63159, "id-card": 62146, "drivers-license": 62146, "face-dotted": 58495, "face-worried": 58275, "outdent": 61499, "dedent": 61499, "court-sport": 58947, "heart-circle-exclamation": 58622, "house": 61461, "home": 61461, "home-alt": 61461, "home-lg-alt": 61461, "vector-circle": 58054, "car-circle-bolt": 58178, "calendar-week": 63364, "flying-disc": 58281, "laptop-medical": 63506, "square-down-right": 57964, "b": 66, "seat-airline": 57924, "moon-over-sun": 63306, "eclipse-alt": 63306, "pipe": 124, "file-medical": 62583, "potato": 58432, "dice-one": 62757, "circle-a": 57591, "helmet-battle": 63211, "butter": 58340, "blanket-fire": 58330, "kiwi-bird": 62773, "castle": 57566, "golf-club": 62545, "arrow-right-arrow-left": 61676, "exchange": 61676, "rotate-right": 62201, "redo-alt": 62201, "rotate-forward": 62201, "utensils": 62183, "cutlery": 62183, "arrow-up-wide-short": 61793, "sort-amount-up": 61793, "chart-pie-simple-circle-dollar": 58885, "balloons": 58084, "mill-sign": 57837, "bowl-rice": 58091, "timeline-arrow": 58013, "skull": 62796, "game-board-simple": 63592, "game-board-alt": 63592, "circle-video": 57643, "video-circle": 57643, "chart-scatter-bubble": 57577, "house-turret": 57780, "banana": 58085, "hand-holding-skull": 57764, "people-dress": 57879, "loveseat": 62668, "couch-small": 62668, "tower-broadcast": 62745, "broadcast-tower": 62745, "truck-pickup": 63036, "block-quote": 57525, "up-long": 62220, "long-arrow-alt-up": 62220, "stop": 61517, "code-merge": 62343, "money-check-dollar-pen": 63603, "money-check-edit-alt": 63603, "up-from-line": 62278, "arrow-alt-from-bottom": 62278, "upload": 61587, "hurricane": 63313, "grid-round-2-plus": 58844, "people-pants": 57881, "mound": 58669, "windsock": 63351, "circle-half": 57616, "brake-warning": 57543, "toilet-portable": 58755, "compact-disc": 62751, "file-arrow-down": 62829, "file-download": 62829, "saxophone-fire": 63707, "sax-hot": 63707, "camera-web-slash": 63539, "webcam-slash": 63539, "folder-medical": 57740, "folder-gear": 57735, "folder-cog": 57735, "hand-wave": 57767, "arrow-up-arrow-down": 57497, "sort-up-down": 57497, "caravan": 63743, "shield-cat": 58738, "message-slash": 62633, "comment-alt-slash": 62633, "bolt": 61671, "zap": 61671, "trash-can-check": 58025, "glass-water": 58612, "oil-well": 58674, "table-cells-column-unlock": 59024, "person-simple": 57888, "arrow-turn-left-up": 58932, "vault": 58053, "mars": 61986, "toilet": 63448, "plane-circle-xmark": 58711, "yen-sign": 61783, "cny": 61783, "jpy": 61783, "rmb": 61783, "yen": 61783, "gear-code": 58856, "notes": 57858, "ruble-sign": 61784, "rouble": 61784, "rub": 61784, "ruble": 61784, "trash-undo": 63637, "trash-arrow-turn-left": 63637, "champagne-glass": 63390, "glass-champagne": 63390, "objects-align-center-horizontal": 58300, "sun": 61829, "trash-can-slash": 58029, "trash-alt-slash": 58029, "screen-users": 63037, "users-class": 63037, "guitar": 63398, "square-arrow-left": 62266, "arrow-square-left": 62266, "square-8": 57949, "face-smile-hearts": 58256, "brackets-square": 63465, "brackets": 63465, "laptop-arrow-down": 57798, "hockey-stick-puck": 58286, "house-tree": 57779, "signal-fair": 63117, "signal-2": 63117, "face-laugh-wink": 62876, "laugh-wink": 62876, "circle-dollar": 62184, "dollar-circle": 62184, "usd-circle": 62184, "horse-head": 63403, "arrows-repeat": 62308, "repeat-alt": 62308, "bore-hole": 58563, "industry": 62069, "image-polaroid": 63684, "wave-triangle": 63642, "turn-left-down": 58935, "person-running-fast": 58879, "circle-down": 62296, "arrow-alt-circle-down": 62296, "grill": 58787, "arrows-turn-to-dots": 58561, "chart-mixed": 63043, "analytics": 63043, "florin-sign": 57732, "arrow-down-short-wide": 63620, "sort-amount-desc": 63620, "sort-amount-down-alt": 63620, "less-than": 60, "display-code": 57701, "desktop-code": 57701, "face-drooling": 58226, "oil-temperature": 62996, "oil-temp": 62996, "square-question": 62205, "question-square": 62205, "air-conditioner": 63732, "angle-down": 61703, "mountains": 63229, "omega": 63098, "car-tunnel": 58590, "person-dolly-empty": 62673, "pan-food": 58411, "head-side-cough": 57441, "grip-lines": 63396, "thumbs-down": 61797, "user-lock": 62722, "arrow-right-long": 61816, "long-arrow-right": 61816, "tickets-airline": 58011, "tickets-perforated-plane": 58011, "tickets-plane": 58011, "tent-double-peak": 58919, "anchor-circle-xmark": 58540, "ellipsis": 61761, "ellipsis-h": 61761, "nfc-slash": 57852, "chess-pawn": 62531, "kit-medical": 62585, "first-aid": 62585, "grid-2-plus": 57751, "bells": 63359, "person-through-window": 58793, "toolbox": 62802, "globe-wifi": 59013, "envelope-dot": 57711, "envelope-badge": 57711, "magnifying-glass-waveform": 58977, "hands-holding-circle": 58619, "bug": 61832, "bowl-chopsticks": 58089, "credit-card": 61597, "credit-card-alt": 61597, "circle-s": 57633, "box-ballot": 63285, "car": 61881, "automobile": 61881, "hand-holding-hand": 58615, "user-tie-hair": 58463, "podium-star": 63320, "user-hair-mullet": 58460, "business-front": 58460, "party-back": 58460, "trian-balbot": 58460, "microphone-stand": 63691, "book-open-reader": 62938, "book-reader": 62938, "family-dress": 58113, "circle-x": 57646, "cabin": 58477, "mountain-sun": 58671, "chart-simple-horizontal": 58484, "arrows-left-right-to-line": 58554, "hand-back-point-left": 57759, "message-dots": 62627, "comment-alt-dots": 62627, "messaging": 62627, "file-heart": 57718, "beer-mug": 57523, "beer-foam": 57523, "dice-d20": 63183, "drone": 63583, "truck-droplet": 58764, "file-circle-xmark": 58785, "temperature-arrow-up": 57408, "temperature-up": 57408, "medal": 62882, "person-fairy": 58888, "bed": 62006, "book-copy": 57534, "square-h": 61693, "h-square": 61693, "square-c": 57958, "clock-two": 58202, "square-ellipsis-vertical": 57967, "calendar-users": 58850, "podcast": 62158, "bee": 57522, "temperature-full": 62151, "temperature-4": 62151, "thermometer-4": 62151, "thermometer-full": 62151, "bell": 61683, "candy-bar": 58344, "chocolate-bar": 58344, "xmark-large": 58779, "pinata": 58307, "file-ppt": 58954, "arrows-from-line": 57508, "superscript": 61739, "bowl-spoon": 58336, "hexagon-check": 58390, "plug-circle-xmark": 58720, "star-of-life": 63009, "phone-slash": 62429, "traffic-light-stop": 63034, "paint-roller": 62890, "accent-grave": 96, "handshake-angle": 62660, "hands-helping": 62660, "circle-0": 57581, "dial-med-low": 57696, "location-dot": 62405, "map-marker-alt": 62405, "crab": 58367, "box-open-full": 62620, "box-full": 62620, "file": 61787, "greater-than": 62, "quotes": 57908, "pretzel": 58433, "t-rex": 58921, "person-swimming": 62916, "swimmer": 62916, "arrow-down": 61539, "user-robot-xmarks": 58535, "message-quote": 57828, "comment-alt-quote": 57828, "candy-corn": 63165, "folder-magnifying-glass": 57739, "folder-search": 57739, "notebook": 57857, "circle-wifi": 59005, "droplet": 61507, "tint": 61507, "bullseye-pointer": 63049, "eraser": 61741, "hexagon-image": 58628, "earth-americas": 62845, "earth": 62845, "earth-america": 62845, "globe-americas": 62845, "file-svg": 58955, "crate-apple": 63153, "apple-crate": 63153, "person-burst": 58683, "game-board": 63591, "hat-chef": 63595, "hand-back-point-right": 57761, "dove": 62650, "snowflake-droplets": 58817, "battery-empty": 62020, "battery-0": 62020, "grid-4": 57752, "socks": 63126, "face-sunglasses": 58264, "inbox": 61468, "square-0": 57941, "section": 58439, "square-this-way-up": 62623, "box-up": 62623, "gauge-high": 63013, "tachometer-alt": 63013, "tachometer-alt-fast": 63013, "square-ampersand": 57952, "envelope-open-text": 63064, "lamp-desk": 57364, "hospital": 61688, "hospital-alt": 61688, "hospital-wide": 61688, "poll-people": 63321, "whiskey-glass-ice": 63393, "glass-whiskey-rocks": 63393, "wine-bottle": 63279, "chess-rook": 62535, "user-bounty-hunter": 58047, "bars-staggered": 62800, "reorder": 62800, "stream": 62800, "diagram-sankey": 57688, "cloud-hail-mixed": 63290, "circle-up-left": 57640, "dharmachakra": 63061, "objects-align-left": 58302, "oil-can-drip": 57861, "face-smiling-hands": 58262, "broccoli": 58338, "route-interstate": 63003, "ear-muffs": 63381, "hotdog": 63503, "transporter-empty": 57414, "person-walking-with-cane": 62109, "blind": 62109, "angle-90": 57485, "rectangle-terminal": 57910, "kite": 63220, "drum": 62825, "scrubber": 62200, "ice-cream": 63504, "heart-circle-bolt": 58620, "fish-bones": 58116, "deer-rudolph": 63375, "fax": 61868, "paragraph": 61917, "head-side-heart": 57770, "square-e": 57965, "meter-fire": 57835, "cloud-hail": 63289, "check-to-slot": 63346, "vote-yea": 63346, "money-from-bracket": 58130, "star-half": 61577, "car-bus": 63578, "speaker": 63711, "timer": 58014, "boxes-stacked": 62568, "boxes": 62568, "boxes-alt": 62568, "landmark-magnifying-glass": 58914, "grill-hot": 58789, "ballot-check": 63283, "link": 61633, "chain": 61633, "ear-listen": 62114, "assistive-listening-systems": 62114, "file-minus": 62232, "tree-city": 58759, "play": 61515, "font": 61489, "cup-togo": 63173, "coffee-togo": 63173, "square-down-left": 57963, "burger-lettuce": 58339, "table-cells-row-lock": 59002, "rupiah-sign": 57917, "magnifying-glass": 61442, "search": 61442, "table-tennis-paddle-ball": 62557, "ping-pong-paddle-ball": 62557, "table-tennis": 62557, "person-dots-from-line": 62576, "diagnoses": 62576, "chevrons-down": 62242, "chevron-double-down": 62242, "trash-can-arrow-up": 63530, "trash-restore-alt": 63530, "signal-good": 63118, "signal-3": 63118, "location-question": 62987, "map-marker-question": 62987, "floppy-disk-circle-xmark": 57729, "floppy-disk-times": 57729, "save-circle-xmark": 57729, "save-times": 57729, "naira-sign": 57846, "peach": 57867, "circles-overlap-3": 59041, "pronoun": 59041, "taxi-bus": 58008, "bracket-curly": 123, "bracket-curly-left": 123, "lobster": 58401, "cart-flatbed-empty": 62582, "dolly-flatbed-empty": 62582, "colon": 58, "cart-arrow-down": 61976, "wand": 63274, "walkie-talkie": 63727, "file-pen": 62236, "file-edit": 62236, "receipt": 62787, "table-picnic": 58157, "square-pen": 61771, "pen-square": 61771, "pencil-square": 61771, "circle-microphone-lines": 57623, "microphone-circle-alt": 57623, "display-slash": 58106, "desktop-slash": 58106, "suitcase-rolling": 62913, "person-circle-exclamation": 58687, "transporter-2": 57412, "user-hoodie": 59018, "hands-holding-diamond": 62588, "hand-receiving": 62588, "money-bill-simple-wave": 57842, "chevron-down": 61560, "battery-full": 62016, "battery": 62016, "battery-5": 62016, "bell-plus": 63561, "book-arrow-right": 57529, "hospitals": 63502, "club": 62247, "skull-crossbones": 63252, "droplet-degree": 63304, "dewpoint": 63304, "code-compare": 57658, "list-ul": 61642, "list-dots": 61642, "hand-holding-magic": 63205, "watermelon-slice": 58167, "circle-ellipsis": 57610, "school-lock": 58735, "tower-cell": 58757, "sd-cards": 57920, "jug-bottle": 58875, "down-long": 62217, "long-arrow-alt-down": 62217, "envelopes": 57712, "phone-office": 63101, "ranking-star": 58721, "chess-king": 62527, "nfc-pen": 57850, "person-harassing": 58697, "magnifying-glass-play": 58976, "hat-winter": 63400, "brazilian-real-sign": 58476, "landmark-dome": 63314, "landmark-alt": 63314, "bone-break": 62936, "arrow-up": 61538, "down-from-dotted-line": 58375, "tv": 62060, "television": 62060, "tv-alt": 62060, "border-left": 63567, "circle-divide": 57606, "shrimp": 58440, "list-check": 61614, "tasks": 61614, "diagram-subtask": 58489, "jug-detergent": 58649, "circle-user": 62141, "user-circle": 62141, "square-y": 57991, "user-doctor-hair": 58456, "planet-ringed": 57376, "mushroom": 58405, "user-shield": 62725, "megaphone": 63093, "wreath-laurel": 58834, "circle-exclamation-check": 57613, "wind": 63278, "box-dollar": 62624, "box-usd": 62624, "car-burst": 62945, "car-crash": 62945, "y": 89, "user-headset": 63533, "arrows-retweet": 62305, "retweet-alt": 62305, "person-snowboarding": 63438, "snowboarding": 63438, "square-chevron-right": 62251, "chevron-square-right": 62251, "lacrosse-stick-ball": 58294, "truck-fast": 62603, "shipping-fast": 62603, "user-magnifying-glass": 58821, "star-sharp": 57995, "comment-heart": 58824, "circle-1": 57582, "circle-star": 57635, "star-circle": 57635, "fish": 62840, "cloud-fog": 63310, "fog": 63310, "waffle": 58470, "music-note": 63695, "music-alt": 63695, "hexagon-exclamation": 58391, "cart-shopping-fast": 57564, "object-union": 58527, "user-graduate": 62721, "starfighter": 57399, "circle-half-stroke": 61506, "adjust": 61506, "arrow-right-long-to-line": 58325, "square-arrow-down": 62265, "arrow-square-down": 62265, "diamond-half-stroke": 58808, "clapperboard": 57649, "square-chevron-left": 62250, "chevron-square-left": 62250, "phone-intercom": 58420, "link-horizontal": 57803, "chain-horizontal": 57803, "mango": 58127, "music-note-slash": 63696, "music-alt-slash": 63696, "circle-radiation": 63418, "radiation-alt": 63418, "face-tongue-sweat": 58270, "globe-stand": 62966, "baseball": 62515, "baseball-ball": 62515, "circle-p": 57626, "award-simple": 57515, "jet-fighter-up": 58648, "diagram-project": 62786, "project-diagram": 62786, "pedestal": 57869, "chart-pyramid": 57574, "sidebar": 57934, "snowman-head": 63387, "frosty-head": 63387, "copy": 61637, "burger-glass": 57550, "volume-xmark": 63145, "volume-mute": 63145, "volume-times": 63145, "hand-sparkles": 57437, "bars-filter": 57517, "paintbrush-pencil": 57862, "party-bell": 58138, "user-vneck-hair": 58466, "jack-o-lantern": 62222, "grip": 62861, "grip-horizontal": 62861, "share-from-square": 61773, "share-square": 61773, "keynote": 63084, "child-combatant": 58592, "child-rifle": 58592, "gun": 57755, "square-phone": 61592, "phone-square": 61592, "hat-beach": 58886, "plus": 43, "add": 43, "expand": 61541, "computer": 58597, "fort": 58502, "cloud-check": 58204, "xmark": 61453, "close": 61453, "multiply": 61453, "remove": 61453, "times": 61453, "face-smirking": 58263, "arrows-up-down-left-right": 61511, "arrows": 61511, "chalkboard-user": 62748, "chalkboard-teacher": 62748, "rhombus": 57915, "claw-marks": 63170, "peso-sign": 57890, "face-smile-tongue": 58260, "cart-circle-xmark": 58356, "building-shield": 58584, "circle-phone-flip": 57628, "phone-circle-alt": 57628, "baby": 63356, "users-line": 58770, "quote-left": 61709, "quote-left-alt": 61709, "tractor": 63266, "down-from-bracket": 58987, "key-skeleton": 63219, "trash-arrow-up": 63529, "trash-restore": 63529, "arrow-down-up-lock": 58544, "arrow-down-to-bracket": 57492, "lines-leaning": 58654, "square-q": 57979, "ruler-combined": 62790, "symbols": 63598, "icons-alt": 63598, "copyright": 61945, "flask-gear": 58865, "highlighter-line": 57775, "bracket-square": 91, "bracket": 91, "bracket-left": 91, "island-tropical": 63505, "island-tree-palm": 63505, "arrow-right-from-line": 62275, "arrow-from-left": 62275, "h2": 62228, "equals": 61, "cake-slice": 58341, "shortcake": 58341, "building-magnifying-glass": 58908, "peanut": 58416, "wrench-simple": 58065, "blender": 62743, "teeth": 63022, "tally-2": 58005, "shekel-sign": 61963, "ils": 61963, "shekel": 61963, "sheqel": 61963, "sheqel-sign": 61963, "cars": 63579, "axe-battle": 63155, "user-hair-long": 58459, "map": 62073, "arrow-left-from-arc": 58901, "file-circle-info": 58515, "face-disappointed": 58223, "lasso-sparkles": 57801, "clock-eleven": 58183, "rocket": 61749, "siren-on": 57390, "clock-ten": 58196, "candle-holder": 63164, "video-arrow-down-left": 58056, "photo-film": 63612, "photo-video": 63612, "floppy-disk-circle-arrow-right": 57728, "save-circle-arrow-right": 57728, "folder-minus": 63069, "hexagon-nodes-bolt": 59034, "planet-moon": 57375, "face-eyes-xmarks": 58228, "chart-scatter": 63470, "circle-gf": 59007, "display-arrow-down": 57700, "store": 62798, "arrow-trend-up": 57496, "plug-circle-minus": 58718, "olive-branch": 58135, "angle": 57484, "vacuum-robot": 57422, "sign-hanging": 62681, "sign": 62681, "square-divide": 57962, "folder-check": 58958, "signal-stream-slash": 57936, "bezier-curve": 62811, "eye-dropper-half": 57715, "store-lock": 58534, "bell-slash": 61942, "cloud-bolt-sun": 63342, "thunderstorm-sun": 63342, "camera-slash": 57561, "comment-quote": 57676, "tablet": 62459, "tablet-android": 62459, "school-flag": 58734, "message-code": 57823, "glass-half": 57746, "glass-half-empty": 57746, "glass-half-full": 57746, "fill": 62837, "message-minus": 62631, "comment-alt-minus": 62631, "angle-up": 61702, "dinosaur": 58878, "drumstick-bite": 63191, "link-horizontal-slash": 57804, "chain-horizontal-slash": 57804, "holly-berry": 63402, "nose": 58813, "arrow-left-to-arc": 58902, "chevron-left": 61523, "bacteria": 57433, "clouds": 63300, "money-bill-simple": 57841, "hand-lizard": 62040, "table-pivot": 58001, "filter-slash": 57725, "trash-can-undo": 63638, "trash-can-arrow-turn-left": 63638, "trash-undo-alt": 63638, "notdef": 57854, "disease": 63482, "person-to-door": 58419, "turntable": 63716, "briefcase-medical": 62569, "genderless": 61997, "chevron-right": 61524, "signal-weak": 63116, "signal-1": 63116, "clock-five": 58185, "retweet": 61561, "car-rear": 62942, "car-alt": 62942, "pump-soap": 57451, "computer-classic": 63665, "frame": 58517, "video-slash": 62690, "battery-quarter": 62019, "battery-2": 62019, "ellipsis-stroke": 62363, "ellipsis-h-alt": 62363, "radio": 63703, "baby-carriage": 63357, "carriage-baby": 63357, "face-expressionless": 58227, "down-to-dotted-line": 58376, "cloud-music": 63662, "traffic-light": 63031, "cloud-minus": 58205, "thermometer": 62609, "shield-minus": 57929, "vr-cardboard": 63273, "car-tilt": 62949, "gauge-circle-minus": 58519, "brightness-low": 57546, "hand-middle-finger": 63494, "percent": 37, "percentage": 37, "truck-moving": 62687, "glass-water-droplet": 58613, "conveyor-belt": 62574, "location-check": 62982, "map-marker-check": 62982, "coin-vertical": 58365, "display": 57699, "person-sign": 63319, "face-smile": 61720, "smile": 61720, "phone-hangup": 57893, "signature-slash": 58315, "thumbtack": 61581, "thumb-tack": 61581, "wheat-slash": 58169, "trophy": 61585, "clouds-sun": 63302, "person-praying": 63107, "pray": 63107, "hammer": 63203, "face-vomit": 58272, "speakers": 63712, "tty-answer": 58041, "teletype-answer": 58041, "mug-tea-saucer": 57845, "diagram-lean-canvas": 57686, "alt": 57482, "dial": 57691, "dial-med-high": 57691, "hand-peace": 62043, "circle-trash": 57638, "trash-circle": 57638, "rotate": 62193, "sync-alt": 62193, "circle-quarters": 58360, "spinner": 61712, "tower-control": 58018, "arrow-up-triangle-square": 63626, "sort-shapes-up": 63626, "whale": 63276, "robot": 62788, "peace": 63100, "party-horn": 58139, "gears": 61573, "cogs": 61573, "sun-bright": 57999, "sun-alt": 57999, "warehouse": 62612, "conveyor-belt-arm": 58872, "lock-keyhole-open": 62402, "lock-open-alt": 62402, "square-fragile": 62619, "box-fragile": 62619, "square-wine-glass-crack": 62619, "arrow-up-right-dots": 58551, "square-n": 57975, "splotch": 62908, "face-grin-hearts": 62852, "grin-hearts": 62852, "meter": 57832, "mandolin": 63225, "dice-four": 62756, "sim-card": 63428, "transgender": 61989, "transgender-alt": 61989, "mercury": 61987, "up-from-bracket": 58768, "knife-kitchen": 63221, "border-right": 63570, "arrow-turn-down": 61769, "level-down": 61769, "spade": 62196, "card-spade": 58348, "line-columns": 63600, "ant": 59008, "arrow-right-to-line": 62272, "arrow-to-right": 62272, "person-falling-burst": 58695, "flag-pennant": 62550, "pennant": 62550, "conveyor-belt-empty": 57680, "user-group-simple": 58883, "award": 62809, "ticket-simple": 62463, "ticket-alt": 62463, "building": 61869, "angles-left": 61696, "angle-double-left": 61696, "camcorder": 63656, "video-handheld": 63656, "pancakes": 58413, "album-circle-user": 58509, "subtitles-slash": 58896, "qrcode": 61481, "dice-d10": 63181, "fireplace": 63386, "browser": 62334, "pen-paintbrush": 63000, "pencil-paintbrush": 63000, "fish-cooked": 63486, "chair-office": 63169, "magnifying-glass-music": 58975, "nesting-dolls": 58298, "clock-rotate-left": 61914, "history": 61914, "trumpet": 63715, "face-grin-beam-sweat": 62851, "grin-beam-sweat": 62851, "fire-smoke": 63307, "phone-missed": 57894, "file-export": 62830, "arrow-right-from-file": 62830, "shield": 61746, "shield-blank": 61746, "arrow-up-short-wide": 63621, "sort-amount-up-alt": 63621, "arrows-repeat-1": 62310, "repeat-1-alt": 62310, "gun-slash": 57756, "avocado": 57514, "binary": 58171, "comment-nodes": 59030, "glasses-round": 62965, "glasses-alt": 62965, "phone-plus": 62674, "ditto": 34, "person-seat": 57886, "house-medical": 58290, "golf-ball-tee": 62544, "golf-ball": 62544, "circle-chevron-left": 61751, "chevron-circle-left": 61751, "house-chimney-window": 57357, "scythe": 63248, "pen-nib": 62893, "ban-parking": 62998, "parking-circle-slash": 62998, "tent-arrow-turn-left": 58752, "face-diagonal-mouth": 58494, "diagram-cells": 58485, "cricket-bat-ball": 62537, "cricket": 62537, "tents": 58754, "wand-magic": 61648, "magic": 61648, "dog": 63187, "pen-line": 57874, "atom-simple": 62931, "atom-alt": 62931, "ampersand": 38, "carrot": 63367, "arrow-up-from-line": 62274, "arrow-from-bottom": 62274, "moon": 61830, "pen-slash": 57875, "wine-glass-empty": 62926, "wine-glass-alt": 62926, "square-star": 57983, "cheese": 63471, "send-backward": 63615, "yin-yang": 63149, "music": 61441, "compass-slash": 62953, "clock-one": 58190, "file-music": 63670, "code-commit": 62342, "temperature-low": 63339, "person-biking": 63562, "biking": 63562, "display-chart-up-circle-currency": 58853, "skeleton": 63008, "circle-g": 57615, "circle-arrow-up-left": 57595, "coin-blank": 58363, "broom": 62746, "vacuum": 57421, "shield-heart": 58740, "card-heart": 58347, "lightbulb-cfl-on": 58791, "melon": 58128, "gopuram": 63076, "earth-oceania": 58491, "globe-oceania": 58491, "container-storage": 62647, "face-pouting": 58247, "square-xmark": 62163, "times-square": 62163, "xmark-square": 62163, "face-explode": 58110, "exploding-head": 58110, "hashtag": 35, "up-right-and-down-left-from-center": 62500, "expand-alt": 62500, "oil-can": 62995, "t": 84, "transformer-bolt": 58020, "hippo": 63213, "chart-column": 57571, "cassette-vhs": 63724, "vhs": 63724, "infinity": 62772, "vial-circle-check": 58774, "chimney": 63371, "object-intersect": 58525, "person-arrow-down-to-line": 58680, "voicemail": 63639, "block-brick": 58331, "wall-brick": 58331, "fan": 63587, "bags-shopping": 63559, "paragraph-left": 63608, "paragraph-rtl": 63608, "person-walking-luggage": 58708, "caravan-simple": 57344, "caravan-alt": 57344, "turtle": 63270, "pencil-mechanical": 58826, "up-down": 62264, "arrows-alt-v": 62264, "cloud-moon-rain": 63292, "booth-curtain": 63284, "calendar": 61747, "box-heart": 62621, "trailer": 57409, "user-doctor-message": 63534, "user-md-chat": 63534, "bahai": 63078, "haykal": 63078, "lighthouse": 58898, "amp-guitar": 63649, "sd-card": 63426, "volume-slash": 62178, "border-bottom": 63565, "wifi-weak": 63146, "wifi-1": 63146, "dragon": 63189, "shoe-prints": 62795, "circle-plus": 61525, "plus-circle": 61525, "face-grin-tongue-wink": 62859, "grin-tongue-wink": 62859, "hand-holding": 62653, "plug-circle-exclamation": 58717, "link-slash": 61735, "chain-broken": 61735, "chain-slash": 61735, "unlink": 61735, "clone": 62029, "person-walking-arrow-loop-left": 58705, "arrow-up-z-a": 63618, "sort-alpha-up-alt": 63618, "fire-flame-curved": 63460, "fire-alt": 63460, "tornado": 63343, "file-circle-plus": 58516, "delete-right": 57684, "book-quran": 63111, "quran": 63111, "circle-quarter": 57631, "anchor": 61757, "border-all": 63564, "function": 63073, "face-angry": 62806, "angry": 62806, "people-simple": 57883, "cookie-bite": 62820, "arrow-trend-down": 57495, "rss": 61598, "feed": 61598, "face-monocle": 58240, "draw-polygon": 62958, "scale-balanced": 62030, "balance-scale": 62030, "calendar-lines": 57557, "calendar-note": 57557, "arrow-down-big-small": 63628, "sort-size-down": 63628, "gauge-simple-high": 63018, "tachometer": 63018, "tachometer-fast": 63018, "do-not-enter": 62956, "shower": 62156, "dice-d8": 63186, "desktop": 62352, "desktop-alt": 62352, "m": 77, "spinner-scale": 58922, "grip-dots-vertical": 58385, "face-viewfinder": 58111, "soft-serve": 58368, "creemee": 58368, "h5": 58386, "hand-back-point-down": 57758, "table-list": 61451, "th-list": 61451, "basket-shopping-minus": 58962, "comment-sms": 63437, "sms": 63437, "rectangle": 62202, "rectangle-landscape": 62202, "clipboard-list-check": 63287, "turkey": 63269, "book": 61485, "user-plus": 62004, "ice-skate": 63404, "check": 61452, "battery-three-quarters": 62017, "battery-4": 62017, "tomato": 58160, "sword-laser": 57403, "house-circle-check": 58633, "buildings": 57548, "angle-left": 61700, "cart-flatbed-boxes": 62581, "dolly-flatbed-alt": 62581, "diagram-successor": 58490, "truck-arrow-right": 58763, "square-w": 57989, "arrows-split-up-and-left": 58556, "lamp": 62666, "airplay": 57481, "hand-fist": 63198, "fist-raised": 63198, "shield-quartered": 58741, "slash-forward": 47, "location-pen": 62983, "map-marker-edit": 62983, "cloud-moon": 63171, "pot-food": 58431, "briefcase": 61617, "person-falling": 58694, "image-portrait": 62432, "portrait": 62432, "user-tag": 62727, "rug": 58729, "print-slash": 63110, "earth-europe": 63394, "globe-europe": 63394, "cart-flatbed-suitcase": 62877, "luggage-cart": 62877, "hand-back-point-ribbon": 57760, "rectangle-xmark": 62480, "rectangle-times": 62480, "times-rectangle": 62480, "window-close": 62480, "tire-rugged": 63028, "lightbulb-dollar": 63088, "cowbell": 63667, "baht-sign": 57516, "corner": 58366, "chevrons-right": 62244, "chevron-double-right": 62244, "book-open": 62744, "book-journal-whills": 63082, "journal-whills": 63082, "inhaler": 62969, "handcuffs": 58616, "snake": 63254, "triangle-exclamation": 61553, "exclamation-triangle": 61553, "warning": 61553, "note-medical": 57856, "database": 61888, "down-left": 57706, "share": 61540, "mail-forward": 61540, "face-thinking": 58267, "turn-down-right": 58453, "bottle-droplet": 58564, "mask-face": 57815, "hill-rockslide": 58632, "scanner-keyboard": 62601, "circle-o": 57625, "grid-horizontal": 58119, "message-dollar": 63056, "comment-alt-dollar": 63056, "right-left": 62306, "exchange-alt": 62306, "columns-3": 58209, "paper-plane": 61912, "road-circle-exclamation": 58725, "dungeon": 63193, "hand-holding-box": 62587, "input-text": 57791, "window-flip": 62479, "window-alt": 62479, "align-right": 61496, "scanner-gun": 62600, "scanner": 62600, "tire": 63025, "engine": 57710, "money-bill-1-wave": 62779, "money-bill-wave-alt": 62779, "life-ring": 61901, "hands": 62119, "sign-language": 62119, "signing": 62119, "circle-caret-right": 62256, "caret-circle-right": 62256, "turn-left": 58934, "wheat": 63277, "file-spreadsheet": 63067, "audio-description-slash": 57512, "bell-ring": 58924, "calendar-day": 63363, "water-ladder": 62917, "ladder-water": 62917, "swimming-pool": 62917, "arrows-up-down": 61565, "arrows-v": 61565, "chess-pawn-piece": 62532, "chess-pawn-alt": 62532, "face-grimace": 62847, "grimace": 62847, "wheelchair-move": 58062, "wheelchair-alt": 58062, "turn-down": 62398, "level-down-alt": 62398, "square-s": 57981, "rectangle-barcode": 62563, "barcode-alt": 62563, "person-walking-arrow-right": 58706, "square-envelope": 61849, "envelope-square": 61849, "dice": 62754, "unicorn": 63271, "bowling-ball": 62518, "pompebled": 58429, "brain": 62940, "watch-smart": 58060, "book-user": 63463, "sensor-cloud": 57388, "sensor-smoke": 57388, "clapperboard-play": 57650, "bandage": 62562, "band-aid": 62562, "calendar-minus": 62066, "circle-xmark": 61527, "times-circle": 61527, "xmark-circle": 61527, "circle-4": 57585, "gifts": 63388, "album-collection": 63648, "hotel": 62868, "earth-asia": 62846, "globe-asia": 62846, "id-card-clip": 62591, "id-card-alt": 62591, "magnifying-glass-plus": 61454, "search-plus": 61454, "thumbs-up": 61796, "cloud-showers": 63295, "user-clock": 62717, "onion": 58407, "clock-twelve-thirty": 58201, "arrow-down-to-dotted-line": 57493, "hand-dots": 62561, "allergies": 62561, "file-invoice": 62832, "window-minimize": 62161, "rectangle-wide": 62204, "comment-arrow-up": 57668, "garlic": 58382, "mug-saucer": 61684, "coffee": 61684, "brush": 62813, "file-half-dashed": 59032, "tree-decorated": 63452, "mask": 63226, "calendar-heart": 57555, "magnifying-glass-minus": 61456, "search-minus": 61456, "flower": 63487, "arrow-down-from-arc": 58900, "right-left-large": 58849, "ruler-vertical": 62792, "circles-overlap": 58880, "user-large": 62470, "user-alt": 62470, "starship-freighter": 57402, "train-tram": 58804, "bridge-suspension": 58573, "trash-check": 58031, "user-nurse": 63535, "boombox": 63653, "syringe": 62606, "cloud-sun": 63172, "shield-exclamation": 57927, "stopwatch-20": 57455, "square-full": 62556, "grip-dots": 58384, "comment-exclamation": 62639, "pen-swirl": 57876, "falafel": 58378, "circle-2": 57583, "magnet": 61558, "jar": 58646, "gramophone": 63677, "dice-d12": 63182, "note-sticky": 62025, "sticky-note": 62025, "down": 62292, "arrow-alt-down": 62292, "hundred-points": 58396, "paperclip-vertical": 58306, "wind-warning": 63350, "wind-circle-exclamation": 63350, "location-pin-slash": 62988, "map-marker-slash": 62988, "face-sad-sweat": 58250, "bug-slash": 58512, "cupcake": 58370, "light-switch-off": 57368, "toggle-large-off": 58800, "pen-fancy-slash": 57872, "truck-container": 62684, "boot": 63362, "arrow-up-from-water-pump": 58550, "file-check": 62230, "bone": 62935, "cards-blank": 58591, "circle-3": 57584, "bench-tree": 58087, "keyboard-brightness-low": 57793, "ski-boot-ski": 58317, "brain-circuit": 57542, "table-cells-row-unlock": 59025, "user-injured": 63272, "block-brick-fire": 58332, "firewall": 58332, "face-sad-tear": 62900, "sad-tear": 62900, "plane": 61554, "tent-arrows-down": 58753, "exclamation": 33, "arrows-spin": 58555, "face-smile-relaxed": 58258, "comment-xmark": 62645, "comment-times": 62645, "print": 61487, "turkish-lira-sign": 58043, "try": 58043, "turkish-lira": 58043, "face-nose-steam": 58242, "circle-waveform-lines": 57645, "waveform-circle": 57645, "dollar-sign": 36, "dollar": 36, "usd": 36, "ferris-wheel": 57716, "computer-speaker": 63666, "skull-cow": 63710, "x": 88, "magnifying-glass-dollar": 63112, "search-dollar": 63112, "users-gear": 62729, "users-cog": 62729, "person-military-pointing": 58698, "building-columns": 61852, "bank": 61852, "institution": 61852, "museum": 61852, "university": 61852, "circle-t": 57636, "sack": 63516, "grid-2": 57750, "camera-cctv": 63660, "cctv": 63660, "umbrella": 61673, "trowel": 58761, "horizontal-rule": 63596, "bed-front": 63735, "bed-alt": 63735, "d": 68, "stapler": 58799, "masks-theater": 63024, "theater-masks": 63024, "file-gif": 58949, "kip-sign": 57796, "face-woozy": 58274, "cloud-question": 58514, "pineapple": 58143, "hand-point-left": 61605, "gallery-thumbnails": 58282, "circle-j": 57618, "eyes": 58215, "handshake-simple": 62662, "handshake-alt": 62662, "page-caret-up": 58410, "file-caret-up": 58410, "jet-fighter": 61691, "fighter-jet": 61691, "comet": 57347, "square-share-nodes": 61921, "share-alt-square": 61921, "reflect-vertical": 58981, "shield-keyhole": 57928, "file-mp4": 58953, "barcode": 61482, "bulldozer": 58965, "plus-minus": 58428, "square-sliders-vertical": 62450, "sliders-v-square": 62450, "video": 61501, "video-camera": 61501, "message-middle": 57825, "comment-middle-alt": 57825, "graduation-cap": 61853, "mortar-board": 61853, "hand-holding-medical": 57436, "person-circle-check": 58686, "square-z": 57992, "message-text": 57830, "comment-alt-text": 57830, "turn-up": 62399, "level-up-alt": 62399, "monero": 62416, "hooli": 62503, "yelp": 61929, "cc-visa": 61936, "lastfm": 61954, "shopware": 62901, "creative-commons-nc": 62696, "aws": 62325, "redhat": 63420, "yoast": 62129, "cloudflare": 57469, "ups": 63456, "pixiv": 58944, "wpexplorer": 62174, "dyalog": 62361, "bity": 62330, "stackpath": 63554, "buysellads": 61965, "first-order": 62128, "modx": 62085, "guilded": 57470, "vnv": 62475, "square-js": 62393, "js-square": 62393, "microsoft": 62410, "qq": 61910, "orcid": 63698, "java": 62692, "invision": 63408, "creative-commons-pd-alt": 62701, "centercode": 62336, "glide-g": 62118, "drupal": 61865, "jxl": 59003, "dart-lang": 59027, "hire-a-helper": 62384, "creative-commons-by": 62695, "unity": 57417, "whmcs": 62477, "rocketchat": 62440, "vk": 61833, "untappd": 62469, "mailchimp": 62878, "css3-alt": 62347, "square-reddit": 61858, "reddit-square": 61858, "vimeo-v": 62077, "contao": 62061, "square-font-awesome": 58797, "deskpro": 62351, "brave": 58940, "sistrix": 62446, "square-instagram": 57429, "instagram-square": 57429, "battle-net": 63541, "the-red-yeti": 63133, "square-hacker-news": 62383, "hacker-news-square": 62383, "edge": 62082, "threads": 58904, "napster": 62418, "square-snapchat": 62125, "snapchat-square": 62125, "google-plus-g": 61653, "artstation": 63354, "markdown": 62991, "sourcetree": 63443, "google-plus": 62131, "diaspora": 63377, "foursquare": 61824, "stack-overflow": 61804, "github-alt": 61715, "phoenix-squadron": 62737, "pagelines": 61836, "algolia": 62316, "red-river": 62435, "creative-commons-sa": 62703, "safari": 62055, "google": 61856, "square-font-awesome-stroke": 62300, "font-awesome-alt": 62300, "atlassian": 63355, "linkedin-in": 61665, "digital-ocean": 62353, "nimblr": 62888, "chromecast": 63544, "evernote": 63545, "hacker-news": 61908, "creative-commons-sampling": 62704, "adversal": 62314, "creative-commons": 62046, "watchman-monitoring": 57479, "fonticons": 62080, "weixin": 61911, "shirtsinbulk": 61972, "codepen": 61899, "git-alt": 63553, "lyft": 62403, "rev": 62898, "windows": 61818, "wizards-of-the-coast": 63280, "square-viadeo": 62122, "viadeo-square": 62122, "meetup": 62176, "centos": 63369, "adn": 61808, "cloudsmith": 62340, "opensuse": 58923, "pied-piper-alt": 61864, "square-dribbble": 62359, "dribbble-square": 62359, "codiepie": 62084, "node": 62489, "mix": 62411, "steam": 61878, "cc-apple-pay": 62486, "scribd": 62090, "debian": 58891, "openid": 61851, "instalod": 57473, "files-pinwheel": 59039, "expeditedssl": 62014, "sellcast": 62170, "square-twitter": 61569, "twitter-square": 61569, "r-project": 62711, "delicious": 61861, "freebsd": 62372, "vuejs": 62495, "accusoft": 62313, "ioxhost": 61960, "fonticons-fi": 62370, "app-store": 62319, "cc-mastercard": 61937, "itunes-note": 62389, "golang": 58383, "kickstarter": 62395, "square-kickstarter": 62395, "grav": 62166, "weibo": 61834, "uncharted": 57476, "firstdraft": 62369, "square-youtube": 62513, "youtube-square": 62513, "wikipedia-w": 62054, "wpressr": 62436, "rendact": 62436, "angellist": 61961, "galactic-republic": 62732, "nfc-directional": 58672, "skype": 61822, "joget": 62391, "fedora": 63384, "stripe-s": 62506, "meta": 58523, "laravel": 62397, "hotjar": 62385, "bluetooth-b": 62100, "square-letterboxd": 58926, "sticker-mule": 62455, "creative-commons-zero": 62707, "hips": 62546, "css": 59042, "behance": 61876, "reddit": 61857, "discord": 62354, "chrome": 62056, "app-store-ios": 62320, "cc-discover": 61938, "wpbeginner": 62103, "confluence": 63373, "shoelace": 58892, "mdb": 63690, "dochub": 62356, "accessible-icon": 62312, "ebay": 62708, "amazon": 62064, "unsplash": 57468, "yarn": 63459, "square-steam": 61879, "steam-square": 61879, "500px": 62062, "square-vimeo": 61844, "vimeo-square": 61844, "asymmetrik": 62322, "font-awesome": 62132, "font-awesome-flag": 62132, "font-awesome-logo-full": 62132, "gratipay": 61828, "apple": 61817, "hive": 57471, "gitkraken": 62374, "keybase": 62709, "apple-pay": 62485, "padlet": 58528, "amazon-pay": 62508, "square-github": 61586, "github-square": 61586, "stumbleupon": 61860, "fedex": 63383, "phoenix-framework": 62428, "shopify": 57431, "neos": 62994, "square-threads": 58905, "hackerrank": 62967, "researchgate": 62712, "swift": 63713, "angular": 62496, "speakap": 62451, "angrycreative": 62318, "y-combinator": 62011, "empire": 61905, "envira": 62105, "google-scholar": 58939, "square-gitlab": 58798, "gitlab-square": 58798, "studiovinari": 62456, "pied-piper": 62126, "wordpress": 61850, "product-hunt": 62088, "firefox": 62057, "linode": 62136, "goodreads": 62376, "square-odnoklassniki": 62052, "odnoklassniki-square": 62052, "jsfiddle": 61900, "sith": 62738, "themeisle": 62130, "page4": 62423, "hashnode": 58521, "react": 62491, "cc-paypal": 61940, "squarespace": 62910, "cc-stripe": 61941, "creative-commons-share": 62706, "bitcoin": 62329, "keycdn": 62394, "opera": 62058, "itch-io": 63546, "umbraco": 63720, "galactic-senate": 62733, "ubuntu": 63455, "draft2digital": 62358, "stripe": 62505, "houzz": 62076, "gg": 62048, "dhl": 63376, "square-pinterest": 61651, "pinterest-square": 61651, "xing": 61800, "blackberry": 62331, "creative-commons-pd": 62700, "playstation": 62431, "quinscape": 62553, "less": 62493, "blogger-b": 62333, "opencart": 62013, "vine": 61898, "signal-messenger": 58979, "paypal": 61933, "gitlab": 62102, "typo3": 62507, "reddit-alien": 62081, "yahoo": 61854, "dailymotion": 57426, "affiliatetheme": 62315, "pied-piper-pp": 61863, "bootstrap": 63542, "odnoklassniki": 62051, "nfc-symbol": 58673, "mintbit": 58927, "ethereum": 62510, "speaker-deck": 63548, "creative-commons-nc-eu": 62697, "patreon": 62425, "avianex": 62324, "ello": 62961, "gofore": 62375, "bimobject": 62328, "brave-reverse": 58941, "facebook-f": 62366, "square-google-plus": 61652, "google-plus-square": 61652, "web-awesome": 59010, "mandalorian": 62735, "first-order-alt": 62730, "osi": 62490, "google-wallet": 61934, "d-and-d-beyond": 63178, "periscope": 62426, "fulcrum": 62731, "cloudscale": 62339, "forumbee": 61969, "mizuni": 62412, "schlix": 62442, "square-xing": 61801, "xing-square": 61801, "bandcamp": 62165, "wpforms": 62104, "cloudversify": 62341, "usps": 63457, "megaport": 62883, "magento": 62404, "spotify": 61884, "optin-monster": 62012, "fly": 62487, "square-bluesky": 59043, "aviato": 62497, "itunes": 62388, "cuttlefish": 62348, "blogger": 62332, "flickr": 61806, "viber": 62473, "soundcloud": 61886, "digg": 61862, "tencent-weibo": 61909, "letterboxd": 58925, "symfony": 63549, "maxcdn": 61750, "etsy": 62167, "facebook-messenger": 62367, "audible": 62323, "think-peaks": 63281, "bilibili": 58329, "erlang": 62365, "x-twitter": 58907, "cotton-bureau": 63646, "dashcube": 61968, "42-group": 57472, "innosoft": 57472, "stack-exchange": 61837, "elementor": 62512, "square-pied-piper": 57374, "pied-piper-square": 57374, "creative-commons-nd": 62699, "palfed": 62424, "superpowers": 62173, "resolving": 62439, "xbox": 62482, "square-web-awesome-stroke": 59012, "searchengin": 62443, "tiktok": 57467, "square-facebook": 61570, "facebook-square": 61570, "renren": 61835, "linux": 61820, "glide": 62117, "linkedin": 61580, "hubspot": 62386, "deploydog": 62350, "twitch": 61928, "flutter": 59028, "ravelry": 62169, "mixer": 57430, "square-lastfm": 61955, "lastfm-square": 61955, "vimeo": 62474, "mendeley": 63411, "uniregistry": 62468, "figma": 63385, "creative-commons-remix": 62702, "cc-amazon-pay": 62509, "dropbox": 61803, "instagram": 61805, "cmplid": 58208, "upwork": 58945, "facebook": 61594, "gripfire": 62380, "jedi-order": 62734, "uikit": 62467, "fort-awesome-alt": 62371, "phabricator": 62427, "ussunnah": 62471, "earlybirds": 62362, "trade-federation": 62739, "autoprefixer": 62492, "whatsapp": 62002, "square-upwork": 59004, "slideshare": 61927, "google-play": 62379, "viadeo": 62121, "line": 62400, "google-drive": 62378, "servicestack": 62444, "simplybuilt": 61973, "bitbucket": 61809, "imdb": 62168, "deezer": 57463, "raspberry-pi": 63419, "jira": 63409, "docker": 62357, "screenpal": 58736, "bluetooth": 62099, "gitter": 62502, "d-and-d": 62349, "microblog": 57370, "cc-diners-club": 62028, "gg-circle": 62049, "pied-piper-hat": 62693, "kickstarter-k": 62396, "yandex": 62483, "readme": 62677, "html5": 61755, "sellsy": 61971, "square-web-awesome": 59011, "sass": 62494, "wirsindhandwerk": 58064, "wsh": 58064, "buromobelexperte": 62335, "salesforce": 63547, "octopus-deploy": 57474, "medapps": 62406, "ns8": 62421, "pinterest-p": 62001, "apper": 62321, "fort-awesome": 62086, "waze": 63551, "bluesky": 58993, "cc-jcb": 62027, "snapchat": 62123, "snapchat-ghost": 62123, "fantasy-flight-games": 63196, "rust": 57466, "wix": 62927, "square-behance": 61877, "behance-square": 61877, "supple": 62457, "webflow": 58972, "rebel": 61904, "css3": 61756, "staylinked": 62453, "kaggle": 62970, "space-awesome": 58796, "deviantart": 61885, "cpanel": 62344, "goodreads-g": 62377, "square-git": 61906, "git-square": 61906, "square-tumblr": 61812, "tumblr-square": 61812, "trello": 61825, "creative-commons-nc-jp": 62698, "get-pocket": 62053, "perbyte": 57475, "grunt": 62381, "weebly": 62924, "connectdevelop": 61966, "leanpub": 61970, "black-tie": 62078, "themeco": 62918, "python": 62434, "android": 61819, "bots": 58176, "free-code-camp": 62149, "hornbill": 62866, "js": 62392, "ideal": 57363, "git": 61907, "dev": 63180, "sketch": 63430, "yandex-international": 62484, "cc-amex": 61939, "uber": 62466, "github": 61595, "php": 62551, "alipay": 63042, "youtube": 61799, "skyatlas": 61974, "firefox-browser": 57351, "replyd": 62438, "suse": 63446, "jenkins": 62390, "twitter": 61593, "rockrms": 62441, "pinterest": 61650, "buffer": 63543, "npm": 62420, "yammer": 63552, "btc": 61786, "dribbble": 61821, "stumbleupon-circle": 61859, "internet-explorer": 62059, "stubber": 58823, "telegram": 62150, "telegram-plane": 62150, "old-republic": 62736, "odysee": 58822, "square-whatsapp": 62476, "whatsapp-square": 62476, "node-js": 62419, "edge-legacy": 57464, "slack": 61848, "slack-hash": 61848, "medrt": 62408, "usb": 62087, "tumblr": 61811, "vaadin": 62472, "quora": 62148, "square-x-twitter": 58906, "reacteurope": 63325, "medium": 62010, "medium-m": 62010, "amilia": 62317, "mixcloud": 62089, "flipboard": 62541, "viacoin": 62007, "critical-role": 63177, "sitrox": 58442, "discourse": 62355, "joomla": 61866, "mastodon": 62710, "airbnb": 63540, "wolf-pack-battalion": 62740, "buy-n-large": 63654, "gulp": 62382, "creative-commons-sampling-plus": 62705, "strava": 62504, "ember": 62499, "canadian-maple-leaf": 63365, "teamspeak": 62713, "pushed": 62433, "wordpress-simple": 62481, "nutritionix": 62422, "wodu": 57480, "google-pay": 57465, "intercom": 63407, "zhihu": 63039, "korvue": 62511, "pix": 58426, "steam-symbol": 62454 } ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_brand.json ================================================ {"42-group":57472,"500px":62062,"accessible-icon":62312,"accusoft":62313,"adn":61808,"adversal":62314,"affiliatetheme":62315,"airbnb":63540,"algolia":62316,"alipay":63042,"amazon-pay":62508,"amazon":62064,"amilia":62317,"android":61819,"angellist":61961,"angrycreative":62318,"angular":62496,"app-store-ios":62320,"app-store":62319,"apper":62321,"apple-pay":62485,"apple":61817,"artstation":63354,"asymmetrik":62322,"atlassian":63355,"audible":62323,"autoprefixer":62492,"avianex":62324,"aviato":62497,"aws":62325,"bandcamp":62165,"battle-net":63541,"behance":61876,"bilibili":58329,"bimobject":62328,"bitbucket":61809,"bitcoin":62329,"bity":62330,"black-tie":62078,"blackberry":62331,"blogger-b":62333,"blogger":62332,"bluesky":58993,"bluetooth-b":62100,"bluetooth":62099,"bootstrap":63542,"bots":58176,"brave-reverse":58941,"brave":58940,"btc":61786,"buffer":63543,"buromobelexperte":62335,"buy-n-large":63654,"buysellads":61965,"canadian-maple-leaf":63365,"cc-amazon-pay":62509,"cc-amex":61939,"cc-apple-pay":62486,"cc-diners-club":62028,"cc-discover":61938,"cc-jcb":62027,"cc-mastercard":61937,"cc-paypal":61940,"cc-stripe":61941,"cc-visa":61936,"centercode":62336,"centos":63369,"chrome":62056,"chromecast":63544,"cloudflare":57469,"cloudscale":62339,"cloudsmith":62340,"cloudversify":62341,"cmplid":58208,"codepen":61899,"codiepie":62084,"confluence":63373,"connectdevelop":61966,"contao":62061,"cotton-bureau":63646,"cpanel":62344,"creative-commons-by":62695,"creative-commons-nc-eu":62697,"creative-commons-nc-jp":62698,"creative-commons-nc":62696,"creative-commons-nd":62699,"creative-commons-pd-alt":62701,"creative-commons-pd":62700,"creative-commons-remix":62702,"creative-commons-sa":62703,"creative-commons-sampling-plus":62705,"creative-commons-sampling":62704,"creative-commons-share":62706,"creative-commons-zero":62707,"creative-commons":62046,"critical-role":63177,"css":59042,"css3-alt":62347,"css3":61756,"cuttlefish":62348,"d-and-d-beyond":63178,"d-and-d":62349,"dailymotion":57426,"dart-lang":59027,"dashcube":61968,"debian":58891,"deezer":57463,"delicious":61861,"deploydog":62350,"deskpro":62351,"dev":63180,"deviantart":61885,"dhl":63376,"diaspora":63377,"digg":61862,"digital-ocean":62353,"discord":62354,"discourse":62355,"dochub":62356,"docker":62357,"draft2digital":62358,"dribbble":61821,"dropbox":61803,"drupal":61865,"dyalog":62361,"earlybirds":62362,"ebay":62708,"edge-legacy":57464,"edge":62082,"elementor":62512,"ello":62961,"ember":62499,"empire":61905,"envira":62105,"erlang":62365,"ethereum":62510,"etsy":62167,"evernote":63545,"expeditedssl":62014,"facebook-f":62366,"facebook-messenger":62367,"facebook":61594,"fantasy-flight-games":63196,"fedex":63383,"fedora":63384,"figma":63385,"files-pinwheel":59039,"firefox-browser":57351,"firefox":62057,"first-order-alt":62730,"first-order":62128,"firstdraft":62369,"flickr":61806,"flipboard":62541,"flutter":59028,"fly":62487,"font-awesome":62132,"fonticons-fi":62370,"fonticons":62080,"fort-awesome-alt":62371,"fort-awesome":62086,"forumbee":61969,"foursquare":61824,"free-code-camp":62149,"freebsd":62372,"fulcrum":62731,"galactic-republic":62732,"galactic-senate":62733,"get-pocket":62053,"gg-circle":62049,"gg":62048,"git-alt":63553,"git":61907,"github-alt":61715,"github":61595,"gitkraken":62374,"gitlab":62102,"gitter":62502,"glide-g":62118,"glide":62117,"gofore":62375,"golang":58383,"goodreads-g":62377,"goodreads":62376,"google-drive":62378,"google-pay":57465,"google-play":62379,"google-plus-g":61653,"google-plus":62131,"google-scholar":58939,"google-wallet":61934,"google":61856,"gratipay":61828,"grav":62166,"gripfire":62380,"grunt":62381,"guilded":57470,"gulp":62382,"hacker-news":61908,"hackerrank":62967,"hashnode":58521,"hips":62546,"hire-a-helper":62384,"hive":57471,"hooli":62503,"hornbill":62866,"hotjar":62385,"houzz":62076,"html5":61755,"hubspot":62386,"ideal":57363,"imdb":62168,"instagram":61805,"instalod":57473,"intercom":63407,"internet-explorer":62059,"invision":63408,"ioxhost":61960,"itch-io":63546,"itunes-note":62389,"itunes":62388,"java":62692,"jedi-order":62734,"jenkins":62390,"jira":63409,"joget":62391,"joomla":61866,"js":62392,"jsfiddle":61900,"jxl":59003,"kaggle":62970,"keybase":62709,"keycdn":62394,"kickstarter-k":62396,"kickstarter":62395,"korvue":62511,"laravel":62397,"lastfm":61954,"leanpub":61970,"less":62493,"letterboxd":58925,"line":62400,"linkedin-in":61665,"linkedin":61580,"linode":62136,"linux":61820,"lyft":62403,"magento":62404,"mailchimp":62878,"mandalorian":62735,"markdown":62991,"mastodon":62710,"maxcdn":61750,"mdb":63690,"medapps":62406,"medium":62010,"medrt":62408,"meetup":62176,"megaport":62883,"mendeley":63411,"meta":58523,"microblog":57370,"microsoft":62410,"mintbit":58927,"mix":62411,"mixcloud":62089,"mixer":57430,"mizuni":62412,"modx":62085,"monero":62416,"napster":62418,"neos":62994,"nfc-directional":58672,"nfc-symbol":58673,"nimblr":62888,"node-js":62419,"node":62489,"npm":62420,"ns8":62421,"nutritionix":62422,"octopus-deploy":57474,"odnoklassniki":62051,"odysee":58822,"old-republic":62736,"opencart":62013,"openid":61851,"opensuse":58923,"opera":62058,"optin-monster":62012,"orcid":63698,"osi":62490,"padlet":58528,"page4":62423,"pagelines":61836,"palfed":62424,"patreon":62425,"paypal":61933,"perbyte":57475,"periscope":62426,"phabricator":62427,"phoenix-framework":62428,"phoenix-squadron":62737,"php":62551,"pied-piper-alt":61864,"pied-piper-hat":62693,"pied-piper-pp":61863,"pied-piper":62126,"pinterest-p":62001,"pinterest":61650,"pix":58426,"pixiv":58944,"playstation":62431,"product-hunt":62088,"pushed":62433,"python":62434,"qq":61910,"quinscape":62553,"quora":62148,"r-project":62711,"raspberry-pi":63419,"ravelry":62169,"react":62491,"reacteurope":63325,"readme":62677,"rebel":61904,"red-river":62435,"reddit-alien":62081,"reddit":61857,"redhat":63420,"renren":61835,"replyd":62438,"researchgate":62712,"resolving":62439,"rev":62898,"rocketchat":62440,"rockrms":62441,"rust":57466,"safari":62055,"salesforce":63547,"sass":62494,"schlix":62442,"screenpal":58736,"scribd":62090,"searchengin":62443,"sellcast":62170,"sellsy":61971,"servicestack":62444,"shirtsinbulk":61972,"shoelace":58892,"shopify":57431,"shopware":62901,"signal-messenger":58979,"simplybuilt":61973,"sistrix":62446,"sith":62738,"sitrox":58442,"sketch":63430,"skyatlas":61974,"skype":61822,"slack":61848,"slideshare":61927,"snapchat":62123,"soundcloud":61886,"sourcetree":63443,"space-awesome":58796,"speakap":62451,"speaker-deck":63548,"spotify":61884,"square-behance":61877,"square-bluesky":59043,"square-dribbble":62359,"square-facebook":61570,"square-font-awesome-stroke":62300,"square-font-awesome":58797,"square-git":61906,"square-github":61586,"square-gitlab":58798,"square-google-plus":61652,"square-hacker-news":62383,"square-instagram":57429,"square-js":62393,"square-lastfm":61955,"square-letterboxd":58926,"square-odnoklassniki":62052,"square-pied-piper":57374,"square-pinterest":61651,"square-reddit":61858,"square-snapchat":62125,"square-steam":61879,"square-threads":58905,"square-tumblr":61812,"square-twitter":61569,"square-upwork":59004,"square-viadeo":62122,"square-vimeo":61844,"square-web-awesome-stroke":59012,"square-web-awesome":59011,"square-whatsapp":62476,"square-x-twitter":58906,"square-xing":61801,"square-youtube":62513,"squarespace":62910,"stack-exchange":61837,"stack-overflow":61804,"stackpath":63554,"staylinked":62453,"steam-symbol":62454,"steam":61878,"sticker-mule":62455,"strava":62504,"stripe-s":62506,"stripe":62505,"stubber":58823,"studiovinari":62456,"stumbleupon-circle":61859,"stumbleupon":61860,"superpowers":62173,"supple":62457,"suse":63446,"swift":63713,"symfony":63549,"teamspeak":62713,"telegram":62150,"tencent-weibo":61909,"the-red-yeti":63133,"themeco":62918,"themeisle":62130,"think-peaks":63281,"threads":58904,"tiktok":57467,"trade-federation":62739,"trello":61825,"tumblr":61811,"twitch":61928,"twitter":61593,"typo3":62507,"uber":62466,"ubuntu":63455,"uikit":62467,"umbraco":63720,"uncharted":57476,"uniregistry":62468,"unity":57417,"unsplash":57468,"untappd":62469,"ups":63456,"upwork":58945,"usb":62087,"usps":63457,"ussunnah":62471,"vaadin":62472,"viacoin":62007,"viadeo":62121,"viber":62473,"vimeo-v":62077,"vimeo":62474,"vine":61898,"vk":61833,"vnv":62475,"vuejs":62495,"watchman-monitoring":57479,"waze":63551,"web-awesome":59010,"webflow":58972,"weebly":62924,"weibo":61834,"weixin":61911,"whatsapp":62002,"whmcs":62477,"wikipedia-w":62054,"windows":61818,"wirsindhandwerk":58064,"wix":62927,"wizards-of-the-coast":63280,"wodu":57480,"wolf-pack-battalion":62740,"wordpress-simple":62481,"wordpress":61850,"wpbeginner":62103,"wpexplorer":62174,"wpforms":62104,"wpressr":62436,"x-twitter":58907,"xbox":62482,"xing":61800,"y-combinator":62011,"yahoo":61854,"yammer":63552,"yandex-international":62484,"yandex":62483,"yarn":63459,"yelp":61929,"yoast":62129,"youtube":61799,"zhihu":63039} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_duotone-light.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_duotone-regular.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_duotone-thin.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_duotone.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_light.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_meta.json ================================================ { "brand": [ "42-group", "500px", "accessible-icon", "accusoft", "adn", "adversal", "affiliatetheme", "airbnb", "algolia", "alipay", "amazon-pay", "amazon", "amilia", "android", "angellist", "angrycreative", "angular", "app-store-ios", "app-store", "apper", "apple-pay", "apple", "artstation", "asymmetrik", "atlassian", "audible", "autoprefixer", "avianex", "aviato", "aws", "bandcamp", "battle-net", "behance", "bilibili", "bimobject", "bitbucket", "bitcoin", "bity", "black-tie", "blackberry", "blogger-b", "blogger", "bluesky", "bluetooth-b", "bluetooth", "bootstrap", "bots", "brave-reverse", "brave", "btc", "buffer", "buromobelexperte", "buy-n-large", "buysellads", "canadian-maple-leaf", "cc-amazon-pay", "cc-amex", "cc-apple-pay", "cc-diners-club", "cc-discover", "cc-jcb", "cc-mastercard", "cc-paypal", "cc-stripe", "cc-visa", "centercode", "centos", "chrome", "chromecast", "cloudflare", "cloudscale", "cloudsmith", "cloudversify", "cmplid", "codepen", "codiepie", "confluence", "connectdevelop", "contao", "cotton-bureau", "cpanel", "creative-commons-by", "creative-commons-nc-eu", "creative-commons-nc-jp", "creative-commons-nc", "creative-commons-nd", "creative-commons-pd-alt", "creative-commons-pd", "creative-commons-remix", "creative-commons-sa", "creative-commons-sampling-plus", "creative-commons-sampling", "creative-commons-share", "creative-commons-zero", "creative-commons", "critical-role", "css", "css3-alt", "css3", "cuttlefish", "d-and-d-beyond", "d-and-d", "dailymotion", "dart-lang", "dashcube", "debian", "deezer", "delicious", "deploydog", "deskpro", "dev", "deviantart", "dhl", "diaspora", "digg", "digital-ocean", "discord", "discourse", "dochub", "docker", "draft2digital", "dribbble", "dropbox", "drupal", "dyalog", "earlybirds", "ebay", "edge-legacy", "edge", "elementor", "ello", "ember", "empire", "envira", "erlang", "ethereum", "etsy", "evernote", "expeditedssl", "facebook-f", "facebook-messenger", "facebook", "fantasy-flight-games", "fedex", "fedora", "figma", "files-pinwheel", "firefox-browser", "firefox", "first-order-alt", "first-order", "firstdraft", "flickr", "flipboard", "flutter", "fly", "font-awesome", "fonticons-fi", "fonticons", "fort-awesome-alt", "fort-awesome", "forumbee", "foursquare", "free-code-camp", "freebsd", "fulcrum", "galactic-republic", "galactic-senate", "get-pocket", "gg-circle", "gg", "git-alt", "git", "github-alt", "github", "gitkraken", "gitlab", "gitter", "glide-g", "glide", "gofore", "golang", "goodreads-g", "goodreads", "google-drive", "google-pay", "google-play", "google-plus-g", "google-plus", "google-scholar", "google-wallet", "google", "gratipay", "grav", "gripfire", "grunt", "guilded", "gulp", "hacker-news", "hackerrank", "hashnode", "hips", "hire-a-helper", "hive", "hooli", "hornbill", "hotjar", "houzz", "html5", "hubspot", "ideal", "imdb", "instagram", "instalod", "intercom", "internet-explorer", "invision", "ioxhost", "itch-io", "itunes-note", "itunes", "java", "jedi-order", "jenkins", "jira", "joget", "joomla", "js", "jsfiddle", "jxl", "kaggle", "keybase", "keycdn", "kickstarter-k", "kickstarter", "korvue", "laravel", "lastfm", "leanpub", "less", "letterboxd", "line", "linkedin-in", "linkedin", "linode", "linux", "lyft", "magento", "mailchimp", "mandalorian", "markdown", "mastodon", "maxcdn", "mdb", "medapps", "medium", "medrt", "meetup", "megaport", "mendeley", "meta", "microblog", "microsoft", "mintbit", "mix", "mixcloud", "mixer", "mizuni", "modx", "monero", "napster", "neos", "nfc-directional", "nfc-symbol", "nimblr", "node-js", "node", "npm", "ns8", "nutritionix", "octopus-deploy", "odnoklassniki", "odysee", "old-republic", "opencart", "openid", "opensuse", "opera", "optin-monster", "orcid", "osi", "padlet", "page4", "pagelines", "palfed", "patreon", "paypal", "perbyte", "periscope", "phabricator", "phoenix-framework", "phoenix-squadron", "php", "pied-piper-alt", "pied-piper-hat", "pied-piper-pp", "pied-piper", "pinterest-p", "pinterest", "pix", "pixiv", "playstation", "product-hunt", "pushed", "python", "qq", "quinscape", "quora", "r-project", "raspberry-pi", "ravelry", "react", "reacteurope", "readme", "rebel", "red-river", "reddit-alien", "reddit", "redhat", "renren", "replyd", "researchgate", "resolving", "rev", "rocketchat", "rockrms", "rust", "safari", "salesforce", "sass", "schlix", "screenpal", "scribd", "searchengin", "sellcast", "sellsy", "servicestack", "shirtsinbulk", "shoelace", "shopify", "shopware", "signal-messenger", "simplybuilt", "sistrix", "sith", "sitrox", "sketch", "skyatlas", "skype", "slack", "slideshare", "snapchat", "soundcloud", "sourcetree", "space-awesome", "speakap", "speaker-deck", "spotify", "square-behance", "square-bluesky", "square-dribbble", "square-facebook", "square-font-awesome-stroke", "square-font-awesome", "square-git", "square-github", "square-gitlab", "square-google-plus", "square-hacker-news", "square-instagram", "square-js", "square-lastfm", "square-letterboxd", "square-odnoklassniki", "square-pied-piper", "square-pinterest", "square-reddit", "square-snapchat", "square-steam", "square-threads", "square-tumblr", "square-twitter", "square-upwork", "square-viadeo", "square-vimeo", "square-web-awesome-stroke", "square-web-awesome", "square-whatsapp", "square-x-twitter", "square-xing", "square-youtube", "squarespace", "stack-exchange", "stack-overflow", "stackpath", "staylinked", "steam-symbol", "steam", "sticker-mule", "strava", "stripe-s", "stripe", "stubber", "studiovinari", "stumbleupon-circle", "stumbleupon", "superpowers", "supple", "suse", "swift", "symfony", "teamspeak", "telegram", "tencent-weibo", "the-red-yeti", "themeco", "themeisle", "think-peaks", "threads", "tiktok", "trade-federation", "trello", "tumblr", "twitch", "twitter", "typo3", "uber", "ubuntu", "uikit", "umbraco", "uncharted", "uniregistry", "unity", "unsplash", "untappd", "ups", "upwork", "usb", "usps", "ussunnah", "vaadin", "viacoin", "viadeo", "viber", "vimeo-v", "vimeo", "vine", "vk", "vnv", "vuejs", "watchman-monitoring", "waze", "web-awesome", "webflow", "weebly", "weibo", "weixin", "whatsapp", "whmcs", "wikipedia-w", "windows", "wirsindhandwerk", "wix", "wizards-of-the-coast", "wodu", "wolf-pack-battalion", "wordpress-simple", "wordpress", "wpbeginner", "wpexplorer", "wpforms", "wpressr", "x-twitter", "xbox", "xing", "y-combinator", "yahoo", "yammer", "yandex-international", "yandex", "yarn", "yelp", "yoast", "youtube", "zhihu" ], "duotone": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "duotone-light": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "duotone-regular": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "duotone-thin": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "light": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "regular": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "sharp-duotone-light": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "sharp-duotone-regular": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "sharp-duotone-solid": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "sharp-duotone-thin": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "sharpLight": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "sharp": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "sharpSolid": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "sharpThin": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "solid": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ], "thin": [ "0", "00", "1", "2", "3", "360-degrees", "4", "5", "6", "7", "8", "9", "a", "abacus", "accent-grave", "acorn", "address-book", "address-card", "air-conditioner", "airplay", "alarm-clock", "alarm-exclamation", "alarm-plus", "alarm-snooze", "album-circle-plus", "album-circle-user", "album-collection-circle-plus", "album-collection-circle-user", "album-collection", "album", "alicorn", "alien-8bit", "alien", "align-center", "align-justify", "align-left", "align-right", "align-slash", "alt", "amp-guitar", "ampersand", "anchor-circle-check", "anchor-circle-exclamation", "anchor-circle-xmark", "anchor-lock", "anchor", "angel", "angle-90", "angle-down", "angle-left", "angle-right", "angle-up", "angle", "angles-down", "angles-left", "angles-right", "angles-up-down", "angles-up", "ankh", "ant", "apartment", "aperture", "apostrophe", "apple-core", "apple-whole", "archway", "arrow-down-1-9", "arrow-down-9-1", "arrow-down-a-z", "arrow-down-arrow-up", "arrow-down-big-small", "arrow-down-from-arc", "arrow-down-from-bracket", "arrow-down-from-dotted-line", "arrow-down-from-line", "arrow-down-left-and-arrow-up-right-to-center", "arrow-down-left", "arrow-down-long", "arrow-down-right", "arrow-down-short-wide", "arrow-down-small-big", "arrow-down-square-triangle", "arrow-down-to-arc", "arrow-down-to-bracket", "arrow-down-to-dotted-line", "arrow-down-to-line", "arrow-down-to-square", "arrow-down-triangle-square", "arrow-down-up-across-line", "arrow-down-up-lock", "arrow-down-wide-short", "arrow-down-z-a", "arrow-down", "arrow-left-from-arc", "arrow-left-from-bracket", "arrow-left-from-line", "arrow-left-long-to-line", "arrow-left-long", "arrow-left-to-arc", "arrow-left-to-bracket", "arrow-left-to-line", "arrow-left", "arrow-pointer", "arrow-progress", "arrow-right-arrow-left", "arrow-right-from-arc", "arrow-right-from-bracket", "arrow-right-from-line", "arrow-right-long-to-line", "arrow-right-long", "arrow-right-to-arc", "arrow-right-to-bracket", "arrow-right-to-city", "arrow-right-to-line", "arrow-right", "arrow-rotate-left", "arrow-rotate-right", "arrow-trend-down", "arrow-trend-up", "arrow-turn-down-left", "arrow-turn-down-right", "arrow-turn-down", "arrow-turn-left-down", "arrow-turn-left-up", "arrow-turn-left", "arrow-turn-right", "arrow-turn-up", "arrow-up-1-9", "arrow-up-9-1", "arrow-up-a-z", "arrow-up-arrow-down", "arrow-up-big-small", "arrow-up-from-arc", "arrow-up-from-bracket", "arrow-up-from-dotted-line", "arrow-up-from-ground-water", "arrow-up-from-line", "arrow-up-from-square", "arrow-up-from-water-pump", "arrow-up-left-from-circle", "arrow-up-left", "arrow-up-long", "arrow-up-right-and-arrow-down-left-from-center", "arrow-up-right-dots", "arrow-up-right-from-square", "arrow-up-right", "arrow-up-short-wide", "arrow-up-small-big", "arrow-up-square-triangle", "arrow-up-to-arc", "arrow-up-to-bracket", "arrow-up-to-dotted-line", "arrow-up-to-line", "arrow-up-triangle-square", "arrow-up-wide-short", "arrow-up-z-a", "arrow-up", "arrows-cross", "arrows-down-to-line", "arrows-down-to-people", "arrows-from-dotted-line", "arrows-from-line", "arrows-left-right-to-line", "arrows-left-right", "arrows-maximize", "arrows-minimize", "arrows-repeat-1", "arrows-repeat", "arrows-retweet", "arrows-rotate-reverse", "arrows-rotate", "arrows-spin", "arrows-split-up-and-left", "arrows-to-circle", "arrows-to-dot", "arrows-to-dotted-line", "arrows-to-eye", "arrows-to-line", "arrows-turn-right", "arrows-turn-to-dots", "arrows-up-down-left-right", "arrows-up-down", "arrows-up-to-line", "asterisk", "at", "atom-simple", "atom", "audio-description-slash", "audio-description", "austral-sign", "avocado", "award-simple", "award", "axe-battle", "axe", "b", "baby-carriage", "baby", "backpack", "backward-fast", "backward-step", "backward", "bacon", "bacteria", "bacterium", "badge-check", "badge-dollar", "badge-percent", "badge-sheriff", "badge", "badger-honey", "badminton", "bag-seedling", "bag-shopping-minus", "bag-shopping-plus", "bag-shopping", "bagel", "bags-shopping", "baguette", "bahai", "baht-sign", "ball-pile", "balloon", "balloons", "ballot-check", "ballot", "ban-bug", "ban-parking", "ban-smoking", "ban", "banana", "bandage", "bangladeshi-taka-sign", "banjo", "barcode-read", "barcode-scan", "barcode", "bars-filter", "bars-progress", "bars-sort", "bars-staggered", "bars", "baseball-bat-ball", "baseball", "basket-shopping-minus", "basket-shopping-plus", "basket-shopping-simple", "basket-shopping", "basketball-hoop", "basketball", "bat", "bath", "battery-bolt", "battery-empty", "battery-exclamation", "battery-full", "battery-half", "battery-low", "battery-quarter", "battery-slash", "battery-three-quarters", "bed-bunk", "bed-empty", "bed-front", "bed-pulse", "bed", "bee", "beer-mug-empty", "beer-mug", "bell-concierge", "bell-exclamation", "bell-on", "bell-plus", "bell-ring", "bell-school-slash", "bell-school", "bell-slash", "bell", "bells", "bench-tree", "bezier-curve", "bicycle", "billboard", "bin-bottles-recycle", "bin-bottles", "bin-recycle", "binary-circle-check", "binary-lock", "binary-slash", "binary", "binoculars", "biohazard", "bird", "bitcoin-sign", "blanket-fire", "blanket", "blender-phone", "blender", "blinds-open", "blinds-raised", "blinds", "block-brick-fire", "block-brick", "block-question", "block-quote", "block", "blog", "blueberries", "bluetooth", "bold", "bolt-auto", "bolt-lightning", "bolt-slash", "bolt", "bomb", "bone-break", "bone", "bong", "book-arrow-right", "book-arrow-up", "book-atlas", "book-bible", "book-blank", "book-bookmark", "book-circle-arrow-right", "book-circle-arrow-up", "book-copy", "book-font", "book-heart", "book-journal-whills", "book-medical", "book-open-cover", "book-open-reader", "book-open", "book-quran", "book-section", "book-skull", "book-sparkles", "book-tanakh", "book-user", "book", "bookmark-slash", "bookmark", "books-medical", "books", "boombox", "boot-heeled", "boot", "booth-curtain", "border-all", "border-bottom-right", "border-bottom", "border-center-h", "border-center-v", "border-inner", "border-left", "border-none", "border-outer", "border-right", "border-top-left", "border-top", "bore-hole", "bottle-baby", "bottle-droplet", "bottle-water", "bow-arrow", "bowl-chopsticks-noodles", "bowl-chopsticks", "bowl-food", "bowl-hot", "bowl-rice", "bowl-scoop", "bowl-scoops", "bowl-soft-serve", "bowl-spoon", "bowling-ball-pin", "bowling-ball", "bowling-pins", "box-archive", "box-ballot", "box-check", "box-circle-check", "box-dollar", "box-heart", "box-open-full", "box-open", "box-taped", "box-tissue", "box", "boxes-packing", "boxes-stacked", "boxing-glove", "bracket-curly-right", "bracket-curly", "bracket-round-right", "bracket-round", "bracket-square-right", "bracket-square", "brackets-curly", "brackets-round", "brackets-square", "braille", "brain-arrow-curved-right", "brain-circuit", "brain", "brake-warning", "brazilian-real-sign", "bread-loaf", "bread-slice-butter", "bread-slice", "bridge-circle-check", "bridge-circle-exclamation", "bridge-circle-xmark", "bridge-lock", "bridge-suspension", "bridge-water", "bridge", "briefcase-arrow-right", "briefcase-blank", "briefcase-medical", "briefcase", "brightness-low", "brightness", "bring-forward", "bring-front", "broccoli", "broom-ball", "broom-wide", "broom", "browser", "browsers", "brush", "bucket", "bug-slash", "bug", "bugs", "building-circle-arrow-right", "building-circle-check", "building-circle-exclamation", "building-circle-xmark", "building-columns", "building-flag", "building-lock", "building-magnifying-glass", "building-memo", "building-ngo", "building-shield", "building-un", "building-user", "building-wheat", "building", "buildings", "bulldozer", "bullhorn", "bullseye-arrow", "bullseye-pointer", "bullseye", "buoy-mooring", "buoy", "burger-cheese", "burger-fries", "burger-glass", "burger-lettuce", "burger-soda", "burger", "burrito", "burst", "bus-school", "bus-simple", "bus", "business-time", "butter", "c", "cabin", "cabinet-filing", "cable-car", "cactus", "caduceus", "cake-candles", "cake-slice", "calculator-simple", "calculator", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-circle-exclamation", "calendar-circle-minus", "calendar-circle-plus", "calendar-circle-user", "calendar-clock", "calendar-day", "calendar-days", "calendar-exclamation", "calendar-heart", "calendar-image", "calendar-lines-pen", "calendar-lines", "calendar-minus", "calendar-pen", "calendar-plus", "calendar-range", "calendar-star", "calendar-users", "calendar-week", "calendar-xmark", "calendar", "calendars", "camcorder", "camera-cctv", "camera-movie", "camera-polaroid", "camera-retro", "camera-rotate", "camera-security", "camera-slash", "camera-viewfinder", "camera-web-slash", "camera-web", "camera", "campfire", "campground", "can-food", "candle-holder", "candy-bar", "candy-cane", "candy-corn", "candy", "cannabis", "cannon", "capsules", "car-battery", "car-bolt", "car-building", "car-bump", "car-burst", "car-bus", "car-circle-bolt", "car-garage", "car-mirrors", "car-on", "car-rear", "car-side-bolt", "car-side", "car-tilt", "car-tunnel", "car-wash", "car-wrench", "car", "caravan-simple", "caravan", "card-club", "card-diamond", "card-heart", "card-spade", "cards-blank", "cards", "caret-down", "caret-left", "caret-right", "caret-up", "carpool", "carrot", "cars", "cart-arrow-down", "cart-arrow-up", "cart-circle-arrow-down", "cart-circle-arrow-up", "cart-circle-check", "cart-circle-exclamation", "cart-circle-plus", "cart-circle-xmark", "cart-flatbed-boxes", "cart-flatbed-empty", "cart-flatbed-suitcase", "cart-flatbed", "cart-minus", "cart-plus", "cart-shopping-fast", "cart-shopping", "cart-xmark", "cash-register", "cassette-betamax", "cassette-tape", "cassette-vhs", "castle", "cat-space", "cat", "cauldron", "cedi-sign", "cent-sign", "certificate", "chair-office", "chair", "chalkboard-user", "chalkboard", "champagne-glass", "champagne-glasses", "charging-station", "chart-area", "chart-bar", "chart-bullet", "chart-candlestick", "chart-column", "chart-diagram", "chart-fft", "chart-gantt", "chart-kanban", "chart-line-down", "chart-line-up-down", "chart-line-up", "chart-line", "chart-mixed-up-circle-currency", "chart-mixed-up-circle-dollar", "chart-mixed", "chart-network", "chart-pie-simple-circle-currency", "chart-pie-simple-circle-dollar", "chart-pie-simple", "chart-pie", "chart-pyramid", "chart-radar", "chart-scatter-3d", "chart-scatter-bubble", "chart-scatter", "chart-simple-horizontal", "chart-simple", "chart-sine", "chart-tree-map", "chart-user", "chart-waterfall", "check-double", "check-to-slot", "check", "cheese-swiss", "cheese", "cherries", "chess-bishop-piece", "chess-bishop", "chess-board", "chess-clock-flip", "chess-clock", "chess-king-piece", "chess-king", "chess-knight-piece", "chess-knight", "chess-pawn-piece", "chess-pawn", "chess-queen-piece", "chess-queen", "chess-rook-piece", "chess-rook", "chess", "chestnut", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-down", "chevrons-left", "chevrons-right", "chevrons-up", "chf-sign", "child-combatant", "child-dress", "child-reaching", "child", "children", "chimney", "chopsticks", "church", "circle-0", "circle-1", "circle-2", "circle-3", "circle-4", "circle-5", "circle-6", "circle-7", "circle-8", "circle-9", "circle-a", "circle-ampersand", "circle-arrow-down-left", "circle-arrow-down-right", "circle-arrow-down", "circle-arrow-left", "circle-arrow-right", "circle-arrow-up-left", "circle-arrow-up-right", "circle-arrow-up", "circle-b", "circle-bolt", "circle-book-open", "circle-bookmark", "circle-c", "circle-calendar", "circle-camera", "circle-caret-down", "circle-caret-left", "circle-caret-right", "circle-caret-up", "circle-check", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-d", "circle-dashed", "circle-divide", "circle-dollar-to-slot", "circle-dollar", "circle-dot", "circle-down-left", "circle-down-right", "circle-down", "circle-e", "circle-ellipsis-vertical", "circle-ellipsis", "circle-envelope", "circle-euro", "circle-exclamation-check", "circle-exclamation", "circle-f", "circle-g", "circle-gf", "circle-h", "circle-half-stroke", "circle-half", "circle-heart", "circle-i", "circle-info", "circle-j", "circle-k", "circle-l", "circle-left", "circle-location-arrow", "circle-m", "circle-microphone-lines", "circle-microphone", "circle-minus", "circle-n", "circle-nodes", "circle-notch", "circle-o", "circle-p", "circle-parking", "circle-pause", "circle-phone-flip", "circle-phone-hangup", "circle-phone", "circle-play", "circle-plus", "circle-q", "circle-quarter-stroke", "circle-quarter", "circle-quarters", "circle-question", "circle-r", "circle-radiation", "circle-right", "circle-s", "circle-small", "circle-sort-down", "circle-sort-up", "circle-sort", "circle-star", "circle-sterling", "circle-stop", "circle-t", "circle-three-quarters-stroke", "circle-three-quarters", "circle-trash", "circle-u", "circle-up-left", "circle-up-right", "circle-up", "circle-user", "circle-v", "circle-video", "circle-w", "circle-waveform-lines", "circle-wifi-circle-wifi", "circle-wifi", "circle-x", "circle-xmark", "circle-y", "circle-yen", "circle-z", "circle", "circles-overlap-3", "circles-overlap", "citrus-slice", "citrus", "city", "clapperboard-play", "clapperboard", "clarinet", "claw-marks", "clipboard-check", "clipboard-list-check", "clipboard-list", "clipboard-medical", "clipboard-prescription", "clipboard-question", "clipboard-user", "clipboard", "clock-desk", "clock-eight-thirty", "clock-eight", "clock-eleven-thirty", "clock-eleven", "clock-five-thirty", "clock-five", "clock-four-thirty", "clock-nine-thirty", "clock-nine", "clock-one-thirty", "clock-one", "clock-rotate-left", "clock-seven-thirty", "clock-seven", "clock-six-thirty", "clock-six", "clock-ten-thirty", "clock-ten", "clock-three-thirty", "clock-three", "clock-twelve-thirty", "clock-twelve", "clock-two-thirty", "clock-two", "clock", "clone", "closed-captioning-slash", "closed-captioning", "clothes-hanger", "cloud-arrow-down", "cloud-arrow-up", "cloud-binary", "cloud-bolt-moon", "cloud-bolt-sun", "cloud-bolt", "cloud-check", "cloud-drizzle", "cloud-exclamation", "cloud-fog", "cloud-hail-mixed", "cloud-hail", "cloud-meatball", "cloud-minus", "cloud-moon-rain", "cloud-moon", "cloud-music", "cloud-plus", "cloud-question", "cloud-rain", "cloud-rainbow", "cloud-showers-heavy", "cloud-showers-water", "cloud-showers", "cloud-slash", "cloud-sleet", "cloud-snow", "cloud-sun-rain", "cloud-sun", "cloud-word", "cloud-xmark", "cloud", "clouds-moon", "clouds-sun", "clouds", "clover", "club", "coconut", "code-branch", "code-commit", "code-compare", "code-fork", "code-merge", "code-pull-request-closed", "code-pull-request-draft", "code-pull-request", "code-simple", "code", "coffee-bean", "coffee-beans", "coffee-pot", "coffin-cross", "coffin", "coin-blank", "coin-front", "coin-vertical", "coin", "coins", "colon-sign", "colon", "columns-3", "comet", "comma", "command", "comment-arrow-down", "comment-arrow-up-right", "comment-arrow-up", "comment-captions", "comment-check", "comment-code", "comment-dollar", "comment-dots", "comment-exclamation", "comment-heart", "comment-image", "comment-lines", "comment-medical", "comment-middle-top", "comment-middle", "comment-minus", "comment-music", "comment-nodes", "comment-pen", "comment-plus", "comment-question", "comment-quote", "comment-slash", "comment-smile", "comment-sms", "comment-text", "comment-xmark", "comment", "comments-dollar", "comments-question-check", "comments-question", "comments", "compact-disc", "compass-drafting", "compass-slash", "compass", "compress-wide", "compress", "computer-classic", "computer-mouse-scrollwheel", "computer-mouse", "computer-speaker", "computer", "container-storage", "conveyor-belt-arm", "conveyor-belt-boxes", "conveyor-belt-empty", "conveyor-belt", "cookie-bite", "cookie", "copy", "copyright", "corn", "corner", "couch", "court-sport", "cow", "cowbell-circle-plus", "cowbell", "crab", "crate-apple", "crate-empty", "credit-card-blank", "credit-card-front", "credit-card", "cricket-bat-ball", "croissant", "crop-simple", "crop", "cross", "crosshairs-simple", "crosshairs", "crow", "crown", "crutch", "crutches", "cruzeiro-sign", "crystal-ball", "cube", "cubes-stacked", "cubes", "cucumber", "cup-straw-swoosh", "cup-straw", "cup-togo", "cupcake", "curling-stone", "custard", "d", "dagger", "dash", "database", "deer-rudolph", "deer", "delete-left", "delete-right", "democrat", "desktop-arrow-down", "desktop", "dharmachakra", "diagram-cells", "diagram-lean-canvas", "diagram-nested", "diagram-next", "diagram-predecessor", "diagram-previous", "diagram-project", "diagram-sankey", "diagram-subtask", "diagram-successor", "diagram-venn", "dial-high", "dial-low", "dial-max", "dial-med-low", "dial-med", "dial-min", "dial-off", "dial", "diamond-exclamation", "diamond-half-stroke", "diamond-half", "diamond-turn-right", "diamond", "diamonds-4", "dice-d10", "dice-d12", "dice-d20", "dice-d4", "dice-d6", "dice-d8", "dice-five", "dice-four", "dice-one", "dice-six", "dice-three", "dice-two", "dice", "dinosaur", "diploma", "disc-drive", "disease", "display-arrow-down", "display-chart-up-circle-currency", "display-chart-up-circle-dollar", "display-chart-up", "display-code", "display-medical", "display-slash", "display", "distribute-spacing-horizontal", "distribute-spacing-vertical", "ditto", "divide", "dna", "do-not-enter", "dog-leashed", "dog", "dollar-sign", "dolly-empty", "dolly", "dolphin", "dong-sign", "donut", "door-closed", "door-open", "dove", "down-from-bracket", "down-from-dotted-line", "down-from-line", "down-left-and-up-right-to-center", "down-left", "down-long", "down-right", "down-to-bracket", "down-to-dotted-line", "down-to-line", "down", "download", "dragon", "draw-circle", "draw-polygon", "draw-square", "dreidel", "drone-front", "drone", "droplet-degree", "droplet-percent", "droplet-slash", "droplet", "drum-steelpan", "drum", "drumstick-bite", "drumstick", "dryer-heat", "dryer", "duck", "dumbbell", "dumpster-fire", "dumpster", "dungeon", "e", "ear-deaf", "ear-listen", "ear-muffs", "ear", "earth-africa", "earth-americas", "earth-asia", "earth-europe", "earth-oceania", "eclipse", "egg-fried", "egg", "eggplant", "eject", "elephant", "elevator", "ellipsis-stroke-vertical", "ellipsis-stroke", "ellipsis-vertical", "ellipsis", "empty-set", "engine-warning", "engine", "envelope-circle-check", "envelope-dot", "envelope-open-dollar", "envelope-open-text", "envelope-open", "envelope", "envelopes-bulk", "envelopes", "equals", "eraser", "escalator", "ethernet", "euro-sign", "excavator", "exclamation", "expand-wide", "expand", "explosion", "eye-dropper-full", "eye-dropper-half", "eye-dropper", "eye-evil", "eye-low-vision", "eye-slash", "eye", "eyes", "f", "face-angry-horns", "face-angry", "face-anguished", "face-anxious-sweat", "face-astonished", "face-awesome", "face-beam-hand-over-mouth", "face-clouds", "face-confounded", "face-confused", "face-cowboy-hat", "face-diagonal-mouth", "face-disappointed", "face-disguise", "face-dizzy", "face-dotted", "face-downcast-sweat", "face-drooling", "face-exhaling", "face-explode", "face-expressionless", "face-eyes-xmarks", "face-fearful", "face-flushed", "face-frown-open", "face-frown-slight", "face-frown", "face-glasses", "face-grimace", "face-grin-beam-sweat", "face-grin-beam", "face-grin-hearts", "face-grin-squint-tears", "face-grin-squint", "face-grin-stars", "face-grin-tears", "face-grin-tongue-squint", "face-grin-tongue-wink", "face-grin-tongue", "face-grin-wide", "face-grin-wink", "face-grin", "face-hand-over-mouth", "face-hand-peeking", "face-hand-yawn", "face-head-bandage", "face-holding-back-tears", "face-hushed", "face-icicles", "face-kiss-beam", "face-kiss-closed-eyes", "face-kiss-wink-heart", "face-kiss", "face-laugh-beam", "face-laugh-squint", "face-laugh-wink", "face-laugh", "face-lying", "face-mask", "face-meh-blank", "face-meh", "face-melting", "face-monocle", "face-nauseated", "face-nose-steam", "face-party", "face-pensive", "face-persevering", "face-pleading", "face-pouting", "face-raised-eyebrow", "face-relieved", "face-rolling-eyes", "face-sad-cry", "face-sad-sweat", "face-sad-tear", "face-saluting", "face-scream", "face-shush", "face-sleeping", "face-sleepy", "face-smile-beam", "face-smile-halo", "face-smile-hearts", "face-smile-horns", "face-smile-plus", "face-smile-relaxed", "face-smile-tear", "face-smile-tongue", "face-smile-upside-down", "face-smile-wink", "face-smile", "face-smiling-hands", "face-smirking", "face-spiral-eyes", "face-sunglasses", "face-surprise", "face-swear", "face-thermometer", "face-thinking", "face-tired", "face-tissue", "face-tongue-money", "face-tongue-sweat", "face-unamused", "face-viewfinder", "face-vomit", "face-weary", "face-woozy", "face-worried", "face-zany", "face-zipper", "falafel", "family-dress", "family-pants", "family", "fan-table", "fan", "farm", "faucet-drip", "faucet", "fax", "feather-pointed", "feather", "fence", "ferris-wheel", "ferry", "field-hockey-stick-ball", "file-arrow-down", "file-arrow-up", "file-audio", "file-binary", "file-cad", "file-certificate", "file-chart-column", "file-chart-pie", "file-check", "file-circle-check", "file-circle-exclamation", "file-circle-info", "file-circle-minus", "file-circle-plus", "file-circle-question", "file-circle-xmark", "file-code", "file-contract", "file-csv", "file-dashed-line", "file-doc", "file-eps", "file-excel", "file-exclamation", "file-export", "file-fragment", "file-gif", "file-half-dashed", "file-heart", "file-image", "file-import", "file-invoice-dollar", "file-invoice", "file-jpg", "file-lines", "file-lock", "file-magnifying-glass", "file-medical", "file-minus", "file-mov", "file-mp3", "file-mp4", "file-music", "file-pdf", "file-pen", "file-plus-minus", "file-plus", "file-png", "file-powerpoint", "file-ppt", "file-prescription", "file-shield", "file-signature", "file-slash", "file-spreadsheet", "file-svg", "file-user", "file-vector", "file-video", "file-waveform", "file-word", "file-xls", "file-xmark", "file-xml", "file-zip", "file-zipper", "file", "files-medical", "files", "fill-drip", "fill", "film-canister", "film-simple", "film-slash", "film", "films", "filter-circle-dollar", "filter-circle-xmark", "filter-list", "filter-slash", "filter", "filters", "fingerprint", "fire-burner", "fire-extinguisher", "fire-flame-curved", "fire-flame-simple", "fire-flame", "fire-hydrant", "fire-smoke", "fire", "fireplace", "fish-bones", "fish-cooked", "fish-fins", "fish", "fishing-rod", "flag-checkered", "flag-pennant", "flag-swallowtail", "flag-usa", "flag", "flashlight", "flask-gear", "flask-round-poison", "flask-round-potion", "flask-vial", "flask", "flatbread-stuffed", "flatbread", "floppy-disk-circle-arrow-right", "floppy-disk-circle-xmark", "floppy-disk-pen", "floppy-disk", "floppy-disks", "florin-sign", "flower-daffodil", "flower-tulip", "flower", "flute", "flux-capacitor", "flying-disc", "folder-arrow-down", "folder-arrow-up", "folder-bookmark", "folder-check", "folder-closed", "folder-gear", "folder-grid", "folder-heart", "folder-image", "folder-magnifying-glass", "folder-medical", "folder-minus", "folder-music", "folder-open", "folder-plus", "folder-tree", "folder-user", "folder-xmark", "folder", "folders", "fondue-pot", "font-awesome", "font-case", "font", "football-helmet", "football", "fork-knife", "fork", "forklift", "fort", "forward-fast", "forward-step", "forward", "frame", "franc-sign", "french-fries", "frog", "function", "futbol", "g", "galaxy", "gallery-thumbnails", "game-board-simple", "game-board", "game-console-handheld-crank", "game-console-handheld", "gamepad-modern", "gamepad", "garage-car", "garage-open", "garage", "garlic", "gas-pump-slash", "gas-pump", "gauge-circle-bolt", "gauge-circle-minus", "gauge-circle-plus", "gauge-high", "gauge-low", "gauge-max", "gauge-min", "gauge-simple-high", "gauge-simple-low", "gauge-simple-max", "gauge-simple-min", "gauge-simple", "gauge", "gavel", "gear-code", "gear-complex-code", "gear-complex", "gear", "gears", "gem", "genderless", "ghost", "gif", "gift-card", "gift", "gifts", "gingerbread-man", "glass-citrus", "glass-empty", "glass-half", "glass-water-droplet", "glass-water", "glass", "glasses-round", "glasses", "globe-pointer", "globe-snow", "globe-stand", "globe-wifi", "globe", "goal-net", "golf-ball-tee", "golf-club", "golf-flag-hole", "gopuram", "graduation-cap", "gramophone", "grapes", "grate-droplet", "grate", "greater-than-equal", "greater-than", "grid-2-plus", "grid-2", "grid-4", "grid-5", "grid-dividers", "grid-horizontal", "grid-round-2-plus", "grid-round-2", "grid-round-4", "grid-round-5", "grid-round", "grid", "grill-fire", "grill-hot", "grill", "grip-dots-vertical", "grip-dots", "grip-lines-vertical", "grip-lines", "grip-vertical", "grip", "group-arrows-rotate", "guarani-sign", "guitar-electric", "guitar", "guitars", "gun-slash", "gun-squirt", "gun", "h", "h1", "h2", "h3", "h4", "h5", "h6", "hammer-brush", "hammer-crash", "hammer-war", "hammer", "hamsa", "hand-back-fist", "hand-back-point-down", "hand-back-point-left", "hand-back-point-ribbon", "hand-back-point-right", "hand-back-point-up", "hand-dots", "hand-fingers-crossed", "hand-fist", "hand-heart", "hand-holding-box", "hand-holding-circle-dollar", "hand-holding-dollar", "hand-holding-droplet", "hand-holding-hand", "hand-holding-heart", "hand-holding-magic", "hand-holding-medical", "hand-holding-seedling", "hand-holding-skull", "hand-holding", "hand-horns", "hand-lizard", "hand-love", "hand-middle-finger", "hand-peace", "hand-point-down", "hand-point-left", "hand-point-ribbon", "hand-point-right", "hand-point-up", "hand-pointer", "hand-scissors", "hand-sparkles", "hand-spock", "hand-wave", "hand", "handcuffs", "hands-asl-interpreting", "hands-bound", "hands-bubbles", "hands-clapping", "hands-holding-child", "hands-holding-circle", "hands-holding-diamond", "hands-holding-dollar", "hands-holding-heart", "hands-holding", "hands-praying", "hands", "handshake-angle", "handshake-simple-slash", "handshake-simple", "handshake-slash", "handshake", "hanukiah", "hard-drive", "hashtag-lock", "hashtag", "hat-beach", "hat-chef", "hat-cowboy-side", "hat-cowboy", "hat-santa", "hat-winter", "hat-witch", "hat-wizard", "head-side-brain", "head-side-cough-slash", "head-side-cough", "head-side-gear", "head-side-goggles", "head-side-headphones", "head-side-heart", "head-side-mask", "head-side-medical", "head-side-virus", "head-side", "heading", "headphones-simple", "headphones", "headset", "heart-circle-bolt", "heart-circle-check", "heart-circle-exclamation", "heart-circle-minus", "heart-circle-plus", "heart-circle-xmark", "heart-crack", "heart-half-stroke", "heart-half", "heart-pulse", "heart", "heat", "helicopter-symbol", "helicopter", "helmet-battle", "helmet-safety", "helmet-un", "hexagon-check", "hexagon-divide", "hexagon-exclamation", "hexagon-image", "hexagon-minus", "hexagon-nodes-bolt", "hexagon-nodes", "hexagon-plus", "hexagon-vertical-nft-slanted", "hexagon-vertical-nft", "hexagon-xmark", "hexagon", "high-definition", "highlighter-line", "highlighter", "hill-avalanche", "hill-rockslide", "hippo", "hockey-mask", "hockey-puck", "hockey-stick-puck", "hockey-sticks", "holly-berry", "honey-pot", "hood-cloak", "horizontal-rule", "horse-head", "horse-saddle", "horse", "hose-reel", "hose", "hospital-user", "hospital", "hospitals", "hot-tub-person", "hotdog", "hotel", "hourglass-clock", "hourglass-end", "hourglass-half", "hourglass-start", "hourglass", "house-blank", "house-building", "house-chimney-blank", "house-chimney-crack", "house-chimney-heart", "house-chimney-medical", "house-chimney-user", "house-chimney-window", "house-chimney", "house-circle-check", "house-circle-exclamation", "house-circle-xmark", "house-crack", "house-day", "house-fire", "house-flag", "house-flood-water-circle-arrow-right", "house-flood-water", "house-heart", "house-laptop", "house-lock", "house-medical-circle-check", "house-medical-circle-exclamation", "house-medical-circle-xmark", "house-medical-flag", "house-medical", "house-night", "house-person-leave", "house-person-return", "house-signal", "house-tree", "house-tsunami", "house-turret", "house-user", "house-water", "house-window", "house", "hryvnia-sign", "hundred-points", "hurricane", "hydra", "hyphen", "i-cursor", "i", "ice-cream", "ice-skate", "icicles", "icons", "id-badge", "id-card-clip", "id-card", "igloo", "image-landscape", "image-polaroid-user", "image-polaroid", "image-portrait", "image-slash", "image-user", "image", "images-user", "images", "inbox-full", "inbox-in", "inbox-out", "inbox", "inboxes", "indent", "indian-rupee-sign", "industry-windows", "industry", "infinity", "info", "inhaler", "input-numeric", "input-pipe", "input-text", "integral", "interrobang", "intersection", "island-tropical", "italic", "j", "jack-o-lantern", "jar-wheat", "jar", "jedi", "jet-fighter-up", "jet-fighter", "joint", "joystick", "jug-bottle", "jug-detergent", "jug", "k", "kaaba", "kazoo", "kerning", "key-skeleton-left-right", "key-skeleton", "key", "keyboard-brightness-low", "keyboard-brightness", "keyboard-down", "keyboard-left", "keyboard", "keynote", "khanda", "kidneys", "kip-sign", "kit-medical", "kitchen-set", "kite", "kiwi-bird", "kiwi-fruit", "knife-kitchen", "knife", "l", "lacrosse-stick-ball", "lacrosse-stick", "lambda", "lamp-desk", "lamp-floor", "lamp-street", "lamp", "land-mine-on", "landmark-dome", "landmark-flag", "landmark-magnifying-glass", "landmark", "language", "laptop-arrow-down", "laptop-binary", "laptop-code", "laptop-file", "laptop-medical", "laptop-mobile", "laptop-slash", "laptop", "lari-sign", "lasso-sparkles", "lasso", "layer-group", "layer-minus", "layer-plus", "leaf-heart", "leaf-maple", "leaf-oak", "leaf", "leafy-green", "left-from-bracket", "left-from-line", "left-long-to-line", "left-long", "left-right", "left-to-bracket", "left-to-line", "left", "lemon", "less-than-equal", "less-than", "life-ring", "light-ceiling", "light-emergency-on", "light-emergency", "light-switch-off", "light-switch-on", "light-switch", "lightbulb-cfl-on", "lightbulb-cfl", "lightbulb-dollar", "lightbulb-exclamation-on", "lightbulb-exclamation", "lightbulb-gear", "lightbulb-message", "lightbulb-on", "lightbulb-slash", "lightbulb", "lighthouse", "lights-holiday", "line-columns", "line-height", "lines-leaning", "link-horizontal-slash", "link-horizontal", "link-simple-slash", "link-simple", "link-slash", "link", "lips", "lira-sign", "list-check", "list-dropdown", "list-music", "list-ol", "list-radio", "list-timeline", "list-tree", "list-ul", "list", "litecoin-sign", "loader", "lobster", "location-arrow-up", "location-arrow", "location-check", "location-crosshairs-slash", "location-crosshairs", "location-dot-slash", "location-dot", "location-exclamation", "location-minus", "location-pen", "location-pin-lock", "location-pin-slash", "location-pin", "location-plus", "location-question", "location-smile", "location-xmark", "lock-a", "lock-hashtag", "lock-keyhole-open", "lock-keyhole", "lock-open", "lock", "locust", "lollipop", "loveseat", "luchador-mask", "lungs-virus", "lungs", "m", "mace", "magnet", "magnifying-glass-arrow-right", "magnifying-glass-arrows-rotate", "magnifying-glass-chart", "magnifying-glass-dollar", "magnifying-glass-location", "magnifying-glass-minus", "magnifying-glass-music", "magnifying-glass-play", "magnifying-glass-plus", "magnifying-glass-waveform", "magnifying-glass", "mailbox-flag-up", "mailbox", "manat-sign", "mandolin", "mango", "manhole", "map-location-dot", "map-location", "map-pin", "map", "marker", "mars-and-venus-burst", "mars-and-venus", "mars-double", "mars-stroke-right", "mars-stroke-up", "mars-stroke", "mars", "martini-glass-citrus", "martini-glass-empty", "martini-glass", "mask-face", "mask-snorkel", "mask-ventilator", "mask", "masks-theater", "mattress-pillow", "maximize", "meat", "medal", "megaphone", "melon-slice", "melon", "memo-circle-check", "memo-circle-info", "memo-pad", "memo", "memory", "menorah", "mercury", "merge", "message-arrow-down", "message-arrow-up-right", "message-arrow-up", "message-bot", "message-captions", "message-check", "message-code", "message-dollar", "message-dots", "message-exclamation", "message-heart", "message-image", "message-lines", "message-medical", "message-middle-top", "message-middle", "message-minus", "message-music", "message-pen", "message-plus", "message-question", "message-quote", "message-slash", "message-smile", "message-sms", "message-text", "message-xmark", "message", "messages-dollar", "messages-question", "messages", "meteor", "meter-bolt", "meter-droplet", "meter-fire", "meter", "microchip-ai", "microchip", "microphone-lines-slash", "microphone-lines", "microphone-slash", "microphone-stand", "microphone", "microscope", "microwave", "mill-sign", "minimize", "minus", "mistletoe", "mitten", "mobile-button", "mobile-notch", "mobile-retro", "mobile-screen-button", "mobile-screen", "mobile-signal-out", "mobile-signal", "mobile", "money-bill-1-wave", "money-bill-1", "money-bill-simple-wave", "money-bill-simple", "money-bill-transfer", "money-bill-trend-up", "money-bill-wave", "money-bill-wheat", "money-bill", "money-bills-simple", "money-bills", "money-check-dollar-pen", "money-check-dollar", "money-check-pen", "money-check", "money-from-bracket", "money-simple-from-bracket", "monitor-waveform", "monkey", "monument", "moon-cloud", "moon-over-sun", "moon-stars", "moon", "moped", "mortar-pestle", "mosque", "mosquito-net", "mosquito", "motorcycle", "mound", "mountain-city", "mountain-sun", "mountain", "mountains", "mouse-field", "mp3-player", "mug-hot", "mug-marshmallows", "mug-saucer", "mug-tea-saucer", "mug-tea", "mug", "mushroom", "music-magnifying-glass", "music-note-slash", "music-note", "music-slash", "music", "mustache", "n", "naira-sign", "narwhal", "nesting-dolls", "network-wired", "neuter", "newspaper", "nfc-lock", "nfc-magnifying-glass", "nfc-pen", "nfc-signal", "nfc-slash", "nfc-symbol", "nfc-trash", "nfc", "nose", "not-equal", "notdef", "note-medical", "note-sticky", "note", "notebook", "notes-medical", "notes", "o", "object-exclude", "object-group", "object-intersect", "object-subtract", "object-ungroup", "object-union", "objects-align-bottom", "objects-align-center-horizontal", "objects-align-center-vertical", "objects-align-left", "objects-align-right", "objects-align-top", "objects-column", "octagon-check", "octagon-divide", "octagon-exclamation", "octagon-minus", "octagon-plus", "octagon-xmark", "octagon", "octopus", "oil-can-drip", "oil-can", "oil-temperature", "oil-well", "olive-branch", "olive", "om", "omega", "onion", "option", "ornament", "otter", "outdent", "outlet", "oven", "overline", "p", "page-caret-down", "page-caret-up", "page", "pager", "paint-roller", "paintbrush-fine", "paintbrush-pencil", "paintbrush", "palette", "pallet-box", "pallet-boxes", "pallet", "pan-food", "pan-frying", "pancakes", "panel-ews", "panel-fire", "panorama", "paper-plane-top", "paper-plane", "paperclip-vertical", "paperclip", "parachute-box", "paragraph-left", "paragraph", "party-bell", "party-horn", "passport", "paste", "pause", "paw-claws", "paw-simple", "paw", "peace", "peach", "peanut", "peanuts", "peapod", "pear", "pedestal", "pegasus", "pen-circle", "pen-clip-slash", "pen-clip", "pen-fancy-slash", "pen-fancy", "pen-field", "pen-line", "pen-nib-slash", "pen-nib", "pen-paintbrush", "pen-ruler", "pen-slash", "pen-swirl", "pen-to-square", "pen", "pencil-mechanical", "pencil-slash", "pencil", "people-arrows", "people-carry-box", "people-dress-simple", "people-dress", "people-group", "people-line", "people-pants-simple", "people-pants", "people-pulling", "people-robbery", "people-roof", "people-simple", "people", "pepper-hot", "pepper", "percent", "period", "person-arrow-down-to-line", "person-arrow-up-from-line", "person-biking-mountain", "person-biking", "person-booth", "person-breastfeeding", "person-burst", "person-cane", "person-carry-box", "person-chalkboard", "person-circle-check", "person-circle-exclamation", "person-circle-minus", "person-circle-plus", "person-circle-question", "person-circle-xmark", "person-digging", "person-dolly-empty", "person-dolly", "person-dots-from-line", "person-dress-burst", "person-dress-fairy", "person-dress-simple", "person-dress", "person-drowning", "person-fairy", "person-falling-burst", "person-falling", "person-from-portal", "person-half-dress", "person-harassing", "person-hiking", "person-military-pointing", "person-military-rifle", "person-military-to-person", "person-pinball", "person-praying", "person-pregnant", "person-rays", "person-rifle", "person-running-fast", "person-running", "person-seat-reclined", "person-seat", "person-shelter", "person-sign", "person-simple", "person-skating", "person-ski-jumping", "person-ski-lift", "person-skiing-nordic", "person-skiing", "person-sledding", "person-snowboarding", "person-snowmobiling", "person-swimming", "person-through-window", "person-to-door", "person-to-portal", "person-walking-arrow-loop-left", "person-walking-arrow-right", "person-walking-dashed-line-arrow-right", "person-walking-luggage", "person-walking-with-cane", "person-walking", "person", "peseta-sign", "peso-sign", "phone-arrow-down-left", "phone-arrow-right", "phone-arrow-up-right", "phone-flip", "phone-hangup", "phone-intercom", "phone-missed", "phone-office", "phone-plus", "phone-rotary", "phone-slash", "phone-volume", "phone-xmark", "phone", "photo-film-music", "photo-film", "pi", "piano-keyboard", "piano", "pickaxe", "pickleball", "pie", "pig", "piggy-bank", "pills", "pinata", "pinball", "pineapple", "pipe-circle-check", "pipe-collar", "pipe-section", "pipe-smoking", "pipe-valve", "pipe", "pizza-slice", "pizza", "place-of-worship", "plane-arrival", "plane-circle-check", "plane-circle-exclamation", "plane-circle-xmark", "plane-departure", "plane-engines", "plane-lock", "plane-prop", "plane-slash", "plane-tail", "plane-up-slash", "plane-up", "plane", "planet-moon", "planet-ringed", "plant-wilt", "plate-utensils", "plate-wheat", "play-pause", "play", "plug-circle-bolt", "plug-circle-check", "plug-circle-exclamation", "plug-circle-minus", "plug-circle-plus", "plug-circle-xmark", "plug", "plus-large", "plus-minus", "plus", "podcast", "podium-star", "podium", "police-box", "poll-people", "pompebled", "poo-storm", "poo", "pool-8-ball", "poop", "popcorn", "popsicle", "pot-food", "potato", "power-off", "prescription-bottle-medical", "prescription-bottle-pill", "prescription-bottle", "prescription", "presentation-screen", "pretzel", "print-magnifying-glass", "print-slash", "print", "projector", "pump-medical", "pump-soap", "pump", "pumpkin", "puzzle-piece-simple", "puzzle-piece", "puzzle", "q", "qrcode", "question", "quote-left", "quote-right", "quotes", "r", "rabbit-running", "rabbit", "raccoon", "racquet", "radar", "radiation", "radio-tuner", "radio", "rainbow", "raindrops", "ram", "ramp-loading", "ranking-star", "raygun", "receipt", "record-vinyl", "rectangle-ad", "rectangle-barcode", "rectangle-code", "rectangle-history-circle-plus", "rectangle-history-circle-user", "rectangle-history", "rectangle-list", "rectangle-pro", "rectangle-terminal", "rectangle-vertical-history", "rectangle-vertical", "rectangle-wide", "rectangle-xmark", "rectangle", "rectangles-mixed", "recycle", "reel", "reflect-both", "reflect-horizontal", "reflect-vertical", "refrigerator", "registered", "repeat-1", "repeat", "reply-all", "reply-clock", "reply", "republican", "restroom-simple", "restroom", "retweet", "rhombus", "ribbon", "right-from-bracket", "right-from-line", "right-left-large", "right-left", "right-long-to-line", "right-long", "right-to-bracket", "right-to-line", "right", "ring-diamond", "ring", "rings-wedding", "road-barrier", "road-bridge", "road-circle-check", "road-circle-exclamation", "road-circle-xmark", "road-lock", "road-spikes", "road", "robot-astromech", "robot", "rocket-launch", "rocket", "roller-coaster", "rotate-exclamation", "rotate-left", "rotate-reverse", "rotate-right", "rotate", "route-highway", "route-interstate", "route", "router", "rss", "ruble-sign", "rug", "rugby-ball", "ruler-combined", "ruler-horizontal", "ruler-triangle", "ruler-vertical", "ruler", "rupee-sign", "rupiah-sign", "rv", "s", "sack-dollar", "sack-xmark", "sack", "sailboat", "salad", "salt-shaker", "sandwich", "satellite-dish", "satellite", "sausage", "saxophone-fire", "saxophone", "scale-balanced", "scale-unbalanced-flip", "scale-unbalanced", "scalpel-line-dashed", "scalpel", "scanner-gun", "scanner-image", "scanner-keyboard", "scanner-touchscreen", "scarecrow", "scarf", "school-circle-check", "school-circle-exclamation", "school-circle-xmark", "school-flag", "school-lock", "school", "scissors", "screen-users", "screencast", "screwdriver-wrench", "screwdriver", "scribble", "scroll-old", "scroll-torah", "scroll", "scrubber", "scythe", "sd-card", "sd-cards", "seal-exclamation", "seal-question", "seal", "seat-airline", "section", "seedling", "semicolon", "send-back", "send-backward", "sensor-cloud", "sensor-fire", "sensor-on", "sensor-triangle-exclamation", "sensor", "server", "shapes", "share-all", "share-from-square", "share-nodes", "share", "sheep", "sheet-plastic", "shekel-sign", "shelves-empty", "shelves", "shield-cat", "shield-check", "shield-cross", "shield-dog", "shield-exclamation", "shield-halved", "shield-heart", "shield-keyhole", "shield-minus", "shield-plus", "shield-quartered", "shield-slash", "shield-virus", "shield-xmark", "shield", "ship", "shirt-long-sleeve", "shirt-running", "shirt-tank-top", "shirt", "shish-kebab", "shoe-prints", "shop-lock", "shop-slash", "shop", "shovel-snow", "shovel", "shower-down", "shower", "shredder", "shrimp", "shuffle", "shutters", "shuttle-space", "shuttlecock", "sickle", "sidebar-flip", "sidebar", "sigma", "sign-hanging", "sign-post", "sign-posts-wrench", "sign-posts", "signal-bars-fair", "signal-bars-good", "signal-bars-slash", "signal-bars-weak", "signal-bars", "signal-fair", "signal-good", "signal-slash", "signal-stream-slash", "signal-stream", "signal-strong", "signal-weak", "signal", "signature-lock", "signature-slash", "signature", "signs-post", "sim-card", "sim-cards", "sink", "siren-on", "siren", "sitemap", "skeleton-ribs", "skeleton", "ski-boot-ski", "ski-boot", "skull-cow", "skull-crossbones", "skull", "slash-back", "slash-forward", "slash", "sleigh", "slider", "sliders-simple", "sliders-up", "sliders", "slot-machine", "smog", "smoke", "smoking", "snake", "snooze", "snow-blowing", "snowflake-droplets", "snowflake", "snowflakes", "snowman-head", "snowman", "snowplow", "soap", "socks", "soft-serve", "solar-panel", "solar-system", "sort-down", "sort-up", "sort", "spa", "space-station-moon-construction", "space-station-moon", "spade", "spaghetti-monster-flying", "sparkle", "sparkles", "speaker", "speakers", "spell-check", "spider-black-widow", "spider-web", "spider", "spinner-scale", "spinner-third", "spinner", "split", "splotch", "spoon", "sportsball", "spray-can-sparkles", "spray-can", "sprinkler-ceiling", "sprinkler", "square-0", "square-1", "square-2", "square-3", "square-4", "square-5", "square-6", "square-7", "square-8", "square-9", "square-a-lock", "square-a", "square-ampersand", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-down", "square-arrow-left", "square-arrow-right", "square-arrow-up-left", "square-arrow-up-right", "square-arrow-up", "square-b", "square-binary", "square-bolt", "square-c", "square-caret-down", "square-caret-left", "square-caret-right", "square-caret-up", "square-check", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-d", "square-dashed-circle-plus", "square-dashed", "square-divide", "square-dollar", "square-down-left", "square-down-right", "square-down", "square-e", "square-ellipsis-vertical", "square-ellipsis", "square-envelope", "square-exclamation", "square-f", "square-fragile", "square-full", "square-g", "square-h", "square-heart", "square-i", "square-info", "square-j", "square-k", "square-kanban", "square-l", "square-left", "square-list", "square-m", "square-minus", "square-n", "square-nfi", "square-o", "square-p", "square-parking-slash", "square-parking", "square-pen", "square-person-confined", "square-phone-flip", "square-phone-hangup", "square-phone", "square-plus", "square-poll-horizontal", "square-poll-vertical", "square-q", "square-quarters", "square-question", "square-quote", "square-r", "square-right", "square-ring", "square-root-variable", "square-root", "square-rss", "square-s", "square-share-nodes", "square-sliders-vertical", "square-sliders", "square-small", "square-star", "square-t", "square-terminal", "square-this-way-up", "square-u", "square-up-left", "square-up-right", "square-up", "square-user", "square-v", "square-virus", "square-w", "square-x", "square-xmark", "square-y", "square-z", "square", "squid", "squirrel", "staff-snake", "staff", "stairs", "stamp", "standard-definition", "stapler", "star-and-crescent", "star-christmas", "star-exclamation", "star-half-stroke", "star-half", "star-of-david", "star-of-life", "star-sharp-half-stroke", "star-sharp-half", "star-sharp", "star-shooting", "star", "starfighter-twin-ion-engine-advanced", "starfighter-twin-ion-engine", "starfighter", "stars", "starship-freighter", "starship", "steak", "steering-wheel", "sterling-sign", "stethoscope", "stocking", "stomach", "stop", "stopwatch-20", "stopwatch", "store-lock", "store-slash", "store", "strawberry", "street-view", "stretcher", "strikethrough", "stroopwafel", "subscript", "subtitles-slash", "subtitles", "suitcase-medical", "suitcase-rolling", "suitcase", "sun-bright", "sun-cloud", "sun-dust", "sun-haze", "sun-plant-wilt", "sun", "sunglasses", "sunrise", "sunset", "superscript", "sushi-roll", "sushi", "swap-arrows", "swap", "swatchbook", "sword-laser-alt", "sword-laser", "sword", "swords-laser", "swords", "symbols", "synagogue", "syringe", "t-rex", "t", "table-cells-column-lock", "table-cells-column-unlock", "table-cells-large", "table-cells-lock", "table-cells-row-lock", "table-cells-row-unlock", "table-cells-unlock", "table-cells", "table-columns", "table-layout", "table-list", "table-picnic", "table-pivot", "table-rows", "table-tennis-paddle-ball", "table-tree", "table", "tablet-button", "tablet-rugged", "tablet-screen-button", "tablet-screen", "tablet", "tablets", "tachograph-digital", "taco", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally", "tamale", "tank-water", "tape", "tarp-droplet", "tarp", "taxi-bus", "taxi", "teddy-bear", "teeth-open", "teeth", "telescope", "temperature-arrow-down", "temperature-arrow-up", "temperature-empty", "temperature-full", "temperature-half", "temperature-high", "temperature-list", "temperature-low", "temperature-quarter", "temperature-snow", "temperature-sun", "temperature-three-quarters", "tenge-sign", "tennis-ball", "tent-arrow-down-to-line", "tent-arrow-left-right", "tent-arrow-turn-left", "tent-arrows-down", "tent-double-peak", "tent", "tents", "terminal", "text-height", "text-size", "text-slash", "text-width", "text", "thermometer", "theta", "thought-bubble", "thumbs-down", "thumbs-up", "thumbtack-slash", "thumbtack", "tick", "ticket-airline", "ticket-perforated", "ticket-simple", "ticket", "tickets-airline", "tickets-perforated", "tickets-simple", "tickets", "tilde", "timeline-arrow", "timeline", "timer", "tire-flat", "tire-pressure-warning", "tire-rugged", "tire", "toggle-large-off", "toggle-large-on", "toggle-off", "toggle-on", "toilet-paper-blank-under", "toilet-paper-blank", "toilet-paper-check", "toilet-paper-slash", "toilet-paper-under-slash", "toilet-paper-under", "toilet-paper-xmark", "toilet-paper", "toilet-portable", "toilet", "toilets-portable", "tomato", "tombstone-blank", "tombstone", "toolbox", "tooth", "toothbrush", "torii-gate", "tornado", "tower-broadcast", "tower-cell", "tower-control", "tower-observation", "tractor", "trademark", "traffic-cone", "traffic-light-go", "traffic-light-slow", "traffic-light-stop", "traffic-light", "trailer", "train-subway-tunnel", "train-subway", "train-track", "train-tram", "train-tunnel", "train", "transformer-bolt", "transgender", "transporter-1", "transporter-2", "transporter-3", "transporter-4", "transporter-5", "transporter-6", "transporter-7", "transporter-empty", "transporter", "trash-arrow-up", "trash-can-arrow-up", "trash-can-check", "trash-can-clock", "trash-can-list", "trash-can-plus", "trash-can-slash", "trash-can-undo", "trash-can-xmark", "trash-can", "trash-check", "trash-clock", "trash-list", "trash-plus", "trash-slash", "trash-undo", "trash-xmark", "trash", "treasure-chest", "tree-christmas", "tree-city", "tree-deciduous", "tree-decorated", "tree-large", "tree-palm", "tree", "trees", "triangle-exclamation", "triangle-instrument", "triangle-person-digging", "triangle", "tricycle-adult", "tricycle", "trillium", "trophy-star", "trophy", "trowel-bricks", "trowel", "truck-arrow-right", "truck-bolt", "truck-clock", "truck-container-empty", "truck-container", "truck-droplet", "truck-fast", "truck-field-un", "truck-field", "truck-fire", "truck-flatbed", "truck-front", "truck-ladder", "truck-medical", "truck-monster", "truck-moving", "truck-pickup", "truck-plane", "truck-plow", "truck-ramp-box", "truck-ramp-couch", "truck-ramp", "truck-tow", "truck-utensils", "truck", "trumpet", "tty-answer", "tty", "tugrik-sign", "turkey", "turkish-lira-sign", "turn-down-left", "turn-down-right", "turn-down", "turn-left-down", "turn-left-up", "turn-left", "turn-right", "turn-up", "turntable", "turtle", "tv-music", "tv-retro", "tv", "typewriter", "u", "ufo-beam", "ufo", "umbrella-beach", "umbrella-simple", "umbrella", "underline", "unicorn", "uniform-martial-arts", "union", "universal-access", "unlock-keyhole", "unlock", "up-down-left-right", "up-down", "up-from-bracket", "up-from-dotted-line", "up-from-line", "up-left", "up-long", "up-right-and-down-left-from-center", "up-right-from-square", "up-right", "up-to-bracket", "up-to-dotted-line", "up-to-line", "up", "upload", "usb-drive", "user-alien", "user-astronaut", "user-beard-bolt", "user-bounty-hunter", "user-check", "user-chef", "user-clock", "user-cowboy", "user-crown", "user-doctor-hair-long", "user-doctor-hair", "user-doctor-message", "user-doctor", "user-gear", "user-graduate", "user-group-crown", "user-group-simple", "user-group", "user-hair-buns", "user-hair-long", "user-hair-mullet", "user-hair", "user-headset", "user-helmet-safety", "user-hoodie", "user-injured", "user-large-slash", "user-large", "user-lock", "user-magnifying-glass", "user-minus", "user-music", "user-ninja", "user-nurse-hair-long", "user-nurse-hair", "user-nurse", "user-pen", "user-pilot-tie", "user-pilot", "user-plus", "user-police-tie", "user-police", "user-robot-xmarks", "user-robot", "user-secret", "user-shakespeare", "user-shield", "user-slash", "user-tag", "user-tie-hair-long", "user-tie-hair", "user-tie", "user-unlock", "user-visor", "user-vneck-hair-long", "user-vneck-hair", "user-vneck", "user-xmark", "user", "users-between-lines", "users-gear", "users-line", "users-medical", "users-rays", "users-rectangle", "users-slash", "users-viewfinder", "users", "utensils-slash", "utensils", "utility-pole-double", "utility-pole", "v", "vacuum-robot", "vacuum", "value-absolute", "van-shuttle", "vault", "vector-circle", "vector-polygon", "vector-square", "vent-damper", "venus-double", "venus-mars", "venus", "vest-patches", "vest", "vial-circle-check", "vial-virus", "vial", "vials", "video-arrow-down-left", "video-arrow-up-right", "video-plus", "video-slash", "video", "vihara", "violin", "virus-covid-slash", "virus-covid", "virus-slash", "virus", "viruses", "voicemail", "volcano", "volleyball", "volume-high", "volume-low", "volume-off", "volume-slash", "volume-xmark", "volume", "vr-cardboard", "w", "waffle", "wagon-covered", "walker", "walkie-talkie", "wallet", "wand-magic-sparkles", "wand-magic", "wand-sparkles", "wand", "warehouse-full", "warehouse", "washing-machine", "watch-apple", "watch-calculator", "watch-fitness", "watch-smart", "watch", "water-arrow-down", "water-arrow-up", "water-ladder", "water", "watermelon-slice", "wave-pulse", "wave-sine", "wave-square", "wave-triangle", "wave", "waveform-lines", "waveform", "waves-sine", "web-awesome", "webhook", "weight-hanging", "weight-scale", "whale", "wheat-awn-circle-exclamation", "wheat-awn-slash", "wheat-awn", "wheat-slash", "wheat", "wheelchair-move", "wheelchair", "whiskey-glass-ice", "whiskey-glass", "whistle", "wifi-exclamation", "wifi-fair", "wifi-slash", "wifi-weak", "wifi", "wind-turbine", "wind-warning", "wind", "window-flip", "window-frame-open", "window-frame", "window-maximize", "window-minimize", "window-restore", "window", "windsock", "wine-bottle", "wine-glass-crack", "wine-glass-empty", "wine-glass", "won-sign", "worm", "wreath-laurel", "wreath", "wrench-simple", "wrench", "x-ray", "x", "xmark-large", "xmark-to-slot", "xmark", "xmarks-lines", "y", "yen-sign", "yin-yang", "z" ] } ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_regular.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharp-duotone-light.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharp-duotone-regular.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharp-duotone-solid.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharp-duotone-thin.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharp.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharpLight.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharpSolid.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharpThin.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_solid.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_thin.json ================================================ {"0":48,"1":49,"2":50,"3":51,"4":52,"5":53,"6":54,"7":55,"8":56,"9":57,"00":58471,"360-degrees":58076,"a":65,"abacus":63040,"accent-grave":96,"acorn":63150,"address-book":62137,"address-card":62139,"air-conditioner":63732,"airplay":57481,"alarm-clock":62286,"alarm-exclamation":63555,"alarm-plus":63556,"alarm-snooze":63557,"album-circle-plus":58508,"album-circle-user":58509,"album-collection-circle-plus":58510,"album-collection-circle-user":58511,"album-collection":63648,"album":63647,"alicorn":63152,"alien-8bit":63734,"alien":63733,"align-center":61495,"align-justify":61497,"align-left":61494,"align-right":61496,"align-slash":63558,"alt":57482,"amp-guitar":63649,"ampersand":38,"anchor-circle-check":58538,"anchor-circle-exclamation":58539,"anchor-circle-xmark":58540,"anchor-lock":58541,"anchor":61757,"angel":63353,"angle-90":57485,"angle-down":61703,"angle-left":61700,"angle-right":61701,"angle-up":61702,"angle":57484,"angles-down":61699,"angles-left":61696,"angles-right":61697,"angles-up-down":58893,"angles-up":61698,"ankh":63044,"ant":59008,"apartment":58472,"aperture":58079,"apostrophe":39,"apple-core":57487,"apple-whole":62929,"archway":62807,"arrow-down-1-9":61794,"arrow-down-9-1":63622,"arrow-down-a-z":61789,"arrow-down-arrow-up":63619,"arrow-down-big-small":63628,"arrow-down-from-arc":58900,"arrow-down-from-bracket":58983,"arrow-down-from-dotted-line":57488,"arrow-down-from-line":62277,"arrow-down-left-and-arrow-up-right-to-center":57490,"arrow-down-left":57489,"arrow-down-long":61813,"arrow-down-right":57491,"arrow-down-short-wide":63620,"arrow-down-small-big":63629,"arrow-down-square-triangle":63625,"arrow-down-to-arc":58542,"arrow-down-to-bracket":57492,"arrow-down-to-dotted-line":57493,"arrow-down-to-line":62269,"arrow-down-to-square":57494,"arrow-down-triangle-square":63624,"arrow-down-up-across-line":58543,"arrow-down-up-lock":58544,"arrow-down-wide-short":61792,"arrow-down-z-a":63617,"arrow-down":61539,"arrow-left-from-arc":58901,"arrow-left-from-bracket":58984,"arrow-left-from-line":62276,"arrow-left-long-to-line":58324,"arrow-left-long":61815,"arrow-left-to-arc":58902,"arrow-left-to-bracket":58985,"arrow-left-to-line":62270,"arrow-left":61536,"arrow-pointer":62021,"arrow-progress":58847,"arrow-right-arrow-left":61676,"arrow-right-from-arc":58545,"arrow-right-from-bracket":61579,"arrow-right-from-line":62275,"arrow-right-long-to-line":58325,"arrow-right-long":61816,"arrow-right-to-arc":58546,"arrow-right-to-bracket":61584,"arrow-right-to-city":58547,"arrow-right-to-line":62272,"arrow-right":61537,"arrow-rotate-left":61666,"arrow-rotate-right":61470,"arrow-trend-down":57495,"arrow-trend-up":57496,"arrow-turn-down-left":58081,"arrow-turn-down-right":58326,"arrow-turn-down":61769,"arrow-turn-left-down":58931,"arrow-turn-left-up":58932,"arrow-turn-left":58930,"arrow-turn-right":58933,"arrow-turn-up":61768,"arrow-up-1-9":61795,"arrow-up-9-1":63623,"arrow-up-a-z":61790,"arrow-up-arrow-down":57497,"arrow-up-big-small":63630,"arrow-up-from-arc":58548,"arrow-up-from-bracket":57498,"arrow-up-from-dotted-line":57499,"arrow-up-from-ground-water":58549,"arrow-up-from-line":62274,"arrow-up-from-square":57500,"arrow-up-from-water-pump":58550,"arrow-up-left-from-circle":57502,"arrow-up-left":57501,"arrow-up-long":61814,"arrow-up-right-and-arrow-down-left-from-center":57504,"arrow-up-right-dots":58551,"arrow-up-right-from-square":61582,"arrow-up-right":57503,"arrow-up-short-wide":63621,"arrow-up-small-big":63631,"arrow-up-square-triangle":63627,"arrow-up-to-arc":58903,"arrow-up-to-bracket":58986,"arrow-up-to-dotted-line":57505,"arrow-up-to-line":62273,"arrow-up-triangle-square":63626,"arrow-up-wide-short":61793,"arrow-up-z-a":63618,"arrow-up":61538,"arrows-cross":57506,"arrows-down-to-line":58552,"arrows-down-to-people":58553,"arrows-from-dotted-line":57507,"arrows-from-line":57508,"arrows-left-right-to-line":58554,"arrows-left-right":61566,"arrows-maximize":62237,"arrows-minimize":57509,"arrows-repeat-1":62310,"arrows-repeat":62308,"arrows-retweet":62305,"arrows-rotate-reverse":58928,"arrows-rotate":61473,"arrows-spin":58555,"arrows-split-up-and-left":58556,"arrows-to-circle":58557,"arrows-to-dot":58558,"arrows-to-dotted-line":57510,"arrows-to-eye":58559,"arrows-to-line":57511,"arrows-turn-right":58560,"arrows-turn-to-dots":58561,"arrows-up-down-left-right":61511,"arrows-up-down":61565,"arrows-up-to-line":58562,"asterisk":42,"at":64,"atom-simple":62931,"atom":62930,"audio-description-slash":57512,"audio-description":62110,"austral-sign":57513,"avocado":57514,"award-simple":57515,"award":62809,"axe-battle":63155,"axe":63154,"b":66,"baby-carriage":63357,"baby":63356,"backpack":62932,"backward-fast":61513,"backward-step":61512,"backward":61514,"bacon":63461,"bacteria":57433,"bacterium":57434,"badge-check":62262,"badge-dollar":63045,"badge-percent":63046,"badge-sheriff":63650,"badge":62261,"badger-honey":63156,"badminton":58170,"bag-seedling":58866,"bag-shopping-minus":58960,"bag-shopping-plus":58961,"bag-shopping":62096,"bagel":58327,"bags-shopping":63559,"baguette":58328,"bahai":63078,"baht-sign":57516,"ball-pile":63358,"balloon":58083,"balloons":58084,"ballot-check":63283,"ballot":63282,"ban-bug":63481,"ban-parking":62998,"ban-smoking":62797,"ban":61534,"banana":58085,"bandage":62562,"bangladeshi-taka-sign":58086,"banjo":63651,"barcode-read":62564,"barcode-scan":62565,"barcode":61482,"bars-filter":57517,"bars-progress":63528,"bars-sort":57518,"bars-staggered":62800,"bars":61641,"baseball-bat-ball":62514,"baseball":62515,"basket-shopping-minus":58962,"basket-shopping-plus":58963,"basket-shopping-simple":57519,"basket-shopping":62097,"basketball-hoop":62517,"basketball":62516,"bat":63157,"bath":62157,"battery-bolt":62326,"battery-empty":62020,"battery-exclamation":57520,"battery-full":62016,"battery-half":62018,"battery-low":57521,"battery-quarter":62019,"battery-slash":62327,"battery-three-quarters":62017,"bed-bunk":63736,"bed-empty":63737,"bed-front":63735,"bed-pulse":62599,"bed":62006,"bee":57522,"beer-mug-empty":61692,"beer-mug":57523,"bell-concierge":62818,"bell-exclamation":63560,"bell-on":63738,"bell-plus":63561,"bell-ring":58924,"bell-school-slash":62934,"bell-school":62933,"bell-slash":61942,"bell":61683,"bells":63359,"bench-tree":58087,"bezier-curve":62811,"bicycle":61958,"billboard":58829,"bin-bottles-recycle":58870,"bin-bottles":58869,"bin-recycle":58871,"binary-circle-check":58172,"binary-lock":58173,"binary-slash":58174,"binary":58171,"binoculars":61925,"biohazard":63360,"bird":58473,"bitcoin-sign":57524,"blanket-fire":58330,"blanket":62616,"blender-phone":63158,"blender":62743,"blinds-open":63740,"blinds-raised":63741,"blinds":63739,"block-brick-fire":58332,"block-brick":58331,"block-question":58333,"block-quote":57525,"block":58474,"blog":63361,"blueberries":58088,"bluetooth":62099,"bold":61490,"bolt-auto":57526,"bolt-lightning":57527,"bolt-slash":57528,"bolt":61671,"bomb":61922,"bone-break":62936,"bone":62935,"bong":62812,"book-arrow-right":57529,"book-arrow-up":57530,"book-atlas":62808,"book-bible":63047,"book-blank":62937,"book-bookmark":57531,"book-circle-arrow-right":57532,"book-circle-arrow-up":57533,"book-copy":57534,"book-font":57535,"book-heart":62617,"book-journal-whills":63082,"book-medical":63462,"book-open-cover":57536,"book-open-reader":62938,"book-open":62744,"book-quran":63111,"book-section":57537,"book-skull":63159,"book-sparkles":63160,"book-tanakh":63527,"book-user":63463,"book":61485,"bookmark-slash":57538,"bookmark":61486,"books-medical":63464,"books":62939,"boombox":63653,"boot-heeled":58175,"boot":63362,"booth-curtain":63284,"border-all":63564,"border-bottom-right":63572,"border-bottom":63565,"border-center-h":63644,"border-center-v":63645,"border-inner":63566,"border-left":63567,"border-none":63568,"border-outer":63569,"border-right":63570,"border-top-left":63571,"border-top":63573,"bore-hole":58563,"bottle-baby":58995,"bottle-droplet":58564,"bottle-water":58565,"bow-arrow":63161,"bowl-chopsticks-noodles":58090,"bowl-chopsticks":58089,"bowl-food":58566,"bowl-hot":63523,"bowl-rice":58091,"bowl-scoop":58334,"bowl-scoops":58335,"bowl-soft-serve":58475,"bowl-spoon":58336,"bowling-ball-pin":57539,"bowling-ball":62518,"bowling-pins":62519,"box-archive":61831,"box-ballot":63285,"box-check":62567,"box-circle-check":57540,"box-dollar":62624,"box-heart":62621,"box-open-full":62620,"box-open":62622,"box-taped":62618,"box-tissue":57435,"box":62566,"boxes-packing":58567,"boxes-stacked":62568,"boxing-glove":62520,"bracket-curly-right":125,"bracket-curly":123,"bracket-round-right":41,"bracket-round":40,"bracket-square-right":93,"bracket-square":91,"brackets-curly":63466,"brackets-round":57541,"brackets-square":63465,"braille":62113,"brain-arrow-curved-right":63095,"brain-circuit":57542,"brain":62940,"brake-warning":57543,"brazilian-real-sign":58476,"bread-loaf":63467,"bread-slice-butter":58337,"bread-slice":63468,"bridge-circle-check":58569,"bridge-circle-exclamation":58570,"bridge-circle-xmark":58571,"bridge-lock":58572,"bridge-suspension":58573,"bridge-water":58574,"bridge":58568,"briefcase-arrow-right":58098,"briefcase-blank":57544,"briefcase-medical":62569,"briefcase":61617,"brightness-low":57546,"brightness":57545,"bring-forward":63574,"bring-front":63575,"broccoli":58338,"broom-ball":62552,"broom-wide":58833,"broom":62746,"browser":62334,"browsers":57547,"brush":62813,"bucket":58575,"bug-slash":58512,"bug":61832,"bugs":58576,"building-circle-arrow-right":58577,"building-circle-check":58578,"building-circle-exclamation":58579,"building-circle-xmark":58580,"building-columns":61852,"building-flag":58581,"building-lock":58582,"building-magnifying-glass":58908,"building-memo":58910,"building-ngo":58583,"building-shield":58584,"building-un":58585,"building-user":58586,"building-wheat":58587,"building":61869,"buildings":57548,"bulldozer":58965,"bullhorn":61601,"bullseye-arrow":63048,"bullseye-pointer":63049,"bullseye":61760,"buoy-mooring":58806,"buoy":58805,"burger-cheese":63473,"burger-fries":57549,"burger-glass":57550,"burger-lettuce":58339,"burger-soda":63576,"burger":63493,"burrito":63469,"burst":58588,"bus-school":62941,"bus-simple":62814,"bus":61959,"business-time":63050,"butter":58340,"c":67,"cabin":58477,"cabinet-filing":63051,"cable-car":63450,"cactus":63655,"caduceus":59009,"cake-candles":61949,"cake-slice":58341,"calculator-simple":63052,"calculator":61932,"calendar-arrow-down":57552,"calendar-arrow-up":57553,"calendar-check":62068,"calendar-circle-exclamation":58478,"calendar-circle-minus":58479,"calendar-circle-plus":58480,"calendar-circle-user":58481,"calendar-clock":57554,"calendar-day":63363,"calendar-days":61555,"calendar-exclamation":62260,"calendar-heart":57555,"calendar-image":57556,"calendar-lines-pen":58482,"calendar-lines":57557,"calendar-minus":62066,"calendar-pen":62259,"calendar-plus":62065,"calendar-range":57558,"calendar-star":63286,"calendar-users":58850,"calendar-week":63364,"calendar-xmark":62067,"calendar":61747,"calendars":57559,"camcorder":63656,"camera-cctv":63660,"camera-movie":63657,"camera-polaroid":63658,"camera-retro":61571,"camera-rotate":57560,"camera-security":63742,"camera-slash":57561,"camera-viewfinder":57562,"camera-web-slash":63539,"camera-web":63538,"camera":61488,"campfire":63162,"campground":63163,"can-food":58342,"candle-holder":63164,"candy-bar":58344,"candy-cane":63366,"candy-corn":63165,"candy":58343,"cannabis":62815,"cannon":58946,"capsules":62571,"car-battery":62943,"car-bolt":58177,"car-building":63577,"car-bump":62944,"car-burst":62945,"car-bus":63578,"car-circle-bolt":58178,"car-garage":62946,"car-mirrors":58179,"car-on":58589,"car-rear":62942,"car-side-bolt":58180,"car-side":62948,"car-tilt":62949,"car-tunnel":58590,"car-wash":62950,"car-wrench":62947,"car":61881,"caravan-simple":57344,"caravan":63743,"card-club":58345,"card-diamond":58346,"card-heart":58347,"card-spade":58348,"cards-blank":58591,"cards":58349,"caret-down":61655,"caret-left":61657,"caret-right":61658,"caret-up":61656,"carpool":59036,"carrot":63367,"cars":63579,"cart-arrow-down":61976,"cart-arrow-up":58350,"cart-circle-arrow-down":58351,"cart-circle-arrow-up":58352,"cart-circle-check":58353,"cart-circle-exclamation":58354,"cart-circle-plus":58355,"cart-circle-xmark":58356,"cart-flatbed-boxes":62581,"cart-flatbed-empty":62582,"cart-flatbed-suitcase":62877,"cart-flatbed":62580,"cart-minus":57563,"cart-plus":61975,"cart-shopping-fast":57564,"cart-shopping":61562,"cart-xmark":57565,"cash-register":63368,"cassette-betamax":63652,"cassette-tape":63659,"cassette-vhs":63724,"castle":57566,"cat-space":57345,"cat":63166,"cauldron":63167,"cedi-sign":57567,"cent-sign":58357,"certificate":61603,"chair-office":63169,"chair":63168,"chalkboard-user":62748,"chalkboard":62747,"champagne-glass":63390,"champagne-glasses":63391,"charging-station":62951,"chart-area":61950,"chart-bar":61568,"chart-bullet":57569,"chart-candlestick":57570,"chart-column":57571,"chart-diagram":59029,"chart-fft":59038,"chart-gantt":57572,"chart-kanban":58959,"chart-line-down":63053,"chart-line-up-down":58839,"chart-line-up":57573,"chart-line":61953,"chart-mixed-up-circle-currency":58840,"chart-mixed-up-circle-dollar":58841,"chart-mixed":63043,"chart-network":63370,"chart-pie-simple-circle-currency":58884,"chart-pie-simple-circle-dollar":58885,"chart-pie-simple":63054,"chart-pie":61952,"chart-pyramid":57574,"chart-radar":57575,"chart-scatter-3d":57576,"chart-scatter-bubble":57577,"chart-scatter":63470,"chart-simple-horizontal":58484,"chart-simple":58483,"chart-sine":59037,"chart-tree-map":57578,"chart-user":63139,"chart-waterfall":57579,"check-double":62816,"check-to-slot":63346,"check":61452,"cheese-swiss":63472,"cheese":63471,"cherries":57580,"chess-bishop-piece":62523,"chess-bishop":62522,"chess-board":62524,"chess-clock-flip":62526,"chess-clock":62525,"chess-king-piece":62528,"chess-king":62527,"chess-knight-piece":62530,"chess-knight":62529,"chess-pawn-piece":62532,"chess-pawn":62531,"chess-queen-piece":62534,"chess-queen":62533,"chess-rook-piece":62536,"chess-rook":62535,"chess":62521,"chestnut":58358,"chevron-down":61560,"chevron-left":61523,"chevron-right":61524,"chevron-up":61559,"chevrons-down":62242,"chevrons-left":62243,"chevrons-right":62244,"chevrons-up":62245,"chf-sign":58882,"child-combatant":58592,"child-dress":58780,"child-reaching":58781,"child":61870,"children":58593,"chimney":63371,"chopsticks":58359,"church":62749,"circle-0":57581,"circle-1":57582,"circle-2":57583,"circle-3":57584,"circle-4":57585,"circle-5":57586,"circle-6":57587,"circle-7":57588,"circle-8":57589,"circle-9":57590,"circle-a":57591,"circle-ampersand":57592,"circle-arrow-down-left":57593,"circle-arrow-down-right":57594,"circle-arrow-down":61611,"circle-arrow-left":61608,"circle-arrow-right":61609,"circle-arrow-up-left":57595,"circle-arrow-up-right":57596,"circle-arrow-up":61610,"circle-b":57597,"circle-bolt":57598,"circle-book-open":57599,"circle-bookmark":57600,"circle-c":57601,"circle-calendar":57602,"circle-camera":57603,"circle-caret-down":62253,"circle-caret-left":62254,"circle-caret-right":62256,"circle-caret-up":62257,"circle-check":61528,"circle-chevron-down":61754,"circle-chevron-left":61751,"circle-chevron-right":61752,"circle-chevron-up":61753,"circle-d":57604,"circle-dashed":57605,"circle-divide":57606,"circle-dollar-to-slot":62649,"circle-dollar":62184,"circle-dot":61842,"circle-down-left":57607,"circle-down-right":57608,"circle-down":62296,"circle-e":57609,"circle-ellipsis-vertical":57611,"circle-ellipsis":57610,"circle-envelope":57612,"circle-euro":58830,"circle-exclamation-check":57613,"circle-exclamation":61546,"circle-f":57614,"circle-g":57615,"circle-gf":59007,"circle-h":62590,"circle-half-stroke":61506,"circle-half":57616,"circle-heart":62663,"circle-i":57617,"circle-info":61530,"circle-j":57618,"circle-k":57619,"circle-l":57620,"circle-left":62297,"circle-location-arrow":62978,"circle-m":57621,"circle-microphone-lines":57623,"circle-microphone":57622,"circle-minus":61526,"circle-n":57624,"circle-nodes":58594,"circle-notch":61902,"circle-o":57625,"circle-p":57626,"circle-parking":62997,"circle-pause":62091,"circle-phone-flip":57628,"circle-phone-hangup":57629,"circle-phone":57627,"circle-play":61764,"circle-plus":61525,"circle-q":57630,"circle-quarter-stroke":58835,"circle-quarter":57631,"circle-quarters":58360,"circle-question":61529,"circle-r":57632,"circle-radiation":63418,"circle-right":62298,"circle-s":57633,"circle-small":57634,"circle-sort-down":57393,"circle-sort-up":57394,"circle-sort":57392,"circle-star":57635,"circle-sterling":58831,"circle-stop":62093,"circle-t":57636,"circle-three-quarters-stroke":58836,"circle-three-quarters":57637,"circle-trash":57638,"circle-u":57639,"circle-up-left":57640,"circle-up-right":57641,"circle-up":62299,"circle-user":62141,"circle-v":57642,"circle-video":57643,"circle-w":57644,"circle-waveform-lines":57645,"circle-wifi-circle-wifi":59006,"circle-wifi":59005,"circle-x":57646,"circle-xmark":61527,"circle-y":57647,"circle-yen":58832,"circle-z":57648,"circle":61713,"circles-overlap-3":59041,"circles-overlap":58880,"citrus-slice":58101,"citrus":58100,"city":63055,"clapperboard-play":57650,"clapperboard":57649,"clarinet":63661,"claw-marks":63170,"clipboard-check":62572,"clipboard-list-check":63287,"clipboard-list":62573,"clipboard-medical":57651,"clipboard-prescription":62952,"clipboard-question":58595,"clipboard-user":63475,"clipboard":62248,"clock-desk":57652,"clock-eight-thirty":58182,"clock-eight":58181,"clock-eleven-thirty":58184,"clock-eleven":58183,"clock-five-thirty":58186,"clock-five":58185,"clock-four-thirty":58187,"clock-nine-thirty":58189,"clock-nine":58188,"clock-one-thirty":58191,"clock-one":58190,"clock-rotate-left":61914,"clock-seven-thirty":58193,"clock-seven":58192,"clock-six-thirty":58195,"clock-six":58194,"clock-ten-thirty":58197,"clock-ten":58196,"clock-three-thirty":58199,"clock-three":58198,"clock-twelve-thirty":58201,"clock-twelve":58200,"clock-two-thirty":58203,"clock-two":58202,"clock":61463,"clone":62029,"closed-captioning-slash":57653,"closed-captioning":61962,"clothes-hanger":57654,"cloud-arrow-down":61677,"cloud-arrow-up":61678,"cloud-binary":58881,"cloud-bolt-moon":63341,"cloud-bolt-sun":63342,"cloud-bolt":63340,"cloud-check":58204,"cloud-drizzle":63288,"cloud-exclamation":58513,"cloud-fog":63310,"cloud-hail-mixed":63290,"cloud-hail":63289,"cloud-meatball":63291,"cloud-minus":58205,"cloud-moon-rain":63292,"cloud-moon":63171,"cloud-music":63662,"cloud-plus":58206,"cloud-question":58514,"cloud-rain":63293,"cloud-rainbow":63294,"cloud-showers-heavy":63296,"cloud-showers-water":58596,"cloud-showers":63295,"cloud-slash":57655,"cloud-sleet":63297,"cloud-snow":63298,"cloud-sun-rain":63299,"cloud-sun":63172,"cloud-word":57656,"cloud-xmark":58207,"cloud":61634,"clouds-moon":63301,"clouds-sun":63302,"clouds":63300,"clover":57657,"club":62247,"coconut":58102,"code-branch":61734,"code-commit":62342,"code-compare":57658,"code-fork":57659,"code-merge":62343,"code-pull-request-closed":58361,"code-pull-request-draft":58362,"code-pull-request":57660,"code-simple":57661,"code":61729,"coffee-bean":57662,"coffee-beans":57663,"coffee-pot":57346,"coffin-cross":57425,"coffin":63174,"coin-blank":58363,"coin-front":58364,"coin-vertical":58365,"coin":63580,"coins":62750,"colon-sign":57664,"colon":58,"columns-3":58209,"comet":57347,"comma":44,"command":57666,"comment-arrow-down":57667,"comment-arrow-up-right":57669,"comment-arrow-up":57668,"comment-captions":57670,"comment-check":62636,"comment-code":57671,"comment-dollar":63057,"comment-dots":62637,"comment-exclamation":62639,"comment-heart":58824,"comment-image":57672,"comment-lines":62640,"comment-medical":63477,"comment-middle-top":57674,"comment-middle":57673,"comment-minus":62641,"comment-music":63664,"comment-nodes":59030,"comment-pen":62638,"comment-plus":62642,"comment-question":57675,"comment-quote":57676,"comment-slash":62643,"comment-smile":62644,"comment-sms":63437,"comment-text":57677,"comment-xmark":62645,"comment":61557,"comments-dollar":63059,"comments-question-check":57679,"comments-question":57678,"comments":61574,"compact-disc":62751,"compass-drafting":62824,"compass-slash":62953,"compass":61774,"compress-wide":62246,"compress":61542,"computer-classic":63665,"computer-mouse-scrollwheel":63693,"computer-mouse":63692,"computer-speaker":63666,"computer":58597,"container-storage":62647,"conveyor-belt-arm":58872,"conveyor-belt-boxes":62575,"conveyor-belt-empty":57680,"conveyor-belt":62574,"cookie-bite":62820,"cookie":62819,"copy":61637,"copyright":61945,"corn":63175,"corner":58366,"couch":62648,"court-sport":58947,"cow":63176,"cowbell-circle-plus":63668,"cowbell":63667,"crab":58367,"crate-apple":63153,"crate-empty":57681,"credit-card-blank":62345,"credit-card-front":62346,"credit-card":61597,"cricket-bat-ball":62537,"croissant":63478,"crop-simple":62821,"crop":61733,"cross":63060,"crosshairs-simple":58783,"crosshairs":61531,"crow":62752,"crown":62753,"crutch":63479,"crutches":63480,"cruzeiro-sign":57682,"crystal-ball":58210,"cube":61874,"cubes-stacked":58598,"cubes":61875,"cucumber":58369,"cup-straw-swoosh":58212,"cup-straw":58211,"cup-togo":63173,"cupcake":58370,"curling-stone":62538,"custard":58371,"d":68,"dagger":63179,"dash":58372,"database":61888,"deer-rudolph":63375,"deer":63374,"delete-left":62810,"delete-right":57684,"democrat":63303,"desktop-arrow-down":57685,"desktop":62352,"dharmachakra":63061,"diagram-cells":58485,"diagram-lean-canvas":57686,"diagram-nested":57687,"diagram-next":58486,"diagram-predecessor":58487,"diagram-previous":58488,"diagram-project":62786,"diagram-sankey":57688,"diagram-subtask":58489,"diagram-successor":58490,"diagram-venn":57690,"dial-high":57692,"dial-low":57693,"dial-max":57694,"dial-med-low":57696,"dial-med":57695,"dial-min":57697,"dial-off":57698,"dial":57691,"diamond-exclamation":58373,"diamond-half-stroke":58808,"diamond-half":58807,"diamond-turn-right":62955,"diamond":61977,"diamonds-4":59019,"dice-d10":63181,"dice-d12":63182,"dice-d20":63183,"dice-d4":63184,"dice-d6":63185,"dice-d8":63186,"dice-five":62755,"dice-four":62756,"dice-one":62757,"dice-six":62758,"dice-three":62759,"dice-two":62760,"dice":62754,"dinosaur":58878,"diploma":62954,"disc-drive":63669,"disease":63482,"display-arrow-down":57700,"display-chart-up-circle-currency":58853,"display-chart-up-circle-dollar":58854,"display-chart-up":58851,"display-code":57701,"display-medical":57702,"display-slash":58106,"display":57699,"distribute-spacing-horizontal":58213,"distribute-spacing-vertical":58214,"ditto":34,"divide":62761,"dna":62577,"do-not-enter":62956,"dog-leashed":63188,"dog":63187,"dollar-sign":36,"dolly-empty":62579,"dolly":62578,"dolphin":57704,"dong-sign":57705,"donut":58374,"door-closed":62762,"door-open":62763,"dove":62650,"down-from-bracket":58987,"down-from-dotted-line":58375,"down-from-line":62281,"down-left-and-up-right-to-center":62498,"down-left":57706,"down-long":62217,"down-right":57707,"down-to-bracket":58599,"down-to-dotted-line":58376,"down-to-line":62282,"down":62292,"download":61465,"dragon":63189,"draw-circle":62957,"draw-polygon":62958,"draw-square":62959,"dreidel":63378,"drone-front":63584,"drone":63583,"droplet-degree":63304,"droplet-percent":63312,"droplet-slash":62919,"droplet":61507,"drum-steelpan":62826,"drum":62825,"drumstick-bite":63191,"drumstick":63190,"dryer-heat":63586,"dryer":63585,"duck":63192,"dumbbell":62539,"dumpster-fire":63380,"dumpster":63379,"dungeon":63193,"e":69,"ear-deaf":62116,"ear-listen":62114,"ear-muffs":63381,"ear":62960,"earth-africa":62844,"earth-americas":62845,"earth-asia":62846,"earth-europe":63394,"earth-oceania":58491,"eclipse":63305,"egg-fried":63484,"egg":63483,"eggplant":57708,"eject":61522,"elephant":63194,"elevator":57709,"ellipsis-stroke-vertical":62364,"ellipsis-stroke":62363,"ellipsis-vertical":61762,"ellipsis":61761,"empty-set":63062,"engine-warning":62962,"engine":57710,"envelope-circle-check":58600,"envelope-dot":57711,"envelope-open-dollar":63063,"envelope-open-text":63064,"envelope-open":62134,"envelope":61664,"envelopes-bulk":63092,"envelopes":57712,"equals":61,"eraser":61741,"escalator":57713,"ethernet":63382,"euro-sign":61779,"excavator":58966,"exclamation":33,"expand-wide":62240,"expand":61541,"explosion":58601,"eye-dropper-full":57714,"eye-dropper-half":57715,"eye-dropper":61947,"eye-evil":63195,"eye-low-vision":62120,"eye-slash":61552,"eye":61550,"eyes":58215,"f":70,"face-angry-horns":58216,"face-angry":62806,"face-anguished":58217,"face-anxious-sweat":58218,"face-astonished":58219,"face-awesome":58377,"face-beam-hand-over-mouth":58492,"face-clouds":58493,"face-confounded":58220,"face-confused":58221,"face-cowboy-hat":58222,"face-diagonal-mouth":58494,"face-disappointed":58223,"face-disguise":58224,"face-dizzy":62823,"face-dotted":58495,"face-downcast-sweat":58225,"face-drooling":58226,"face-exhaling":58496,"face-explode":58110,"face-expressionless":58227,"face-eyes-xmarks":58228,"face-fearful":58229,"face-flushed":62841,"face-frown-open":62842,"face-frown-slight":58230,"face-frown":61721,"face-glasses":58231,"face-grimace":62847,"face-grin-beam-sweat":62851,"face-grin-beam":62850,"face-grin-hearts":62852,"face-grin-squint-tears":62854,"face-grin-squint":62853,"face-grin-stars":62855,"face-grin-tears":62856,"face-grin-tongue-squint":62858,"face-grin-tongue-wink":62859,"face-grin-tongue":62857,"face-grin-wide":62849,"face-grin-wink":62860,"face-grin":62848,"face-hand-over-mouth":58232,"face-hand-peeking":58497,"face-hand-yawn":58233,"face-head-bandage":58234,"face-holding-back-tears":58498,"face-hushed":58235,"face-icicles":58236,"face-kiss-beam":62871,"face-kiss-closed-eyes":58237,"face-kiss-wink-heart":62872,"face-kiss":62870,"face-laugh-beam":62874,"face-laugh-squint":62875,"face-laugh-wink":62876,"face-laugh":62873,"face-lying":58238,"face-mask":58239,"face-meh-blank":62884,"face-meh":61722,"face-melting":58499,"face-monocle":58240,"face-nauseated":58241,"face-nose-steam":58242,"face-party":58243,"face-pensive":58244,"face-persevering":58245,"face-pleading":58246,"face-pouting":58247,"face-raised-eyebrow":58248,"face-relieved":58249,"face-rolling-eyes":62885,"face-sad-cry":62899,"face-sad-sweat":58250,"face-sad-tear":62900,"face-saluting":58500,"face-scream":58251,"face-shush":58252,"face-sleeping":58253,"face-sleepy":58254,"face-smile-beam":62904,"face-smile-halo":58255,"face-smile-hearts":58256,"face-smile-horns":58257,"face-smile-plus":62905,"face-smile-relaxed":58258,"face-smile-tear":58259,"face-smile-tongue":58260,"face-smile-upside-down":58261,"face-smile-wink":62682,"face-smile":61720,"face-smiling-hands":58262,"face-smirking":58263,"face-spiral-eyes":58501,"face-sunglasses":58264,"face-surprise":62914,"face-swear":58265,"face-thermometer":58266,"face-thinking":58267,"face-tired":62920,"face-tissue":58268,"face-tongue-money":58269,"face-tongue-sweat":58270,"face-unamused":58271,"face-viewfinder":58111,"face-vomit":58272,"face-weary":58273,"face-woozy":58274,"face-worried":58275,"face-zany":58276,"face-zipper":58277,"falafel":58378,"family-dress":58113,"family-pants":58114,"family":58112,"fan-table":57348,"fan":63587,"farm":63588,"faucet-drip":57350,"faucet":57349,"fax":61868,"feather-pointed":62827,"feather":62765,"fence":58115,"ferris-wheel":57716,"ferry":58602,"field-hockey-stick-ball":62540,"file-arrow-down":62829,"file-arrow-up":62836,"file-audio":61895,"file-binary":57717,"file-cad":58994,"file-certificate":62963,"file-chart-column":63065,"file-chart-pie":63066,"file-check":62230,"file-circle-check":58784,"file-circle-exclamation":58603,"file-circle-info":58515,"file-circle-minus":58605,"file-circle-plus":58516,"file-circle-question":58607,"file-circle-xmark":58785,"file-code":61897,"file-contract":62828,"file-csv":63197,"file-dashed-line":63607,"file-doc":58861,"file-eps":58948,"file-excel":61891,"file-exclamation":62234,"file-export":62830,"file-fragment":59031,"file-gif":58949,"file-half-dashed":59032,"file-heart":57718,"file-image":61893,"file-import":62831,"file-invoice-dollar":62833,"file-invoice":62832,"file-jpg":58950,"file-lines":61788,"file-lock":58278,"file-magnifying-glass":63589,"file-medical":62583,"file-minus":62232,"file-mov":58951,"file-mp3":58952,"file-mp4":58953,"file-music":63670,"file-pdf":61889,"file-pen":62236,"file-plus-minus":57719,"file-plus":62233,"file-png":58982,"file-powerpoint":61892,"file-ppt":58954,"file-prescription":62834,"file-shield":58608,"file-signature":62835,"file-slash":58279,"file-spreadsheet":63067,"file-svg":58955,"file-user":63068,"file-vector":58956,"file-video":61896,"file-waveform":62584,"file-word":61890,"file-xls":58957,"file-xmark":62231,"file-xml":58964,"file-zip":58862,"file-zipper":61894,"file":61787,"files-medical":63485,"files":57720,"fill-drip":62838,"fill":62837,"film-canister":63671,"film-simple":62368,"film-slash":57721,"film":61448,"films":57722,"filter-circle-dollar":63074,"filter-circle-xmark":57723,"filter-list":57724,"filter-slash":57725,"filter":61616,"filters":57726,"fingerprint":62839,"fire-burner":58609,"fire-extinguisher":61748,"fire-flame-curved":63460,"fire-flame-simple":62570,"fire-flame":63199,"fire-hydrant":57727,"fire-smoke":63307,"fire":61549,"fireplace":63386,"fish-bones":58116,"fish-cooked":63486,"fish-fins":58610,"fish":62840,"fishing-rod":58280,"flag-checkered":61726,"flag-pennant":62550,"flag-swallowtail":63308,"flag-usa":63309,"flag":61476,"flashlight":63672,"flask-gear":58865,"flask-round-poison":63200,"flask-round-potion":63201,"flask-vial":58611,"flask":61635,"flatbread-stuffed":58380,"flatbread":58379,"floppy-disk-circle-arrow-right":57728,"floppy-disk-circle-xmark":57729,"floppy-disk-pen":57730,"floppy-disk":61639,"floppy-disks":57731,"florin-sign":57732,"flower-daffodil":63488,"flower-tulip":63489,"flower":63487,"flute":63673,"flux-capacitor":63674,"flying-disc":58281,"folder-arrow-down":57427,"folder-arrow-up":57428,"folder-bookmark":57734,"folder-check":58958,"folder-closed":57733,"folder-gear":57735,"folder-grid":57736,"folder-heart":57737,"folder-image":57738,"folder-magnifying-glass":57739,"folder-medical":57740,"folder-minus":63069,"folder-music":57741,"folder-open":61564,"folder-plus":63070,"folder-tree":63490,"folder-user":57742,"folder-xmark":63071,"folder":61563,"folders":63072,"fondue-pot":58381,"font-awesome":62132,"font-case":63590,"font":61489,"football-helmet":62543,"football":62542,"fork-knife":62182,"fork":62179,"forklift":62586,"fort":58502,"forward-fast":61520,"forward-step":61521,"forward":61518,"frame":58517,"franc-sign":57743,"french-fries":63491,"frog":62766,"function":63073,"futbol":61923,"g":71,"galaxy":57352,"gallery-thumbnails":58282,"game-board-simple":63592,"game-board":63591,"game-console-handheld-crank":58809,"game-console-handheld":63675,"gamepad-modern":58786,"gamepad":61723,"garage-car":57354,"garage-open":57355,"garage":57353,"garlic":58382,"gas-pump-slash":62964,"gas-pump":62767,"gauge-circle-bolt":58518,"gauge-circle-minus":58519,"gauge-circle-plus":58520,"gauge-high":63013,"gauge-low":63015,"gauge-max":63014,"gauge-min":63016,"gauge-simple-high":63018,"gauge-simple-low":63020,"gauge-simple-max":63019,"gauge-simple-min":63021,"gauge-simple":63017,"gauge":63012,"gavel":61667,"gear-code":58856,"gear-complex-code":58859,"gear-complex":58857,"gear":61459,"gears":61573,"gem":62373,"genderless":61997,"ghost":63202,"gif":57744,"gift-card":63075,"gift":61547,"gifts":63388,"gingerbread-man":63389,"glass-citrus":63593,"glass-empty":57745,"glass-half":57746,"glass-water-droplet":58613,"glass-water":58612,"glass":63492,"glasses-round":62965,"glasses":62768,"globe-pointer":58894,"globe-snow":63395,"globe-stand":62966,"globe-wifi":59013,"globe":61612,"goal-net":58283,"golf-ball-tee":62544,"golf-club":62545,"golf-flag-hole":58284,"gopuram":63076,"graduation-cap":61853,"gramophone":63677,"grapes":58118,"grate-droplet":57748,"grate":57747,"greater-than-equal":62770,"greater-than":62,"grid-2-plus":57751,"grid-2":57750,"grid-4":57752,"grid-5":57753,"grid-dividers":58285,"grid-horizontal":58119,"grid-round-2-plus":58844,"grid-round-2":58843,"grid-round-4":58845,"grid-round-5":58846,"grid-round":58842,"grid":57749,"grill-fire":58788,"grill-hot":58789,"grill":58787,"grip-dots-vertical":58385,"grip-dots":58384,"grip-lines-vertical":63397,"grip-lines":63396,"grip-vertical":62862,"grip":62861,"group-arrows-rotate":58614,"guarani-sign":57754,"guitar-electric":63678,"guitar":63398,"guitars":63679,"gun-slash":57756,"gun-squirt":57757,"gun":57755,"h":72,"h1":62227,"h2":62228,"h3":62229,"h4":63594,"h5":58386,"h6":58387,"hammer-brush":58912,"hammer-crash":58388,"hammer-war":63204,"hammer":63203,"hamsa":63077,"hand-back-fist":62037,"hand-back-point-down":57758,"hand-back-point-left":57759,"hand-back-point-ribbon":57760,"hand-back-point-right":57761,"hand-back-point-up":57762,"hand-dots":62561,"hand-fingers-crossed":57763,"hand-fist":63198,"hand-heart":62652,"hand-holding-box":62587,"hand-holding-circle-dollar":58913,"hand-holding-dollar":62656,"hand-holding-droplet":62657,"hand-holding-hand":58615,"hand-holding-heart":62654,"hand-holding-magic":63205,"hand-holding-medical":57436,"hand-holding-seedling":62655,"hand-holding-skull":57764,"hand-holding":62653,"hand-horns":57769,"hand-lizard":62040,"hand-love":57765,"hand-middle-finger":63494,"hand-peace":62043,"hand-point-down":61607,"hand-point-left":61605,"hand-point-ribbon":57766,"hand-point-right":61604,"hand-point-up":61606,"hand-pointer":62042,"hand-scissors":62039,"hand-sparkles":57437,"hand-spock":62041,"hand-wave":57767,"hand":62038,"handcuffs":58616,"hands-asl-interpreting":62115,"hands-bound":58617,"hands-bubbles":57438,"hands-clapping":57768,"hands-holding-child":58618,"hands-holding-circle":58619,"hands-holding-diamond":62588,"hands-holding-dollar":62661,"hands-holding-heart":62659,"hands-holding":62658,"hands-praying":63108,"hands":62119,"handshake-angle":62660,"handshake-simple-slash":57439,"handshake-simple":62662,"handshake-slash":57440,"handshake":62133,"hanukiah":63206,"hard-drive":61600,"hashtag-lock":58389,"hashtag":35,"hat-beach":58886,"hat-chef":63595,"hat-cowboy-side":63681,"hat-cowboy":63680,"hat-santa":63399,"hat-winter":63400,"hat-witch":63207,"hat-wizard":63208,"head-side-brain":63496,"head-side-cough-slash":57442,"head-side-cough":57441,"head-side-gear":58897,"head-side-goggles":63210,"head-side-headphones":63682,"head-side-heart":57770,"head-side-mask":57443,"head-side-medical":63497,"head-side-virus":57444,"head-side":63209,"heading":61916,"headphones-simple":62863,"headphones":61477,"headset":62864,"heart-circle-bolt":58620,"heart-circle-check":58621,"heart-circle-exclamation":58622,"heart-circle-minus":58623,"heart-circle-plus":58624,"heart-circle-xmark":58625,"heart-crack":63401,"heart-half-stroke":57772,"heart-half":57771,"heart-pulse":61982,"heart":61444,"heat":57356,"helicopter-symbol":58626,"helicopter":62771,"helmet-battle":63211,"helmet-safety":63495,"helmet-un":58627,"hexagon-check":58390,"hexagon-divide":57773,"hexagon-exclamation":58391,"hexagon-image":58628,"hexagon-minus":62215,"hexagon-nodes-bolt":59034,"hexagon-nodes":59033,"hexagon-plus":62208,"hexagon-vertical-nft-slanted":58630,"hexagon-vertical-nft":58629,"hexagon-xmark":62190,"hexagon":62226,"high-definition":57774,"highlighter-line":57775,"highlighter":62865,"hill-avalanche":58631,"hill-rockslide":58632,"hippo":63213,"hockey-mask":63214,"hockey-puck":62547,"hockey-stick-puck":58286,"hockey-sticks":62548,"holly-berry":63402,"honey-pot":58392,"hood-cloak":63215,"horizontal-rule":63596,"horse-head":63403,"horse-saddle":63683,"horse":63216,"hose-reel":58394,"hose":58393,"hospital-user":63501,"hospital":61688,"hospitals":63502,"hot-tub-person":62867,"hotdog":63503,"hotel":62868,"hourglass-clock":58395,"hourglass-end":62035,"hourglass-half":62034,"hourglass-start":62033,"hourglass":62036,"house-blank":58503,"house-building":57777,"house-chimney-blank":58288,"house-chimney-crack":63217,"house-chimney-heart":57778,"house-chimney-medical":63474,"house-chimney-user":57445,"house-chimney-window":57357,"house-chimney":58287,"house-circle-check":58633,"house-circle-exclamation":58634,"house-circle-xmark":58635,"house-crack":58289,"house-day":57358,"house-fire":58636,"house-flag":58637,"house-flood-water-circle-arrow-right":58639,"house-flood-water":58638,"house-heart":62665,"house-laptop":57446,"house-lock":58640,"house-medical-circle-check":58641,"house-medical-circle-exclamation":58642,"house-medical-circle-xmark":58643,"house-medical-flag":58644,"house-medical":58290,"house-night":57360,"house-person-leave":57359,"house-person-return":57361,"house-signal":57362,"house-tree":57779,"house-tsunami":58645,"house-turret":57780,"house-user":57776,"house-water":63311,"house-window":58291,"house":61461,"hryvnia-sign":63218,"hundred-points":58396,"hurricane":63313,"hydra":59014,"hyphen":45,"i-cursor":62022,"i":73,"ice-cream":63504,"ice-skate":63404,"icicles":63405,"icons":63597,"id-badge":62145,"id-card-clip":62591,"id-card":62146,"igloo":63406,"image-landscape":57781,"image-polaroid-user":57782,"image-polaroid":63684,"image-portrait":62432,"image-slash":57783,"image-user":57784,"image":61502,"images-user":57785,"images":62210,"inbox-full":57786,"inbox-in":62224,"inbox-out":62225,"inbox":61468,"inboxes":57787,"indent":61500,"indian-rupee-sign":57788,"industry-windows":62387,"industry":62069,"infinity":62772,"info":61737,"inhaler":62969,"input-numeric":57789,"input-pipe":57790,"input-text":57791,"integral":63079,"interrobang":58810,"intersection":63080,"island-tropical":63505,"italic":61491,"j":74,"jack-o-lantern":62222,"jar-wheat":58647,"jar":58646,"jedi":63081,"jet-fighter-up":58648,"jet-fighter":61691,"joint":62869,"joystick":63685,"jug-bottle":58875,"jug-detergent":58649,"jug":63686,"k":75,"kaaba":63083,"kazoo":63687,"kerning":63599,"key-skeleton-left-right":58292,"key-skeleton":63219,"key":61572,"keyboard-brightness-low":57793,"keyboard-brightness":57792,"keyboard-down":57794,"keyboard-left":57795,"keyboard":61724,"keynote":63084,"khanda":63085,"kidneys":62971,"kip-sign":57796,"kit-medical":62585,"kitchen-set":58650,"kite":63220,"kiwi-bird":62773,"kiwi-fruit":58124,"knife-kitchen":63221,"knife":62180,"l":76,"lacrosse-stick-ball":58294,"lacrosse-stick":58293,"lambda":63086,"lamp-desk":57364,"lamp-floor":57365,"lamp-street":57797,"lamp":62666,"land-mine-on":58651,"landmark-dome":63314,"landmark-flag":58652,"landmark-magnifying-glass":58914,"landmark":63087,"language":61867,"laptop-arrow-down":57798,"laptop-binary":58855,"laptop-code":62972,"laptop-file":58653,"laptop-medical":63506,"laptop-mobile":63610,"laptop-slash":57799,"laptop":61705,"lari-sign":57800,"lasso-sparkles":57801,"lasso":63688,"layer-group":62973,"layer-minus":62974,"layer-plus":62975,"leaf-heart":62667,"leaf-maple":63222,"leaf-oak":63223,"leaf":61548,"leafy-green":58397,"left-from-bracket":58988,"left-from-line":62280,"left-long-to-line":58398,"left-long":62218,"left-right":62263,"left-to-bracket":58989,"left-to-line":62283,"left":62293,"lemon":61588,"less-than-equal":62775,"less-than":60,"life-ring":61901,"light-ceiling":57366,"light-emergency-on":58400,"light-emergency":58399,"light-switch-off":57368,"light-switch-on":57369,"light-switch":57367,"lightbulb-cfl-on":58791,"lightbulb-cfl":58790,"lightbulb-dollar":63088,"lightbulb-exclamation-on":57802,"lightbulb-exclamation":63089,"lightbulb-gear":58877,"lightbulb-message":59015,"lightbulb-on":63090,"lightbulb-slash":63091,"lightbulb":61675,"lighthouse":58898,"lights-holiday":63410,"line-columns":63600,"line-height":63601,"lines-leaning":58654,"link-horizontal-slash":57804,"link-horizontal":57803,"link-simple-slash":57806,"link-simple":57805,"link-slash":61735,"link":61633,"lips":62976,"lira-sign":61845,"list-check":61614,"list-dropdown":57807,"list-music":63689,"list-ol":61643,"list-radio":57808,"list-timeline":57809,"list-tree":57810,"list-ul":61642,"list":61498,"litecoin-sign":57811,"loader":57812,"lobster":58401,"location-arrow-up":58938,"location-arrow":61732,"location-check":62982,"location-crosshairs-slash":62979,"location-crosshairs":62977,"location-dot-slash":62981,"location-dot":62405,"location-exclamation":62984,"location-minus":62985,"location-pen":62983,"location-pin-lock":58655,"location-pin-slash":62988,"location-pin":61505,"location-plus":62986,"location-question":62987,"location-smile":62989,"location-xmark":62990,"lock-a":58402,"lock-hashtag":58403,"lock-keyhole-open":62402,"lock-keyhole":62221,"lock-open":62401,"lock":61475,"locust":58656,"lollipop":58404,"loveseat":62668,"luchador-mask":62549,"lungs-virus":57447,"lungs":62980,"m":77,"mace":63224,"magnet":61558,"magnifying-glass-arrow-right":58657,"magnifying-glass-arrows-rotate":58974,"magnifying-glass-chart":58658,"magnifying-glass-dollar":63112,"magnifying-glass-location":63113,"magnifying-glass-minus":61456,"magnifying-glass-music":58975,"magnifying-glass-play":58976,"magnifying-glass-plus":61454,"magnifying-glass-waveform":58977,"magnifying-glass":61442,"mailbox-flag-up":58811,"mailbox":63507,"manat-sign":57813,"mandolin":63225,"mango":58127,"manhole":57814,"map-location-dot":62880,"map-location":62879,"map-pin":62070,"map":62073,"marker":62881,"mars-and-venus-burst":58659,"mars-and-venus":61988,"mars-double":61991,"mars-stroke-right":61995,"mars-stroke-up":61994,"mars-stroke":61993,"mars":61986,"martini-glass-citrus":62817,"martini-glass-empty":61440,"martini-glass":62843,"mask-face":57815,"mask-snorkel":58295,"mask-ventilator":58660,"mask":63226,"masks-theater":63024,"mattress-pillow":58661,"maximize":62238,"meat":63508,"medal":62882,"megaphone":63093,"melon-slice":58129,"melon":58128,"memo-circle-check":57817,"memo-circle-info":58522,"memo-pad":57818,"memo":57816,"memory":62776,"menorah":63094,"mercury":61987,"merge":58662,"message-arrow-down":57819,"message-arrow-up-right":57821,"message-arrow-up":57820,"message-bot":58296,"message-captions":57822,"message-check":62626,"message-code":57823,"message-dollar":63056,"message-dots":62627,"message-exclamation":62629,"message-heart":58825,"message-image":57824,"message-lines":62630,"message-medical":63476,"message-middle-top":57826,"message-middle":57825,"message-minus":62631,"message-music":63663,"message-pen":62628,"message-plus":62632,"message-question":57827,"message-quote":57828,"message-slash":62633,"message-smile":62634,"message-sms":57829,"message-text":57830,"message-xmark":62635,"message":62074,"messages-dollar":63058,"messages-question":57831,"messages":62646,"meteor":63315,"meter-bolt":57833,"meter-droplet":57834,"meter-fire":57835,"meter":57832,"microchip-ai":57836,"microchip":62171,"microphone-lines-slash":62777,"microphone-lines":62409,"microphone-slash":61745,"microphone-stand":63691,"microphone":61744,"microscope":62992,"microwave":57371,"mill-sign":57837,"minimize":63372,"minus":61544,"mistletoe":63412,"mitten":63413,"mobile-button":61707,"mobile-notch":57838,"mobile-retro":58663,"mobile-screen-button":62413,"mobile-screen":62415,"mobile-signal-out":57840,"mobile-signal":57839,"mobile":62414,"money-bill-1-wave":62779,"money-bill-1":62417,"money-bill-simple-wave":57842,"money-bill-simple":57841,"money-bill-transfer":58664,"money-bill-trend-up":58665,"money-bill-wave":62778,"money-bill-wheat":58666,"money-bill":61654,"money-bills-simple":57844,"money-bills":57843,"money-check-dollar-pen":63603,"money-check-dollar":62781,"money-check-pen":63602,"money-check":62780,"money-from-bracket":58130,"money-simple-from-bracket":58131,"monitor-waveform":62993,"monkey":63227,"monument":62886,"moon-cloud":63316,"moon-over-sun":63306,"moon-stars":63317,"moon":61830,"moped":58297,"mortar-pestle":62887,"mosque":63096,"mosquito-net":58668,"mosquito":58667,"motorcycle":61980,"mound":58669,"mountain-city":58670,"mountain-sun":58671,"mountain":63228,"mountains":63229,"mouse-field":58792,"mp3-player":63694,"mug-hot":63414,"mug-marshmallows":63415,"mug-saucer":61684,"mug-tea-saucer":57845,"mug-tea":63605,"mug":63604,"mushroom":58405,"music-magnifying-glass":58978,"music-note-slash":63696,"music-note":63695,"music-slash":63697,"music":61441,"mustache":58812,"n":78,"naira-sign":57846,"narwhal":63230,"nesting-dolls":58298,"network-wired":63231,"neuter":61996,"newspaper":61930,"nfc-lock":57848,"nfc-magnifying-glass":57849,"nfc-pen":57850,"nfc-signal":57851,"nfc-slash":57852,"nfc-symbol":58673,"nfc-trash":57853,"nfc":57847,"nose":58813,"not-equal":62782,"notdef":57854,"note-medical":57856,"note-sticky":62025,"note":57855,"notebook":57857,"notes-medical":62593,"notes":57858,"o":79,"object-exclude":58524,"object-group":62023,"object-intersect":58525,"object-subtract":58526,"object-ungroup":62024,"object-union":58527,"objects-align-bottom":58299,"objects-align-center-horizontal":58300,"objects-align-center-vertical":58301,"objects-align-left":58302,"objects-align-right":58303,"objects-align-top":58304,"objects-column":58305,"octagon-check":58406,"octagon-divide":57859,"octagon-exclamation":57860,"octagon-minus":62216,"octagon-plus":62209,"octagon-xmark":62192,"octagon":62214,"octopus":59016,"oil-can-drip":57861,"oil-can":62995,"oil-temperature":62996,"oil-well":58674,"olive-branch":58135,"olive":58134,"om":63097,"omega":63098,"onion":58407,"option":58136,"ornament":63416,"otter":63232,"outdent":61499,"outlet":57372,"oven":57373,"overline":63606,"p":80,"page-caret-down":58409,"page-caret-up":58410,"page":58408,"pager":63509,"paint-roller":62890,"paintbrush-fine":62889,"paintbrush-pencil":57862,"paintbrush":61948,"palette":62783,"pallet-box":57864,"pallet-boxes":62595,"pallet":62594,"pan-food":58411,"pan-frying":58412,"pancakes":58413,"panel-ews":58414,"panel-fire":58415,"panorama":57865,"paper-plane-top":57866,"paper-plane":61912,"paperclip-vertical":58306,"paperclip":61638,"parachute-box":62669,"paragraph-left":63608,"paragraph":61917,"party-bell":58138,"party-horn":58139,"passport":62891,"paste":61674,"pause":61516,"paw-claws":63234,"paw-simple":63233,"paw":61872,"peace":63100,"peach":57867,"peanut":58416,"peanuts":58417,"peapod":58140,"pear":57868,"pedestal":57869,"pegasus":63235,"pen-circle":57870,"pen-clip-slash":57871,"pen-clip":62213,"pen-fancy-slash":57872,"pen-fancy":62892,"pen-field":57873,"pen-line":57874,"pen-nib-slash":58529,"pen-nib":62893,"pen-paintbrush":63000,"pen-ruler":62894,"pen-slash":57875,"pen-swirl":57876,"pen-to-square":61508,"pen":62212,"pencil-mechanical":58826,"pencil-slash":57877,"pencil":62211,"people-arrows":57448,"people-carry-box":62670,"people-dress-simple":57880,"people-dress":57879,"people-group":58675,"people-line":58676,"people-pants-simple":57882,"people-pants":57881,"people-pulling":58677,"people-robbery":58678,"people-roof":58679,"people-simple":57883,"people":57878,"pepper-hot":63510,"pepper":58418,"percent":37,"period":46,"person-arrow-down-to-line":58680,"person-arrow-up-from-line":58681,"person-biking-mountain":63563,"person-biking":63562,"person-booth":63318,"person-breastfeeding":58682,"person-burst":58683,"person-cane":58684,"person-carry-box":62671,"person-chalkboard":58685,"person-circle-check":58686,"person-circle-exclamation":58687,"person-circle-minus":58688,"person-circle-plus":58689,"person-circle-question":58690,"person-circle-xmark":58691,"person-digging":63582,"person-dolly-empty":62673,"person-dolly":62672,"person-dots-from-line":62576,"person-dress-burst":58692,"person-dress-fairy":58887,"person-dress-simple":57884,"person-dress":61826,"person-drowning":58693,"person-fairy":58888,"person-falling-burst":58695,"person-falling":58694,"person-from-portal":57379,"person-half-dress":58696,"person-harassing":58697,"person-hiking":63212,"person-military-pointing":58698,"person-military-rifle":58699,"person-military-to-person":58700,"person-pinball":57885,"person-praying":63107,"person-pregnant":58142,"person-rays":58701,"person-rifle":58702,"person-running-fast":58879,"person-running":63244,"person-seat-reclined":57887,"person-seat":57886,"person-shelter":58703,"person-sign":63319,"person-simple":57888,"person-skating":63429,"person-ski-jumping":63431,"person-ski-lift":63432,"person-skiing-nordic":63434,"person-skiing":63433,"person-sledding":63435,"person-snowboarding":63438,"person-snowmobiling":63441,"person-swimming":62916,"person-through-window":58793,"person-to-door":58419,"person-to-portal":57378,"person-walking-arrow-loop-left":58705,"person-walking-arrow-right":58706,"person-walking-dashed-line-arrow-right":58707,"person-walking-luggage":58708,"person-walking-with-cane":62109,"person-walking":62804,"person":61827,"peseta-sign":57889,"peso-sign":57890,"phone-arrow-down-left":57891,"phone-arrow-right":58814,"phone-arrow-up-right":57892,"phone-flip":63609,"phone-hangup":57893,"phone-intercom":58420,"phone-missed":57894,"phone-office":63101,"phone-plus":62674,"phone-rotary":63699,"phone-slash":62429,"phone-volume":62112,"phone-xmark":57895,"phone":61589,"photo-film-music":57896,"photo-film":63612,"pi":63102,"piano-keyboard":63701,"piano":63700,"pickaxe":58815,"pickleball":58421,"pie":63237,"pig":63238,"piggy-bank":62675,"pills":62596,"pinata":58307,"pinball":57897,"pineapple":58143,"pipe-circle-check":58422,"pipe-collar":58423,"pipe-section":58424,"pipe-smoking":58308,"pipe-valve":58425,"pipe":124,"pizza-slice":63512,"pizza":63511,"place-of-worship":63103,"plane-arrival":62895,"plane-circle-check":58709,"plane-circle-exclamation":58710,"plane-circle-xmark":58711,"plane-departure":62896,"plane-engines":62430,"plane-lock":58712,"plane-prop":57899,"plane-slash":57449,"plane-tail":57900,"plane-up-slash":57902,"plane-up":57901,"plane":61554,"planet-moon":57375,"planet-ringed":57376,"plant-wilt":58794,"plate-utensils":58427,"plate-wheat":58714,"play-pause":57903,"play":61515,"plug-circle-bolt":58715,"plug-circle-check":58716,"plug-circle-exclamation":58717,"plug-circle-minus":58718,"plug-circle-plus":58719,"plug-circle-xmark":58720,"plug":61926,"plus-large":58782,"plus-minus":58428,"plus":43,"podcast":62158,"podium-star":63320,"podium":63104,"police-box":57377,"poll-people":63321,"pompebled":58429,"poo-storm":63322,"poo":62206,"pool-8-ball":58309,"poop":63001,"popcorn":63513,"popsicle":58430,"pot-food":58431,"potato":58432,"power-off":61457,"prescription-bottle-medical":62598,"prescription-bottle-pill":58816,"prescription-bottle":62597,"prescription":62897,"presentation-screen":63109,"pretzel":58433,"print-magnifying-glass":63514,"print-slash":63110,"print":61487,"projector":63702,"pump-medical":57450,"pump-soap":57451,"pump":58434,"pumpkin":63239,"puzzle-piece-simple":57905,"puzzle-piece":61742,"puzzle":58435,"q":81,"qrcode":61481,"question":63,"quote-left":61709,"quote-right":61710,"quotes":57908,"r":82,"rabbit-running":63241,"rabbit":63240,"raccoon":58899,"racquet":62554,"radar":57380,"radiation":63417,"radio-tuner":63704,"radio":63703,"rainbow":63323,"raindrops":63324,"ram":63242,"ramp-loading":62676,"ranking-star":58721,"raygun":57381,"receipt":62787,"record-vinyl":63705,"rectangle-ad":63041,"rectangle-barcode":62563,"rectangle-code":58146,"rectangle-history-circle-plus":58531,"rectangle-history-circle-user":58532,"rectangle-history":58530,"rectangle-list":61474,"rectangle-pro":57909,"rectangle-terminal":57910,"rectangle-vertical-history":57911,"rectangle-vertical":62203,"rectangle-wide":62204,"rectangle-xmark":62480,"rectangle":62202,"rectangles-mixed":58147,"recycle":61880,"reel":57912,"reflect-both":58991,"reflect-horizontal":58980,"reflect-vertical":58981,"refrigerator":57382,"registered":62045,"repeat-1":62309,"repeat":62307,"reply-all":61730,"reply-clock":57913,"reply":62437,"republican":63326,"restroom-simple":57914,"restroom":63421,"retweet":61561,"rhombus":57915,"ribbon":62678,"right-from-bracket":62197,"right-from-line":62279,"right-left-large":58849,"right-left":62306,"right-long-to-line":58436,"right-long":62219,"right-to-bracket":62198,"right-to-line":62284,"right":62294,"ring-diamond":58795,"ring":63243,"rings-wedding":63515,"road-barrier":58722,"road-bridge":58723,"road-circle-check":58724,"road-circle-exclamation":58725,"road-circle-xmark":58726,"road-lock":58727,"road-spikes":58728,"road":61464,"robot-astromech":58066,"robot":62788,"rocket-launch":57383,"rocket":61749,"roller-coaster":58148,"rotate-exclamation":57916,"rotate-left":62186,"rotate-reverse":58929,"rotate-right":62201,"rotate":62193,"route-highway":63002,"route-interstate":63003,"route":62679,"router":63706,"rss":61598,"ruble-sign":61784,"rug":58729,"rugby-ball":58310,"ruler-combined":62790,"ruler-horizontal":62791,"ruler-triangle":63004,"ruler-vertical":62792,"ruler":62789,"rupee-sign":61782,"rupiah-sign":57917,"rv":63422,"s":83,"sack-dollar":63517,"sack-xmark":58730,"sack":63516,"sailboat":58437,"salad":63518,"salt-shaker":58438,"sandwich":63519,"satellite-dish":63424,"satellite":63423,"sausage":63520,"saxophone-fire":63707,"saxophone":63708,"scale-balanced":62030,"scale-unbalanced-flip":62742,"scale-unbalanced":62741,"scalpel-line-dashed":63006,"scalpel":63005,"scanner-gun":62600,"scanner-image":63731,"scanner-keyboard":62601,"scanner-touchscreen":62602,"scarecrow":63245,"scarf":63425,"school-circle-check":58731,"school-circle-exclamation":58732,"school-circle-xmark":58733,"school-flag":58734,"school-lock":58735,"school":62793,"scissors":61636,"screen-users":63037,"screencast":57918,"screwdriver-wrench":63449,"screwdriver":62794,"scribble":57919,"scroll-old":63247,"scroll-torah":63136,"scroll":63246,"scrubber":62200,"scythe":63248,"sd-card":63426,"sd-cards":57920,"seal-exclamation":57922,"seal-question":57923,"seal":57921,"seat-airline":57924,"section":58439,"seedling":62680,"semicolon":59,"send-back":63614,"send-backward":63615,"sensor-cloud":57388,"sensor-fire":57386,"sensor-on":57387,"sensor-triangle-exclamation":57385,"sensor":57384,"server":62003,"shapes":63007,"share-all":62311,"share-from-square":61773,"share-nodes":61920,"share":61540,"sheep":63249,"sheet-plastic":58737,"shekel-sign":61963,"shelves-empty":57926,"shelves":62592,"shield-cat":58738,"shield-check":62199,"shield-cross":63250,"shield-dog":58739,"shield-exclamation":57927,"shield-halved":62445,"shield-heart":58740,"shield-keyhole":57928,"shield-minus":57929,"shield-plus":57930,"shield-quartered":58741,"shield-slash":57931,"shield-virus":57452,"shield-xmark":57932,"shield":61746,"ship":61978,"shirt-long-sleeve":58311,"shirt-running":58312,"shirt-tank-top":58313,"shirt":62803,"shish-kebab":63521,"shoe-prints":62795,"shop-lock":58533,"shop-slash":57456,"shop":62799,"shovel-snow":63427,"shovel":63251,"shower-down":57933,"shower":62156,"shredder":63114,"shrimp":58440,"shuffle":61556,"shutters":58441,"shuttle-space":61847,"shuttlecock":62555,"sickle":63522,"sidebar-flip":57935,"sidebar":57934,"sigma":63115,"sign-hanging":62681,"sign-post":58916,"sign-posts-wrench":58918,"sign-posts":58917,"signal-bars-fair":63122,"signal-bars-good":63123,"signal-bars-slash":63124,"signal-bars-weak":63121,"signal-bars":63120,"signal-fair":63117,"signal-good":63118,"signal-slash":63125,"signal-stream-slash":57936,"signal-stream":63709,"signal-strong":63119,"signal-weak":63116,"signal":61458,"signature-lock":58314,"signature-slash":58315,"signature":62903,"signs-post":62071,"sim-card":63428,"sim-cards":57937,"sink":57453,"siren-on":57390,"siren":57389,"sitemap":61672,"skeleton-ribs":58827,"skeleton":63008,"ski-boot-ski":58317,"ski-boot":58316,"skull-cow":63710,"skull-crossbones":63252,"skull":62796,"slash-back":92,"slash-forward":47,"slash":63253,"sleigh":63436,"slider":57938,"sliders-simple":57939,"sliders-up":62449,"sliders":61918,"slot-machine":58318,"smog":63327,"smoke":63328,"smoking":62605,"snake":63254,"snooze":63616,"snow-blowing":63329,"snowflake-droplets":58817,"snowflake":62172,"snowflakes":63439,"snowman-head":63387,"snowman":63440,"snowplow":63442,"soap":57454,"socks":63126,"soft-serve":58368,"solar-panel":62906,"solar-system":57391,"sort-down":61661,"sort-up":61662,"sort":61660,"spa":62907,"space-station-moon-construction":57396,"space-station-moon":57395,"spade":62196,"spaghetti-monster-flying":63099,"sparkle":58838,"sparkles":63632,"speaker":63711,"speakers":63712,"spell-check":63633,"spider-black-widow":63256,"spider-web":63257,"spider":63255,"spinner-scale":58922,"spinner-third":62452,"spinner":61712,"split":57940,"splotch":62908,"spoon":62181,"sportsball":58443,"spray-can-sparkles":62928,"spray-can":62909,"sprinkler-ceiling":58444,"sprinkler":57397,"square-0":57941,"square-1":57942,"square-2":57943,"square-3":57944,"square-4":57945,"square-5":57946,"square-6":57947,"square-7":57948,"square-8":57949,"square-9":57950,"square-a-lock":58445,"square-a":57951,"square-ampersand":57952,"square-arrow-down-left":57953,"square-arrow-down-right":57954,"square-arrow-down":62265,"square-arrow-left":62266,"square-arrow-right":62267,"square-arrow-up-left":57955,"square-arrow-up-right":61772,"square-arrow-up":62268,"square-b":57956,"square-binary":59035,"square-bolt":57957,"square-c":57958,"square-caret-down":61776,"square-caret-left":61841,"square-caret-right":61778,"square-caret-up":61777,"square-check":61770,"square-chevron-down":62249,"square-chevron-left":62250,"square-chevron-right":62251,"square-chevron-up":62252,"square-code":57959,"square-d":57960,"square-dashed-circle-plus":58818,"square-dashed":57961,"square-divide":57962,"square-dollar":62185,"square-down-left":57963,"square-down-right":57964,"square-down":62288,"square-e":57965,"square-ellipsis-vertical":57967,"square-ellipsis":57966,"square-envelope":61849,"square-exclamation":62241,"square-f":57968,"square-fragile":62619,"square-full":62556,"square-g":57969,"square-h":61693,"square-heart":62664,"square-i":57970,"square-info":62223,"square-j":57971,"square-k":57972,"square-kanban":58504,"square-l":57973,"square-left":62289,"square-list":58505,"square-m":57974,"square-minus":61766,"square-n":57975,"square-nfi":58742,"square-o":57976,"square-p":57977,"square-parking-slash":62999,"square-parking":62784,"square-pen":61771,"square-person-confined":58743,"square-phone-flip":63611,"square-phone-hangup":57978,"square-phone":61592,"square-plus":61694,"square-poll-horizontal":63106,"square-poll-vertical":63105,"square-q":57979,"square-quarters":58446,"square-question":62205,"square-quote":58153,"square-r":57980,"square-right":62290,"square-ring":58447,"square-root-variable":63128,"square-root":63127,"square-rss":61763,"square-s":57981,"square-share-nodes":61921,"square-sliders-vertical":62450,"square-sliders":62448,"square-small":57982,"square-star":57983,"square-t":57984,"square-terminal":58154,"square-this-way-up":62623,"square-u":57985,"square-up-left":57986,"square-up-right":62304,"square-up":62291,"square-user":57987,"square-v":57988,"square-virus":58744,"square-w":57989,"square-x":57990,"square-xmark":62163,"square-y":57991,"square-z":57992,"square":61640,"squid":58448,"squirrel":63258,"staff-snake":58745,"staff":63259,"stairs":57993,"stamp":62911,"standard-definition":57994,"stapler":58799,"star-and-crescent":63129,"star-christmas":63444,"star-exclamation":62195,"star-half-stroke":62912,"star-half":61577,"star-of-david":63130,"star-of-life":63009,"star-sharp-half-stroke":57997,"star-sharp-half":57996,"star-sharp":57995,"star-shooting":57398,"star":61445,"starfighter-twin-ion-engine-advanced":57998,"starfighter-twin-ion-engine":57400,"starfighter":57399,"stars":63330,"starship-freighter":57402,"starship":57401,"steak":63524,"steering-wheel":63010,"sterling-sign":61780,"stethoscope":61681,"stocking":63445,"stomach":63011,"stop":61517,"stopwatch-20":57455,"stopwatch":62194,"store-lock":58534,"store-slash":57457,"store":62798,"strawberry":58155,"street-view":61981,"stretcher":63525,"strikethrough":61644,"stroopwafel":62801,"subscript":61740,"subtitles-slash":58896,"subtitles":58895,"suitcase-medical":61690,"suitcase-rolling":62913,"suitcase":61682,"sun-bright":57999,"sun-cloud":63331,"sun-dust":63332,"sun-haze":63333,"sun-plant-wilt":58746,"sun":61829,"sunglasses":63634,"sunrise":63334,"sunset":63335,"superscript":61739,"sushi-roll":58507,"sushi":58506,"swap-arrows":58890,"swap":58889,"swatchbook":62915,"sword-laser-alt":57404,"sword-laser":57403,"sword":63260,"swords-laser":57405,"swords":63261,"symbols":63598,"synagogue":63131,"syringe":62606,"t-rex":58921,"t":84,"table-cells-column-lock":59000,"table-cells-column-unlock":59024,"table-cells-large":61449,"table-cells-lock":59001,"table-cells-row-lock":59002,"table-cells-row-unlock":59025,"table-cells-unlock":59026,"table-cells":61450,"table-columns":61659,"table-layout":58000,"table-list":61451,"table-picnic":58157,"table-pivot":58001,"table-rows":58002,"table-tennis-paddle-ball":62557,"table-tree":58003,"table":61646,"tablet-button":61706,"tablet-rugged":62607,"tablet-screen-button":62458,"tablet-screen":62460,"tablet":62459,"tablets":62608,"tachograph-digital":62822,"taco":63526,"tag":61483,"tags":61484,"tally-1":58004,"tally-2":58005,"tally-3":58006,"tally-4":58007,"tally":63132,"tamale":58449,"tank-water":58450,"tape":62683,"tarp-droplet":58748,"tarp":58747,"taxi-bus":58008,"taxi":61882,"teddy-bear":58319,"teeth-open":63023,"teeth":63022,"telescope":57406,"temperature-arrow-down":57407,"temperature-arrow-up":57408,"temperature-empty":62155,"temperature-full":62151,"temperature-half":62153,"temperature-high":63337,"temperature-list":58009,"temperature-low":63339,"temperature-quarter":62154,"temperature-snow":63336,"temperature-sun":63338,"temperature-three-quarters":62152,"tenge-sign":63447,"tennis-ball":62558,"tent-arrow-down-to-line":58750,"tent-arrow-left-right":58751,"tent-arrow-turn-left":58752,"tent-arrows-down":58753,"tent-double-peak":58919,"tent":58749,"tents":58754,"terminal":61728,"text-height":61492,"text-size":63636,"text-slash":63613,"text-width":61493,"text":63635,"thermometer":62609,"theta":63134,"thought-bubble":58158,"thumbs-down":61797,"thumbs-up":61796,"thumbtack-slash":59023,"thumbtack":61581,"tick":58159,"ticket-airline":58010,"ticket-perforated":58942,"ticket-simple":62463,"ticket":61765,"tickets-airline":58011,"tickets-perforated":58943,"tickets-simple":58969,"tickets":58968,"tilde":126,"timeline-arrow":58013,"timeline":58012,"timer":58014,"tire-flat":63026,"tire-pressure-warning":63027,"tire-rugged":63028,"tire":63025,"toggle-large-off":58800,"toggle-large-on":58801,"toggle-off":61956,"toggle-on":61957,"toilet-paper-blank-under":58015,"toilet-paper-blank":63263,"toilet-paper-check":58802,"toilet-paper-slash":57458,"toilet-paper-under-slash":58017,"toilet-paper-under":58016,"toilet-paper-xmark":58803,"toilet-paper":63262,"toilet-portable":58755,"toilet":63448,"toilets-portable":58756,"tomato":58160,"tombstone-blank":63265,"tombstone":63264,"toolbox":62802,"tooth":62921,"toothbrush":63029,"torii-gate":63137,"tornado":63343,"tower-broadcast":62745,"tower-cell":58757,"tower-control":58018,"tower-observation":58758,"tractor":63266,"trademark":62044,"traffic-cone":63030,"traffic-light-go":63032,"traffic-light-slow":63033,"traffic-light-stop":63034,"traffic-light":63031,"trailer":57409,"train-subway-tunnel":58019,"train-subway":62009,"train-track":58451,"train-tram":58804,"train-tunnel":58452,"train":62008,"transformer-bolt":58020,"transgender":61989,"transporter-1":57411,"transporter-2":57412,"transporter-3":57413,"transporter-4":58021,"transporter-5":58022,"transporter-6":58023,"transporter-7":58024,"transporter-empty":57414,"transporter":57410,"trash-arrow-up":63529,"trash-can-arrow-up":63530,"trash-can-check":58025,"trash-can-clock":58026,"trash-can-list":58027,"trash-can-plus":58028,"trash-can-slash":58029,"trash-can-undo":63638,"trash-can-xmark":58030,"trash-can":62189,"trash-check":58031,"trash-clock":58032,"trash-list":58033,"trash-plus":58034,"trash-slash":58035,"trash-undo":63637,"trash-xmark":58036,"trash":61944,"treasure-chest":63267,"tree-christmas":63451,"tree-city":58759,"tree-deciduous":62464,"tree-decorated":63452,"tree-large":63453,"tree-palm":63531,"tree":61883,"trees":63268,"triangle-exclamation":61553,"triangle-instrument":63714,"triangle-person-digging":63581,"triangle":62188,"tricycle-adult":58820,"tricycle":58819,"trillium":58760,"trophy-star":62187,"trophy":61585,"trowel-bricks":58762,"trowel":58761,"truck-arrow-right":58763,"truck-bolt":58320,"truck-clock":62604,"truck-container-empty":58037,"truck-container":62684,"truck-droplet":58764,"truck-fast":62603,"truck-field-un":58766,"truck-field":58765,"truck-fire":58970,"truck-flatbed":58038,"truck-front":58039,"truck-ladder":58967,"truck-medical":61689,"truck-monster":63035,"truck-moving":62687,"truck-pickup":63036,"truck-plane":58767,"truck-plow":63454,"truck-ramp-box":62686,"truck-ramp-couch":62685,"truck-ramp":62688,"truck-tow":58040,"truck-utensils":58920,"truck":61649,"trumpet":63715,"tty-answer":58041,"tty":61924,"tugrik-sign":58042,"turkey":63269,"turkish-lira-sign":58043,"turn-down-left":58161,"turn-down-right":58453,"turn-down":62398,"turn-left-down":58935,"turn-left-up":58936,"turn-left":58934,"turn-right":58937,"turn-up":62399,"turntable":63716,"turtle":63270,"tv-music":63718,"tv-retro":62465,"tv":62060,"typewriter":63719,"u":85,"ufo-beam":57416,"ufo":57415,"umbrella-beach":62922,"umbrella-simple":58044,"umbrella":61673,"underline":61645,"unicorn":63271,"uniform-martial-arts":58321,"union":63138,"universal-access":62106,"unlock-keyhole":61758,"unlock":61596,"up-down-left-right":61618,"up-down":62264,"up-from-bracket":58768,"up-from-dotted-line":58454,"up-from-line":62278,"up-left":58045,"up-long":62220,"up-right-and-down-left-from-center":62500,"up-right-from-square":62301,"up-right":58046,"up-to-bracket":58990,"up-to-dotted-line":58455,"up-to-line":62285,"up":62295,"upload":61587,"usb-drive":63721,"user-alien":57418,"user-astronaut":62715,"user-beard-bolt":59017,"user-bounty-hunter":58047,"user-check":62716,"user-chef":58322,"user-clock":62717,"user-cowboy":63722,"user-crown":63140,"user-doctor-hair-long":58457,"user-doctor-hair":58456,"user-doctor-message":63534,"user-doctor":61680,"user-gear":62718,"user-graduate":62721,"user-group-crown":63141,"user-group-simple":58883,"user-group":62720,"user-hair-buns":58323,"user-hair-long":58459,"user-hair-mullet":58460,"user-hair":58458,"user-headset":63533,"user-helmet-safety":63532,"user-hoodie":59018,"user-injured":63272,"user-large-slash":62714,"user-large":62470,"user-lock":62722,"user-magnifying-glass":58821,"user-minus":62723,"user-music":63723,"user-ninja":62724,"user-nurse-hair-long":58462,"user-nurse-hair":58461,"user-nurse":63535,"user-pen":62719,"user-pilot-tie":58049,"user-pilot":58048,"user-plus":62004,"user-police-tie":58164,"user-police":58163,"user-robot-xmarks":58535,"user-robot":57419,"user-secret":61979,"user-shakespeare":58050,"user-shield":62725,"user-slash":62726,"user-tag":62727,"user-tie-hair-long":58464,"user-tie-hair":58463,"user-tie":62728,"user-unlock":57432,"user-visor":57420,"user-vneck-hair-long":58467,"user-vneck-hair":58466,"user-vneck":58465,"user-xmark":62005,"user":61447,"users-between-lines":58769,"users-gear":62729,"users-line":58770,"users-medical":63536,"users-rays":58771,"users-rectangle":58772,"users-slash":57459,"users-viewfinder":58773,"users":61632,"utensils-slash":58468,"utensils":62183,"utility-pole-double":58052,"utility-pole":58051,"v":86,"vacuum-robot":57422,"vacuum":57421,"value-absolute":63142,"van-shuttle":62902,"vault":58053,"vector-circle":58054,"vector-polygon":58055,"vector-square":62923,"vent-damper":58469,"venus-double":61990,"venus-mars":61992,"venus":61985,"vest-patches":57478,"vest":57477,"vial-circle-check":58774,"vial-virus":58775,"vial":62610,"vials":62611,"video-arrow-down-left":58056,"video-arrow-up-right":58057,"video-plus":62689,"video-slash":62690,"video":61501,"vihara":63143,"violin":63725,"virus-covid-slash":58537,"virus-covid":58536,"virus-slash":57461,"virus":57460,"viruses":57462,"voicemail":63639,"volcano":63344,"volleyball":62559,"volume-high":61480,"volume-low":61479,"volume-off":61478,"volume-slash":62178,"volume-xmark":63145,"volume":63144,"vr-cardboard":63273,"w":87,"waffle":58470,"wagon-covered":63726,"walker":63537,"walkie-talkie":63727,"wallet":62805,"wand-magic-sparkles":58058,"wand-magic":61648,"wand-sparkles":63275,"wand":63274,"warehouse-full":62613,"warehouse":62612,"washing-machine":63640,"watch-apple":58059,"watch-calculator":63728,"watch-fitness":63038,"watch-smart":58060,"watch":62177,"water-arrow-down":63348,"water-arrow-up":63349,"water-ladder":62917,"water":63347,"watermelon-slice":58167,"wave-pulse":62968,"wave-sine":63641,"wave-square":63550,"wave-triangle":63642,"wave":58971,"waveform-lines":63730,"waveform":63729,"waves-sine":58973,"web-awesome":59010,"webhook":58837,"weight-hanging":62925,"weight-scale":62614,"whale":63276,"wheat-awn-circle-exclamation":58776,"wheat-awn-slash":58168,"wheat-awn":58061,"wheat-slash":58169,"wheat":63277,"wheelchair-move":58062,"wheelchair":61843,"whiskey-glass-ice":63393,"whiskey-glass":63392,"whistle":62560,"wifi-exclamation":58063,"wifi-fair":63147,"wifi-slash":63148,"wifi-weak":63146,"wifi":61931,"wind-turbine":63643,"wind-warning":63350,"wind":63278,"window-flip":62479,"window-frame-open":57424,"window-frame":57423,"window-maximize":62160,"window-minimize":62161,"window-restore":62162,"window":62478,"windsock":63351,"wine-bottle":63279,"wine-glass-crack":62651,"wine-glass-empty":62926,"wine-glass":62691,"won-sign":61785,"worm":58777,"wreath-laurel":58834,"wreath":63458,"wrench-simple":58065,"wrench":61613,"x-ray":62615,"x":88,"xmark-large":58779,"xmark-to-slot":63345,"xmark":61453,"xmarks-lines":58778,"y":89,"yen-sign":61783,"yin-yang":63149,"z":90} ================================================ FILE: packages/fontawesome6-pro/package.json ================================================ { "name": "@react-native-vector-icons/fontawesome6-pro", "version": "12.4.0", "description": "Fontawesome6 Pro font for react native vector icons", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontawesome6-pro" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontawesome6-pro" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^", "@react-native-vector-icons/fontawesome-common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontawesome6-pro/react-native-vector-icons-fontawesome6-pro.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontawesome6-pro' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontawesome6-pro)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontawesome6-pro" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontawesome6-pro/src/index.tsx ================================================ /* eslint-disable react/jsx-pascal-case, no-console */ /** * This is a generated file. If you modify it manually, your changes will be lost! * Instead, modify the template in `fontawesome-common/generator`. * * FontAwesome6Pro icon set component. * Usage: */ import type { ComponentProps } from 'react'; import { Platform, type TextStyle } from 'react-native'; import { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common'; import brandGM from '../glyphmaps/FontAwesome6Pro_brand.json'; import duotoneGM from '../glyphmaps/FontAwesome6Pro_duotone.json'; import lightGM from '../glyphmaps/FontAwesome6Pro_light.json'; import regularGM from '../glyphmaps/FontAwesome6Pro_regular.json'; import sharpGM from '../glyphmaps/FontAwesome6Pro_sharp.json'; import sharpLightGM from '../glyphmaps/FontAwesome6Pro_sharpLight.json'; import sharpSolidGM from '../glyphmaps/FontAwesome6Pro_sharpSolid.json'; import sharpThinGM from '../glyphmaps/FontAwesome6Pro_sharpThin.json'; import solidGM from '../glyphmaps/FontAwesome6Pro_solid.json'; import thinGM from '../glyphmaps/FontAwesome6Pro_thin.json'; import metadata from '../glyphmaps/FontAwesome6Pro_meta.json'; const glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph); const fontStyle = (fontWeight: TextStyle['fontWeight']) => Platform.select({ ios: { fontWeight, }, default: {}, }); // biome-ignore format: We want these to be consistent and we are fine with single for all const ThinIcon = createIconSet(thinGM, { postScriptName: 'FontAwesome6Pro-Thin', fontFileName: 'FontAwesome6_Pro_Thin.ttf', fontStyle: fontStyle('100') }); export type FontAwesome6ProThinIconName = keyof typeof thinGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const LightIcon = createIconSet(lightGM, { postScriptName: 'FontAwesome6Pro-Light', fontFileName: 'FontAwesome6_Pro_Light.ttf', fontStyle: fontStyle('300') }); export type FontAwesome6ProLightIconName = keyof typeof lightGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const RegularIcon = createIconSet(regularGM, { postScriptName: 'FontAwesome6Pro-Regular', fontFileName: 'FontAwesome6_Pro_Regular.ttf', fontStyle: fontStyle('400') }); export type FontAwesome6ProRegularIconName = keyof typeof regularGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SolidIcon = createIconSet(solidGM, { postScriptName: 'FontAwesome6Pro-Solid', fontFileName: 'FontAwesome6_Pro_Solid.ttf', fontStyle: fontStyle('900') }); export type FontAwesome6ProSolidIconName = keyof typeof solidGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SharpThinIcon = createIconSet(sharpThinGM, { postScriptName: 'FontAwesome6Sharp-Thin', fontFileName: 'FontAwesome6_Pro_Sharp_Thin.ttf', fontStyle: fontStyle('100') }); export type FontAwesome6ProSharpThinIconName = keyof typeof sharpThinGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SharpLightIcon = createIconSet(sharpLightGM, { postScriptName: 'FontAwesome6Sharp-Light', fontFileName: 'FontAwesome6_Pro_Sharp_Light.ttf', fontStyle: fontStyle('300') }); export type FontAwesome6ProSharpLightIconName = keyof typeof sharpLightGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SharpIcon = createIconSet(sharpGM, { postScriptName: 'FontAwesome6Sharp-Regular', fontFileName: 'FontAwesome6_Pro_Sharp_Regular.ttf', fontStyle: fontStyle('400') }); export type FontAwesome6ProSharpIconName = keyof typeof sharpGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SharpSolidIcon = createIconSet(sharpSolidGM, { postScriptName: 'FontAwesome6Sharp-Solid', fontFileName: 'FontAwesome6_Pro_Sharp_Solid.ttf', fontStyle: fontStyle('900') }); export type FontAwesome6ProSharpSolidIconName = keyof typeof sharpSolidGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const DuotoneIcon = createIconSet(duotoneGM, { postScriptName: 'FontAwesome6Duotone-Solid', fontFileName: 'FontAwesome6_Pro_Duotone.ttf', fontStyle: fontStyle('900') }); export type FontAwesome6ProDuotoneIconName = keyof typeof duotoneGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const BrandIcon = createIconSet(brandGM, { postScriptName: 'FontAwesome6Brands-Regular', fontFileName: 'FontAwesome6_Pro_Brands.ttf', fontStyle: fontStyle('400') }); export type FontAwesome6ProBrandIconName = keyof typeof brandGM; type Props = | ({ iconStyle: 'thin' } & ComponentProps) | ({ iconStyle: 'light' } & ComponentProps) | ({ iconStyle: 'regular' } & ComponentProps) | ({ iconStyle: 'solid' } & ComponentProps) | ({ iconStyle: 'sharpThin' } & ComponentProps) | ({ iconStyle: 'sharpLight' } & ComponentProps) | ({ iconStyle: 'sharp' } & ComponentProps) | ({ iconStyle: 'sharpSolid' } & ComponentProps) | ({ iconStyle: 'duotone' } & ComponentProps) | ({ iconStyle: 'brand' } & ComponentProps) | ({ iconStyle?: never } & ComponentProps); export const FontAwesome6Pro = (props: Props) => { const { iconStyle, name } = props; if (!iconStyle) { if (!glyphValidator(name, 'regular')) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome6Pro`); } return ; } if (!glyphValidator(name, iconStyle)) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome6Pro`); return )} />; } switch (iconStyle) { case 'brand': return ; case 'duotone': return ; case 'light': return ; case 'regular': return ; case 'sharp': return ; case 'sharpLight': return ; case 'sharpSolid': return ; case 'sharpThin': return ; case 'solid': return ; case 'thin': return ; default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`); return )} />; } }; type GetImageSourceFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSource']>; ( iconStyle: 'duotone', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof DuotoneIcon)['getImageSource']>; ( iconStyle: 'light', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof LightIcon)['getImageSource']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSource']>; ( iconStyle: 'sharp', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpIcon)['getImageSource']>; ( iconStyle: 'sharpLight', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpLightIcon)['getImageSource']>; ( iconStyle: 'sharpSolid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpSolidIcon)['getImageSource']>; ( iconStyle: 'sharpThin', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpThinIcon)['getImageSource']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSource']>; ( iconStyle: 'thin', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof ThinIcon)['getImageSource']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color); case 'duotone': return DuotoneIcon.getImageSource(name as keyof typeof duotoneGM, size, color); case 'light': return LightIcon.getImageSource(name as keyof typeof lightGM, size, color); case 'regular': return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); case 'sharp': return SharpIcon.getImageSource(name as keyof typeof sharpGM, size, color); case 'sharpLight': return SharpLightIcon.getImageSource(name as keyof typeof sharpLightGM, size, color); case 'sharpSolid': return SharpSolidIcon.getImageSource(name as keyof typeof sharpSolidGM, size, color); case 'sharpThin': return SharpThinIcon.getImageSource(name as keyof typeof sharpThinGM, size, color); case 'solid': return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color); case 'thin': return ThinIcon.getImageSource(name as keyof typeof thinGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`); return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); } }; FontAwesome6Pro.getImageSource = getImageSource; type GetImageSourceSyncFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>; ( iconStyle: 'duotone', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof DuotoneIcon)['getImageSourceSync']>; ( iconStyle: 'light', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof LightIcon)['getImageSourceSync']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>; ( iconStyle: 'sharp', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpIcon)['getImageSourceSync']>; ( iconStyle: 'sharpLight', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpLightIcon)['getImageSourceSync']>; ( iconStyle: 'sharpSolid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpSolidIcon)['getImageSourceSync']>; ( iconStyle: 'sharpThin', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpThinIcon)['getImageSourceSync']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>; ( iconStyle: 'thin', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof ThinIcon)['getImageSourceSync']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color); case 'duotone': return DuotoneIcon.getImageSourceSync(name as keyof typeof duotoneGM, size, color); case 'light': return LightIcon.getImageSourceSync(name as keyof typeof lightGM, size, color); case 'regular': return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); case 'sharp': return SharpIcon.getImageSourceSync(name as keyof typeof sharpGM, size, color); case 'sharpLight': return SharpLightIcon.getImageSourceSync(name as keyof typeof sharpLightGM, size, color); case 'sharpSolid': return SharpSolidIcon.getImageSourceSync(name as keyof typeof sharpSolidGM, size, color); case 'sharpThin': return SharpThinIcon.getImageSourceSync(name as keyof typeof sharpThinGM, size, color); case 'solid': return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color); case 'thin': return ThinIcon.getImageSourceSync(name as keyof typeof thinGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`); return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); } }; FontAwesome6Pro.getImageSourceSync = getImageSourceSync; export type FontAwesome6ProIconName = ComponentProps['name']; /** @alias */ export default FontAwesome6Pro; ================================================ FILE: packages/fontawesome6-pro/src/static.tsx ================================================ /* eslint-disable react/jsx-pascal-case, no-console */ /** * This is a generated file. If you modify it manually, your changes will be lost! * Instead, modify the template in `fontawesome-common/generator`. * * FontAwesome6Pro icon set component. * Usage: */ import type { ComponentProps } from 'react'; import { Platform, type TextStyle } from 'react-native'; import { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common'; import brandGM from '../glyphmaps/FontAwesome6Pro_brand.json'; import duotoneGM from '../glyphmaps/FontAwesome6Pro_duotone.json'; import lightGM from '../glyphmaps/FontAwesome6Pro_light.json'; import regularGM from '../glyphmaps/FontAwesome6Pro_regular.json'; import sharpGM from '../glyphmaps/FontAwesome6Pro_sharp.json'; import sharpLightGM from '../glyphmaps/FontAwesome6Pro_sharpLight.json'; import sharpSolidGM from '../glyphmaps/FontAwesome6Pro_sharpSolid.json'; import sharpThinGM from '../glyphmaps/FontAwesome6Pro_sharpThin.json'; import solidGM from '../glyphmaps/FontAwesome6Pro_solid.json'; import thinGM from '../glyphmaps/FontAwesome6Pro_thin.json'; import metadata from '../glyphmaps/FontAwesome6Pro_meta.json'; const glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph); const fontStyle = (fontWeight: TextStyle['fontWeight']) => Platform.select({ ios: { fontWeight, }, default: {}, }); // biome-ignore format: We want these to be consistent and we are fine with single for all const ThinIcon = createIconSet(thinGM, { postScriptName: 'FontAwesome6Pro-Thin', fontFileName: 'FontAwesome6_Pro_Thin.ttf', fontStyle: fontStyle('100') }); export type FontAwesome6ProThinIconName = keyof typeof thinGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const LightIcon = createIconSet(lightGM, { postScriptName: 'FontAwesome6Pro-Light', fontFileName: 'FontAwesome6_Pro_Light.ttf', fontStyle: fontStyle('300') }); export type FontAwesome6ProLightIconName = keyof typeof lightGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const RegularIcon = createIconSet(regularGM, { postScriptName: 'FontAwesome6Pro-Regular', fontFileName: 'FontAwesome6_Pro_Regular.ttf', fontStyle: fontStyle('400') }); export type FontAwesome6ProRegularIconName = keyof typeof regularGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SolidIcon = createIconSet(solidGM, { postScriptName: 'FontAwesome6Pro-Solid', fontFileName: 'FontAwesome6_Pro_Solid.ttf', fontStyle: fontStyle('900') }); export type FontAwesome6ProSolidIconName = keyof typeof solidGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SharpThinIcon = createIconSet(sharpThinGM, { postScriptName: 'FontAwesome6Sharp-Thin', fontFileName: 'FontAwesome6_Pro_Sharp_Thin.ttf', fontStyle: fontStyle('100') }); export type FontAwesome6ProSharpThinIconName = keyof typeof sharpThinGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SharpLightIcon = createIconSet(sharpLightGM, { postScriptName: 'FontAwesome6Sharp-Light', fontFileName: 'FontAwesome6_Pro_Sharp_Light.ttf', fontStyle: fontStyle('300') }); export type FontAwesome6ProSharpLightIconName = keyof typeof sharpLightGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SharpIcon = createIconSet(sharpGM, { postScriptName: 'FontAwesome6Sharp-Regular', fontFileName: 'FontAwesome6_Pro_Sharp_Regular.ttf', fontStyle: fontStyle('400') }); export type FontAwesome6ProSharpIconName = keyof typeof sharpGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const SharpSolidIcon = createIconSet(sharpSolidGM, { postScriptName: 'FontAwesome6Sharp-Solid', fontFileName: 'FontAwesome6_Pro_Sharp_Solid.ttf', fontStyle: fontStyle('900') }); export type FontAwesome6ProSharpSolidIconName = keyof typeof sharpSolidGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const DuotoneIcon = createIconSet(duotoneGM, { postScriptName: 'FontAwesome6Duotone-Solid', fontFileName: 'FontAwesome6_Pro_Duotone.ttf', fontStyle: fontStyle('900') }); export type FontAwesome6ProDuotoneIconName = keyof typeof duotoneGM; // biome-ignore format: We want these to be consistent and we are fine with single for all const BrandIcon = createIconSet(brandGM, { postScriptName: 'FontAwesome6Brands-Regular', fontFileName: 'FontAwesome6_Pro_Brands.ttf', fontStyle: fontStyle('400') }); export type FontAwesome6ProBrandIconName = keyof typeof brandGM; type Props = | ({ iconStyle: 'thin' } & ComponentProps) | ({ iconStyle: 'light' } & ComponentProps) | ({ iconStyle: 'regular' } & ComponentProps) | ({ iconStyle: 'solid' } & ComponentProps) | ({ iconStyle: 'sharpThin' } & ComponentProps) | ({ iconStyle: 'sharpLight' } & ComponentProps) | ({ iconStyle: 'sharp' } & ComponentProps) | ({ iconStyle: 'sharpSolid' } & ComponentProps) | ({ iconStyle: 'duotone' } & ComponentProps) | ({ iconStyle: 'brand' } & ComponentProps) | ({ iconStyle?: never } & ComponentProps); export const FontAwesome6Pro = (props: Props) => { const { iconStyle, name } = props; if (!iconStyle) { if (!glyphValidator(name, 'regular')) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome6Pro`); } return ; } if (!glyphValidator(name, iconStyle)) { console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome6Pro`); return )} />; } switch (iconStyle) { case 'brand': return ; case 'duotone': return ; case 'light': return ; case 'regular': return ; case 'sharp': return ; case 'sharpLight': return ; case 'sharpSolid': return ; case 'sharpThin': return ; case 'solid': return ; case 'thin': return ; default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`); return )} />; } }; type GetImageSourceFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSource']>; ( iconStyle: 'duotone', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof DuotoneIcon)['getImageSource']>; ( iconStyle: 'light', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof LightIcon)['getImageSource']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSource']>; ( iconStyle: 'sharp', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpIcon)['getImageSource']>; ( iconStyle: 'sharpLight', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpLightIcon)['getImageSource']>; ( iconStyle: 'sharpSolid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpSolidIcon)['getImageSource']>; ( iconStyle: 'sharpThin', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpThinIcon)['getImageSource']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSource']>; ( iconStyle: 'thin', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof ThinIcon)['getImageSource']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color); case 'duotone': return DuotoneIcon.getImageSource(name as keyof typeof duotoneGM, size, color); case 'light': return LightIcon.getImageSource(name as keyof typeof lightGM, size, color); case 'regular': return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); case 'sharp': return SharpIcon.getImageSource(name as keyof typeof sharpGM, size, color); case 'sharpLight': return SharpLightIcon.getImageSource(name as keyof typeof sharpLightGM, size, color); case 'sharpSolid': return SharpSolidIcon.getImageSource(name as keyof typeof sharpSolidGM, size, color); case 'sharpThin': return SharpThinIcon.getImageSource(name as keyof typeof sharpThinGM, size, color); case 'solid': return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color); case 'thin': return ThinIcon.getImageSource(name as keyof typeof thinGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`); return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color); } }; FontAwesome6Pro.getImageSource = getImageSource; type GetImageSourceSyncFunc = { ( iconStyle: 'brand', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>; ( iconStyle: 'duotone', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof DuotoneIcon)['getImageSourceSync']>; ( iconStyle: 'light', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof LightIcon)['getImageSourceSync']>; ( iconStyle: 'regular', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>; ( iconStyle: 'sharp', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpIcon)['getImageSourceSync']>; ( iconStyle: 'sharpLight', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpLightIcon)['getImageSourceSync']>; ( iconStyle: 'sharpSolid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpSolidIcon)['getImageSourceSync']>; ( iconStyle: 'sharpThin', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SharpThinIcon)['getImageSourceSync']>; ( iconStyle: 'solid', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>; ( iconStyle: 'thin', name: ComponentProps['name'], size?: number, color?: TextStyle['color'], ): ReturnType<(typeof ThinIcon)['getImageSourceSync']>; }; // biome-ignore format: We want these to be consistent and we are fine with single for all const getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => { switch (iconStyle) { case 'brand': return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color); case 'duotone': return DuotoneIcon.getImageSourceSync(name as keyof typeof duotoneGM, size, color); case 'light': return LightIcon.getImageSourceSync(name as keyof typeof lightGM, size, color); case 'regular': return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); case 'sharp': return SharpIcon.getImageSourceSync(name as keyof typeof sharpGM, size, color); case 'sharpLight': return SharpLightIcon.getImageSourceSync(name as keyof typeof sharpLightGM, size, color); case 'sharpSolid': return SharpSolidIcon.getImageSourceSync(name as keyof typeof sharpSolidGM, size, color); case 'sharpThin': return SharpThinIcon.getImageSourceSync(name as keyof typeof sharpThinGM, size, color); case 'solid': return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color); case 'thin': return ThinIcon.getImageSourceSync(name as keyof typeof thinGM, size, color); default: console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`); return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color); } }; FontAwesome6Pro.getImageSourceSync = getImageSourceSync; export type FontAwesome6ProIconName = ComponentProps['name']; /** @alias */ export default FontAwesome6Pro; ================================================ FILE: packages/fontawesome6-pro/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontawesome6-pro/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontcustom-docker/CHANGELOG.md ================================================ ================================================ FILE: packages/fontcustom-docker/Dockerfile ================================================ FROM debian:11-slim WORKDIR /usr/src/app # NOTE: Use this again if fontforge does a new release # RUN apt-get -y update \ # && apt-get -y upgrade \ # && apt-get -y --no-install-recommends install fontcustom \ # && apt clean \ # && rm -rf /var/lib/apt/lists/* RUN apt-get -y update \ && apt-get -y upgrade \ && apt-get -y --no-install-recommends install \ fontcustom \ libjpeg-dev libtiff5-dev libpng-dev libfreetype6-dev libgif-dev libgtk-3-dev libxml2-dev \ libpango1.0-dev libcairo2-dev libspiro-dev libwoff-dev python3-dev ninja-build cmake build-essential gettext \ git ca-certificates \ && apt clean \ && rm -rf /var/lib/apt/lists/* RUN git clone https://github.com/fontforge/fontforge.git RUN mkdir fontforge/build WORKDIR /usr/src/app/fontforge/build RUN cmake -GNinja .. \ && ninja \ && ninja install \ && cd ../.. \ && rm -rf /usr/src/app/fontforge RUN dpkg -r --force-depends fontforge WORKDIR /usr/src/app ENTRYPOINT ["/usr/bin/fontcustom"] ================================================ FILE: packages/fontcustom-docker/README.md ================================================ # font custom docker We need a fontcustom with a newer font forge for reproducible builds ================================================ FILE: packages/fontcustom-docker/package.json ================================================ { "name": "@react-native-vector-icons/fontcustom-docker", "private": true, "version": "0.0.1", "description": "Updated fontcustom docker image", "scripts": { "build": "docker build -t johnf/fontcustom .", "publish": "docker push johnf/fontcustom" } } ================================================ FILE: packages/fontello/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontello", "customReadme": true, "customSrc": true, "noGlyphmap": true, "copyCustomFonts": true } } ================================================ FILE: packages/fontello/CHANGELOG.md ================================================ ## 12.4.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.3.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.3.2 (2026-03-10) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ## 12.3.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.3.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.2.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/fontello/README.md ================================================ # React Native Vector Icons - Fontello React Native Vector Icons font package to support using custom fonts created with [Fontello](https://fontello.com) See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/fontello ``` ## Usage 1. Add the config.json somewhere in your project to be imported 2. Add the ttf file into `rnvi-fonts/fontello`. You can customise this location as described in [react-native-vector-icons](../../README.md#custom-fonts) 3. Add this package to your project ```sh pnpm install @react-native-vector-icons/fontello ``` 4. Create the component in your project and use it ```js import createIconSet from '@react-native-vector-icons/fontello'; import fontelloConfig from './config.json'; const Icon = createIconSet(fontelloConfig); const icon = ; ``` If you want to customise the font postscript name and filename you can pass extra arguments. ```js import createIconSet from "@react-native-vector-icons/fontello"; import fontelloConfig from "./config.json"; const Icon = createIconSet(fontelloConfig, "Font Family", "FontFamily.ttf"); ``` ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontello/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontello" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontello" codegenJavaPackageName = "com.reactnativevectoricons.fontello" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontello") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontello/fonts" eachFile { println "(RNVI:fontello) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/fontello" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontello/fonts" eachFile { println "(RNVI:fontello) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/fontello/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontello/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontello/android/src/main/java/VectorIconsFontelloPackage.kt ================================================ package com.reactnativevectoricons.fontello import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontelloPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontello/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontello/package.json ================================================ { "name": "@react-native-vector-icons/fontello", "version": "12.4.0", "description": "Fontello font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } } }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontello" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontello" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontello/react-native-vector-icons-fontello.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontello' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-fontello)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/fontello" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/fontello/src/index.ts ================================================ /** * Fontello icon set component. * Usage: */ import { type CreateIconSetOptions, createIconSet, type IconComponent } from '@react-native-vector-icons/common'; type FontelloConfig = { name: string; css_prefix_text: string; css_use_suffix: boolean; hinting: boolean; units_per_em: number; ascent: number; glyphs: Array<{ uid: string; css: string; code: number; src: string; }>; }; type FontelloComponent = IconComponent>; // entries are optional because they can be derived from the config type Options = Partial; export default function createIconSetFromFontello( config: FontelloConfig, postScriptName?: string, fontFileName?: string, ): FontelloComponent; export default function createIconSetFromFontello(config: FontelloConfig, options: Options): FontelloComponent; export default function createIconSetFromFontello( config: FontelloConfig, postScriptNameOrOptions?: string | Options, fontFileNameParam?: string, ): FontelloComponent { const { postScriptName, fontFileName, fontSource, fontStyle } = typeof postScriptNameOrOptions === 'object' ? postScriptNameOrOptions : { postScriptName: postScriptNameOrOptions, fontFileName: fontFileNameParam, }; const glyphMap: Record = {}; config.glyphs.forEach((glyph) => { glyphMap[glyph.css] = glyph.code; }); const fontFamily = postScriptName || config.name || 'fontello'; return createIconSet(glyphMap, { postScriptName: fontFamily, fontFileName: fontFileName || `${fontFamily}.ttf`, fontSource, fontStyle, }); } ================================================ FILE: packages/fontello/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontello/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/fontisto/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "fontisto", "postScriptName": "fontisto", "upstreamFont": "fontisto", "buildSteps": { "glyphmap": { "location": "../../node_modules/fontisto/css/fontisto/fontisto.css", "mode": "css", "prefix": ".fi-" }, "copyFont": { "location": "../../node_modules/fontisto/fonts/fontisto/fontisto.ttf" } }, "versions": [ { "rnvi": "12.0.0", "upstream": "3.0.4" } ] } } ================================================ FILE: packages/fontisto/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/fontisto/README.md ================================================ # React Native Vector Icons - Fontisto Fontisto font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/fontisto ``` ## Usage ```jsx import { Fontisto } from '@react-native-vector-icons/fontisto'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 3.0.4 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/fontisto/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.fontisto" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFontisto" codegenJavaPackageName = "com.reactnativevectoricons.fontisto" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-fontisto") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-fontisto/fonts" eachFile { println "(RNVI:fontisto) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/fontisto/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/fontisto/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/fontisto/android/src/main/java/VectorIconsFontistoPackage.kt ================================================ package com.reactnativevectoricons.fontisto import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFontistoPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/fontisto/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/fontisto/glyphmaps/Fontisto.json ================================================ { "acrobat-reader": 60095, "applemusic": 60096, "atlassian": 60097, "aws": 60098, "baidu": 60099, "bing": 60100, "bower": 60101, "dailymotion": 60102, "delicious": 60103, "deviantart": 60104, "disqus": 60105, "flipboard": 60106, "graphql": 60107, "hexo": 60108, "hipchat": 60109, "icq": 60110, "invision": 60111, "jekyll": 60112, "jira": 60113, "json": 60114, "livestream": 60115, "messenger": 60116, "meteor": 60117, "onenote": 60118, "mongodb": 60119, "netflix": 60120, "nginx": 60121, "odnoklassniki": 60122, "onedrive": 60123, "origin": 60124, "pingdom": 60125, "rails": 60126, "raspberry-pi": 60127, "redis": 60128, "redux": 60129, "saucelabs": 60130, "scorp": 60131, "sentry": 60132, "shazam": 60133, "shopify": 60134, "sinaweibo": 60135, "slides": 60136, "sublimetext": 60137, "swift": 60138, "ted": 60139, "telegram": 60140, "tesla": 60141, "tinder": 60142, "treehouse": 60143, "twoo": 60144, "udacity": 60145, "webstorm": 60146, "wix": 60147, "yandex-international": 60148, "yandex": 60149, "ember": 60087, "cpanel": 60088, "viber": 60089, "deskpro": 60090, "discord": 60091, "discourse": 60092, "adobe": 60059, "algolia": 60060, "atom": 60061, "babel": 60062, "coffeescript": 60063, "electronjs": 60064, "mysql": 60065, "oracle": 60066, "php": 60067, "sourcetree": 60068, "ubuntu": 60069, "unity": 60070, "unreal-engine": 60071, "webpack": 60072, "angelist": 60026, "app-store": 60027, "digg": 60030, "dockers": 60031, "envato": 60032, "gitlab": 60033, "google-drive": 60034, "google-play": 60035, "grunt": 60036, "gulp": 60037, "hacker-news": 60038, "imdb": 60039, "jenkins": 60040, "joomla": 60041, "kickstarter": 60042, "laravel": 60043, "less": 60044, "line": 60045, "npm": 60046, "periscope": 60047, "product-hunt": 60048, "quora": 60049, "skyatlas": 60050, "stylus": 60051, "travis": 60052, "trello": 60053, "uber": 60054, "vine": 60055, "visual-studio": 60056, "vk": 60057, "vuejs": 60058, "microsoft": 60025, "blogger": 60028, "500px": 59658, "amazon": 59659, "ampproject": 59660, "android": 59661, "angularjs": 59662, "apple": 59663, "behance": 59664, "bitbucket": 59665, "bluetooth-b": 59666, "cloudflare": 59667, "codepen": 59668, "css3": 59669, "dribbble": 59670, "dropbox": 59671, "facebook": 59672, "flickr": 59673, "foursquare": 59674, "git": 59675, "github": 59676, "google-plus": 59677, "google": 59678, "hangout": 59679, "houzz": 59680, "html5": 59681, "instagram": 59682, "java": 59683, "jquery": 59684, "jsfiddle": 59685, "linkedin": 59686, "linux": 59687, "magento": 59688, "maxcdn": 59689, "medium": 59690, "meetup": 59691, "nodejs": 59692, "opencart": 59693, "pinterest": 59694, "playstation": 59695, "python": 59696, "react": 59697, "reddit": 59698, "ruby": 59699, "sass": 59700, "skype": 59701, "slack": 59702, "snapchat": 59703, "soundcloud": 59704, "spotify": 59705, "stack-overflow": 59706, "steam": 59707, "stumbleupon": 59708, "svn": 59709, "swarm": 59710, "tripadvisor": 59711, "tumblr": 59712, "twitch": 59713, "twitter": 59714, "vimeo": 59715, "wetransfer": 59716, "whatsapp": 59717, "wifi-logo": 59718, "wikipedia": 59719, "windows": 59720, "wordpress": 59721, "xbox": 59722, "yahoo": 59723, "yelp": 59724, "youtube-play": 59725, "cocoapods": 60200, "composer": 60201, "yarn": 60202, "language": 59943, "toggle-off": 59948, "toggle-on": 60029, "anchor": 60094, "archive": 60150, "at": 60151, "ban": 60152, "battery-half": 60153, "battery-full": 60154, "battery-empty": 60155, "battery-quarter": 60156, "battery-three-quarters": 60157, "bell-alt": 60158, "bell": 60159, "bookmark-alt": 60160, "bookmark": 60161, "bug": 60162, "calculator": 60163, "calendar": 60164, "crosshairs": 60165, "desktop": 60166, "download": 60167, "film": 60168, "history": 60169, "hourglass-end": 60170, "hourglass-half": 60171, "hourglass-start": 60172, "hourglass": 60173, "info": 60174, "key": 60175, "keyboard": 60176, "laptop": 60177, "lightbulb": 60178, "magnet": 60179, "map-marker-alt": 60180, "map-marker": 60181, "map": 60182, "mobile-alt": 60183, "mobile": 60184, "paw": 60185, "phone": 60186, "power": 60187, "qrcode": 60188, "question": 60189, "search": 60190, "sitemap": 60191, "star-half": 60192, "stopwatch": 60193, "tablet-alt": 60194, "tablet": 60195, "ticket": 60196, "tv": 60197, "upload": 60198, "user-secret": 60199, "camera": 59798, "clock": 59799, "close-a": 59800, "code": 59801, "comment": 59802, "commenting": 59803, "comments": 59804, "crop": 59805, "cursor": 59806, "database": 59807, "date": 59808, "earth": 59809, "email": 59810, "eye": 59811, "female": 59812, "favorite": 59813, "filter": 59814, "fire": 59815, "flag": 59816, "flash": 59817, "home": 59818, "link": 59819, "locked": 59820, "male": 59821, "minus-a": 59822, "more-v-a": 59823, "more-v": 59824, "move-h-a": 59825, "move-h": 59826, "nav-icon-a": 59827, "nav-icon-grid-a": 59828, "nav-icon-grid": 59829, "nav-icon-list-a": 59830, "nav-icon-list": 59831, "nav-icon": 59832, "navigate": 59833, "paper-plane": 59834, "person": 59835, "persons": 59836, "picture": 59837, "plus-a": 59838, "print": 59839, "quote-a-left": 59840, "quote-a-right": 59841, "quote-left": 59842, "quote-right": 59843, "reply": 59844, "rss": 59845, "scissors": 59846, "share-a": 59847, "share": 59848, "trash": 59849, "unlocked": 59850, "usb": 59851, "wifi": 59852, "world-o": 59853, "world": 59854, "zoom": 59855, "adjust": 60015, "recycle": 60016, "pinboard": 60093, "zoom-minus": 60082, "zoom-plus": 60083, "check": 60084, "asterisk": 60085, "hashtag": 60086, "checkbox-active": 59778, "checkbox-passive": 59779, "radio-btn-active": 59780, "radio-btn-passive": 59781, "shopping-bag-1": 60011, "shopping-bag": 60012, "shopping-barcode": 60017, "shopping-basket-add": 60018, "shopping-basket-remove": 60019, "shopping-basket": 60020, "shopping-package": 60021, "shopping-pos-machine": 60022, "shopping-sale": 60023, "shopping-store": 60024, "angle-dobule-down": 59748, "angle-dobule-left": 59749, "angle-dobule-right": 59750, "angle-dobule-up": 59751, "angle-down": 59752, "angle-left": 59753, "angle-right": 59754, "angle-up": 59755, "arrow-down-l": 59756, "arrow-down": 59757, "arrow-expand": 59758, "arrow-h": 59759, "arrow-left-l": 59760, "arrow-left": 59761, "arrow-move": 59762, "arrow-resize": 59763, "arrow-return-left": 59764, "arrow-return-right": 59765, "arrow-right-l": 59766, "arrow-right": 59767, "arrow-swap": 59768, "arrow-up-l": 59769, "arrow-up": 59770, "arrow-v": 59771, "caret-down": 59772, "caret-left": 59773, "caret-right": 59774, "caret-up": 59775, "fi": 59776, "fontisto": 59777, "backward": 59866, "eject": 59867, "equalizer": 59868, "forward": 59869, "headphone": 59870, "heart": 59871, "mic": 59872, "music-note": 59873, "pause": 59874, "play-list": 59875, "play": 59876, "player-settings": 59877, "podcast": 59878, "random": 59879, "record": 59880, "star": 59881, "step-backwrad": 59882, "step-forward": 59883, "stop": 59884, "volume-down": 59885, "volume-mute": 59886, "volume-off": 59887, "volume-up": 59888, "airplay": 60008, "bold": 59918, "broken-link": 59919, "center-align": 59920, "close": 59921, "columns": 59922, "copy": 59923, "eraser": 59924, "export": 59925, "file-1": 59926, "file-2": 59927, "folder": 59928, "font": 59929, "import": 59930, "indent": 59931, "italic": 59932, "justify": 59933, "left-align": 59934, "link2": 59935, "list-1": 59936, "list-2": 59937, "outdent": 59938, "paperclip": 59939, "paragraph": 59940, "paste": 59941, "preview": 59942, "print2": 59943, "redo": 59944, "right-align": 59945, "save-1": 59946, "save": 59947, "scissors2": 59948, "strikethrough": 59949, "subscript": 59950, "superscript": 59951, "table-1": 59952, "table-2": 59953, "text-height": 59954, "text-width": 59955, "underline": 59956, "undo": 59957, "cloud-down": 59958, "cloud-refresh": 59959, "cloud-up": 59960, "cloudy-gusts": 59961, "cloudy": 59962, "compass": 59963, "day-cloudy": 59964, "day-haze": 59965, "day-lightning": 59966, "day-rain": 59967, "day-snow": 59968, "day-sunny": 59969, "fog": 59970, "horizon-alt": 59971, "horizon": 59972, "lightning": 59973, "lightnings": 59974, "night-alt-cloudy": 59975, "night-alt-lightning": 59976, "night-alt-rain": 59977, "night-alt-snow": 59978, "night-clear": 59979, "rain": 59980, "rainbow": 59981, "rains": 59982, "snow": 59983, "snows": 59984, "thermometer": 59985, "umbrella": 59986, "wind": 59987, "confused": 59988, "dizzy": 59989, "expressionless": 59990, "frowning": 59991, "heart-eyes": 59992, "laughing": 59993, "mad": 59994, "nervous": 59995, "neutral": 59996, "open-mouth": 59997, "rage": 59998, "slightly-smile": 59999, "smiley": 60000, "smiling": 60001, "stuck-out-tongue": 60002, "sunglasses": 60003, "surprised": 60004, "tongue": 60005, "wink": 60006, "zipper-mouth": 60007, "aids": 60233, "ambulance": 60234, "bandage": 60235, "bed-patient": 60236, "blood-drop": 60237, "blood-test": 60238, "blood": 60239, "dna": 60240, "doctor": 60241, "drug-pack": 60242, "first-aid-alt": 60243, "heart-alt": 60244, "heartbeat-alt": 60245, "heartbeat": 60246, "helicopter-ambulance": 60247, "hospital": 60248, "injection-syringe": 60249, "laboratory": 60250, "nurse": 60251, "nursing-home": 60252, "paralysis-disability": 60253, "pills": 60254, "prescription": 60255, "pulse": 60256, "stethoscope": 60257, "surgical-knife": 60258, "tablets": 60259, "test-bottle": 60260, "test-tube-alt": 60261, "test-tube": 60262, "thermometer-alt": 60263, "american-express": 59856, "credit-card": 59857, "google-wallet": 59858, "iyzigo": 59859, "mastercard": 59860, "paypal-p": 59861, "paypal": 59862, "payu": 59863, "troy": 59864, "visa": 59865, "dinners-club": 60010, "apple-pay": 60009, "discover": 60013, "jcb": 60014, "dislike": 59796, "like": 59797, "audio-description": 59648, "blind": 59649, "braille": 59650, "deaf": 59651, "fa-american-sign-language-interpreting": 59652, "low-vision": 59654, "tty": 59655, "universal-acces": 59656, "wheelchair": 59657, "area-chart": 59732, "bar-chart": 59733, "line-chart": 59734, "pie-chart-1": 59735, "pie-chart-2": 59736, "chrome": 59726, "edge": 59727, "firefox": 59728, "internet-explorer": 59729, "opera": 59730, "safari": 59731, "bitcoin": 59737, "dollar": 59738, "euro": 59739, "gbp": 59740, "gg": 59741, "ils": 59742, "inr": 59743, "krw": 59744, "rouble": 59745, "tl": 59746, "yen": 59747, "genderless": 59782, "intersex": 59783, "mars-double": 59784, "mars-stroke-h": 59785, "mars-stroke-v": 59786, "mars-stroke": 59787, "mars": 59788, "mercury": 59789, "neuter": 59790, "transgender-alt": 59791, "transgender": 59792, "venus-double": 59793, "venus-mars": 59794, "venus": 59795, "automobile": 59899, "bicycle": 59900, "bus": 59901, "car": 59902, "helicopter": 59903, "metro": 59904, "motorcycle": 59905, "plane": 59906, "rocket": 59907, "ship": 59908, "subway": 59909, "taxi": 59910, "train": 59911, "truck": 59912, "yacht": 59913, "beach-slipper": 60203, "bus-ticket": 60204, "cocktail": 60205, "compass-alt": 60206, "direction-sign": 60207, "do-not-disturb": 60208, "flotation-ring": 60209, "holiday-village": 60210, "hot-air-balloon": 60211, "hotel-alt": 60212, "hotel": 60213, "island": 60214, "money-symbol": 60215, "parasol": 60216, "passport-alt": 60217, "passport": 60218, "photograph": 60219, "plane-ticket": 60220, "room": 60221, "sait-boat": 60222, "snorkel": 60223, "suitcase-alt": 60224, "suitcase": 60225, "sun": 60226, "sunglasses-alt": 60227, "swimsuit": 60228, "tent": 60229, "ticket-alt": 60230, "train-ticket": 60231, "wallet": 60232, "circle-o-notch": 59889, "propeller-1": 59890, "propeller-2": 59891, "propeller-3": 59892, "propeller-4": 59893, "spinner-cog": 59894, "spinner-fidget": 59895, "spinner-refresh": 59896, "spinner-rotate-forward": 59897, "spinner": 59898, "snowflake": 60081, "snowflake-1": 60073, "snowflake-2": 60074, "snowflake-3": 60075, "snowflake-4": 60076, "snowflake-5": 60077, "snowflake-6": 60078, "snowflake-7": 60079, "snowflake-8": 60080, "curve": 59915, "ellipse": 59916, "rectangle": 59917, "shield": 59914 } ================================================ FILE: packages/fontisto/package.json ================================================ { "name": "@react-native-vector-icons/fontisto", "version": "12.5.0", "description": "Fontisto font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "fontisto" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/fontisto" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "fontisto": "3.0.4" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/fontisto/react-native-vector-icons-fontisto.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-fontisto' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/fontisto/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Fontisto icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Fontisto.json'; export const Fontisto = createIconSet(glyphMap, { postScriptName: 'fontisto', fontFileName: 'Fontisto.ttf', fontSource: require('../fonts/Fontisto.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type FontistoIconName = keyof typeof glyphMap; /** @alias */ export default Fontisto; ================================================ FILE: packages/fontisto/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Fontisto icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Fontisto.json'; export const Fontisto = createIconSet(glyphMap, { postScriptName: 'fontisto', fontFileName: 'Fontisto.ttf', }); export type FontistoIconName = keyof typeof glyphMap; /** @alias */ export default Fontisto; ================================================ FILE: packages/fontisto/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/fontisto/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/foundation/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "foundation", "postScriptName": "fontcustom", "upstreamFont": "foundation-icons", "buildSteps": { "glyphmap": { "location": "../../node_modules/foundation-icons/foundation-icons.css", "mode": "css", "prefix": ".fi-" }, "copyFont": { "location": "../../node_modules/foundation-icons/foundation-icons.ttf" } }, "versions": [ { "rnvi": "12.0.0", "upstream": "2.0.0" } ] } } ================================================ FILE: packages/foundation/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/foundation/README.md ================================================ # React Native Vector Icons - Foundation Foundation font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/foundation ``` ## Usage ```jsx import { Foundation } from '@react-native-vector-icons/foundation'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 2.0.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/foundation/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.foundation" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsFoundation" codegenJavaPackageName = "com.reactnativevectoricons.foundation" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-foundation") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-foundation/fonts" eachFile { println "(RNVI:foundation) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/foundation/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/foundation/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/foundation/android/src/main/java/VectorIconsFoundationPackage.kt ================================================ package com.reactnativevectoricons.foundation import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsFoundationPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/foundation/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/foundation/glyphmaps/Foundation.json ================================================ { "address-book": 61696, "alert": 61697, "align-center": 61698, "align-justify": 61699, "align-left": 61700, "align-right": 61701, "anchor": 61702, "annotate": 61703, "archive": 61704, "arrow-down": 61705, "arrow-left": 61706, "arrow-right": 61707, "arrow-up": 61708, "arrows-compress": 61709, "arrows-expand": 61710, "arrows-in": 61711, "arrows-out": 61712, "asl": 61713, "asterisk": 61714, "at-sign": 61715, "background-color": 61716, "battery-empty": 61717, "battery-full": 61718, "battery-half": 61719, "bitcoin-circle": 61720, "bitcoin": 61721, "blind": 61722, "bluetooth": 61723, "bold": 61724, "book-bookmark": 61725, "book": 61726, "bookmark": 61727, "braille": 61728, "burst-new": 61729, "burst-sale": 61730, "burst": 61731, "calendar": 61732, "camera": 61733, "check": 61734, "checkbox": 61735, "clipboard-notes": 61736, "clipboard-pencil": 61737, "clipboard": 61738, "clock": 61739, "closed-caption": 61740, "cloud": 61741, "comment-minus": 61742, "comment-quotes": 61743, "comment-video": 61744, "comment": 61745, "comments": 61746, "compass": 61747, "contrast": 61748, "credit-card": 61749, "crop": 61750, "crown": 61751, "css3": 61752, "database": 61753, "die-five": 61754, "die-four": 61755, "die-one": 61756, "die-six": 61757, "die-three": 61758, "die-two": 61759, "dislike": 61760, "dollar-bill": 61761, "dollar": 61762, "download": 61763, "eject": 61764, "elevator": 61765, "euro": 61766, "eye": 61767, "fast-forward": 61768, "female-symbol": 61769, "female": 61770, "filter": 61771, "first-aid": 61772, "flag": 61773, "folder-add": 61774, "folder-lock": 61775, "folder": 61776, "foot": 61777, "foundation": 61778, "graph-bar": 61779, "graph-horizontal": 61780, "graph-pie": 61781, "graph-trend": 61782, "guide-dog": 61783, "hearing-aid": 61784, "heart": 61785, "home": 61786, "html5": 61787, "indent-less": 61788, "indent-more": 61789, "info": 61790, "italic": 61791, "key": 61792, "laptop": 61793, "layout": 61794, "lightbulb": 61795, "like": 61796, "link": 61797, "list-bullet": 61798, "list-number": 61799, "list-thumbnails": 61800, "list": 61801, "lock": 61802, "loop": 61803, "magnifying-glass": 61804, "mail": 61805, "male-female": 61806, "male-symbol": 61807, "male": 61808, "map": 61809, "marker": 61810, "megaphone": 61811, "microphone": 61812, "minus-circle": 61813, "minus": 61814, "mobile-signal": 61815, "mobile": 61816, "monitor": 61817, "mountains": 61818, "music": 61819, "next": 61820, "no-dogs": 61821, "no-smoking": 61822, "page-add": 61823, "page-copy": 61824, "page-csv": 61825, "page-delete": 61826, "page-doc": 61827, "page-edit": 61828, "page-export-csv": 61829, "page-export-doc": 61830, "page-export-pdf": 61831, "page-export": 61832, "page-filled": 61833, "page-multiple": 61834, "page-pdf": 61835, "page-remove": 61836, "page-search": 61837, "page": 61838, "paint-bucket": 61839, "paperclip": 61840, "pause": 61841, "paw": 61842, "paypal": 61843, "pencil": 61844, "photo": 61845, "play-circle": 61846, "play-video": 61847, "play": 61848, "plus": 61849, "pound": 61850, "power": 61851, "previous": 61852, "price-tag": 61853, "pricetag-multiple": 61854, "print": 61855, "prohibited": 61856, "projection-screen": 61857, "puzzle": 61858, "quote": 61859, "record": 61860, "refresh": 61861, "results-demographics": 61862, "results": 61863, "rewind-ten": 61864, "rewind": 61865, "rss": 61866, "safety-cone": 61867, "save": 61868, "share": 61869, "sheriff-badge": 61870, "shield": 61871, "shopping-bag": 61872, "shopping-cart": 61873, "shuffle": 61874, "skull": 61875, "social-500px": 61876, "social-adobe": 61877, "social-amazon": 61878, "social-android": 61879, "social-apple": 61880, "social-behance": 61881, "social-bing": 61882, "social-blogger": 61883, "social-delicious": 61884, "social-designer-news": 61885, "social-deviant-art": 61886, "social-digg": 61887, "social-dribbble": 61888, "social-drive": 61889, "social-dropbox": 61890, "social-evernote": 61891, "social-facebook": 61892, "social-flickr": 61893, "social-forrst": 61894, "social-foursquare": 61895, "social-game-center": 61896, "social-github": 61897, "social-google-plus": 61898, "social-hacker-news": 61899, "social-hi5": 61900, "social-instagram": 61901, "social-joomla": 61902, "social-lastfm": 61903, "social-linkedin": 61904, "social-medium": 61905, "social-myspace": 61906, "social-orkut": 61907, "social-path": 61908, "social-picasa": 61909, "social-pinterest": 61910, "social-rdio": 61911, "social-reddit": 61912, "social-skillshare": 61913, "social-skype": 61914, "social-smashing-mag": 61915, "social-snapchat": 61916, "social-spotify": 61917, "social-squidoo": 61918, "social-stack-overflow": 61919, "social-steam": 61920, "social-stumbleupon": 61921, "social-treehouse": 61922, "social-tumblr": 61923, "social-twitter": 61924, "social-vimeo": 61925, "social-windows": 61926, "social-xbox": 61927, "social-yahoo": 61928, "social-yelp": 61929, "social-youtube": 61930, "social-zerply": 61931, "social-zurb": 61932, "sound": 61933, "star": 61934, "stop": 61935, "strikethrough": 61936, "subscript": 61937, "superscript": 61938, "tablet-landscape": 61939, "tablet-portrait": 61940, "target-two": 61941, "target": 61942, "telephone-accessible": 61943, "telephone": 61944, "text-color": 61945, "thumbnails": 61946, "ticket": 61947, "torso-business": 61948, "torso-female": 61949, "torso": 61950, "torsos-all-female": 61951, "torsos-all": 61952, "torsos-female-male": 61953, "torsos-male-female": 61954, "torsos": 61955, "trash": 61956, "trees": 61957, "trophy": 61958, "underline": 61959, "universal-access": 61960, "unlink": 61961, "unlock": 61962, "upload-cloud": 61963, "upload": 61964, "usb": 61965, "video": 61966, "volume-none": 61967, "volume-strike": 61968, "volume": 61969, "web": 61970, "wheelchair": 61971, "widget": 61972, "wrench": 61973, "x-circle": 61974, "x": 61975, "yen": 61976, "zoom-in": 61977, "zoom-out": 61978 } ================================================ FILE: packages/foundation/package.json ================================================ { "name": "@react-native-vector-icons/foundation", "version": "12.5.0", "description": "Foundation font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "foundation" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/foundation" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "foundation-icons": "2.0.0" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/foundation/react-native-vector-icons-foundation.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-foundation' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/foundation/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Foundation icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Foundation.json'; export const Foundation = createIconSet(glyphMap, { postScriptName: 'fontcustom', fontFileName: 'Foundation.ttf', fontSource: require('../fonts/Foundation.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type FoundationIconName = keyof typeof glyphMap; /** @alias */ export default Foundation; ================================================ FILE: packages/foundation/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Foundation icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Foundation.json'; export const Foundation = createIconSet(glyphMap, { postScriptName: 'fontcustom', fontFileName: 'Foundation.ttf', }); export type FoundationIconName = keyof typeof glyphMap; /** @alias */ export default Foundation; ================================================ FILE: packages/foundation/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/foundation/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/generator-react-native-vector-icons/.gitignore ================================================ generators /tsconfig.tsbuildinfo ================================================ FILE: packages/generator-react-native-vector-icons/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🩹 Fixes - upgrade Octicons to 19.15.3 ([#1795](https://github.com/oblador/react-native-vector-icons/pull/1795)) ### ❤️ Thank You - John Ferlito @johnf ## 12.0.3 (2025-06-15) ### 🩹 Fixes - update generator to fix the sign on the version tables ([#1775](https://github.com/oblador/react-native-vector-icons/pull/1775)) ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/generator-react-native-vector-icons/README.md ================================================ # generator-react-native-vector-icons This package can generate individual icon packages. Usage: 1. Run `pnpm run watch-tsc` in this package to trigger a build to create the generator. 2. Run `pnpm run watch-deps` in this package to create the generator. 3. Run `pnpm run generate` from the root of the repository to generate the individual icon packages. ================================================ FILE: packages/generator-react-native-vector-icons/package.json ================================================ { "name": "generator-react-native-vector-icons", "version": "12.5.0", "description": "Generates React Native vector icons font library", "type": "module", "files": [ "generators" ], "main": "generators/index.js", "keywords": [ "react-native-vector-icons", "yeoman-generator" ], "dependencies": { "mem-fs": "^4.1.2", "npm-registry-fetch": "^18.0.2", "oslllo-svg-fixer": "^5.0.0", "postcss": "^8.4.49", "postcss-selector-parser": "^7.0.0", "registry-auth-token": "^5.0.3", "semver": "^7.6.3", "yeoman-generator": "^7.4.0" }, "devDependencies": { "@types/npm-registry-fetch": "^8.0.7", "@types/semver": "^7.5.8", "@yeoman/types": "^1.5.0", "copyfiles": "^2.4.1", "onchange": "^7.1.0", "typescript": "^5.7.2" }, "scripts": { "prepare": "npm run clean && tsc && npm run copydeps", "copydeps": "copyfiles --up 1 'src/*/templates/**' 'src/*/fontforge/**' generators", "lint": "eslint ./src --ext .js,.ts", "clean": "rm -rf ./generators", "watch": "npm run watch-tsc --silent & npm run watch-deps --silent", "watch-deps": "onchange 'src/*/templates/**' 'src/*/fontforge/**' --initial -- pnpm run copydeps", "watch-tsc": "tsc -w" }, "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/generator-react-native-vector-icons" }, "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" } } ================================================ FILE: packages/generator-react-native-vector-icons/src/app/fontforge/correct-direction.py ================================================ import fontforge font_path = sys.argv[1] font = fontforge.open(font_path) # Iterate through all glyphs in the font for glyph in font.glyphs(): glyph.correctDirection() font.generate(font_path) print(f'Fixed direction on all glyphs and saved to {font_path}') ================================================ FILE: packages/generator-react-native-vector-icons/src/app/generateGlyphmap.ts ================================================ import fs from 'node:fs'; import postcss from 'postcss'; import parser from 'postcss-selector-parser'; const extractGlyphMapFromCodepoints = (fileName: string) => { const codepoints = fs.readFileSync(fileName, { encoding: 'utf8' }).split('\n'); const glyphMap: Record = {}; codepoints.forEach((point) => { const parts = point.split(' '); if (parts[0] && parts[1]) { glyphMap[parts[0].replace(/_/g, '-')] = Number.parseInt(parts[1], 16); } }); return glyphMap; }; const extractGlyphMapFromCss = (fileName: string, selectorPrefix: string) => { const css = fs.readFileSync(fileName, 'utf-8'); const glyphMap: Record = {}; const selectorPattern = `${escapeRegExp(selectorPrefix)}([A-Za-z0-9_-]+)::?before`; postcss.parse(css).walkRules((rule) => { const iconNames: string[] = []; const transform = (selectors: parser.Root) => { selectors.walk((selector) => { const md = selector.toString().match(selectorPattern); if (md?.[1]) { iconNames.push(md[1]); } }); }; parser(transform).processSync(rule.selector); const contents: string[] = []; rule.walkDecls('content', (decl) => { const content = decl.value.replace(/['"]/g, ''); // Remove quotes contents.push(content); }); const content = contents[0]; if (!content || content === 'var(--fa)') { return; } const codePoint = Number.parseInt(content.slice(1), 16); iconNames.forEach((iconName) => { glyphMap[iconName] = codePoint; }); }); // TODO: Quick hack for fontawesome - refactor this to be more general const selectorPatternFA = `${escapeRegExp(selectorPrefix)}([A-Za-z0-9_-]+)$`; postcss.parse(css).walkRules((rule) => { const iconNames: string[] = []; const transform = (selectors: parser.Root) => { selectors.walk((selector) => { const md = selector.toString().match(selectorPatternFA); if (md?.[1]) { iconNames.push(md[1]); } }); }; parser(transform).processSync(rule.selector); const contents: string[] = []; rule.walkDecls('--fa', (decl) => { const content = decl.value.replace(/^['"]/g, '').replace(/['"]$/g, ''); // Remove quotes if (content.length === 2 && content[0] === '\\') { contents.push(content.at(1) || ''); } else { contents.push(content); } }); const content = contents[0]; if (!content) { return; } let codePoint = Number.parseInt(content.slice(1), 16); if (Number.isNaN(codePoint)) { codePoint = content.codePointAt(0) || 0; } iconNames.forEach((iconName) => { glyphMap[iconName] = codePoint; }); }); return glyphMap; }; const escapeRegExp = (str: string) => str.replace(/[-[\]/{}()*+?.\\^$|]/g, '\\$&'); export const generateGlyphmap = (mode: 'css' | 'codepoints', fileName: string, selectorPrefix = '.icon-') => { if (!fileName) { throw new Error('No files provided'); } const glyphMap = mode === 'css' ? extractGlyphMapFromCss(fileName, selectorPrefix) : extractGlyphMapFromCodepoints(fileName); return JSON.stringify(glyphMap, null, ' '); }; ================================================ FILE: packages/generator-react-native-vector-icons/src/app/index.ts ================================================ /* eslint-disable no-underscore-dangle,import/no-unresolved */ import fs from 'node:fs'; import os from 'node:os'; import path from 'node:path'; import npmFetch from 'npm-registry-fetch'; import getAuthToken from 'registry-auth-token'; import semver from 'semver'; import Generator, { type BaseOptions } from 'yeoman-generator'; import { generateGlyphmap } from './generateGlyphmap.js'; interface Data { name: string; packageName: string; className: string; postScriptName: string; fontFileName: string; androidName: string; dependencies: Record; upstreamFont?: string | { registry?: string; packageName: string; versionRange: string; versionOnly?: boolean }; packageJSON?: Record>; versionSuffix?: string; customReadme?: boolean; customSrc?: string | boolean; copyCustomFonts?: boolean; source: string; customAssets?: boolean; commonPackage?: string; noGlyphmap?: boolean; extraExports: string; meta: Record; buildSteps: { preScript?: { script: string; }; renameSVGs?: { location: string; keepPostfix?: string; }; fixSVGPaths?: { location: string; cleanup?: boolean; }; fontCustom?: { location: string; cleanup?: boolean; }; glyphmap?: { mode: 'css' | 'codepoints'; location: string | [string, string][]; prefix?: string; cleanup?: boolean; }; copyFont?: { location: string | [string, string][]; }; fontforgeScript?: { script: string; }; postScript?: { script: string; }; }; versions?: { rnvi: string; upstream: string }[]; versionTable?: string; } const { uid, gid } = os.userInfo(); type Arguments = BaseOptions & { currentVersion: string; }; export default class extends Generator { data: Data; constructor(args: string | string[], opts: Arguments) { super(args, opts, { customInstallTask: true }); this.option('current-version', { type: String, description: 'Current package version' }); this.data = this._data(); } async writing() { const upstreamVersion = await this._resolveUpstreamVersion(); if (upstreamVersion) { this._updateVersionTracking(upstreamVersion); } this._writeTemplates(); await this._fixPackageVersion(); await this._addFontDependencies(upstreamVersion); await this._addDependencies(); } async install() { if (this.options.skipInstall) { return; } this.spawnSync('pnpm', ['install', '--filter', '.', '--ignore-scripts']); } end() { this._buildSteps(); } _docker(image: string, args: string[], options: string[] = []) { const { exitCode } = this.spawnSync( 'docker', [ 'run', '--rm', `--volume=${process.cwd()}:/usr/src/app`, `--volume=${process.cwd()}/../../node_modules:/usr/src/app/node_modules`, `--user=${uid}:${gid}`, '--env=SOURCE_DATE_EPOCH=1702622477', // TODO: Should we use something more sensible as the date for the fonts ...options, image, ...args, ], { stdio: 'inherit' }, ); if (exitCode !== 0) { throw new Error(`${image} exited with exitCode ${exitCode}`); } } _writeTemplates() { const { data } = this; const files: Array = [ 'package.json', 'tsconfig.json', 'tsconfig.build.json', 'babel.config.js', 'android/build.gradle', 'android/src/main/AndroidManifestNew.xml', 'android/src/main/AndroidManifest.xml', ]; files.push(['android/src/main/java/Package.kt', `android/src/main/java/VectorIcons${data.className}Package.kt`]); files.push(['font.podspec', `react-native-vector-icons-${data.packageName}.podspec`]); if (data.customSrc === true) { // Do nothing } else if (data.customSrc) { files.push([data.customSrc, data.customSrc.endsWith('.tsx') ? 'src/index.tsx' : 'src/index.ts']); } else { files.push('src/index.ts'); files.push('src/static.ts'); } if (!data.customReadme) { files.push('README.md'); } files.forEach((file) => { if (typeof file === 'string') { this.fs.copyTpl(this.templatePath(file), this.destinationPath(file), data); } else { const [from, to] = file; this.fs.copyTpl(this.templatePath(from), this.destinationPath(to), data); } }); // Render static version of customSrc (same template, no fontSource requires) if (data.customSrc && data.customSrc !== true) { const staticDest = data.customSrc.endsWith('.tsx') ? 'src/static.tsx' : 'src/static.ts'; this.fs.copyTpl(this.templatePath(data.customSrc), this.destinationPath(staticDest), { ...data, isStatic: true }); } } async _fixPackageVersion() { this.fs.extendJSON(this.destinationPath('package.json'), { version: this.options.currentVersion }); } async _resolveUpstreamVersion(): Promise { const { data } = this; if (!data.upstreamFont) { return undefined; } if (typeof data.upstreamFont === 'string') { const packageInfo = (await npmFetch.json(`https://registry.npmjs.org/${data.upstreamFont}/latest`)) as { version: string; }; return packageInfo.version; } const registry = data.upstreamFont.registry ?? 'https://registry.npmjs.org'; const versionRange = data.upstreamFont.versionRange || '*'; const authToken = getAuthToken(registry.replace(/^https?:/, '')); const packageInfo = await npmFetch.json(`${registry}/${data.upstreamFont.packageName}`, { forceAuth: { _authToken: authToken?.token }, }); const versions = Object.keys(packageInfo.versions as string[]); const resolvedVersion = semver.maxSatisfying(versions, versionRange); if (!resolvedVersion) { throw new Error(`Invalid upstreamFont ${data.upstreamFont.packageName}: no matching version`); } return resolvedVersion; } _updateVersionTracking(upstreamVersion: string) { const { currentVersion } = this.options; let { versions } = this.data; if (!versions || versions.length === 0) { versions = [{ rnvi: currentVersion, upstream: upstreamVersion }]; } else { const lastIndex = versions.length - 1; const version = versions[lastIndex]; if (!version) { throw new Error('Invalid versions data: empty version entry'); } if (version.upstream !== upstreamVersion) { if (version.rnvi === currentVersion) { version.upstream = upstreamVersion; } else { versions.push({ rnvi: currentVersion, upstream: upstreamVersion }); } } } this.config.set('versions', versions); this.data.versions = versions; const versionTable: string[] = []; versions.forEach((version) => { versionTable.push(`| > ${version.rnvi} | ${version.upstream} |`); }); this.data.versionTable = versionTable.join('\n'); } async _addFontDependencies(resolvedVersion?: string) { const { data } = this; if (!data.upstreamFont || !resolvedVersion) { return; } if (typeof data.upstreamFont === 'object' && data.upstreamFont.versionOnly) { return; } const packageName = typeof data.upstreamFont === 'string' ? data.upstreamFont : data.upstreamFont.packageName; await this.addDevDependencies({ [packageName]: resolvedVersion }); } async _addDependencies() { const { data } = this; if (!data.dependencies) { return; } Object.entries(data.dependencies).forEach(async ([depName, depVersion]) => { await this.addDependencies({ [depName]: depVersion as string }); }); } _buildSteps() { this._preScript(); this._renameSVGs(); this._fixSVGPaths(); this._buildFontCustom(); this._buildGlyphmap(); this._copyFont(); this._fontForgeScript(); this._postScript(); } _preScript() { const { preScript } = this.data.buildSteps; if (!preScript) { return; } const { exitCode } = this.spawnSync('bash', ['-c', preScript.script], { stdio: 'inherit' }); if (exitCode !== 0) { throw new Error(`preScript exited with exitCode ${exitCode}`); } } _renameSVGs() { const { renameSVGs } = this.data.buildSteps; if (!renameSVGs) { return; } const { keepPostfix, location } = renameSVGs; fs.mkdirSync('renamedSVGs'); if (keepPostfix) { const files = fs.readdirSync(location); files.forEach((file) => { if (file.endsWith(`${keepPostfix}.svg`)) { // Delete files that do not end with -16.svg fs.copyFileSync(path.join(location, file), path.join('renamedSVGs', file.replace(keepPostfix, ''))); } }); } } _fixSVGPaths() { const { fixSVGPaths } = this.data.buildSteps; if (!fixSVGPaths) { return; } fs.mkdirSync('fixedSvg'); const location = fixSVGPaths.cleanup ? 'renamedSVGs' : fixSVGPaths.location; const { exitCode } = this.spawnSync( '../../node_modules/.bin/oslllo-svg-fixer', ['-s', location, '-d', 'fixedSvg'], { stdio: 'inherit' }, ); if (exitCode !== 0) { throw new Error(`oslllo-svg-fixer exited with exitCode ${exitCode}`); } if (fixSVGPaths.cleanup) { fs.rmSync('renamedSVgs', { recursive: true }); } } _buildFontCustom() { const { data } = this; const { fontCustom } = this.data.buildSteps; if (!fontCustom) { return; } const args = [ 'compile', fontCustom.location, '--templates', 'css', '--name', data.className, '--force', '--no-hash', ]; this._docker('johnf/fontcustom', args); if (!fs.existsSync('fonts')) { fs.mkdirSync('fonts'); } fs.renameSync(`${data.className}/${data.className}.ttf`, `fonts/${data.className}.ttf`); fs.renameSync(`${data.className}/${data.className}.css`, `${data.className}.css`); fs.rmSync(data.className, { recursive: true }); if (fontCustom.cleanup) { fs.rmSync(fontCustom.location, { recursive: true }); } } _fontForgeScript() { const { data } = this; const { fontforgeScript } = this.data.buildSteps; if (!fontforgeScript) { return; } const options = [ '--entrypoint=/usr/local/bin/fontforge', `--volume=${process.cwd()}/../../node_modules/generator-react-native-vector-icons/generators/app/fontforge/${fontforgeScript.script}:/script.py`, ]; const args = ['-script', '/script.py', `fonts/${data.className}.ttf`]; this._docker('johnf/fontcustom', args, options); } _buildGlyphmap() { const { data } = this; const { glyphmap } = this.data.buildSteps; if (!glyphmap) { return; } let locations: [string, string][] = []; if (!glyphmap.location) { locations.push([`${data.className}.css`, data.fontFileName]); } else if (typeof glyphmap.location === 'string') { locations.push([glyphmap.location, data.className]); } else { locations = glyphmap.location; } if (!fs.existsSync('glyphmaps')) { fs.mkdirSync('glyphmaps'); } locations.forEach(([from, to]) => { const json = generateGlyphmap(glyphmap.mode, from, glyphmap.prefix); fs.writeFileSync(`glyphmaps/${to}.json`, json); if (glyphmap.cleanup) { fs.rmSync(from); } }); } _copyFont() { const { data } = this; const { copyFont } = this.data.buildSteps; if (!copyFont) { return; } if (!fs.existsSync('fonts')) { fs.mkdirSync('fonts'); } let locations: [string, string][] = []; if (typeof copyFont.location === 'string') { locations.push([copyFont.location, data.fontFileName]); } else { locations = copyFont.location; } locations.forEach(([from, to]) => { if (from.endsWith('.ttf')) { fs.cpSync(from, `fonts/${to}.ttf`); return; } if (from.endsWith('.woff2')) { const { exitCode } = this.spawnSync('woff2_decompress', [from], { stdio: 'inherit' }); if (exitCode !== 0) { throw new Error(`woff2_decompress exited with exitCode ${exitCode}`); } fs.renameSync(from.replace(/\.woff2$/, '.ttf'), `fonts/${to}.ttf`); return; } throw new Error(`Unsupported font format: ${from}`); }); } _postScript() { const { postScript } = this.data.buildSteps; if (!postScript) { return; } const { exitCode } = this.spawnSync('bash', ['-c', postScript.script], { stdio: 'inherit' }); if (exitCode !== 0) { throw new Error(`postScript exited with exitCode ${exitCode}`); } } _data() { // TODO: Use zod to vaidate the .yo-rc.json data const data = this.config.getAll() as unknown as Data; // ant-design if (!data.packageName) { throw new Error('packageName is required'); } // Ant Design data.name ||= data.packageName .split('-') .map((x) => x.charAt(0).toUpperCase() + x.slice(1)) .join(' '); // AntDesign data.className ||= data.packageName .split('-') .map((x) => x.charAt(0).toUpperCase() + x.slice(1)) .join(''); // AntDesign data.postScriptName ||= data.className; data.fontFileName ||= data.className; // ant_design data.androidName = data.packageName.replaceAll('-', '_'); data.buildSteps ||= {}; data.customReadme ||= false; data.customAssets ||= false; data.copyCustomFonts ||= false; data.commonPackage ||= 'common'; data.source = './src/index.ts'; if (typeof data.customSrc === 'string') { data.source = data.customSrc.endsWith('.tsx') ? './src/index.tsx' : './src/index.ts'; } if (data.versions) { const versionTable: string[] = []; data.versions.forEach((version) => { versionTable.push(`| > ${version.rnvi} | ${version.upstream} |`); }); data.versionTable = versionTable.join('\n'); } const extraExports = []; if (!data.noGlyphmap) { extraExports.push('"./glyphmaps/*.json": "./glyphmaps/*.json"'); } if (!data.copyCustomFonts) { extraExports.push('"./fonts/*.ttf": "./fonts/*.ttf"'); } data.extraExports = extraExports.length === 0 ? '' : `,\n ${extraExports.join(',\n ')}`; return data; } } ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/README.md ================================================ # React Native Vector Icons - <%= name %> <%= name %> font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. <% if (copyCustomFonts) { -%> > [!IMPORTANT] > This package does not include the fonts. You must provide them yourself. <% } -%> ## Installation ```sh npm install @react-native-vector-icons/<%= packageName %> ``` <% if (copyCustomFonts) { -%> ## Custom Fonts This package requires you to provide the font files. Place your `.ttf` font file in the following location: ``` rnvi-fonts/<%= packageName %>/<%= fontFileName %>.ttf ``` The font will be automatically copied during the build process for both iOS and Android. <% } -%> ## Usage ```jsx import { <%= className %> } from '@react-native-vector-icons/<%= packageName %>'; // ... <<%= className %> name="house" color="#ff0000" size={20} /> ``` <% if (versionTable) { -%> ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | <%= versionTable %> <% } -%> ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.<%= androidName %>" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIcons<%= className %>" codegenJavaPackageName = "com.reactnativevectoricons.<%= androidName %>" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-<%= packageName %>") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-<%= packageName %>/fonts" eachFile { println "(RNVI:<%= packageName %>) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) <% if (copyCustomFonts) { -%> task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/<%= packageName %>" include "*.ttf" into "${buildDir}/intermediates/RNVI-<%= packageName %>/fonts" eachFile { println "(RNVI:<%= packageName %>) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) <% } -%> ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/android/src/main/java/Package.kt ================================================ package com.reactnativevectoricons.<%= androidName %> import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIcons<%= className %>Package : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/font.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-<%= packageName %>' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' <% if (copyCustomFonts) { -%> s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-<%= packageName %>)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/<%= packageName %>" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } <% } -%> end ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/package.json ================================================ { "name": "@react-native-vector-icons/<%= packageName %>", "version": "0.0.1-alpha.1", "description": "<%= name %> font for react native vector icons", "source": "<%= source %>", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }<% if (customSrc !== true) { -%>, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }<% } -%><%- extraExports -%> }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "<%= packageName %>" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/<%= packageName %>" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * <%= className %> icon set component. * Usage: <<%= className %> name="icon-name" size={20} color="#4F8EF7" /> */ import { createIconSet } from '@react-native-vector-icons/<%= commonPackage %>'; import glyphMap from '../glyphmaps/<%= className %>.json'; export const <%= className %> = createIconSet(glyphMap, { postScriptName: '<%= postScriptName %>', fontFileName: '<%= fontFileName %>.ttf', <% if (!copyCustomFonts) { -%> fontSource: require('../fonts/<%= fontFileName %>.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require <% } -%> }); export type <%= className %>IconName = keyof typeof glyphMap; /** @alias */ export default <%= className %>; ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * <%= className %> icon set component. * Usage: <<%= className %> name="icon-name" size={20} color="#4F8EF7" /> */ import { createIconSet } from '@react-native-vector-icons/<%= commonPackage %>'; import glyphMap from '../glyphmaps/<%= className %>.json'; export const <%= className %> = createIconSet(glyphMap, { postScriptName: '<%= postScriptName %>', fontFileName: '<%= fontFileName %>.ttf', }); export type <%= className %>IconName = keyof typeof glyphMap; /** @alias */ export default <%= className %>; ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/generator-react-native-vector-icons/src/app/templates/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/generator-react-native-vector-icons/tsconfig.json ================================================ { "extends": "../../tsconfig.json", "compilerOptions": { "noEmit": false, "rootDir": "./src", "outDir": "./generators" }, "include": ["./src"], "exclude": ["node_modules", "src/*/templates"] } ================================================ FILE: packages/get-image/.watchmanconfig ================================================ {} ================================================ FILE: packages/get-image/CHANGELOG.md ================================================ ## 12.3.0 (2025-11-01) This was a version bump only for @react-native-vector-icons/get-image to align it with other projects, there were no code changes. ## 12.2.0 (2025-08-03) This was a version bump only for @react-native-vector-icons/get-image to align it with other projects, there were no code changes. ## 12.1.0 (2025-07-12) ### 🩹 Fixes - **web:** throw a meaningful error in getImageForFont ([#1792](https://github.com/oblador/react-native-vector-icons/pull/1792)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### ❤️ Thank You - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - John Ferlito @johnf ================================================ FILE: packages/get-image/android/build.gradle ================================================ buildscript { // Buildscript is evaluated before everything else so we can't use getExtOrDefault def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["VectorIcons_kotlinVersion"] repositories { google() mavenCentral() } dependencies { classpath "com.android.tools.build:gradle:7.2.1" // noinspection DifferentKotlinGradleVersion classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } def reactNativeArchitectures() { def value = rootProject.getProperties().get("reactNativeArchitectures") return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"] } def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def getExtOrDefault(name) { return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties["VectorIcons_" + name] } def getExtOrIntegerDefault(name) { return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["VectorIcons_" + name]).toInteger() } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } import groovy.json.JsonSlurper def generatedCompat() { def rnviProject = rootProject.allprojects.find { it.name == 'react-native-vector-icons_get-image' } if (rnviProject == null) return false def reactNativeManifest = file("${rnviProject.projectDir}/../../../react-native/package.json") def reactNativeVersion = new JsonSlurper().parseText(reactNativeManifest.text).version as String reactNativeVersion.matches('(0.71.*|0.72.*|0.73.*)') } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.get_image" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion getExtOrIntegerDefault("compileSdkVersion") defaultConfig { minSdkVersion getExtOrIntegerDefault("minSdkVersion") targetSdkVersion getExtOrIntegerDefault("targetSdkVersion") buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() } buildFeatures { buildConfig true } buildTypes { release { minifyEnabled false } } lintOptions { disable "GradleCompatible" } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } sourceSets { main { if (isNewArchitectureEnabled()) { java.srcDirs += [ "src/newarch", ] if (!generatedCompat()) { println("Adding generated directories") println("Adding generated directories") println("Adding generated directories") // NOTE: create-react-native-library has these here but it breaks <= 0.73 java.srcDirs += [ // Codegen specs "generated/java", "generated/jni" ] } } else { java.srcDirs += ["src/oldarch"] } } } } repositories { mavenCentral() google() } def kotlin_version = getExtOrDefault("kotlinVersion") dependencies { // For < 0.71, this will be from the local maven repo // For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin //noinspection GradleDynamicVersion implementation "com.facebook.react:react-native:+" implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIcons" codegenJavaPackageName = "com.reactnativevectoricons.get_image" } } ================================================ FILE: packages/get-image/android/gradle.properties ================================================ VectorIcons_kotlinVersion=1.7.0 VectorIcons_minSdkVersion=21 VectorIcons_targetSdkVersion=31 VectorIcons_compileSdkVersion=31 VectorIcons_ndkversion=21.4.7075529 ================================================ FILE: packages/get-image/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/get-image/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/get-image/android/src/main/java/com/reactnativevectoricons/get_image/VectorIconsModule.kt ================================================ package com.reactnativevectoricons.get_image import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.bridge.ReactMethod import com.facebook.react.bridge.Promise import com.facebook.react.util.RNLog import com.facebook.react.views.text.ReactFontManager import android.graphics.* import java.io.File import java.io.FileOutputStream import java.io.IOException class VectorIconsModule internal constructor(context: ReactApplicationContext) : VectorIconsSpec(context) { @ReactMethod override fun getImageForFont(fontFamilyName: String, glyph: String, fontSize: Double, color: Double, promise: Promise) { try { val imagePath = getImageForFontSync(fontFamilyName, glyph, fontSize, color) promise.resolve(imagePath) } catch (e: Throwable) { promise.reject("Failed to get image for font family \"$fontFamilyName\":${e.message}", e) } } @ReactMethod(isBlockingSynchronousMethod = true) override fun getImageForFontSync(fontFamilyName: String, glyph: String, fontSize: Double, color: Double): String { val context = reactApplicationContext val cacheFolder = context.cacheDir val cacheFolderPath = "${cacheFolder.absolutePath}/" val scale = context.resources.displayMetrics.density val scaleSuffix = "@${if (scale == scale.toInt().toFloat()) scale.toInt() else scale}x" val size = Math.round(fontSize * scale).toInt() val cacheKey = "$fontFamilyName:$glyph:$color" val hash = cacheKey.hashCode().toString(32) val cacheFilePath = "${cacheFolderPath}${hash}_${fontSize}${scaleSuffix}.png" val cacheFileUrl = "file://$cacheFilePath" val cacheFile = File(cacheFilePath) if (cacheFile.exists()) { return cacheFileUrl } val typeface = ReactFontManager.getInstance().getTypeface(fontFamilyName, Typeface.NORMAL, context.assets) if (typeface == Typeface.DEFAULT) { RNLog.w(context, "getImageForFontSync: the lookup for $fontFamilyName returned the default typeface, this likely means that the font is not available on the device.") } val paint = Paint().apply { this.typeface = typeface this.color = color.toInt() textSize = size.toFloat() isAntiAlias = true } val textBounds = Rect() paint.getTextBounds(glyph, 0, glyph.length, textBounds) val offsetX = 0 val offsetY = size - paint.fontMetrics.bottom.toInt() val bitmap = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888) val canvas = Canvas(bitmap) canvas.drawText(glyph, offsetX.toFloat(), offsetY.toFloat(), paint) try { FileOutputStream(cacheFile).use { fos -> bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos) fos.flush() return cacheFileUrl } } catch (e: IOException) { // we're rethrowing this as a runtime exception because we can't change the method signature // to `throws IOException` // that would be at odds with the codegen-generated spec throw RuntimeException(e) } } companion object { const val NAME = "VectorIcons" } } ================================================ FILE: packages/get-image/android/src/main/java/com/reactnativevectoricons/get_image/VectorIconsPackage.kt ================================================ package com.reactnativevectoricons.get_image import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.bridge.NativeModule import com.facebook.react.module.model.ReactModuleInfoProvider import com.facebook.react.module.model.ReactModuleInfo import java.util.HashMap class VectorIconsPackage : TurboReactPackage() { override fun getModule(name: String, reactContext: ReactApplicationContext): NativeModule? { return if (name == VectorIconsModule.NAME) { VectorIconsModule(reactContext) } else { null } } override fun getReactModuleInfoProvider(): ReactModuleInfoProvider { return ReactModuleInfoProvider { val moduleInfos: MutableMap = HashMap() val isTurboModule: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED moduleInfos[VectorIconsModule.NAME] = ReactModuleInfo( VectorIconsModule.NAME, // name VectorIconsModule.NAME, // className false, // canOverrideExistingModule false, // needsEagerInit false, // hasConstants NOTE: This is deprecated but we need it to keep compatability with RN <= 0.72 false, // isCxxModule isTurboModule // isTurboModule ) moduleInfos } } } ================================================ FILE: packages/get-image/android/src/newarch/VectorIconsSpec.kt ================================================ package com.reactnativevectoricons.get_image import com.facebook.react.bridge.ReactApplicationContext abstract class VectorIconsSpec internal constructor(context: ReactApplicationContext) : NativeVectorIconsSpec(context) { } ================================================ FILE: packages/get-image/android/src/oldarch/VectorIconsSpec.kt ================================================ /** * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). * * Do not edit this file as changes may cause incorrect behavior. * * Instead turn on new architecture, make JS spec file changes, re-run codegen (you can trigger that by rebuilding) and copy codegen result here. * * @generated by codegen project: GenerateModuleJavaSpec.js * * @nolint */ package com.reactnativevectoricons.get_image import com.facebook.proguard.annotations.DoNotStrip import com.facebook.react.bridge.Promise import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.bridge.ReactContextBaseJavaModule import com.facebook.react.bridge.ReactMethod import com.facebook.react.turbomodule.core.interfaces.TurboModule abstract class VectorIconsSpec internal constructor(context: ReactApplicationContext) : ReactContextBaseJavaModule(context) { companion object { const val NAME = "VectorIcons" } override fun getName(): String = NAME @ReactMethod @DoNotStrip abstract fun getImageForFont(fontFamilyName: String, glyph: String, fontSize: Double, color: Double, promise: Promise) @ReactMethod(isBlockingSynchronousMethod = true) @DoNotStrip abstract fun getImageForFontSync(fontFamilyName: String, glyph: String, fontSize: Double, color: Double): String } ================================================ FILE: packages/get-image/babel.config.js ================================================ module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/get-image/ios/VectorIcons.h ================================================ #ifdef RCT_NEW_ARCH_ENABLED #import "RNVectorIconsSpec.h" @interface VectorIcons : NSObject #else #import @interface VectorIcons : NSObject #endif // - (NSString *)hexStringFromColor:(UIColor *)color; // - (NSString *)generateFilePath:(NSString *)glyph withFontName:(NSString // *)fontName // withFontSize:(CGFloat)fontSize // withColor:(UIColor *)color // withExtraIdentifier:(NSString // *)identifier; // - (BOOL)createAndSaveGlyphImage:(NSString *)glyph withFont:(UIFont *)font // withFilePath:(NSString // *)filePath // withColor:(UIColor *)color; // @end ================================================ FILE: packages/get-image/ios/VectorIcons.mm ================================================ #import "VectorIcons.h" #import #import #import #import #import NSString *const RNVIErrorDomain = @"com.reactnativevectoricons.get_image"; enum { RNVIGenericError = 1000, }; @implementation VectorIcons RCT_EXPORT_MODULE() - (NSString *)hexStringFromColor:(UIColor *)color { const CGFloat *components = CGColorGetComponents(color.CGColor); CGFloat r = components[0]; CGFloat g = components[1]; CGFloat b = components[2]; return [NSString stringWithFormat:@"#%02lX%02lX%02lX", lroundf(r * 255), lroundf(g * 255), lroundf(b * 255)]; } - (NSString *)generateFilePath:(NSString *)glyph withFontName:(NSString *)fontName withFontSize:(CGFloat)fontSize withColor:(UIColor *)color withExtraIdentifier:(NSString *)identifier { CGFloat screenScale = RCTScreenScale(); NSString *hexColor = [self hexStringFromColor:color]; NSString *fileName = [NSString stringWithFormat:@"%@RNVectorIcons_%@_%@_%@_%.f%@@%.fx.png", NSTemporaryDirectory(), identifier, fontName, glyph, fontSize, hexColor, screenScale]; return fileName; } - (BOOL)createAndSaveGlyphImage:(NSString *)glyph withFont:(UIFont *)font withFilePath:(NSString *)filePath withColor:(UIColor *)color { if (![[NSFileManager defaultManager] fileExistsAtPath:filePath]) { // No cached icon exists, we need to create it and persist to disk NSAttributedString *attributedString = [[NSAttributedString alloc] initWithString:glyph attributes:@{ NSFontAttributeName : font, NSForegroundColorAttributeName : color }]; CGSize iconSize = [attributedString size]; UIGraphicsBeginImageContextWithOptions(iconSize, NO, 0.0); [attributedString drawAtPoint:CGPointMake(0, 0)]; UIImage *iconImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); NSData *imageData = UIImagePNGRepresentation(iconImage); return [imageData writeToFile:filePath atomically:YES]; } return YES; } - (NSString *)createGlyphImagePathForFont:(NSString *)fontName withGlyph:(NSString *)glyph withFontSize:(CGFloat)fontSize withColor:(double)color withError:(NSError **)error { UIColor *parsedColor = [RCTConvert UIColor:@(color)]; UIFont *font = [UIFont fontWithName:fontName size:fontSize]; if (!font) { *error = [NSError errorWithDomain:RNVIErrorDomain code:RNVIGenericError userInfo:@{ NSLocalizedDescriptionKey : [NSString stringWithFormat: @"No font found for font name \"%@\". Make " @"sure the font is included in info.plist.", fontName] }]; return nil; } NSString *filePath = [self generateFilePath:glyph withFontName:fontName withFontSize:fontSize withColor:parsedColor withExtraIdentifier:@""]; BOOL success = [self createAndSaveGlyphImage:glyph withFont:font withFilePath:filePath withColor:parsedColor]; if (!success) { *error = [NSError errorWithDomain:RNVIErrorDomain code:RNVIGenericError userInfo:@{ NSLocalizedDescriptionKey : @"Failed to write rendered icon image" }]; return nil; } return filePath; } RCT_EXPORT_METHOD(getImageForFont : (NSString *)fontName glyph : (NSString *) glyph fontSize : (CGFloat)fontSize color : (double) color resolve : (RCTPromiseResolveBlock) resolve reject : (RCTPromiseRejectBlock)reject) { NSError *error = nil; NSString *filePath = [self createGlyphImagePathForFont:fontName withGlyph:glyph withFontSize:fontSize withColor:color withError:&error]; if (error != nil) { reject([NSString stringWithFormat:@"%ld", (long)error.code], error.localizedDescription, error); } else { resolve(filePath); } } RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD( getImageForFontSync : (NSString *)fontName glyph : (NSString *) glyph fontSize : (CGFloat)fontSize color : (double)color) { NSError *error = nil; NSString *glyphImage = [self createGlyphImagePathForFont:fontName withGlyph:glyph withFontSize:fontSize withColor:color withError:&error]; if (error == nil && glyphImage != nil) { return glyphImage; } else { NSString *reason = error ? error.localizedDescription : @"Failed to create glyph image"; @throw [NSException exceptionWithName:@"RNVectorIconsException" reason:reason userInfo:nil]; } } // Don't compile this code when we build for the old architecture. #ifdef RCT_NEW_ARCH_ENABLED - (std::shared_ptr)getTurboModule: (const facebook::react::ObjCTurboModule::InitParams &)params { return std::make_shared(params); } #endif @end ================================================ FILE: packages/get-image/package.json ================================================ { "name": "@react-native-vector-icons/get-image", "version": "12.3.0", "description": "Glyph to png conversion for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } } }, "files": [ "scripts", "src", "lib", "android", "ios", "cpp", "*.podspec", "react-native.config.js", "!ios/generated", "!android/generated", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib", "prepare": "bob build", "prepack": "cp ../../README.md .", "postpack": "rm README.md", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font" ], "repository": { "type": "git", "url": "git://github.com/oblador/react-native-vector-icons.git", "directory": "packages/get-image" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react": "19.1.0", "react-native": "0.80.0", "react-native-builder-bob": "^0.35.2", "turbo": "^1.13.4", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "codegenConfig": { "name": "RNVectorIconsSpec", "type": "modules", "jsSrcsDir": "src", "android": { "javaPackageName": "com.reactnativevectoricons.get_image" }, "includesGeneratedCode": false }, "create-react-native-library": { "type": "module-mixed", "languages": "kotlin-objc", "version": "0.41.2" } } ================================================ FILE: packages/get-image/react-native-vector-icons.podspec ================================================ require "json" package = JSON.parse(File.read(File.join(__dir__, "package.json"))) Pod::Spec.new do |s| s.name = "react-native-vector-icons" s.version = package["version"] s.summary = package["description"] s.homepage = package["homepage"] s.license = package["license"] s.authors = package["author"] s.platforms = { :ios => min_ios_version_supported, :tvos => "9.0", :visionos => "1.0" } s.source = { :git => package["repository"]["url"], :tag => "v#{s.version}" } s.source_files = "ios/**/*.{h,m,mm}" install_modules_dependencies(s) end ================================================ FILE: packages/get-image/react-native.config.js ================================================ /** * @type {import('@react-native-community/cli-types').UserDependencyConfig} */ module.exports = { dependency: { platforms: { android: { // NOTE: We aren't shipping generated files as this eesm to break react 0.73 due to missing include paths for react-native cmakeListsPath: 'build/generated/source/codegen/jni/CMakeLists.txt', }, }, }, }; ================================================ FILE: packages/get-image/src/NativeVectorIcons.ts ================================================ import type { TurboModule } from 'react-native'; import { TurboModuleRegistry } from 'react-native'; export interface Spec extends TurboModule { getImageForFont(fontFamilyName: string, glyph: string, fontSize: number, color: number): Promise; getImageForFontSync(fontFamilyName: string, glyph: string, fontSize: number, color: number): string; } export default TurboModuleRegistry.getEnforcing('VectorIcons'); ================================================ FILE: packages/get-image/src/NativeVectorIcons.web.ts ================================================ import type { Spec } from './NativeVectorIcons'; const webImpl: Spec = { async getImageForFont() { throw new Error('getImageForFont is not available for web'); }, getImageForFontSync() { throw new Error('getImageForFontSync is not available for web'); }, }; export default webImpl; ================================================ FILE: packages/get-image/src/ensure-native-module-available.ts ================================================ import NativeIconAPI from './NativeVectorIcons'; export function ensureNativeModuleAvailable() { if (!NativeIconAPI) { throw new Error( 'The native RNVectorIcons API is not available, did you properly integrate the module? Please verify your autolinking setup and recompile.', ); } } ================================================ FILE: packages/get-image/src/index.ts ================================================ import { Platform } from 'react-native'; export { ensureNativeModuleAvailable } from './ensure-native-module-available'; const LINKING_ERROR = ` The package '@react-native-vector-icons/get-image' doesn't seem to be linked. Make sure: ${Platform.select({ ios: "- You have run 'pod install'\n", default: '' })} - You rebuilt the app after installing the package\n' - You are not using Expo Go `; // eslint-disable-next-line @typescript-eslint/no-require-imports const VectorIconsModule = require('./NativeVectorIcons').default; const VectorIcons = VectorIconsModule ? VectorIconsModule : new Proxy( {}, { get() { throw new Error(LINKING_ERROR); }, }, ); export function getImageForFont( fontFamilyName: string, glyph: string, fontSize: number, color: number, ): Promise { return VectorIcons.getImageForFont(fontFamilyName, glyph, fontSize, color); } export function getImageForFontSync(fontFamilyName: string, glyph: string, fontSize: number, color: number): string { return VectorIcons.getImageForFontSync(fontFamilyName, glyph, fontSize, color); } ================================================ FILE: packages/get-image/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/get-image/turbo.json ================================================ { "$schema": "https://turbo.build/schema.json", "pipeline": { "build:android": { "env": ["ORG_GRADLE_PROJECT_newArchEnabled"], "inputs": [ "package.json", "android", "!android/build", "src/*.ts", "src/*.tsx", "example/package.json", "example/android", "!example/android/.gradle", "!example/android/build", "!example/android/app/build" ], "outputs": [] }, "build:ios": { "env": ["RCT_NEW_ARCH_ENABLED"], "inputs": [ "package.json", "*.podspec", "ios", "src/*.ts", "src/*.tsx", "example/package.json", "example/ios", "!example/ios/build", "!example/ios/Pods" ], "outputs": [] } } } ================================================ FILE: packages/icomoon/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "icomoon", "customReadme": true, "customSrc": true, "noGlyphmap": true, "copyCustomFonts": true } } ================================================ FILE: packages/icomoon/CHANGELOG.md ================================================ ## 12.4.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.3.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.3.2 (2026-03-10) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ## 12.3.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.3.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.2.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/icomoon/README.md ================================================ # React Native Vector Icons - IcoMoon React Native Vector Icons font package to support [IcoMoon fonts](https://icomoon.io/app) See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/icomoon ``` ## Usage 1. Add the config.json somewhere in your project to be imported 1. Add the ttf file into `rnvi-fonts/icomoon`. You can customise this location as described in [react-native-vector-icons](../../README.md#custom-fonts) 1. Add this package to your project ```sh npm install @react-native-vector-icons/icomoon ``` 4. Create the component in your project and use it ```js import createIconSet from '@react-native-vector-icons/icomoon'; import icoMoonConfig from './IcoMoon-Free.json'; const Icon = createIconSet(icoMoonConfig); const icon = ; ``` If you want to customise the font postscript name and filename you can pass extra arguments. ```js import createIconSet from "@react-native-vector-icons/icomoon"; import icoMoonConfig from "./IcoMoon-Free.json"; const Icon = createIconSet(icoMoonConfig, "Font Family", "FontFamily.ttf"); ``` ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/icomoon/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.icomoon" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsIcomoon" codegenJavaPackageName = "com.reactnativevectoricons.icomoon" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-icomoon") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-icomoon/fonts" eachFile { println "(RNVI:icomoon) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) task copyExtraFonts(type: Copy) { from "${rootDir.parentFile.absolutePath}/rnvi-fonts/icomoon" include "*.ttf" into "${buildDir}/intermediates/RNVI-icomoon/fonts" eachFile { println "(RNVI:icomoon) Copying custom font: ${it.file}" } } preBuild.dependsOn(copyExtraFonts) ================================================ FILE: packages/icomoon/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/icomoon/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/icomoon/android/src/main/java/VectorIconsIcomoonPackage.kt ================================================ package com.reactnativevectoricons.icomoon import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsIcomoonPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/icomoon/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/icomoon/package.json ================================================ { "name": "@react-native-vector-icons/icomoon", "version": "12.4.0", "description": "Icomoon font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } } }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "icomoon" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/icomoon" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/icomoon/react-native-vector-icons-icomoon.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-icomoon' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' s.script_phase = { name: 'Copy Custom Fonts', execution_position: :after_compile, script: <<~SCRIPT set -e HEAD="(RNVI-icomoon)" echo "${HEAD} START_COPY_FONTS" echo "${HEAD} PWD: $(pwd)" # # Find the custom font Directory # # Assume the project root is always two directories above the POD_ROOT echo "${HEAD} PODS_ROOT: $PODS_ROOT" PROJECT_ROOT="${PODS_ROOT}/../.." echo "${HEAD} PROJECT_ROOT: $PROJECT_ROOT" cd $PROJECT_ROOT FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/"//g') if [ -z "$FONTS_DIR" ]; then FONTS_DIR="rnvi-fonts" fi echo "${HEAD} FONTS_DIR: $FONTS_DIR" FONTS_DIR="${PROJECT_ROOT}/${FONTS_DIR}/icomoon" if [ ! -d "$FONTS_DIR" ]; then echo "${HEAD} $FONTS_DIR not found" exit 0 fi # # Find the destination we copy to # echo "${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR" XCODE_DIR=$(ls -d "$PODS_CONFIGURATION_BUILD_DIR"/*.app) echo "${HEAD} XCODE_DIR: $XCODE_DIR" if [ -z "$XCODE_DIR" ]; then echo "Could not find XCODE_DIR to copy fonts to" exit 1 fi DEST_DIR="${XCODE_DIR}" mkdir -p "$DEST_DIR" # # Copy the fonts # echo "${HEAD} Copying the following files to $DEST_DIR" ls "$FONTS_DIR" | sed "s/^/${HEAD} /" rsync -avr --copy-links --no-relative $FONTS_DIR/ "$DEST_DIR" echo "${HEAD} END:RNVI_COPY_FONTS" SCRIPT } end ================================================ FILE: packages/icomoon/src/index.ts ================================================ /** * Fontello icon set component. * Usage: */ import { type CreateIconSetOptions, createIconSet, type IconComponent } from '@react-native-vector-icons/common'; type IcoMoonIcon = { properties: { name: string; code: number; }; }; type IcoMoonConfig = { icons: IcoMoonIcon[]; preferences: { fontPref: { metadata: { fontFamily: string; }; }; }; }; type IcoMoonComponent = IconComponent>; // entries are optional because they can be derived from the config type Options = Partial; export default function createIconSetFromIcoMoon( config: IcoMoonConfig, postScriptName?: string, fontFileName?: string, ): IcoMoonComponent; export default function createIconSetFromIcoMoon(config: IcoMoonConfig, options: Options): IcoMoonComponent; export default function createIconSetFromIcoMoon( config: IcoMoonConfig, postScriptNameOrOptions?: string | Options, fontFileNameParam?: string, ): IcoMoonComponent { const { postScriptName, fontFileName, fontSource, fontStyle } = typeof postScriptNameOrOptions === 'object' ? postScriptNameOrOptions : { postScriptName: postScriptNameOrOptions, fontFileName: fontFileNameParam, }; const glyphMap: Record = {}; config.icons.forEach((icon) => { icon.properties.name.split(/\s*,\s*/g).forEach((name) => { glyphMap[name] = icon.properties.code; }); }); const fontFamily = postScriptName || config.preferences.fontPref.metadata.fontFamily; return createIconSet(glyphMap, { postScriptName: fontFamily, fontFileName: fontFileName || `${fontFamily}.ttf`, fontSource, fontStyle, }); } ================================================ FILE: packages/icomoon/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/icomoon/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/icon-explorer/.gitignore ================================================ *.binlog *.hprof *.xcworkspace/ *.zip .DS_Store .gradle/ .idea/ .vs/ .xcode.env Pods/ build/ dist/* !dist/.gitignore local.properties msbuild.binlog node_modules/ # Make sure we don't accidentally commit out fontawesomepro test fonts rnvi-fonts/fontawesome5-pro rnvi-fonts/fontawesome6-pro ================================================ FILE: packages/icon-explorer/.owl/.gitignore ================================================ # generated by react-native-owl diff/ latest/ report/ ================================================ FILE: packages/icon-explorer/.watchmanconfig ================================================ {} ================================================ FILE: packages/icon-explorer/README.md ================================================ ## Testing RN versions To locally test a particular version ```sh ./set-rn-version.sh android stable|0.73|0.72... pnpm install pnpm run start pnpm run test:android git restore -p ``` ================================================ FILE: packages/icon-explorer/__tests__/App.owl.tsx ================================================ import { press, scrollToEnd, takeScreenshot, toExist } from '@johnf/react-native-owl'; describe('App.tsx', () => { it('show home top', async () => { await toExist('AntD'); const screen = await takeScreenshot('home-top'); // NOTE: Sometimes ios home bar has the wrong color so we crop the bottom expect(screen).toMatchBaseline({ bottomCrop: 20 }); }); it('show home bottom', async () => { await toExist('AntD'); await scrollToEnd('scrollview'); const screen = await takeScreenshot('home-bottom'); // NOTE: Sometimes ios home bar has the wrong color so we crop the bottom expect(screen).toMatchBaseline({ bottomCrop: 20 }); }); it('should load Test fonts', async () => { await toExist('TestMode'); await press('TestMode'); await toExist('TestScreen'); const screen = await takeScreenshot('tests'); // NOTE: Sometimes ios home bar has the wrong color so we crop the bottom expect(screen).toMatchBaseline({ bottomCrop: 20 }); }); }); ================================================ FILE: packages/icon-explorer/android/build.gradle ================================================ buildscript { apply(from: { def searchDir = rootDir.toPath() do { def p = searchDir.resolve("node_modules/react-native-test-app/android/dependencies.gradle") if (p.toFile().exists()) { return p.toRealPath().toString() } } while (searchDir = searchDir.getParent()) throw new GradleException("Could not find `react-native-test-app`"); }()) repositories { mavenCentral() google() } dependencies { getReactNativeDependencies().each { dependency -> classpath(dependency) } } } allprojects { repositories { { def searchDir = rootDir.toPath() do { def p = searchDir.resolve("node_modules/react-native/android") if (p.toFile().exists()) { maven { url(p.toRealPath().toString()) } break } } while (searchDir = searchDir.getParent()) // As of 0.80, React Native is no longer installed from npm }() mavenCentral() google() } } ================================================ FILE: packages/icon-explorer/android/gradle/wrapper/gradle-wrapper.properties ================================================ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists ================================================ FILE: packages/icon-explorer/android/gradle.properties ================================================ # Project-wide Gradle settings. # IDE (e.g. Android Studio) users: # Gradle settings configured through the IDE *will override* # any settings specified in this file. # For more details on how to configure your build environment visit # http://www.gradle.org/docs/current/userguide/build_environment.html # Specifies the JVM arguments used for the Gradle Daemon. The setting is # particularly useful for configuring JVM memory settings for build performance. # This does not affect the JVM settings for the Gradle client VM. # The default is `-Xmx512m -XX:MaxMetaspaceSize=256m`. org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 # When configured, Gradle will fork up to org.gradle.workers.max JVMs to execute # projects in parallel. To learn more about parallel task execution, see the # section on Gradle build performance: # https://docs.gradle.org/current/userguide/performance.html#parallel_execution. # Default is `false`. #org.gradle.parallel=true # AndroidX package structure to make it clearer which packages are bundled with the # Android operating system, and which are packaged with your app's APK # https://developer.android.com/topic/libraries/support-library/androidx-rn android.useAndroidX=true # Automatically convert third-party libraries to use AndroidX #android.enableJetifier=true # Jetifier randomly fails on these libraries #android.jetifier.ignorelist=hermes-android,react-android # Use this property to specify which architecture you want to build. # You can also override it from the CLI using # ./gradlew -PreactNativeArchitectures=x86_64 reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 # Use this property to enable support to the new architecture. # This will allow you to use TurboModules and the Fabric render in # your application. You should enable this flag either if you want # to write custom TurboModules/Fabric components OR use libraries that # are providing them. # Note that this is incompatible with web debugging. #newArchEnabled=true #bridgelessEnabled=true # Uncomment the line below to build React Native from source. #react.buildFromSource=true # Version of Android NDK to build against. #ANDROID_NDK_VERSION=26.1.10909125 # Version of Kotlin to build against. #KOTLIN_VERSION=1.8.22 ================================================ FILE: packages/icon-explorer/android/gradlew ================================================ #!/bin/sh # # Copyright © 2015-2021 the original authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ############################################################################## # # Gradle start up script for POSIX generated by Gradle. # # Important for running: # # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is # noncompliant, but you have some other compliant shell such as ksh or # bash, then to run this script, type that shell name before the whole # command line, like: # # ksh Gradle # # Busybox and similar reduced shells will NOT work, because this script # requires all of these POSIX shell features: # * functions; # * expansions «$var», «${var}», «${var:-default}», «${var+SET}», # «${var#prefix}», «${var%suffix}», and «$( cmd )»; # * compound commands having a testable exit status, especially «case»; # * various built-in commands including «command», «set», and «ulimit». # # Important for patching: # # (2) This script targets any POSIX shell, so it avoids extensions provided # by Bash, Ksh, etc; in particular arrays are avoided. # # The "traditional" practice of packing multiple parameters into a # space-separated string is a well documented source of bugs and security # problems, so this is (mostly) avoided, by progressively accumulating # options in "$@", and eventually passing that to Java. # # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; # see the in-line comments for details. # # There are tweaks for specific operating systems such as AIX, CygWin, # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template # https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. # ############################################################################## # Attempt to set APP_HOME # Resolve links: $0 may be a link app_path=$0 # Need this for daisy-chained symlinks. while APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path [ -h "$app_path" ] do ls=$( ls -ld "$app_path" ) link=${ls#*' -> '} case $link in #( /*) app_path=$link ;; #( *) app_path=$APP_HOME$link ;; esac done # This is normally unused # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum warn () { echo "$*" } >&2 die () { echo echo "$*" echo exit 1 } >&2 # OS specific support (must be 'true' or 'false'). cygwin=false msys=false darwin=false nonstop=false case "$( uname )" in #( CYGWIN* ) cygwin=true ;; #( Darwin* ) darwin=true ;; #( MSYS* | MINGW* ) msys=true ;; #( NONSTOP* ) nonstop=true ;; esac CLASSPATH="\\\"\\\"" # Determine the Java command to use to start the JVM. if [ -n "$JAVA_HOME" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ] ; then # IBM's JDK on AIX uses strange locations for the executables JAVACMD=$JAVA_HOME/jre/sh/java else JAVACMD=$JAVA_HOME/bin/java fi if [ ! -x "$JAVACMD" ] ; then die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME Please set the JAVA_HOME variable in your environment to match the location of your Java installation." fi else JAVACMD=java if ! command -v java >/dev/null 2>&1 then die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." fi fi # Increase the maximum file descriptors if we can. if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac fi # Collect all arguments for the java command, stacking in reverse order: # * args from the command line # * the main class name # * -classpath # * -D...appname settings # * --module-path (only if needed) # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. # For Cygwin or MSYS, switch paths to Windows format before running java if "$cygwin" || "$msys" ; then APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) JAVACMD=$( cygpath --unix "$JAVACMD" ) # Now convert the arguments - kludge to limit ourselves to /bin/sh for arg do if case $arg in #( -*) false ;; # don't mess with options #( /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath [ -e "$t" ] ;; #( *) false ;; esac then arg=$( cygpath --path --ignore --mixed "$arg" ) fi # Roll the args list around exactly as many times as the number of # args, so each arg winds up back in the position where it started, but # possibly modified. # # NB: a `for` loop captures its iteration list before it begins, so # changing the positional parameters here affects neither the number of # iterations, nor the values presented in `arg`. shift # remove old arg set -- "$@" "$arg" # push replacement arg done fi # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' # Collect all arguments for the java command: # * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, # and any embedded shellness will be escaped. # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be # treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ -classpath "$CLASSPATH" \ -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \ "$@" # Stop when "xargs" is not available. if ! command -v xargs >/dev/null 2>&1 then die "xargs is not available" fi # Use "xargs" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. # # In Bash we could simply go: # # readarray ARGS < <( xargs -n1 <<<"$var" ) && # set -- "${ARGS[@]}" "$@" # # but POSIX shell has neither arrays nor command substitution, so instead we # post-process each arg (as a line of input to sed) to backslash-escape any # character that might be a shell metacharacter, then use eval to reverse # that process (while maintaining the separation between arguments), and wrap # the whole thing up as a single "set" statement. # # This will of course break if any of these variables contains a newline or # an unmatched quote. # eval "set -- $( printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | xargs -n1 | sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | tr '\n' ' ' )" '"$@"' exec "$JAVACMD" "$@" ================================================ FILE: packages/icon-explorer/android/gradlew.bat ================================================ @REM Copyright (c) Meta Platforms, Inc. and affiliates. @REM @REM This source code is licensed under the MIT license found in the @REM LICENSE file in the root directory of this source tree. @rem @rem Copyright 2015 the original author or authors. @rem @rem Licensed under the Apache License, Version 2.0 (the "License"); @rem you may not use this file except in compliance with the License. @rem You may obtain a copy of the License at @rem @rem https://www.apache.org/licenses/LICENSE-2.0 @rem @rem Unless required by applicable law or agreed to in writing, software @rem distributed under the License is distributed on an "AS IS" BASIS, @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem @if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @rem @rem ########################################################################## @rem Set local scope for the variables with windows NT shell if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 if "%DIRNAME%"=="" set DIRNAME=. @rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @rem Resolve any "." and ".." in APP_HOME to make it shorter. for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if %ERRORLEVEL% equ 0 goto execute echo. 1>&2 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 echo. 1>&2 echo Please set the JAVA_HOME variable in your environment to match the 1>&2 echo location of your Java installation. 1>&2 goto fail :findJavaFromJavaHome set JAVA_HOME=%JAVA_HOME:"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute echo. 1>&2 echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 echo. 1>&2 echo Please set the JAVA_HOME variable in your environment to match the 1>&2 echo location of your Java installation. 1>&2 goto fail :execute @rem Setup the command line set CLASSPATH= @rem Execute Gradle "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* :end @rem End local scope for the variables with windows NT shell if %ERRORLEVEL% equ 0 goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! set EXIT_CODE=%ERRORLEVEL% if %EXIT_CODE% equ 0 set EXIT_CODE=1 if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% exit /b %EXIT_CODE% :mainEnd if "%OS%"=="Windows_NT" endlocal :omega ================================================ FILE: packages/icon-explorer/android/settings.gradle ================================================ pluginManagement { repositories { gradlePluginPortal() mavenCentral() google() } } rootProject.name = "IconExplorer" apply(from: { def searchDir = rootDir.toPath() do { def p = searchDir.resolve("node_modules/react-native-test-app/test-app.gradle") if (p.toFile().exists()) { return p.toRealPath().toString() } } while (searchDir = searchDir.getParent()) throw new GradleException("Could not find `react-native-test-app`"); }()) applyTestAppSettings(settings) ================================================ FILE: packages/icon-explorer/app.json ================================================ { "name": "IconExplorer", "displayName": "IconExplorer", "singleApp": "IconExplorer", "components": [ { "appKey": "IconExplorer", "displayName": "IconExplorer", "slug": "IconExplorer" } ], "plugins": ["./configPlugin.js"], "resources": { "android": ["dist/res", "dist/main.android.jsbundle"], "ios": ["dist/assets", "dist/main.ios.jsbundle"], "macos": ["dist/assets", "dist/main.macos.jsbundle"], "visionos": ["dist/assets", "dist/main.visionos.jsbundle"], "windows": ["dist/assets", "dist/main.windows.bundle"] } } ================================================ FILE: packages/icon-explorer/babel.config.js ================================================ module.exports = { presets: ['@rnx-kit/babel-preset-metro-react-native'], }; ================================================ FILE: packages/icon-explorer/configPlugin.js ================================================ const { withInfoPlist } = require('@expo/config-plugins'); // eslint-disable-line import/no-extraneous-dependencies, @typescript-eslint/no-require-imports // Add all our fonts to the plist module.exports = (config) => withInfoPlist(config, (c) => { c.ios ||= {}; c.ios.infoPlist ||= {}; c.ios.infoPlist.UIAppFonts ||= []; // TODO can we generate this list? const fonts = [ 'AntDesign.ttf', 'Entypo.ttf', 'EvilIcons.ttf', 'Feather.ttf', 'FontAwesome.ttf', 'FontAwesome5_Brands.ttf', 'FontAwesome5_Regular.ttf', 'FontAwesome5_Solid.ttf', 'FontAwesome6_Brands.ttf', 'FontAwesome6_Regular.ttf', 'FontAwesome6_Solid.ttf', 'Fontisto.ttf', 'Foundation.ttf', 'Ionicons.ttf', 'MaterialDesignIcons.ttf', 'MaterialIcons.ttf', 'Octicons.ttf', 'SimpleLineIcons.ttf', 'Zocial.ttf', 'fontello.ttf', 'icomoon.ttf', 'Lucide.ttf', ]; // biome-ignore lint/suspicious/useIterableCallbackReturn: @expo doesn't go deep enough on the types fonts.forEach((font) => c.ios.infoPlist.UIAppFonts.push(font)); return c; }); ================================================ FILE: packages/icon-explorer/index.js ================================================ /** * @format */ import { AppRegistry } from 'react-native'; import { name as appName } from './app.json'; import App from './src/App'; AppRegistry.registerComponent(appName, () => App); ================================================ FILE: packages/icon-explorer/index.test.js ================================================ /* eslint-disable @typescript-eslint/no-require-imports */ // Setup the Owl client require('@johnf/react-native-owl/lib/commonjs/client').initClient(); // Load the app as normal require('./index'); ================================================ FILE: packages/icon-explorer/ios/Podfile ================================================ ws_dir = Pathname.new(__dir__) ws_dir = ws_dir.parent until File.exist?("#{ws_dir}/node_modules/react-native-test-app/test_app.rb") || ws_dir.expand_path.to_s == '/' require "#{ws_dir}/node_modules/react-native-test-app/test_app.rb" workspace 'IconExplorer.xcworkspace' use_test_app! hermes_enabled: true, fabric_enabled: true ================================================ FILE: packages/icon-explorer/jest.config.js ================================================ /** @type {import('@jest/types').Config.InitialOptions} */ module.exports = { preset: 'ts-jest', testTimeout: 30 * 1000, reporters: ['default', ['jest-junit', { outputDirectory: '.owl/report', outputName: 'report.xml' }]], verbose: true, }; ================================================ FILE: packages/icon-explorer/macos/Podfile ================================================ ws_dir = Pathname.new(__dir__) ws_dir = ws_dir.parent until File.exist?("#{ws_dir}/node_modules/react-native-test-app/macos/test_app.rb") || ws_dir.expand_path.to_s == '/' require "#{ws_dir}/node_modules/react-native-test-app/macos/test_app.rb" workspace 'IconExplorer.xcworkspace' use_test_app! ================================================ FILE: packages/icon-explorer/metro.config.js ================================================ const path = require('node:path'); const { makeMetroConfig } = require('@rnx-kit/metro-config'); const projectRoot = __dirname; const monorepoRoot = path.resolve(projectRoot, '../..'); module.exports = makeMetroConfig({ watchFolders: [monorepoRoot], resolver: { nodeModulesPaths: [path.resolve(projectRoot, 'node_modules'), path.resolve(monorepoRoot, 'node_modules')], }, transformer: { getTransformOptions: async () => ({ transform: { experimentalImportSupport: false, inlineRequires: false, }, }), }, }); ================================================ FILE: packages/icon-explorer/owl.config.json ================================================ { "ios": { "workspace": "ios/IconExplorer.xcworkspace", "scheme": "ReactTestApp", "configuration": "Debug", "device": "iPhone 16" }, "android": { "packageName": "com.microsoft.reacttestapp" } } ================================================ FILE: packages/icon-explorer/package.json ================================================ { "name": "@react-native-vector-icons/icon-explorer", "version": "12.0.0", "private": true, "scripts": { "android": "react-native run-android", "ios": "react-native run-ios", "build:android": "npm run mkdist && react-native bundle --entry-file index.js --platform android --dev true --bundle-output dist/main.android.jsbundle --assets-dest dist/res", "build:ios": "npm run mkdist && react-native bundle --entry-file index.js --platform ios --dev true --bundle-output dist/main.ios.jsbundle --assets-dest dist", "build:owl:ios": "npm run mkdist && react-native bundle --entry-file index.test.js --platform ios --dev true --bundle-output dist/main.ios.jsbundle --assets-dest dist", "build:owl:android": "npm run mkdist && react-native bundle --entry-file index.test.js --platform android --dev true --bundle-output dist/main.android.jsbundle --assets-dest dist/res", "build:macos": "npm run mkdist && react-native bundle --entry-file index.js --platform macos --dev true --bundle-output dist/main.macos.jsbundle --assets-dest dist", "build:visionos": "npm run mkdist && react-native bundle --entry-file index.js --platform ios --dev true --bundle-output dist/main.visionos.jsbundle --assets-dest dist", "build:windows": "npm run mkdist && react-native bundle --entry-file index.js --platform windows --dev true --bundle-output dist/main.windows.bundle --assets-dest dist", "lint": "eslint .", "macos": "react-native run-macos --scheme IconExplorer", "mkdist": "node -e \"require('node:fs').mkdirSync('dist', { recursive: true, mode: 0o755 })\"", "start": "react-native start", "test:android:build": "owl build --platform android", "test:android:run": "owl test --platform android", "test:ios:build": "owl build --platform ios", "test:ios:run": "owl test --platform ios", "visionos": "react-native run-visionos", "windows": "react-native run-windows --sln windows/IconExplorer.sln" }, "dependencies": { "@react-native-vector-icons/ant-design": "workspace:*", "@react-native-vector-icons/entypo": "workspace:*", "@react-native-vector-icons/evil-icons": "workspace:*", "@react-native-vector-icons/feather": "workspace:*", "@react-native-vector-icons/fontawesome": "workspace:*", "@react-native-vector-icons/fontawesome5": "workspace:*", "@react-native-vector-icons/fontawesome5-pro": "workspace:*", "@react-native-vector-icons/fontawesome6": "workspace:*", "@react-native-vector-icons/fontawesome6-pro": "workspace:*", "@react-native-vector-icons/fontello": "workspace:*", "@react-native-vector-icons/fontisto": "workspace:*", "@react-native-vector-icons/foundation": "workspace:*", "@react-native-vector-icons/get-image": "workspace:*", "@react-native-vector-icons/icomoon": "workspace:*", "@react-native-vector-icons/ionicons": "workspace:*", "@react-native-vector-icons/lucide": "workspace:*", "@react-native-vector-icons/material-design-icons": "workspace:*", "@react-native-vector-icons/material-icons": "workspace:*", "@react-native-vector-icons/octicons": "workspace:*", "@react-native-vector-icons/simple-line-icons": "workspace:*", "@react-native-vector-icons/zocial": "workspace:*", "react": "19.1.0", "react-native": "0.80.0", "react-native-animatable": "^1.4.0" }, "devDependencies": { "@babel/core": "^7.26.0", "@babel/preset-env": "^7.26.0", "@babel/runtime": "^7.26.0", "@expo/config-plugins": "^8.0.11", "@jest/types": "^29.6.3", "@johnf/react-native-owl": "^1.4.10", "@react-native-community/cli": "19.0.0", "@react-native-community/cli-platform-android": "19.0.0", "@react-native-community/cli-platform-ios": "19.0.0", "@react-native/babel-preset": "0.80.0", "@react-native/eslint-config": "0.80.0", "@react-native/metro-config": "0.80.0", "@react-native/typescript-config": "0.80.0", "@rnx-kit/align-deps": "^3.0.8", "@rnx-kit/babel-preset-metro-react-native": "^2.0.0", "@rnx-kit/metro-config": "^2.1.0", "@types/jest": "^29.5.14", "@types/node": "^20.17.11", "@types/react": "^19.1.0", "@types/react-test-renderer": "^19.1.0", "babel-jest": "^29.7.0", "eslint": "^8.57.1", "jest": "^29.7.0", "jest-junit": "^16.0.0", "react-native-test-app": "^4.4.0", "react-test-renderer": "19.1.0", "ts-jest": "^29.2.5", "typescript": "^5.7.2" }, "engines": { "node": ">=18" }, "reactNativeVectorIcons": { "fontDir": "src/rnvi-fonts" } } ================================================ FILE: packages/icon-explorer/react-native.config.js ================================================ const project = (() => { try { const { configureProjects } = require('react-native-test-app'); return configureProjects({ android: { sourceDir: 'android', }, ios: { sourceDir: 'ios', }, windows: { sourceDir: 'windows', solutionFile: 'windows/IconExplorer.sln', }, }); } catch (_) { return undefined; } })(); module.exports = { ...(project ? { project } : undefined), }; ================================================ FILE: packages/icon-explorer/set-rn-version.sh ================================================ #!/usr/bin/env bash set -e ARCH=$1 if [ -z "$ARCH" ]; then echo "Please provide a new or old arch" exit 1 fi VERSION=$2 if [ -z "$VERSION" ]; then echo "Please provide a valid RN version" exit 1 fi echo "Switching to $VERSION (arch: $ARCH)" pnpm rnx-align-deps --requirements react-native@"$VERSION" --write pnpm add --ignore-scripts react-native@"^$VERSION.0" # align-deps rolls this back, so force the latest pnpm add --ignore-scripts react-native-test-app@latest pnpm install --frozen-lockfile --ignore-scripts --filter . # We don't package them so remove them rm -rf ../get-image/android/generated rm -rf ../get-image/ios/generated # Make react-native-owl work in monorepo mkdir -p node_modules cd node_modules ln -nfs ../../../node_modules/@johnf/react-native-owl react-native-owl ln -nfs ../../../node_modules/react-native react-native cd - if [ "$ARCH" = "new" ]; then if [ "$(uname)" == "Darwin" ]; then sed -i.bak -e 's/fabric_enabled:.*/fabric_enabled: true/' ios/Podfile else echo "newArchEnabled=true" >>android/gradle.properties fi else if [ "$(uname)" == "Darwin" ]; then sed -i.bak -e 's/fabric_enabled:.*/fabric_enabled: false/' ios/Podfile else echo "newArchEnabled=false" >>android/gradle.properties fi fi if [ "$(uname)" == "Darwin" ]; then pnpm run build:owl:ios pod update --project-directory=ios else pnpm run build:owl:android fi ================================================ FILE: packages/icon-explorer/src/App.tsx ================================================ import { useCallback, useEffect, useState } from 'react'; import { BackHandler, LogBox, Pressable, Text, View } from 'react-native'; import { Home, type IconName } from './Home'; import { IconList, MultiIconList } from './IconList'; import { TestMode } from './TestMode'; // We don't want ref error that react-native-owl is generating in our screenshots LogBox.ignoreAllLogs(true); type NavType = { view: 'Home' | 'IconSet' | 'MultiIconSet' | 'TestMode'; iconName?: IconName; iconStyle?: string; }; const App = () => { const [state, setState] = useState({ view: 'Home' }); const navigateToIconSet = (iconName: IconName) => { setState({ view: 'IconSet', iconName, iconStyle: undefined }); }; const navigateToMultiIconSet = (iconName: IconName) => { setState({ view: 'MultiIconSet', iconName, iconStyle: undefined }); }; const navigateToIconSetWithStyle = (iconStyle: string, iconName: IconName) => { setState({ view: 'IconSet', iconName, iconStyle }); }; const handleTestMode = () => setState({ view: 'TestMode' }); const handleBackPress = useCallback(() => { if (state.view === 'IconSet' && state.iconStyle) { setState({ view: 'MultiIconSet', iconName: state.iconName, iconStyle: undefined }); return true; } if (['IconSet', 'MultiIconSet', 'TestMode'].includes(state.view)) { setState({ view: 'Home', iconName: undefined, iconStyle: undefined }); return true; } return false; }, [state]); useEffect(() => { const handler = BackHandler.addEventListener('hardwareBackPress', handleBackPress); return handler.remove; }, [handleBackPress]); const renderContent = () => { switch (state.view) { case 'Home': return ; case 'IconSet': // @ts-expect-error We are doing some strange things return ; case 'MultiIconSet': // @ts-expect-error We are doing some strange things return ; case 'TestMode': return ; default: throw new Error('Invalid view'); } }; return ( {renderContent()} TEST MODE ); }; export default App; ================================================ FILE: packages/icon-explorer/src/Home.tsx ================================================ import type { ReactNode } from 'react'; import { Image, Pressable, ScrollView, SectionList, StyleSheet, Text, View, type ViewProps } from 'react-native'; import { FontAwesome } from '@react-native-vector-icons/fontawesome'; import { FontAwesome6 } from '@react-native-vector-icons/fontawesome6'; import { createAnimatableComponent } from './animatable'; import ICON_SETS from './icon-sets'; // @ts-expect-error: We don't care this is wrong for the tests const AnimatableIcon = createAnimatableComponent(FontAwesome); const STYLING: (Parameters[0] & { containerStyle?: ViewProps['style']; })[] = [ { name: 'github', size: 40, color: '#333' }, { name: 'heart', size: 30, color: 'white', containerStyle: { backgroundColor: '#e0284f', borderRadius: 23, paddingHorizontal: 8, paddingTop: 9, paddingBottom: 7, }, }, { name: 'star', size: 20, color: '#FF0000', containerStyle: { borderRadius: 20, padding: 7, borderWidth: 3, backgroundColor: '#FFDD00', borderColor: '#165E00', }, }, { name: 'font', size: 20, color: 'white', containerStyle: { borderRadius: 5, padding: 5, backgroundColor: '#47678e', }, }, ]; const INLINE = [ { name: 'inline', children: ( This text has inline icons! ), }, ]; const getImageFA = FontAwesome.getImageSourceSync('check', 40, 'green'); const getImageFA6 = FontAwesome6.getImageSourceSync('solid', 'check', 40, 'green'); const GETIMAGE = [ { name: 'get-image', children: ( <> ), }, ]; const ANIMATED = [ { name: 'animated', children: ( ), }, ]; const styles = StyleSheet.create({ sectionHeader: { paddingVertical: 5, paddingHorizontal: 10, backgroundColor: '#eee', }, sectionHeaderTitle: { fontWeight: '500', fontSize: 11, }, row: { flexDirection: 'row', justifyContent: 'center', padding: 10, }, separator: { height: StyleSheet.hairlineWidth, backgroundColor: '#ccc', }, text: { flex: 6, }, glyphCount: { flex: 1, fontSize: 11, fontWeight: '500', textAlign: 'right', }, button: { padding: 4, backgroundColor: '#ADA6EA', width: 100, }, buttonText: { color: 'white' }, }); export type IconName = keyof typeof ICON_SETS; export type IconSet = (typeof ICON_SETS)[IconName]; const ItemSeparator = () => ; const renderRow = (item: { children: ReactNode }) => {item.children}; const renderStyling = (item: (typeof STYLING)[number]) => ( ); export const Home = ({ navigator, multiNavigator, }: { navigator: (iconName: IconName) => void; multiNavigator: (iconName: IconName) => void; }) => { const renderIcon = (itemName: IconName) => { const item = ICON_SETS[itemName]; return ( (item.meta ? multiNavigator(itemName) : navigator(itemName))}> {itemName} {item.glyphNames.length} ); }; const iconNames = Object.keys(ICON_SETS) as IconName[]; const sections = [ { title: 'ICON SETS', data: iconNames.map((itemName) => renderIcon(itemName)), }, { title: 'INLINE', data: INLINE.map((item) => renderRow(item)) }, { title: 'SYNCHROUNOUS', data: GETIMAGE.map((item) => renderRow(item)), }, { title: 'ANIMATED', data: ANIMATED.map((item) => renderRow(item)) }, { title: 'STYLING', data: STYLING.map((item) => renderStyling(item)) }, ]; return ( } sections={sections} renderItem={({ item }) => item} renderSectionHeader={({ section }) => ( {section.title} )} ItemSeparatorComponent={ItemSeparator} initialNumToRender={15} /> ); }; ================================================ FILE: packages/icon-explorer/src/IconList.tsx ================================================ import { useEffect, useState } from 'react'; import { DeviceEventEmitter, FlatList, type NativeSyntheticEvent, Platform, Pressable, StyleSheet, Text, TextInput, type TextInputChangeEventData, View, } from 'react-native'; import type { IconName, IconSet } from './Home'; import ICON_SETS from './icon-sets'; const styles = StyleSheet.create({ container: { flex: 1, }, searchBar: { padding: 3, paddingLeft: 8, flexDirection: 'row', alignItems: 'center', borderBottomWidth: 1, borderColor: '#444', }, searchBarInput: { fontSize: 15, flex: 1, height: 45, }, list: { flex: 1, }, row: { flexDirection: 'row', justifyContent: 'center', padding: 10, overflow: 'hidden', borderBottomWidth: 1, borderColor: '#ddd', }, icon: { textAlign: 'center', marginRight: 10, width: 20, }, heading: { color: '#000', fontWeight: '800', marginLeft: 10, }, text: { flex: 1, }, glyphCount: { flex: 1, fontSize: 11, fontWeight: '500', textAlign: 'right', }, }); const getFilteredGlyphNames = (iconStyle: string | undefined, iconSet: IconSet, query: string) => { const icons = iconStyle ? (iconSet.meta?.[iconStyle as keyof typeof iconSet.meta] || []).map((name) => [name]) : iconSet.glyphNames; return icons.filter((glyphNames) => glyphNames.find((glyphName) => glyphName.indexOf(query) !== -1)); }; export const IconList = ({ iconName, iconStyle = undefined }: { iconName: IconName; iconStyle?: string }) => { const iconSet = ICON_SETS[iconName]; const [filter, setFilter] = useState(''); useEffect(() => { if (Platform.OS !== 'macos') { return undefined; } const searchListner = DeviceEventEmitter.addListener('onSearchIcons', (e) => setFilter(e.query.toLowerCase())); return searchListner.remove; }, []); const handleSearchChange = (event: NativeSyntheticEvent) => setFilter(event.nativeEvent.text.toLowerCase()); const glyphNames = getFilteredGlyphNames(iconStyle, iconSet, filter); const Icon = iconSet.component; return ( {iconName} {iconStyle ? ` - ${iconStyle}` : ''} ( {/* @ts-expect-error because we are doing magic */} {item.join(', ')} )} automaticallyAdjustContentInsets={false} keyboardDismissMode="on-drag" keyboardShouldPersistTaps="always" showsVerticalScrollIndicator={false} initialNumToRender={20} keyExtractor={(item) => item[0]} /> ); }; export const MultiIconList = ({ iconName, navigator, }: { iconName: IconName; navigator: (iconStyle: string, iconName: IconName) => void; }) => { const iconSet = ICON_SETS[iconName]; if (!iconSet.meta) { throw new Error(`Icon ${iconName} has no Meta how did we get here?`); } return ( {iconName} ( navigator(iconStyle, iconName)}> {iconStyle} {iconSet.meta[iconStyle as keyof typeof iconSet.meta].length} )} automaticallyAdjustContentInsets={false} keyboardDismissMode="on-drag" keyboardShouldPersistTaps="always" showsVerticalScrollIndicator={false} initialNumToRender={20} keyExtractor={(item) => item[0]} /> ); }; ================================================ FILE: packages/icon-explorer/src/TestMode.tsx ================================================ import type { ReactNode } from 'react'; import { ScrollView, Text, View } from 'react-native'; import { AntDesign } from '@react-native-vector-icons/ant-design'; import { Entypo } from '@react-native-vector-icons/entypo'; import { EvilIcons } from '@react-native-vector-icons/evil-icons'; import { Feather } from '@react-native-vector-icons/feather'; import { FontAwesome } from '@react-native-vector-icons/fontawesome'; import { FontAwesome5 } from '@react-native-vector-icons/fontawesome5'; import { FontAwesome5Pro, type FontAwesome5ProSolidIconName } from '@react-native-vector-icons/fontawesome5-pro'; import { FontAwesome6 } from '@react-native-vector-icons/fontawesome6'; import { FontAwesome6Pro } from '@react-native-vector-icons/fontawesome6-pro'; import createFontelloIconSet from '@react-native-vector-icons/fontello'; import { Fontisto } from '@react-native-vector-icons/fontisto'; import { Foundation } from '@react-native-vector-icons/foundation'; import createIcoMoonIconSet from '@react-native-vector-icons/icomoon'; import { Ionicons } from '@react-native-vector-icons/ionicons'; import { Lucide } from '@react-native-vector-icons/lucide'; import { MaterialDesignIcons } from '@react-native-vector-icons/material-design-icons'; import { MaterialIcons } from '@react-native-vector-icons/material-icons'; import { Octicons } from '@react-native-vector-icons/octicons'; import { SimpleLineIcons } from '@react-native-vector-icons/simple-line-icons'; import { Zocial } from '@react-native-vector-icons/zocial'; import FontelloConfig from './configs/fontello.config.json'; import IcoMoonConfig from './configs/icomoon.config.json'; const Fontello = createFontelloIconSet(FontelloConfig); const FontelloGlyphs: Record = {}; FontelloConfig.glyphs.forEach((glyph) => { FontelloGlyphs[glyph.css] = glyph.code; }); const IcoMoon = createIcoMoonIconSet(IcoMoonConfig); const IcoMoonGlyphs: Record = {}; IcoMoonConfig.icons.forEach((icon) => { icon.properties.name.split(/\s*,\s*/g).forEach((name) => { IcoMoonGlyphs[name] = icon.properties.code; }); }); interface IconRowProps { label: string; children: ReactNode; } const IconRow = ({ label, children }: IconRowProps) => ( {label}: {children} ); /** * @public * Show knip ignores it */ export const OurTypeTestIcon = ({ name, size = 24, color = '#000', }: { size: number; color: string; name: FontAwesome5ProSolidIconName; }) => ; export const TestMode = () => { const iconConfig = [ { Component: AntDesign, name: 'home', label: 'AntD' }, { Component: Entypo, name: 'home', label: 'Entypo' }, { Component: EvilIcons, name: 'archive', label: 'EvilIcons' }, { Component: Feather, name: 'home', label: 'Feather' }, { Component: FontAwesome, name: 'home', label: 'FontAwesome' }, { Component: FontAwesome5, name: 'home', label: 'FontAwesome5', iconStyle: 'solid' }, { Component: FontAwesome5Pro, name: 'home', label: 'FontAwesome5Pro' }, { Component: FontAwesome6, name: 'house', label: 'FontAwesome6', iconStyle: 'solid' }, { Component: FontAwesome6Pro, name: 'house', label: 'FontAwesome6Pro' }, { Component: Fontello, name: 'home', label: 'Fontello' }, { Component: Fontisto, name: 'home', label: 'Fontisto' }, { Component: Foundation, name: 'home', label: 'Foundation' }, { Component: IcoMoon, name: 'home', label: 'IcoMoon' }, { Component: Ionicons, name: 'home', label: 'Ionicons' }, { Component: Lucide, name: 'house', label: 'Lucide' }, { Component: MaterialDesignIcons, name: 'home', label: 'MaterialDesignIcons' }, { Component: MaterialIcons, name: 'home', label: 'MaterialIcons' }, { Component: Octicons, name: 'home', label: 'Octicons' }, { Component: SimpleLineIcons, name: 'home', label: 'SimpleLineIcons' }, { Component: Zocial, name: 'email', label: 'Zocial' }, ]; return ( {iconConfig.map((config) => { const { Component, name, label, iconStyle } = config; return ( {/* @ts-expect-error ignore */} ); })} ); }; ================================================ FILE: packages/icon-explorer/src/Types.tsx ================================================ /* This file exists to make sure the types work properly */ import { AntDesign } from '@react-native-vector-icons/ant-design'; import { FontAwesome5 } from '@react-native-vector-icons/fontawesome5'; export const Component = () => { AntDesign.getImageSource('robot', 20, 'red'); FontAwesome5.getImageSource('regular', 'address-book', 20, 'red'); // @ts-expect-error bad font name FontAwesome5.getImageSource('brand', 'address-book', 20, 'red'); // @ts-expect-error bad font name FontAwesome5.getImageSource('solid', 'github', 20, 'red'); return ( <> {/* @ts-expect-error bad font name */} {/* @ts-expect-error bad font name */} {/* @ts-expect-error no name */} {/* @ts-expect-error no name */} {/* @ts-expect-error bad name for style */} {/* @ts-expect-error bad name for style */} ); }; ================================================ FILE: packages/icon-explorer/src/animatable.tsx ================================================ import type React from 'react'; import { ScrollView } from 'react-native'; import { createAnimatableComponent as createAnimatableComponentRNA } from 'react-native-animatable'; const createAnimatableComponentMock = (component: React.FC) => component; const disableAnimations = () => { const scroll = ; return !scroll.props.showsVerticalScrollIndicator; }; export const createAnimatableComponent = disableAnimations() ? createAnimatableComponentMock : createAnimatableComponentRNA; ================================================ FILE: packages/icon-explorer/src/configs/fontello.config.json ================================================ { "name": "", "css_prefix_text": "icon-", "css_use_suffix": false, "hinting": true, "units_per_em": 1000, "ascent": 850, "glyphs": [ { "uid": "a42f298da5c64e646a5d532724cd6e15", "css": "home", "code": 59392, "src": "typicons" } ] } ================================================ FILE: packages/icon-explorer/src/configs/icomoon.config.json ================================================ {"IcoMoonType":"selection","icons":[{"icon":{"paths":["M1024 590.444l-512-397.426-512 397.428v-162.038l512-397.426 512 397.428zM896 576v384h-256v-256h-256v256h-256v-384l384-288z"],"tags":["home","house"],"defaultCode":59648,"grid":16,"attrs":[]},"attrs":[],"properties":{"ligatures":"home, house","name":"home","order":2,"id":1,"prevSize":32,"code":59648},"setIdx":0,"setId":1,"iconIdx":0}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"noie8":true,"ie7":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16}} ================================================ FILE: packages/icon-explorer/src/icon-sets.tsx ================================================ import { AntDesign } from '@react-native-vector-icons/ant-design'; import AntDesignGlyphs from '@react-native-vector-icons/ant-design/glyphmaps/AntDesign.json'; import { Entypo } from '@react-native-vector-icons/entypo'; import EntypoGlyphs from '@react-native-vector-icons/entypo/glyphmaps/Entypo.json'; import { EvilIcons } from '@react-native-vector-icons/evil-icons'; import EvilIconsGlyphs from '@react-native-vector-icons/evil-icons/glyphmaps/EvilIcons.json'; import { Feather } from '@react-native-vector-icons/feather'; import FeatherGlyphs from '@react-native-vector-icons/feather/glyphmaps/Feather.json'; import { FontAwesome } from '@react-native-vector-icons/fontawesome'; import FontAwesomeGlyphs from '@react-native-vector-icons/fontawesome/glyphmaps/FontAwesome.json'; import { FontAwesome5 } from '@react-native-vector-icons/fontawesome5'; import FontAwesome5Glyphs from '@react-native-vector-icons/fontawesome5/glyphmaps/FontAwesome5.json'; import FontAwesome5Meta from '@react-native-vector-icons/fontawesome5/glyphmaps/FontAwesome5_meta.json'; import { FontAwesome5Pro } from '@react-native-vector-icons/fontawesome5-pro'; import FontAwesome5ProGlyphs from '@react-native-vector-icons/fontawesome5-pro/glyphmaps/FontAwesome5Pro.json'; import FontAwesome5ProMeta from '@react-native-vector-icons/fontawesome5-pro/glyphmaps/FontAwesome5Pro_meta.json'; import { FontAwesome6 } from '@react-native-vector-icons/fontawesome6'; import FontAwesome6Glyphs from '@react-native-vector-icons/fontawesome6/glyphmaps/FontAwesome6.json'; import FontAwesome6Meta from '@react-native-vector-icons/fontawesome6/glyphmaps/FontAwesome6_meta.json'; import { FontAwesome6Pro } from '@react-native-vector-icons/fontawesome6-pro'; import FontAwesome6ProGlyphs from '@react-native-vector-icons/fontawesome6-pro/glyphmaps/FontAwesome6Pro.json'; import FontAwesome6ProMeta from '@react-native-vector-icons/fontawesome6-pro/glyphmaps/FontAwesome6Pro_meta.json'; import createFontelloIconSet from '@react-native-vector-icons/fontello'; import { Fontisto } from '@react-native-vector-icons/fontisto'; import FontistoGlyphs from '@react-native-vector-icons/fontisto/glyphmaps/Fontisto.json'; import { Foundation } from '@react-native-vector-icons/foundation'; import FoundationGlyphs from '@react-native-vector-icons/foundation/glyphmaps/Foundation.json'; import createIcoMoonIconSet from '@react-native-vector-icons/icomoon'; import { Ionicons } from '@react-native-vector-icons/ionicons'; import IoniconsGlyphs from '@react-native-vector-icons/ionicons/glyphmaps/Ionicons.json'; import { Lucide } from '@react-native-vector-icons/lucide'; import LucideGlyphs from '@react-native-vector-icons/lucide/glyphmaps/Lucide.json'; import { MaterialDesignIcons } from '@react-native-vector-icons/material-design-icons'; import MaterialDesignIconsGlyphs from '@react-native-vector-icons/material-design-icons/glyphmaps/MaterialDesignIcons.json'; import { MaterialIcons } from '@react-native-vector-icons/material-icons'; import MaterialIconsGlyphs from '@react-native-vector-icons/material-icons/glyphmaps/MaterialIcons.json'; import { Octicons } from '@react-native-vector-icons/octicons'; import OcticonsGlyphs from '@react-native-vector-icons/octicons/glyphmaps/Octicons.json'; import { SimpleLineIcons } from '@react-native-vector-icons/simple-line-icons'; import SimpleLineIconsGlyphs from '@react-native-vector-icons/simple-line-icons/glyphmaps/SimpleLineIcons.json'; import { Zocial } from '@react-native-vector-icons/zocial'; import ZocialGlyphs from '@react-native-vector-icons/zocial/glyphmaps/Zocial.json'; import FontelloConfig from './configs/fontello.config.json'; import IcoMoonConfig from './configs/icomoon.config.json'; const Fontello = createFontelloIconSet(FontelloConfig); const FontelloGlyphs: Record = {}; FontelloConfig.glyphs.forEach((glyph) => { FontelloGlyphs[glyph.css] = glyph.code; }); const IcoMoon = createIcoMoonIconSet(IcoMoonConfig); const IcoMoonGlyphs: Record = {}; IcoMoonConfig.icons.forEach((icon) => { icon.properties.name.split(/\s*,\s*/g).forEach((name) => { IcoMoonGlyphs[name] = icon.properties.code; }); }); const groupGlyphNames = (glyphMap: Record) => { const result: Record = {}; Object.entries(glyphMap).forEach(([glyphName, glyphValue]) => { result[glyphValue] ||= []; result[glyphValue].push(glyphName); }); return Object.values(result); }; const iconSets = { AntD: { component: AntDesign, glyphNames: groupGlyphNames(AntDesignGlyphs), meta: undefined }, Entypo: { component: Entypo, glyphNames: groupGlyphNames(EntypoGlyphs), meta: undefined }, EvilIcons: { component: EvilIcons, glyphNames: groupGlyphNames(EvilIconsGlyphs), meta: undefined }, Feather: { component: Feather, glyphNames: groupGlyphNames(FeatherGlyphs), meta: undefined }, FontAwesome: { component: FontAwesome, glyphNames: groupGlyphNames(FontAwesomeGlyphs), meta: undefined }, FontAwesome5: { component: FontAwesome5, glyphNames: groupGlyphNames(FontAwesome5Glyphs), meta: FontAwesome5Meta }, FontAwesome5Pro: { component: FontAwesome5Pro, glyphNames: groupGlyphNames(FontAwesome5ProGlyphs), meta: FontAwesome5ProMeta, }, FontAwesome6: { component: FontAwesome6, glyphNames: groupGlyphNames(FontAwesome6Glyphs), meta: FontAwesome6Meta }, FontAwesome6Pro: { component: FontAwesome6Pro, glyphNames: groupGlyphNames(FontAwesome6ProGlyphs), meta: FontAwesome6ProMeta, }, Fontello: { component: Fontello, glyphNames: groupGlyphNames(FontelloGlyphs), meta: undefined }, Lucide: { component: Lucide, glyphNames: groupGlyphNames(LucideGlyphs), meta: undefined }, Fontisto: { component: Fontisto, glyphNames: groupGlyphNames(FontistoGlyphs), meta: undefined }, Foundation: { component: Foundation, glyphNames: groupGlyphNames(FoundationGlyphs), meta: undefined }, IcoMoon: { component: IcoMoon, glyphNames: groupGlyphNames(IcoMoonGlyphs), meta: undefined }, Ionicons: { component: Ionicons, glyphNames: groupGlyphNames(IoniconsGlyphs), meta: undefined }, MaterialIcons: { component: MaterialIcons, glyphNames: groupGlyphNames(MaterialIconsGlyphs), meta: undefined }, MaterialCommunityIcons: { component: MaterialDesignIcons, glyphNames: groupGlyphNames(MaterialDesignIconsGlyphs), meta: undefined, }, Octicons: { component: Octicons, glyphNames: groupGlyphNames(OcticonsGlyphs), meta: undefined }, SimpleLineIcons: { component: SimpleLineIcons, glyphNames: groupGlyphNames(SimpleLineIconsGlyphs), meta: undefined }, Zocial: { component: Zocial, glyphNames: groupGlyphNames(ZocialGlyphs), meta: undefined }, }; export default iconSets; ================================================ FILE: packages/icon-explorer/tsconfig.json ================================================ { "extends": "@react-native/typescript-config" } ================================================ FILE: packages/icon-explorer/visionos/Podfile ================================================ ws_dir = Pathname.new(__dir__) ws_dir = ws_dir.parent until File.exist?("#{ws_dir}/node_modules/react-native-test-app/visionos/test_app.rb") || ws_dir.expand_path.to_s == '/' require "#{ws_dir}/node_modules/react-native-test-app/visionos/test_app.rb" workspace 'IconExplorer.xcworkspace' use_test_app! ================================================ FILE: packages/ionicons/.fontcustom-manifest.json ================================================ { "checksum": { "previous": "e96312b6719260d2b09198146ebf6dbf01cf43de83c88a7b6e2e944ec41a2e50", "current": "e96312b6719260d2b09198146ebf6dbf01cf43de83c88a7b6e2e944ec41a2e50" }, "fonts": [ "Ionicons/Ionicons.ttf", "Ionicons/Ionicons.svg", "Ionicons/Ionicons.woff", "Ionicons/Ionicons.eot", "Ionicons/Ionicons.woff2" ], "glyphs": { "accessibility": { "codepoint": 61696, "source": "fixedSvg/accessibility.svg" }, "accessibility-outline": { "codepoint": 61697, "source": "fixedSvg/accessibility-outline.svg" }, "accessibility-sharp": { "codepoint": 61698, "source": "fixedSvg/accessibility-sharp.svg" }, "add": { "codepoint": 61699, "source": "fixedSvg/add.svg" }, "add-circle": { "codepoint": 61700, "source": "fixedSvg/add-circle.svg" }, "add-circle-outline": { "codepoint": 61701, "source": "fixedSvg/add-circle-outline.svg" }, "add-circle-sharp": { "codepoint": 61702, "source": "fixedSvg/add-circle-sharp.svg" }, "add-outline": { "codepoint": 61703, "source": "fixedSvg/add-outline.svg" }, "add-sharp": { "codepoint": 61704, "source": "fixedSvg/add-sharp.svg" }, "airplane": { "codepoint": 61705, "source": "fixedSvg/airplane.svg" }, "airplane-outline": { "codepoint": 61706, "source": "fixedSvg/airplane-outline.svg" }, "airplane-sharp": { "codepoint": 61707, "source": "fixedSvg/airplane-sharp.svg" }, "alarm": { "codepoint": 61708, "source": "fixedSvg/alarm.svg" }, "alarm-outline": { "codepoint": 61709, "source": "fixedSvg/alarm-outline.svg" }, "alarm-sharp": { "codepoint": 61710, "source": "fixedSvg/alarm-sharp.svg" }, "albums": { "codepoint": 61711, "source": "fixedSvg/albums.svg" }, "albums-outline": { "codepoint": 61712, "source": "fixedSvg/albums-outline.svg" }, "albums-sharp": { "codepoint": 61713, "source": "fixedSvg/albums-sharp.svg" }, "alert": { "codepoint": 61714, "source": "fixedSvg/alert.svg" }, "alert-circle": { "codepoint": 61715, "source": "fixedSvg/alert-circle.svg" }, "alert-circle-outline": { "codepoint": 61716, "source": "fixedSvg/alert-circle-outline.svg" }, "alert-circle-sharp": { "codepoint": 61717, "source": "fixedSvg/alert-circle-sharp.svg" }, "alert-outline": { "codepoint": 61718, "source": "fixedSvg/alert-outline.svg" }, "alert-sharp": { "codepoint": 61719, "source": "fixedSvg/alert-sharp.svg" }, "american-football": { "codepoint": 61720, "source": "fixedSvg/american-football.svg" }, "american-football-outline": { "codepoint": 61721, "source": "fixedSvg/american-football-outline.svg" }, "american-football-sharp": { "codepoint": 61722, "source": "fixedSvg/american-football-sharp.svg" }, "analytics": { "codepoint": 61723, "source": "fixedSvg/analytics.svg" }, "analytics-outline": { "codepoint": 61724, "source": "fixedSvg/analytics-outline.svg" }, "analytics-sharp": { "codepoint": 61725, "source": "fixedSvg/analytics-sharp.svg" }, "aperture": { "codepoint": 61726, "source": "fixedSvg/aperture.svg" }, "aperture-outline": { "codepoint": 61727, "source": "fixedSvg/aperture-outline.svg" }, "aperture-sharp": { "codepoint": 61728, "source": "fixedSvg/aperture-sharp.svg" }, "apps": { "codepoint": 61729, "source": "fixedSvg/apps.svg" }, "apps-outline": { "codepoint": 61730, "source": "fixedSvg/apps-outline.svg" }, "apps-sharp": { "codepoint": 61731, "source": "fixedSvg/apps-sharp.svg" }, "archive": { "codepoint": 61732, "source": "fixedSvg/archive.svg" }, "archive-outline": { "codepoint": 61733, "source": "fixedSvg/archive-outline.svg" }, "archive-sharp": { "codepoint": 61734, "source": "fixedSvg/archive-sharp.svg" }, "arrow-back": { "codepoint": 61735, "source": "fixedSvg/arrow-back.svg" }, "arrow-back-circle": { "codepoint": 61736, "source": "fixedSvg/arrow-back-circle.svg" }, "arrow-back-circle-outline": { "codepoint": 61737, "source": "fixedSvg/arrow-back-circle-outline.svg" }, "arrow-back-circle-sharp": { "codepoint": 61738, "source": "fixedSvg/arrow-back-circle-sharp.svg" }, "arrow-back-outline": { "codepoint": 61739, "source": "fixedSvg/arrow-back-outline.svg" }, "arrow-back-sharp": { "codepoint": 61740, "source": "fixedSvg/arrow-back-sharp.svg" }, "arrow-down": { "codepoint": 61741, "source": "fixedSvg/arrow-down.svg" }, "arrow-down-circle": { "codepoint": 61742, "source": "fixedSvg/arrow-down-circle.svg" }, "arrow-down-circle-outline": { "codepoint": 61743, "source": "fixedSvg/arrow-down-circle-outline.svg" }, "arrow-down-circle-sharp": { "codepoint": 61744, "source": "fixedSvg/arrow-down-circle-sharp.svg" }, "arrow-down-left-box": { "codepoint": 63034, "source": "fixedSvg/arrow-down-left-box.svg" }, "arrow-down-left-box-outline": { "codepoint": 63035, "source": "fixedSvg/arrow-down-left-box-outline.svg" }, "arrow-down-left-box-sharp": { "codepoint": 63036, "source": "fixedSvg/arrow-down-left-box-sharp.svg" }, "arrow-down-outline": { "codepoint": 61745, "source": "fixedSvg/arrow-down-outline.svg" }, "arrow-down-right-box": { "codepoint": 63037, "source": "fixedSvg/arrow-down-right-box.svg" }, "arrow-down-right-box-outline": { "codepoint": 63038, "source": "fixedSvg/arrow-down-right-box-outline.svg" }, "arrow-down-right-box-sharp": { "codepoint": 63039, "source": "fixedSvg/arrow-down-right-box-sharp.svg" }, "arrow-down-sharp": { "codepoint": 61746, "source": "fixedSvg/arrow-down-sharp.svg" }, "arrow-forward": { "codepoint": 61747, "source": "fixedSvg/arrow-forward.svg" }, "arrow-forward-circle": { "codepoint": 61748, "source": "fixedSvg/arrow-forward-circle.svg" }, "arrow-forward-circle-outline": { "codepoint": 61749, "source": "fixedSvg/arrow-forward-circle-outline.svg" }, "arrow-forward-circle-sharp": { "codepoint": 61750, "source": "fixedSvg/arrow-forward-circle-sharp.svg" }, "arrow-forward-outline": { "codepoint": 61751, "source": "fixedSvg/arrow-forward-outline.svg" }, "arrow-forward-sharp": { "codepoint": 61752, "source": "fixedSvg/arrow-forward-sharp.svg" }, "arrow-redo": { "codepoint": 61753, "source": "fixedSvg/arrow-redo.svg" }, "arrow-redo-circle": { "codepoint": 61754, "source": "fixedSvg/arrow-redo-circle.svg" }, "arrow-redo-circle-outline": { "codepoint": 61755, "source": "fixedSvg/arrow-redo-circle-outline.svg" }, "arrow-redo-circle-sharp": { "codepoint": 61756, "source": "fixedSvg/arrow-redo-circle-sharp.svg" }, "arrow-redo-outline": { "codepoint": 61757, "source": "fixedSvg/arrow-redo-outline.svg" }, "arrow-redo-sharp": { "codepoint": 61758, "source": "fixedSvg/arrow-redo-sharp.svg" }, "arrow-undo": { "codepoint": 61759, "source": "fixedSvg/arrow-undo.svg" }, "arrow-undo-circle": { "codepoint": 61760, "source": "fixedSvg/arrow-undo-circle.svg" }, "arrow-undo-circle-outline": { "codepoint": 61761, "source": "fixedSvg/arrow-undo-circle-outline.svg" }, "arrow-undo-circle-sharp": { "codepoint": 61762, "source": "fixedSvg/arrow-undo-circle-sharp.svg" }, "arrow-undo-outline": { "codepoint": 61763, "source": "fixedSvg/arrow-undo-outline.svg" }, "arrow-undo-sharp": { "codepoint": 61764, "source": "fixedSvg/arrow-undo-sharp.svg" }, "arrow-up": { "codepoint": 61765, "source": "fixedSvg/arrow-up.svg" }, "arrow-up-circle": { "codepoint": 61766, "source": "fixedSvg/arrow-up-circle.svg" }, "arrow-up-circle-outline": { "codepoint": 61767, "source": "fixedSvg/arrow-up-circle-outline.svg" }, "arrow-up-circle-sharp": { "codepoint": 61768, "source": "fixedSvg/arrow-up-circle-sharp.svg" }, "arrow-up-left-box": { "codepoint": 63040, "source": "fixedSvg/arrow-up-left-box.svg" }, "arrow-up-left-box-outline": { "codepoint": 63041, "source": "fixedSvg/arrow-up-left-box-outline.svg" }, "arrow-up-left-box-sharp": { "codepoint": 63042, "source": "fixedSvg/arrow-up-left-box-sharp.svg" }, "arrow-up-outline": { "codepoint": 61769, "source": "fixedSvg/arrow-up-outline.svg" }, "arrow-up-right-box": { "codepoint": 63043, "source": "fixedSvg/arrow-up-right-box.svg" }, "arrow-up-right-box-outline": { "codepoint": 63044, "source": "fixedSvg/arrow-up-right-box-outline.svg" }, "arrow-up-right-box-sharp": { "codepoint": 63045, "source": "fixedSvg/arrow-up-right-box-sharp.svg" }, "arrow-up-sharp": { "codepoint": 61770, "source": "fixedSvg/arrow-up-sharp.svg" }, "at": { "codepoint": 61771, "source": "fixedSvg/at.svg" }, "at-circle": { "codepoint": 61772, "source": "fixedSvg/at-circle.svg" }, "at-circle-outline": { "codepoint": 61773, "source": "fixedSvg/at-circle-outline.svg" }, "at-circle-sharp": { "codepoint": 61774, "source": "fixedSvg/at-circle-sharp.svg" }, "at-outline": { "codepoint": 61775, "source": "fixedSvg/at-outline.svg" }, "at-sharp": { "codepoint": 61776, "source": "fixedSvg/at-sharp.svg" }, "attach": { "codepoint": 61777, "source": "fixedSvg/attach.svg" }, "attach-outline": { "codepoint": 61778, "source": "fixedSvg/attach-outline.svg" }, "attach-sharp": { "codepoint": 61779, "source": "fixedSvg/attach-sharp.svg" }, "backspace": { "codepoint": 61780, "source": "fixedSvg/backspace.svg" }, "backspace-outline": { "codepoint": 61781, "source": "fixedSvg/backspace-outline.svg" }, "backspace-sharp": { "codepoint": 61782, "source": "fixedSvg/backspace-sharp.svg" }, "bag": { "codepoint": 61783, "source": "fixedSvg/bag.svg" }, "bag-add": { "codepoint": 61784, "source": "fixedSvg/bag-add.svg" }, "bag-add-outline": { "codepoint": 61785, "source": "fixedSvg/bag-add-outline.svg" }, "bag-add-sharp": { "codepoint": 61786, "source": "fixedSvg/bag-add-sharp.svg" }, "bag-check": { "codepoint": 61787, "source": "fixedSvg/bag-check.svg" }, "bag-check-outline": { "codepoint": 61788, "source": "fixedSvg/bag-check-outline.svg" }, "bag-check-sharp": { "codepoint": 61789, "source": "fixedSvg/bag-check-sharp.svg" }, "bag-handle": { "codepoint": 61790, "source": "fixedSvg/bag-handle.svg" }, "bag-handle-outline": { "codepoint": 61791, "source": "fixedSvg/bag-handle-outline.svg" }, "bag-handle-sharp": { "codepoint": 61792, "source": "fixedSvg/bag-handle-sharp.svg" }, "bag-outline": { "codepoint": 61793, "source": "fixedSvg/bag-outline.svg" }, "bag-remove": { "codepoint": 61794, "source": "fixedSvg/bag-remove.svg" }, "bag-remove-outline": { "codepoint": 61795, "source": "fixedSvg/bag-remove-outline.svg" }, "bag-remove-sharp": { "codepoint": 61796, "source": "fixedSvg/bag-remove-sharp.svg" }, "bag-sharp": { "codepoint": 61797, "source": "fixedSvg/bag-sharp.svg" }, "balloon": { "codepoint": 61798, "source": "fixedSvg/balloon.svg" }, "balloon-outline": { "codepoint": 61799, "source": "fixedSvg/balloon-outline.svg" }, "balloon-sharp": { "codepoint": 61800, "source": "fixedSvg/balloon-sharp.svg" }, "ban": { "codepoint": 61801, "source": "fixedSvg/ban.svg" }, "ban-outline": { "codepoint": 61802, "source": "fixedSvg/ban-outline.svg" }, "ban-sharp": { "codepoint": 61803, "source": "fixedSvg/ban-sharp.svg" }, "bandage": { "codepoint": 61804, "source": "fixedSvg/bandage.svg" }, "bandage-outline": { "codepoint": 61805, "source": "fixedSvg/bandage-outline.svg" }, "bandage-sharp": { "codepoint": 61806, "source": "fixedSvg/bandage-sharp.svg" }, "bar-chart": { "codepoint": 61807, "source": "fixedSvg/bar-chart.svg" }, "bar-chart-outline": { "codepoint": 61808, "source": "fixedSvg/bar-chart-outline.svg" }, "bar-chart-sharp": { "codepoint": 61809, "source": "fixedSvg/bar-chart-sharp.svg" }, "barbell": { "codepoint": 61810, "source": "fixedSvg/barbell.svg" }, "barbell-outline": { "codepoint": 61811, "source": "fixedSvg/barbell-outline.svg" }, "barbell-sharp": { "codepoint": 61812, "source": "fixedSvg/barbell-sharp.svg" }, "barcode": { "codepoint": 61813, "source": "fixedSvg/barcode.svg" }, "barcode-outline": { "codepoint": 61814, "source": "fixedSvg/barcode-outline.svg" }, "barcode-sharp": { "codepoint": 61815, "source": "fixedSvg/barcode-sharp.svg" }, "baseball": { "codepoint": 61816, "source": "fixedSvg/baseball.svg" }, "baseball-outline": { "codepoint": 61817, "source": "fixedSvg/baseball-outline.svg" }, "baseball-sharp": { "codepoint": 61818, "source": "fixedSvg/baseball-sharp.svg" }, "basket": { "codepoint": 61819, "source": "fixedSvg/basket.svg" }, "basket-outline": { "codepoint": 61820, "source": "fixedSvg/basket-outline.svg" }, "basket-sharp": { "codepoint": 61821, "source": "fixedSvg/basket-sharp.svg" }, "basketball": { "codepoint": 61822, "source": "fixedSvg/basketball.svg" }, "basketball-outline": { "codepoint": 61823, "source": "fixedSvg/basketball-outline.svg" }, "basketball-sharp": { "codepoint": 61824, "source": "fixedSvg/basketball-sharp.svg" }, "battery-charging": { "codepoint": 61825, "source": "fixedSvg/battery-charging.svg" }, "battery-charging-outline": { "codepoint": 61826, "source": "fixedSvg/battery-charging-outline.svg" }, "battery-charging-sharp": { "codepoint": 61827, "source": "fixedSvg/battery-charging-sharp.svg" }, "battery-dead": { "codepoint": 61828, "source": "fixedSvg/battery-dead.svg" }, "battery-dead-outline": { "codepoint": 61829, "source": "fixedSvg/battery-dead-outline.svg" }, "battery-dead-sharp": { "codepoint": 61830, "source": "fixedSvg/battery-dead-sharp.svg" }, "battery-full": { "codepoint": 61831, "source": "fixedSvg/battery-full.svg" }, "battery-full-outline": { "codepoint": 61832, "source": "fixedSvg/battery-full-outline.svg" }, "battery-full-sharp": { "codepoint": 61833, "source": "fixedSvg/battery-full-sharp.svg" }, "battery-half": { "codepoint": 61834, "source": "fixedSvg/battery-half.svg" }, "battery-half-outline": { "codepoint": 61835, "source": "fixedSvg/battery-half-outline.svg" }, "battery-half-sharp": { "codepoint": 61836, "source": "fixedSvg/battery-half-sharp.svg" }, "beaker": { "codepoint": 61837, "source": "fixedSvg/beaker.svg" }, "beaker-outline": { "codepoint": 61838, "source": "fixedSvg/beaker-outline.svg" }, "beaker-sharp": { "codepoint": 61839, "source": "fixedSvg/beaker-sharp.svg" }, "bed": { "codepoint": 61840, "source": "fixedSvg/bed.svg" }, "bed-outline": { "codepoint": 61841, "source": "fixedSvg/bed-outline.svg" }, "bed-sharp": { "codepoint": 61842, "source": "fixedSvg/bed-sharp.svg" }, "beer": { "codepoint": 61843, "source": "fixedSvg/beer.svg" }, "beer-outline": { "codepoint": 61844, "source": "fixedSvg/beer-outline.svg" }, "beer-sharp": { "codepoint": 61845, "source": "fixedSvg/beer-sharp.svg" }, "bicycle": { "codepoint": 61846, "source": "fixedSvg/bicycle.svg" }, "bicycle-outline": { "codepoint": 61847, "source": "fixedSvg/bicycle-outline.svg" }, "bicycle-sharp": { "codepoint": 61848, "source": "fixedSvg/bicycle-sharp.svg" }, "binoculars": { "codepoint": 63046, "source": "fixedSvg/binoculars.svg" }, "binoculars-outline": { "codepoint": 63047, "source": "fixedSvg/binoculars-outline.svg" }, "binoculars-sharp": { "codepoint": 63048, "source": "fixedSvg/binoculars-sharp.svg" }, "bluetooth": { "codepoint": 61849, "source": "fixedSvg/bluetooth.svg" }, "bluetooth-outline": { "codepoint": 61850, "source": "fixedSvg/bluetooth-outline.svg" }, "bluetooth-sharp": { "codepoint": 61851, "source": "fixedSvg/bluetooth-sharp.svg" }, "boat": { "codepoint": 61852, "source": "fixedSvg/boat.svg" }, "boat-outline": { "codepoint": 61853, "source": "fixedSvg/boat-outline.svg" }, "boat-sharp": { "codepoint": 61854, "source": "fixedSvg/boat-sharp.svg" }, "body": { "codepoint": 61855, "source": "fixedSvg/body.svg" }, "body-outline": { "codepoint": 61856, "source": "fixedSvg/body-outline.svg" }, "body-sharp": { "codepoint": 61857, "source": "fixedSvg/body-sharp.svg" }, "bonfire": { "codepoint": 61858, "source": "fixedSvg/bonfire.svg" }, "bonfire-outline": { "codepoint": 61859, "source": "fixedSvg/bonfire-outline.svg" }, "bonfire-sharp": { "codepoint": 61860, "source": "fixedSvg/bonfire-sharp.svg" }, "book": { "codepoint": 61861, "source": "fixedSvg/book.svg" }, "book-outline": { "codepoint": 61862, "source": "fixedSvg/book-outline.svg" }, "book-sharp": { "codepoint": 61863, "source": "fixedSvg/book-sharp.svg" }, "bookmark": { "codepoint": 61864, "source": "fixedSvg/bookmark.svg" }, "bookmark-outline": { "codepoint": 61865, "source": "fixedSvg/bookmark-outline.svg" }, "bookmark-sharp": { "codepoint": 61866, "source": "fixedSvg/bookmark-sharp.svg" }, "bookmarks": { "codepoint": 61867, "source": "fixedSvg/bookmarks.svg" }, "bookmarks-outline": { "codepoint": 61868, "source": "fixedSvg/bookmarks-outline.svg" }, "bookmarks-sharp": { "codepoint": 61869, "source": "fixedSvg/bookmarks-sharp.svg" }, "bowling-ball": { "codepoint": 61870, "source": "fixedSvg/bowling-ball.svg" }, "bowling-ball-outline": { "codepoint": 61871, "source": "fixedSvg/bowling-ball-outline.svg" }, "bowling-ball-sharp": { "codepoint": 61872, "source": "fixedSvg/bowling-ball-sharp.svg" }, "briefcase": { "codepoint": 61873, "source": "fixedSvg/briefcase.svg" }, "briefcase-outline": { "codepoint": 61874, "source": "fixedSvg/briefcase-outline.svg" }, "briefcase-sharp": { "codepoint": 61875, "source": "fixedSvg/briefcase-sharp.svg" }, "browsers": { "codepoint": 61876, "source": "fixedSvg/browsers.svg" }, "browsers-outline": { "codepoint": 61877, "source": "fixedSvg/browsers-outline.svg" }, "browsers-sharp": { "codepoint": 61878, "source": "fixedSvg/browsers-sharp.svg" }, "brush": { "codepoint": 61879, "source": "fixedSvg/brush.svg" }, "brush-outline": { "codepoint": 61880, "source": "fixedSvg/brush-outline.svg" }, "brush-sharp": { "codepoint": 61881, "source": "fixedSvg/brush-sharp.svg" }, "bug": { "codepoint": 61882, "source": "fixedSvg/bug.svg" }, "bug-outline": { "codepoint": 61883, "source": "fixedSvg/bug-outline.svg" }, "bug-sharp": { "codepoint": 61884, "source": "fixedSvg/bug-sharp.svg" }, "build": { "codepoint": 61885, "source": "fixedSvg/build.svg" }, "build-outline": { "codepoint": 61886, "source": "fixedSvg/build-outline.svg" }, "build-sharp": { "codepoint": 61887, "source": "fixedSvg/build-sharp.svg" }, "bulb": { "codepoint": 61888, "source": "fixedSvg/bulb.svg" }, "bulb-outline": { "codepoint": 61889, "source": "fixedSvg/bulb-outline.svg" }, "bulb-sharp": { "codepoint": 61890, "source": "fixedSvg/bulb-sharp.svg" }, "bus": { "codepoint": 61891, "source": "fixedSvg/bus.svg" }, "bus-outline": { "codepoint": 61892, "source": "fixedSvg/bus-outline.svg" }, "bus-sharp": { "codepoint": 61893, "source": "fixedSvg/bus-sharp.svg" }, "business": { "codepoint": 61894, "source": "fixedSvg/business.svg" }, "business-outline": { "codepoint": 61895, "source": "fixedSvg/business-outline.svg" }, "business-sharp": { "codepoint": 61896, "source": "fixedSvg/business-sharp.svg" }, "cafe": { "codepoint": 61897, "source": "fixedSvg/cafe.svg" }, "cafe-outline": { "codepoint": 61898, "source": "fixedSvg/cafe-outline.svg" }, "cafe-sharp": { "codepoint": 61899, "source": "fixedSvg/cafe-sharp.svg" }, "calculator": { "codepoint": 61900, "source": "fixedSvg/calculator.svg" }, "calculator-outline": { "codepoint": 61901, "source": "fixedSvg/calculator-outline.svg" }, "calculator-sharp": { "codepoint": 61902, "source": "fixedSvg/calculator-sharp.svg" }, "calendar": { "codepoint": 61903, "source": "fixedSvg/calendar.svg" }, "calendar-clear": { "codepoint": 61904, "source": "fixedSvg/calendar-clear.svg" }, "calendar-clear-outline": { "codepoint": 61905, "source": "fixedSvg/calendar-clear-outline.svg" }, "calendar-clear-sharp": { "codepoint": 61906, "source": "fixedSvg/calendar-clear-sharp.svg" }, "calendar-number": { "codepoint": 61907, "source": "fixedSvg/calendar-number.svg" }, "calendar-number-outline": { "codepoint": 61908, "source": "fixedSvg/calendar-number-outline.svg" }, "calendar-number-sharp": { "codepoint": 61909, "source": "fixedSvg/calendar-number-sharp.svg" }, "calendar-outline": { "codepoint": 61910, "source": "fixedSvg/calendar-outline.svg" }, "calendar-sharp": { "codepoint": 61911, "source": "fixedSvg/calendar-sharp.svg" }, "call": { "codepoint": 61912, "source": "fixedSvg/call.svg" }, "call-outline": { "codepoint": 61913, "source": "fixedSvg/call-outline.svg" }, "call-sharp": { "codepoint": 61914, "source": "fixedSvg/call-sharp.svg" }, "camera": { "codepoint": 61915, "source": "fixedSvg/camera.svg" }, "camera-outline": { "codepoint": 61916, "source": "fixedSvg/camera-outline.svg" }, "camera-reverse": { "codepoint": 61917, "source": "fixedSvg/camera-reverse.svg" }, "camera-reverse-outline": { "codepoint": 61918, "source": "fixedSvg/camera-reverse-outline.svg" }, "camera-reverse-sharp": { "codepoint": 61919, "source": "fixedSvg/camera-reverse-sharp.svg" }, "camera-sharp": { "codepoint": 61920, "source": "fixedSvg/camera-sharp.svg" }, "car": { "codepoint": 61921, "source": "fixedSvg/car.svg" }, "car-outline": { "codepoint": 61922, "source": "fixedSvg/car-outline.svg" }, "car-sharp": { "codepoint": 61923, "source": "fixedSvg/car-sharp.svg" }, "car-sport": { "codepoint": 61924, "source": "fixedSvg/car-sport.svg" }, "car-sport-outline": { "codepoint": 61925, "source": "fixedSvg/car-sport-outline.svg" }, "car-sport-sharp": { "codepoint": 61926, "source": "fixedSvg/car-sport-sharp.svg" }, "card": { "codepoint": 61927, "source": "fixedSvg/card.svg" }, "card-outline": { "codepoint": 61928, "source": "fixedSvg/card-outline.svg" }, "card-sharp": { "codepoint": 61929, "source": "fixedSvg/card-sharp.svg" }, "caret-back": { "codepoint": 61930, "source": "fixedSvg/caret-back.svg" }, "caret-back-circle": { "codepoint": 61931, "source": "fixedSvg/caret-back-circle.svg" }, "caret-back-circle-outline": { "codepoint": 61932, "source": "fixedSvg/caret-back-circle-outline.svg" }, "caret-back-circle-sharp": { "codepoint": 61933, "source": "fixedSvg/caret-back-circle-sharp.svg" }, "caret-back-outline": { "codepoint": 61934, "source": "fixedSvg/caret-back-outline.svg" }, "caret-back-sharp": { "codepoint": 61935, "source": "fixedSvg/caret-back-sharp.svg" }, "caret-down": { "codepoint": 61936, "source": "fixedSvg/caret-down.svg" }, "caret-down-circle": { "codepoint": 61937, "source": "fixedSvg/caret-down-circle.svg" }, "caret-down-circle-outline": { "codepoint": 61938, "source": "fixedSvg/caret-down-circle-outline.svg" }, "caret-down-circle-sharp": { "codepoint": 61939, "source": "fixedSvg/caret-down-circle-sharp.svg" }, "caret-down-outline": { "codepoint": 61940, "source": "fixedSvg/caret-down-outline.svg" }, "caret-down-sharp": { "codepoint": 61941, "source": "fixedSvg/caret-down-sharp.svg" }, "caret-forward": { "codepoint": 61942, "source": "fixedSvg/caret-forward.svg" }, "caret-forward-circle": { "codepoint": 61943, "source": "fixedSvg/caret-forward-circle.svg" }, "caret-forward-circle-outline": { "codepoint": 61944, "source": "fixedSvg/caret-forward-circle-outline.svg" }, "caret-forward-circle-sharp": { "codepoint": 61945, "source": "fixedSvg/caret-forward-circle-sharp.svg" }, "caret-forward-outline": { "codepoint": 61946, "source": "fixedSvg/caret-forward-outline.svg" }, "caret-forward-sharp": { "codepoint": 61947, "source": "fixedSvg/caret-forward-sharp.svg" }, "caret-up": { "codepoint": 61948, "source": "fixedSvg/caret-up.svg" }, "caret-up-circle": { "codepoint": 61949, "source": "fixedSvg/caret-up-circle.svg" }, "caret-up-circle-outline": { "codepoint": 61950, "source": "fixedSvg/caret-up-circle-outline.svg" }, "caret-up-circle-sharp": { "codepoint": 61951, "source": "fixedSvg/caret-up-circle-sharp.svg" }, "caret-up-outline": { "codepoint": 61952, "source": "fixedSvg/caret-up-outline.svg" }, "caret-up-sharp": { "codepoint": 61953, "source": "fixedSvg/caret-up-sharp.svg" }, "cart": { "codepoint": 61954, "source": "fixedSvg/cart.svg" }, "cart-outline": { "codepoint": 61955, "source": "fixedSvg/cart-outline.svg" }, "cart-sharp": { "codepoint": 61956, "source": "fixedSvg/cart-sharp.svg" }, "cash": { "codepoint": 61957, "source": "fixedSvg/cash.svg" }, "cash-outline": { "codepoint": 61958, "source": "fixedSvg/cash-outline.svg" }, "cash-sharp": { "codepoint": 61959, "source": "fixedSvg/cash-sharp.svg" }, "cellular": { "codepoint": 61960, "source": "fixedSvg/cellular.svg" }, "cellular-outline": { "codepoint": 61961, "source": "fixedSvg/cellular-outline.svg" }, "cellular-sharp": { "codepoint": 61962, "source": "fixedSvg/cellular-sharp.svg" }, "chatbox": { "codepoint": 61963, "source": "fixedSvg/chatbox.svg" }, "chatbox-ellipses": { "codepoint": 61964, "source": "fixedSvg/chatbox-ellipses.svg" }, "chatbox-ellipses-outline": { "codepoint": 61965, "source": "fixedSvg/chatbox-ellipses-outline.svg" }, "chatbox-ellipses-sharp": { "codepoint": 61966, "source": "fixedSvg/chatbox-ellipses-sharp.svg" }, "chatbox-outline": { "codepoint": 61967, "source": "fixedSvg/chatbox-outline.svg" }, "chatbox-sharp": { "codepoint": 61968, "source": "fixedSvg/chatbox-sharp.svg" }, "chatbubble": { "codepoint": 61969, "source": "fixedSvg/chatbubble.svg" }, "chatbubble-ellipses": { "codepoint": 61970, "source": "fixedSvg/chatbubble-ellipses.svg" }, "chatbubble-ellipses-outline": { "codepoint": 61971, "source": "fixedSvg/chatbubble-ellipses-outline.svg" }, "chatbubble-ellipses-sharp": { "codepoint": 61972, "source": "fixedSvg/chatbubble-ellipses-sharp.svg" }, "chatbubble-outline": { "codepoint": 61973, "source": "fixedSvg/chatbubble-outline.svg" }, "chatbubble-sharp": { "codepoint": 61974, "source": "fixedSvg/chatbubble-sharp.svg" }, "chatbubbles": { "codepoint": 61975, "source": "fixedSvg/chatbubbles.svg" }, "chatbubbles-outline": { "codepoint": 61976, "source": "fixedSvg/chatbubbles-outline.svg" }, "chatbubbles-sharp": { "codepoint": 61977, "source": "fixedSvg/chatbubbles-sharp.svg" }, "checkbox": { "codepoint": 61978, "source": "fixedSvg/checkbox.svg" }, "checkbox-outline": { "codepoint": 61979, "source": "fixedSvg/checkbox-outline.svg" }, "checkbox-sharp": { "codepoint": 61980, "source": "fixedSvg/checkbox-sharp.svg" }, "checkmark": { "codepoint": 61981, "source": "fixedSvg/checkmark.svg" }, "checkmark-circle": { "codepoint": 61982, "source": "fixedSvg/checkmark-circle.svg" }, "checkmark-circle-outline": { "codepoint": 61983, "source": "fixedSvg/checkmark-circle-outline.svg" }, "checkmark-circle-sharp": { "codepoint": 61984, "source": "fixedSvg/checkmark-circle-sharp.svg" }, "checkmark-done": { "codepoint": 61985, "source": "fixedSvg/checkmark-done.svg" }, "checkmark-done-circle": { "codepoint": 61986, "source": "fixedSvg/checkmark-done-circle.svg" }, "checkmark-done-circle-outline": { "codepoint": 61987, "source": "fixedSvg/checkmark-done-circle-outline.svg" }, "checkmark-done-circle-sharp": { "codepoint": 61988, "source": "fixedSvg/checkmark-done-circle-sharp.svg" }, "checkmark-done-outline": { "codepoint": 61989, "source": "fixedSvg/checkmark-done-outline.svg" }, "checkmark-done-sharp": { "codepoint": 61990, "source": "fixedSvg/checkmark-done-sharp.svg" }, "checkmark-outline": { "codepoint": 61991, "source": "fixedSvg/checkmark-outline.svg" }, "checkmark-sharp": { "codepoint": 61992, "source": "fixedSvg/checkmark-sharp.svg" }, "chevron-back": { "codepoint": 61993, "source": "fixedSvg/chevron-back.svg" }, "chevron-back-circle": { "codepoint": 61994, "source": "fixedSvg/chevron-back-circle.svg" }, "chevron-back-circle-outline": { "codepoint": 61995, "source": "fixedSvg/chevron-back-circle-outline.svg" }, "chevron-back-circle-sharp": { "codepoint": 61996, "source": "fixedSvg/chevron-back-circle-sharp.svg" }, "chevron-back-outline": { "codepoint": 61997, "source": "fixedSvg/chevron-back-outline.svg" }, "chevron-back-sharp": { "codepoint": 61998, "source": "fixedSvg/chevron-back-sharp.svg" }, "chevron-collapse": { "codepoint": 61999, "source": "fixedSvg/chevron-collapse.svg" }, "chevron-collapse-outline": { "codepoint": 62000, "source": "fixedSvg/chevron-collapse-outline.svg" }, "chevron-collapse-sharp": { "codepoint": 62001, "source": "fixedSvg/chevron-collapse-sharp.svg" }, "chevron-down": { "codepoint": 62002, "source": "fixedSvg/chevron-down.svg" }, "chevron-down-circle": { "codepoint": 62003, "source": "fixedSvg/chevron-down-circle.svg" }, "chevron-down-circle-outline": { "codepoint": 62004, "source": "fixedSvg/chevron-down-circle-outline.svg" }, "chevron-down-circle-sharp": { "codepoint": 62005, "source": "fixedSvg/chevron-down-circle-sharp.svg" }, "chevron-down-outline": { "codepoint": 62006, "source": "fixedSvg/chevron-down-outline.svg" }, "chevron-down-sharp": { "codepoint": 62007, "source": "fixedSvg/chevron-down-sharp.svg" }, "chevron-expand": { "codepoint": 62008, "source": "fixedSvg/chevron-expand.svg" }, "chevron-expand-outline": { "codepoint": 62009, "source": "fixedSvg/chevron-expand-outline.svg" }, "chevron-expand-sharp": { "codepoint": 62010, "source": "fixedSvg/chevron-expand-sharp.svg" }, "chevron-forward": { "codepoint": 62011, "source": "fixedSvg/chevron-forward.svg" }, "chevron-forward-circle": { "codepoint": 62012, "source": "fixedSvg/chevron-forward-circle.svg" }, "chevron-forward-circle-outline": { "codepoint": 62013, "source": "fixedSvg/chevron-forward-circle-outline.svg" }, "chevron-forward-circle-sharp": { "codepoint": 62014, "source": "fixedSvg/chevron-forward-circle-sharp.svg" }, "chevron-forward-outline": { "codepoint": 62015, "source": "fixedSvg/chevron-forward-outline.svg" }, "chevron-forward-sharp": { "codepoint": 62016, "source": "fixedSvg/chevron-forward-sharp.svg" }, "chevron-up": { "codepoint": 62017, "source": "fixedSvg/chevron-up.svg" }, "chevron-up-circle": { "codepoint": 62018, "source": "fixedSvg/chevron-up-circle.svg" }, "chevron-up-circle-outline": { "codepoint": 62019, "source": "fixedSvg/chevron-up-circle-outline.svg" }, "chevron-up-circle-sharp": { "codepoint": 62020, "source": "fixedSvg/chevron-up-circle-sharp.svg" }, "chevron-up-outline": { "codepoint": 62021, "source": "fixedSvg/chevron-up-outline.svg" }, "chevron-up-sharp": { "codepoint": 62022, "source": "fixedSvg/chevron-up-sharp.svg" }, "clipboard": { "codepoint": 62023, "source": "fixedSvg/clipboard.svg" }, "clipboard-outline": { "codepoint": 62024, "source": "fixedSvg/clipboard-outline.svg" }, "clipboard-sharp": { "codepoint": 62025, "source": "fixedSvg/clipboard-sharp.svg" }, "close": { "codepoint": 62026, "source": "fixedSvg/close.svg" }, "close-circle": { "codepoint": 62027, "source": "fixedSvg/close-circle.svg" }, "close-circle-outline": { "codepoint": 62028, "source": "fixedSvg/close-circle-outline.svg" }, "close-circle-sharp": { "codepoint": 62029, "source": "fixedSvg/close-circle-sharp.svg" }, "close-outline": { "codepoint": 62030, "source": "fixedSvg/close-outline.svg" }, "close-sharp": { "codepoint": 62031, "source": "fixedSvg/close-sharp.svg" }, "cloud": { "codepoint": 62032, "source": "fixedSvg/cloud.svg" }, "cloud-circle": { "codepoint": 62033, "source": "fixedSvg/cloud-circle.svg" }, "cloud-circle-outline": { "codepoint": 62034, "source": "fixedSvg/cloud-circle-outline.svg" }, "cloud-circle-sharp": { "codepoint": 62035, "source": "fixedSvg/cloud-circle-sharp.svg" }, "cloud-done": { "codepoint": 62036, "source": "fixedSvg/cloud-done.svg" }, "cloud-done-outline": { "codepoint": 62037, "source": "fixedSvg/cloud-done-outline.svg" }, "cloud-done-sharp": { "codepoint": 62038, "source": "fixedSvg/cloud-done-sharp.svg" }, "cloud-download": { "codepoint": 62039, "source": "fixedSvg/cloud-download.svg" }, "cloud-download-outline": { "codepoint": 62040, "source": "fixedSvg/cloud-download-outline.svg" }, "cloud-download-sharp": { "codepoint": 62041, "source": "fixedSvg/cloud-download-sharp.svg" }, "cloud-offline": { "codepoint": 62042, "source": "fixedSvg/cloud-offline.svg" }, "cloud-offline-outline": { "codepoint": 62043, "source": "fixedSvg/cloud-offline-outline.svg" }, "cloud-offline-sharp": { "codepoint": 62044, "source": "fixedSvg/cloud-offline-sharp.svg" }, "cloud-outline": { "codepoint": 62045, "source": "fixedSvg/cloud-outline.svg" }, "cloud-sharp": { "codepoint": 62046, "source": "fixedSvg/cloud-sharp.svg" }, "cloud-upload": { "codepoint": 62047, "source": "fixedSvg/cloud-upload.svg" }, "cloud-upload-outline": { "codepoint": 62048, "source": "fixedSvg/cloud-upload-outline.svg" }, "cloud-upload-sharp": { "codepoint": 62049, "source": "fixedSvg/cloud-upload-sharp.svg" }, "cloudy": { "codepoint": 62050, "source": "fixedSvg/cloudy.svg" }, "cloudy-night": { "codepoint": 62051, "source": "fixedSvg/cloudy-night.svg" }, "cloudy-night-outline": { "codepoint": 62052, "source": "fixedSvg/cloudy-night-outline.svg" }, "cloudy-night-sharp": { "codepoint": 62053, "source": "fixedSvg/cloudy-night-sharp.svg" }, "cloudy-outline": { "codepoint": 62054, "source": "fixedSvg/cloudy-outline.svg" }, "cloudy-sharp": { "codepoint": 62055, "source": "fixedSvg/cloudy-sharp.svg" }, "code": { "codepoint": 62056, "source": "fixedSvg/code.svg" }, "code-download": { "codepoint": 62057, "source": "fixedSvg/code-download.svg" }, "code-download-outline": { "codepoint": 62058, "source": "fixedSvg/code-download-outline.svg" }, "code-download-sharp": { "codepoint": 62059, "source": "fixedSvg/code-download-sharp.svg" }, "code-outline": { "codepoint": 62060, "source": "fixedSvg/code-outline.svg" }, "code-sharp": { "codepoint": 62061, "source": "fixedSvg/code-sharp.svg" }, "code-slash": { "codepoint": 62062, "source": "fixedSvg/code-slash.svg" }, "code-slash-outline": { "codepoint": 62063, "source": "fixedSvg/code-slash-outline.svg" }, "code-slash-sharp": { "codepoint": 62064, "source": "fixedSvg/code-slash-sharp.svg" }, "code-working": { "codepoint": 62065, "source": "fixedSvg/code-working.svg" }, "code-working-outline": { "codepoint": 62066, "source": "fixedSvg/code-working-outline.svg" }, "code-working-sharp": { "codepoint": 62067, "source": "fixedSvg/code-working-sharp.svg" }, "cog": { "codepoint": 62068, "source": "fixedSvg/cog.svg" }, "cog-outline": { "codepoint": 62069, "source": "fixedSvg/cog-outline.svg" }, "cog-sharp": { "codepoint": 62070, "source": "fixedSvg/cog-sharp.svg" }, "color-fill": { "codepoint": 62071, "source": "fixedSvg/color-fill.svg" }, "color-fill-outline": { "codepoint": 62072, "source": "fixedSvg/color-fill-outline.svg" }, "color-fill-sharp": { "codepoint": 62073, "source": "fixedSvg/color-fill-sharp.svg" }, "color-filter": { "codepoint": 62074, "source": "fixedSvg/color-filter.svg" }, "color-filter-outline": { "codepoint": 62075, "source": "fixedSvg/color-filter-outline.svg" }, "color-filter-sharp": { "codepoint": 62076, "source": "fixedSvg/color-filter-sharp.svg" }, "color-palette": { "codepoint": 62077, "source": "fixedSvg/color-palette.svg" }, "color-palette-outline": { "codepoint": 62078, "source": "fixedSvg/color-palette-outline.svg" }, "color-palette-sharp": { "codepoint": 62079, "source": "fixedSvg/color-palette-sharp.svg" }, "color-wand": { "codepoint": 62080, "source": "fixedSvg/color-wand.svg" }, "color-wand-outline": { "codepoint": 62081, "source": "fixedSvg/color-wand-outline.svg" }, "color-wand-sharp": { "codepoint": 62082, "source": "fixedSvg/color-wand-sharp.svg" }, "compass": { "codepoint": 62083, "source": "fixedSvg/compass.svg" }, "compass-outline": { "codepoint": 62084, "source": "fixedSvg/compass-outline.svg" }, "compass-sharp": { "codepoint": 62085, "source": "fixedSvg/compass-sharp.svg" }, "construct": { "codepoint": 62086, "source": "fixedSvg/construct.svg" }, "construct-outline": { "codepoint": 62087, "source": "fixedSvg/construct-outline.svg" }, "construct-sharp": { "codepoint": 62088, "source": "fixedSvg/construct-sharp.svg" }, "contract": { "codepoint": 62089, "source": "fixedSvg/contract.svg" }, "contract-outline": { "codepoint": 62090, "source": "fixedSvg/contract-outline.svg" }, "contract-sharp": { "codepoint": 62091, "source": "fixedSvg/contract-sharp.svg" }, "contrast": { "codepoint": 62092, "source": "fixedSvg/contrast.svg" }, "contrast-outline": { "codepoint": 62093, "source": "fixedSvg/contrast-outline.svg" }, "contrast-sharp": { "codepoint": 62094, "source": "fixedSvg/contrast-sharp.svg" }, "copy": { "codepoint": 62095, "source": "fixedSvg/copy.svg" }, "copy-outline": { "codepoint": 62096, "source": "fixedSvg/copy-outline.svg" }, "copy-sharp": { "codepoint": 62097, "source": "fixedSvg/copy-sharp.svg" }, "create": { "codepoint": 62098, "source": "fixedSvg/create.svg" }, "create-outline": { "codepoint": 62099, "source": "fixedSvg/create-outline.svg" }, "create-sharp": { "codepoint": 62100, "source": "fixedSvg/create-sharp.svg" }, "crop": { "codepoint": 62101, "source": "fixedSvg/crop.svg" }, "crop-outline": { "codepoint": 62102, "source": "fixedSvg/crop-outline.svg" }, "crop-sharp": { "codepoint": 62103, "source": "fixedSvg/crop-sharp.svg" }, "cube": { "codepoint": 62104, "source": "fixedSvg/cube.svg" }, "cube-outline": { "codepoint": 62105, "source": "fixedSvg/cube-outline.svg" }, "cube-sharp": { "codepoint": 62106, "source": "fixedSvg/cube-sharp.svg" }, "cut": { "codepoint": 62107, "source": "fixedSvg/cut.svg" }, "cut-outline": { "codepoint": 62108, "source": "fixedSvg/cut-outline.svg" }, "cut-sharp": { "codepoint": 62109, "source": "fixedSvg/cut-sharp.svg" }, "desktop": { "codepoint": 62110, "source": "fixedSvg/desktop.svg" }, "desktop-outline": { "codepoint": 62111, "source": "fixedSvg/desktop-outline.svg" }, "desktop-sharp": { "codepoint": 62112, "source": "fixedSvg/desktop-sharp.svg" }, "diamond": { "codepoint": 62113, "source": "fixedSvg/diamond.svg" }, "diamond-outline": { "codepoint": 62114, "source": "fixedSvg/diamond-outline.svg" }, "diamond-sharp": { "codepoint": 62115, "source": "fixedSvg/diamond-sharp.svg" }, "dice": { "codepoint": 62116, "source": "fixedSvg/dice.svg" }, "dice-outline": { "codepoint": 62117, "source": "fixedSvg/dice-outline.svg" }, "dice-sharp": { "codepoint": 62118, "source": "fixedSvg/dice-sharp.svg" }, "disc": { "codepoint": 62119, "source": "fixedSvg/disc.svg" }, "disc-outline": { "codepoint": 62120, "source": "fixedSvg/disc-outline.svg" }, "disc-sharp": { "codepoint": 62121, "source": "fixedSvg/disc-sharp.svg" }, "document": { "codepoint": 62122, "source": "fixedSvg/document.svg" }, "document-attach": { "codepoint": 62123, "source": "fixedSvg/document-attach.svg" }, "document-attach-outline": { "codepoint": 62124, "source": "fixedSvg/document-attach-outline.svg" }, "document-attach-sharp": { "codepoint": 62125, "source": "fixedSvg/document-attach-sharp.svg" }, "document-lock": { "codepoint": 62126, "source": "fixedSvg/document-lock.svg" }, "document-lock-outline": { "codepoint": 62127, "source": "fixedSvg/document-lock-outline.svg" }, "document-lock-sharp": { "codepoint": 62128, "source": "fixedSvg/document-lock-sharp.svg" }, "document-outline": { "codepoint": 62129, "source": "fixedSvg/document-outline.svg" }, "document-sharp": { "codepoint": 62130, "source": "fixedSvg/document-sharp.svg" }, "document-text": { "codepoint": 62131, "source": "fixedSvg/document-text.svg" }, "document-text-outline": { "codepoint": 62132, "source": "fixedSvg/document-text-outline.svg" }, "document-text-sharp": { "codepoint": 62133, "source": "fixedSvg/document-text-sharp.svg" }, "documents": { "codepoint": 62134, "source": "fixedSvg/documents.svg" }, "documents-outline": { "codepoint": 62135, "source": "fixedSvg/documents-outline.svg" }, "documents-sharp": { "codepoint": 62136, "source": "fixedSvg/documents-sharp.svg" }, "download": { "codepoint": 62137, "source": "fixedSvg/download.svg" }, "download-outline": { "codepoint": 62138, "source": "fixedSvg/download-outline.svg" }, "download-sharp": { "codepoint": 62139, "source": "fixedSvg/download-sharp.svg" }, "duplicate": { "codepoint": 62140, "source": "fixedSvg/duplicate.svg" }, "duplicate-outline": { "codepoint": 62141, "source": "fixedSvg/duplicate-outline.svg" }, "duplicate-sharp": { "codepoint": 62142, "source": "fixedSvg/duplicate-sharp.svg" }, "ear": { "codepoint": 62143, "source": "fixedSvg/ear.svg" }, "ear-outline": { "codepoint": 62144, "source": "fixedSvg/ear-outline.svg" }, "ear-sharp": { "codepoint": 62145, "source": "fixedSvg/ear-sharp.svg" }, "earth": { "codepoint": 62146, "source": "fixedSvg/earth.svg" }, "earth-outline": { "codepoint": 62147, "source": "fixedSvg/earth-outline.svg" }, "earth-sharp": { "codepoint": 62148, "source": "fixedSvg/earth-sharp.svg" }, "easel": { "codepoint": 62149, "source": "fixedSvg/easel.svg" }, "easel-outline": { "codepoint": 62150, "source": "fixedSvg/easel-outline.svg" }, "easel-sharp": { "codepoint": 62151, "source": "fixedSvg/easel-sharp.svg" }, "egg": { "codepoint": 62152, "source": "fixedSvg/egg.svg" }, "egg-outline": { "codepoint": 62153, "source": "fixedSvg/egg-outline.svg" }, "egg-sharp": { "codepoint": 62154, "source": "fixedSvg/egg-sharp.svg" }, "ellipse": { "codepoint": 62155, "source": "fixedSvg/ellipse.svg" }, "ellipse-outline": { "codepoint": 62156, "source": "fixedSvg/ellipse-outline.svg" }, "ellipse-sharp": { "codepoint": 62157, "source": "fixedSvg/ellipse-sharp.svg" }, "ellipsis-horizontal": { "codepoint": 62158, "source": "fixedSvg/ellipsis-horizontal.svg" }, "ellipsis-horizontal-circle": { "codepoint": 62159, "source": "fixedSvg/ellipsis-horizontal-circle.svg" }, "ellipsis-horizontal-circle-outline": { "codepoint": 62160, "source": "fixedSvg/ellipsis-horizontal-circle-outline.svg" }, "ellipsis-horizontal-circle-sharp": { "codepoint": 62161, "source": "fixedSvg/ellipsis-horizontal-circle-sharp.svg" }, "ellipsis-horizontal-outline": { "codepoint": 62162, "source": "fixedSvg/ellipsis-horizontal-outline.svg" }, "ellipsis-horizontal-sharp": { "codepoint": 62163, "source": "fixedSvg/ellipsis-horizontal-sharp.svg" }, "ellipsis-vertical": { "codepoint": 62164, "source": "fixedSvg/ellipsis-vertical.svg" }, "ellipsis-vertical-circle": { "codepoint": 62165, "source": "fixedSvg/ellipsis-vertical-circle.svg" }, "ellipsis-vertical-circle-outline": { "codepoint": 62166, "source": "fixedSvg/ellipsis-vertical-circle-outline.svg" }, "ellipsis-vertical-circle-sharp": { "codepoint": 62167, "source": "fixedSvg/ellipsis-vertical-circle-sharp.svg" }, "ellipsis-vertical-outline": { "codepoint": 62168, "source": "fixedSvg/ellipsis-vertical-outline.svg" }, "ellipsis-vertical-sharp": { "codepoint": 62169, "source": "fixedSvg/ellipsis-vertical-sharp.svg" }, "enter": { "codepoint": 62170, "source": "fixedSvg/enter.svg" }, "enter-outline": { "codepoint": 62171, "source": "fixedSvg/enter-outline.svg" }, "enter-sharp": { "codepoint": 62172, "source": "fixedSvg/enter-sharp.svg" }, "exit": { "codepoint": 62173, "source": "fixedSvg/exit.svg" }, "exit-outline": { "codepoint": 62174, "source": "fixedSvg/exit-outline.svg" }, "exit-sharp": { "codepoint": 62175, "source": "fixedSvg/exit-sharp.svg" }, "expand": { "codepoint": 62176, "source": "fixedSvg/expand.svg" }, "expand-outline": { "codepoint": 62177, "source": "fixedSvg/expand-outline.svg" }, "expand-sharp": { "codepoint": 62178, "source": "fixedSvg/expand-sharp.svg" }, "extension-puzzle": { "codepoint": 62179, "source": "fixedSvg/extension-puzzle.svg" }, "extension-puzzle-outline": { "codepoint": 62180, "source": "fixedSvg/extension-puzzle-outline.svg" }, "extension-puzzle-sharp": { "codepoint": 62181, "source": "fixedSvg/extension-puzzle-sharp.svg" }, "eye": { "codepoint": 62182, "source": "fixedSvg/eye.svg" }, "eye-off": { "codepoint": 62183, "source": "fixedSvg/eye-off.svg" }, "eye-off-outline": { "codepoint": 62184, "source": "fixedSvg/eye-off-outline.svg" }, "eye-off-sharp": { "codepoint": 62185, "source": "fixedSvg/eye-off-sharp.svg" }, "eye-outline": { "codepoint": 62186, "source": "fixedSvg/eye-outline.svg" }, "eye-sharp": { "codepoint": 62187, "source": "fixedSvg/eye-sharp.svg" }, "eyedrop": { "codepoint": 62188, "source": "fixedSvg/eyedrop.svg" }, "eyedrop-outline": { "codepoint": 62189, "source": "fixedSvg/eyedrop-outline.svg" }, "eyedrop-sharp": { "codepoint": 62190, "source": "fixedSvg/eyedrop-sharp.svg" }, "fast-food": { "codepoint": 62191, "source": "fixedSvg/fast-food.svg" }, "fast-food-outline": { "codepoint": 62192, "source": "fixedSvg/fast-food-outline.svg" }, "fast-food-sharp": { "codepoint": 62193, "source": "fixedSvg/fast-food-sharp.svg" }, "female": { "codepoint": 62194, "source": "fixedSvg/female.svg" }, "female-outline": { "codepoint": 62195, "source": "fixedSvg/female-outline.svg" }, "female-sharp": { "codepoint": 62196, "source": "fixedSvg/female-sharp.svg" }, "file-tray": { "codepoint": 62197, "source": "fixedSvg/file-tray.svg" }, "file-tray-full": { "codepoint": 62198, "source": "fixedSvg/file-tray-full.svg" }, "file-tray-full-outline": { "codepoint": 62199, "source": "fixedSvg/file-tray-full-outline.svg" }, "file-tray-full-sharp": { "codepoint": 62200, "source": "fixedSvg/file-tray-full-sharp.svg" }, "file-tray-outline": { "codepoint": 62201, "source": "fixedSvg/file-tray-outline.svg" }, "file-tray-sharp": { "codepoint": 62202, "source": "fixedSvg/file-tray-sharp.svg" }, "file-tray-stacked": { "codepoint": 62203, "source": "fixedSvg/file-tray-stacked.svg" }, "file-tray-stacked-outline": { "codepoint": 62204, "source": "fixedSvg/file-tray-stacked-outline.svg" }, "file-tray-stacked-sharp": { "codepoint": 62205, "source": "fixedSvg/file-tray-stacked-sharp.svg" }, "film": { "codepoint": 62206, "source": "fixedSvg/film.svg" }, "film-outline": { "codepoint": 62207, "source": "fixedSvg/film-outline.svg" }, "film-sharp": { "codepoint": 62208, "source": "fixedSvg/film-sharp.svg" }, "filter": { "codepoint": 62209, "source": "fixedSvg/filter.svg" }, "filter-circle": { "codepoint": 62210, "source": "fixedSvg/filter-circle.svg" }, "filter-circle-outline": { "codepoint": 62211, "source": "fixedSvg/filter-circle-outline.svg" }, "filter-circle-sharp": { "codepoint": 62212, "source": "fixedSvg/filter-circle-sharp.svg" }, "filter-outline": { "codepoint": 62213, "source": "fixedSvg/filter-outline.svg" }, "filter-sharp": { "codepoint": 62214, "source": "fixedSvg/filter-sharp.svg" }, "finger-print": { "codepoint": 62215, "source": "fixedSvg/finger-print.svg" }, "finger-print-outline": { "codepoint": 62216, "source": "fixedSvg/finger-print-outline.svg" }, "finger-print-sharp": { "codepoint": 62217, "source": "fixedSvg/finger-print-sharp.svg" }, "fish": { "codepoint": 62218, "source": "fixedSvg/fish.svg" }, "fish-outline": { "codepoint": 62219, "source": "fixedSvg/fish-outline.svg" }, "fish-sharp": { "codepoint": 62220, "source": "fixedSvg/fish-sharp.svg" }, "fitness": { "codepoint": 62221, "source": "fixedSvg/fitness.svg" }, "fitness-outline": { "codepoint": 62222, "source": "fixedSvg/fitness-outline.svg" }, "fitness-sharp": { "codepoint": 62223, "source": "fixedSvg/fitness-sharp.svg" }, "flag": { "codepoint": 62224, "source": "fixedSvg/flag.svg" }, "flag-outline": { "codepoint": 62225, "source": "fixedSvg/flag-outline.svg" }, "flag-sharp": { "codepoint": 62226, "source": "fixedSvg/flag-sharp.svg" }, "flame": { "codepoint": 62227, "source": "fixedSvg/flame.svg" }, "flame-outline": { "codepoint": 62228, "source": "fixedSvg/flame-outline.svg" }, "flame-sharp": { "codepoint": 62229, "source": "fixedSvg/flame-sharp.svg" }, "flash": { "codepoint": 62230, "source": "fixedSvg/flash.svg" }, "flash-off": { "codepoint": 62231, "source": "fixedSvg/flash-off.svg" }, "flash-off-outline": { "codepoint": 62232, "source": "fixedSvg/flash-off-outline.svg" }, "flash-off-sharp": { "codepoint": 62233, "source": "fixedSvg/flash-off-sharp.svg" }, "flash-outline": { "codepoint": 62234, "source": "fixedSvg/flash-outline.svg" }, "flash-sharp": { "codepoint": 62235, "source": "fixedSvg/flash-sharp.svg" }, "flashlight": { "codepoint": 62236, "source": "fixedSvg/flashlight.svg" }, "flashlight-outline": { "codepoint": 62237, "source": "fixedSvg/flashlight-outline.svg" }, "flashlight-sharp": { "codepoint": 62238, "source": "fixedSvg/flashlight-sharp.svg" }, "flask": { "codepoint": 62239, "source": "fixedSvg/flask.svg" }, "flask-outline": { "codepoint": 62240, "source": "fixedSvg/flask-outline.svg" }, "flask-sharp": { "codepoint": 62241, "source": "fixedSvg/flask-sharp.svg" }, "flower": { "codepoint": 62242, "source": "fixedSvg/flower.svg" }, "flower-outline": { "codepoint": 62243, "source": "fixedSvg/flower-outline.svg" }, "flower-sharp": { "codepoint": 62244, "source": "fixedSvg/flower-sharp.svg" }, "folder": { "codepoint": 62245, "source": "fixedSvg/folder.svg" }, "folder-open": { "codepoint": 62246, "source": "fixedSvg/folder-open.svg" }, "folder-open-outline": { "codepoint": 62247, "source": "fixedSvg/folder-open-outline.svg" }, "folder-open-sharp": { "codepoint": 62248, "source": "fixedSvg/folder-open-sharp.svg" }, "folder-outline": { "codepoint": 62249, "source": "fixedSvg/folder-outline.svg" }, "folder-sharp": { "codepoint": 62250, "source": "fixedSvg/folder-sharp.svg" }, "football": { "codepoint": 62251, "source": "fixedSvg/football.svg" }, "football-outline": { "codepoint": 62252, "source": "fixedSvg/football-outline.svg" }, "football-sharp": { "codepoint": 62253, "source": "fixedSvg/football-sharp.svg" }, "footsteps": { "codepoint": 62254, "source": "fixedSvg/footsteps.svg" }, "footsteps-outline": { "codepoint": 62255, "source": "fixedSvg/footsteps-outline.svg" }, "footsteps-sharp": { "codepoint": 62256, "source": "fixedSvg/footsteps-sharp.svg" }, "funnel": { "codepoint": 62257, "source": "fixedSvg/funnel.svg" }, "funnel-outline": { "codepoint": 62258, "source": "fixedSvg/funnel-outline.svg" }, "funnel-sharp": { "codepoint": 62259, "source": "fixedSvg/funnel-sharp.svg" }, "game-controller": { "codepoint": 62260, "source": "fixedSvg/game-controller.svg" }, "game-controller-outline": { "codepoint": 62261, "source": "fixedSvg/game-controller-outline.svg" }, "game-controller-sharp": { "codepoint": 62262, "source": "fixedSvg/game-controller-sharp.svg" }, "gift": { "codepoint": 62263, "source": "fixedSvg/gift.svg" }, "gift-outline": { "codepoint": 62264, "source": "fixedSvg/gift-outline.svg" }, "gift-sharp": { "codepoint": 62265, "source": "fixedSvg/gift-sharp.svg" }, "git-branch": { "codepoint": 62266, "source": "fixedSvg/git-branch.svg" }, "git-branch-outline": { "codepoint": 62267, "source": "fixedSvg/git-branch-outline.svg" }, "git-branch-sharp": { "codepoint": 62268, "source": "fixedSvg/git-branch-sharp.svg" }, "git-commit": { "codepoint": 62269, "source": "fixedSvg/git-commit.svg" }, "git-commit-outline": { "codepoint": 62270, "source": "fixedSvg/git-commit-outline.svg" }, "git-commit-sharp": { "codepoint": 62271, "source": "fixedSvg/git-commit-sharp.svg" }, "git-compare": { "codepoint": 62272, "source": "fixedSvg/git-compare.svg" }, "git-compare-outline": { "codepoint": 62273, "source": "fixedSvg/git-compare-outline.svg" }, "git-compare-sharp": { "codepoint": 62274, "source": "fixedSvg/git-compare-sharp.svg" }, "git-merge": { "codepoint": 62275, "source": "fixedSvg/git-merge.svg" }, "git-merge-outline": { "codepoint": 62276, "source": "fixedSvg/git-merge-outline.svg" }, "git-merge-sharp": { "codepoint": 62277, "source": "fixedSvg/git-merge-sharp.svg" }, "git-network": { "codepoint": 62278, "source": "fixedSvg/git-network.svg" }, "git-network-outline": { "codepoint": 62279, "source": "fixedSvg/git-network-outline.svg" }, "git-network-sharp": { "codepoint": 62280, "source": "fixedSvg/git-network-sharp.svg" }, "git-pull-request": { "codepoint": 62281, "source": "fixedSvg/git-pull-request.svg" }, "git-pull-request-outline": { "codepoint": 62282, "source": "fixedSvg/git-pull-request-outline.svg" }, "git-pull-request-sharp": { "codepoint": 62283, "source": "fixedSvg/git-pull-request-sharp.svg" }, "glasses": { "codepoint": 62284, "source": "fixedSvg/glasses.svg" }, "glasses-outline": { "codepoint": 62285, "source": "fixedSvg/glasses-outline.svg" }, "glasses-sharp": { "codepoint": 62286, "source": "fixedSvg/glasses-sharp.svg" }, "globe": { "codepoint": 62287, "source": "fixedSvg/globe.svg" }, "globe-outline": { "codepoint": 62288, "source": "fixedSvg/globe-outline.svg" }, "globe-sharp": { "codepoint": 62289, "source": "fixedSvg/globe-sharp.svg" }, "golf": { "codepoint": 62290, "source": "fixedSvg/golf.svg" }, "golf-outline": { "codepoint": 62291, "source": "fixedSvg/golf-outline.svg" }, "golf-sharp": { "codepoint": 62292, "source": "fixedSvg/golf-sharp.svg" }, "grid": { "codepoint": 62293, "source": "fixedSvg/grid.svg" }, "grid-outline": { "codepoint": 62294, "source": "fixedSvg/grid-outline.svg" }, "grid-sharp": { "codepoint": 62295, "source": "fixedSvg/grid-sharp.svg" }, "hammer": { "codepoint": 62296, "source": "fixedSvg/hammer.svg" }, "hammer-outline": { "codepoint": 62297, "source": "fixedSvg/hammer-outline.svg" }, "hammer-sharp": { "codepoint": 62298, "source": "fixedSvg/hammer-sharp.svg" }, "hand-left": { "codepoint": 62299, "source": "fixedSvg/hand-left.svg" }, "hand-left-outline": { "codepoint": 62300, "source": "fixedSvg/hand-left-outline.svg" }, "hand-left-sharp": { "codepoint": 62301, "source": "fixedSvg/hand-left-sharp.svg" }, "hand-right": { "codepoint": 62302, "source": "fixedSvg/hand-right.svg" }, "hand-right-outline": { "codepoint": 62303, "source": "fixedSvg/hand-right-outline.svg" }, "hand-right-sharp": { "codepoint": 62304, "source": "fixedSvg/hand-right-sharp.svg" }, "happy": { "codepoint": 62305, "source": "fixedSvg/happy.svg" }, "happy-outline": { "codepoint": 62306, "source": "fixedSvg/happy-outline.svg" }, "happy-sharp": { "codepoint": 62307, "source": "fixedSvg/happy-sharp.svg" }, "hardware-chip": { "codepoint": 62308, "source": "fixedSvg/hardware-chip.svg" }, "hardware-chip-outline": { "codepoint": 62309, "source": "fixedSvg/hardware-chip-outline.svg" }, "hardware-chip-sharp": { "codepoint": 62310, "source": "fixedSvg/hardware-chip-sharp.svg" }, "headset": { "codepoint": 62311, "source": "fixedSvg/headset.svg" }, "headset-outline": { "codepoint": 62312, "source": "fixedSvg/headset-outline.svg" }, "headset-sharp": { "codepoint": 62313, "source": "fixedSvg/headset-sharp.svg" }, "heart": { "codepoint": 62314, "source": "fixedSvg/heart.svg" }, "heart-circle": { "codepoint": 62315, "source": "fixedSvg/heart-circle.svg" }, "heart-circle-outline": { "codepoint": 62316, "source": "fixedSvg/heart-circle-outline.svg" }, "heart-circle-sharp": { "codepoint": 62317, "source": "fixedSvg/heart-circle-sharp.svg" }, "heart-dislike": { "codepoint": 62318, "source": "fixedSvg/heart-dislike.svg" }, "heart-dislike-circle": { "codepoint": 62319, "source": "fixedSvg/heart-dislike-circle.svg" }, "heart-dislike-circle-outline": { "codepoint": 62320, "source": "fixedSvg/heart-dislike-circle-outline.svg" }, "heart-dislike-circle-sharp": { "codepoint": 62321, "source": "fixedSvg/heart-dislike-circle-sharp.svg" }, "heart-dislike-outline": { "codepoint": 62322, "source": "fixedSvg/heart-dislike-outline.svg" }, "heart-dislike-sharp": { "codepoint": 62323, "source": "fixedSvg/heart-dislike-sharp.svg" }, "heart-half": { "codepoint": 62324, "source": "fixedSvg/heart-half.svg" }, "heart-half-outline": { "codepoint": 62325, "source": "fixedSvg/heart-half-outline.svg" }, "heart-half-sharp": { "codepoint": 62326, "source": "fixedSvg/heart-half-sharp.svg" }, "heart-outline": { "codepoint": 62327, "source": "fixedSvg/heart-outline.svg" }, "heart-sharp": { "codepoint": 62328, "source": "fixedSvg/heart-sharp.svg" }, "help": { "codepoint": 62329, "source": "fixedSvg/help.svg" }, "help-buoy": { "codepoint": 62330, "source": "fixedSvg/help-buoy.svg" }, "help-buoy-outline": { "codepoint": 62331, "source": "fixedSvg/help-buoy-outline.svg" }, "help-buoy-sharp": { "codepoint": 62332, "source": "fixedSvg/help-buoy-sharp.svg" }, "help-circle": { "codepoint": 62333, "source": "fixedSvg/help-circle.svg" }, "help-circle-outline": { "codepoint": 62334, "source": "fixedSvg/help-circle-outline.svg" }, "help-circle-sharp": { "codepoint": 62335, "source": "fixedSvg/help-circle-sharp.svg" }, "help-outline": { "codepoint": 62336, "source": "fixedSvg/help-outline.svg" }, "help-sharp": { "codepoint": 62337, "source": "fixedSvg/help-sharp.svg" }, "home": { "codepoint": 62338, "source": "fixedSvg/home.svg" }, "home-outline": { "codepoint": 62339, "source": "fixedSvg/home-outline.svg" }, "home-sharp": { "codepoint": 62340, "source": "fixedSvg/home-sharp.svg" }, "hourglass": { "codepoint": 62341, "source": "fixedSvg/hourglass.svg" }, "hourglass-outline": { "codepoint": 62342, "source": "fixedSvg/hourglass-outline.svg" }, "hourglass-sharp": { "codepoint": 62343, "source": "fixedSvg/hourglass-sharp.svg" }, "ice-cream": { "codepoint": 62344, "source": "fixedSvg/ice-cream.svg" }, "ice-cream-outline": { "codepoint": 62345, "source": "fixedSvg/ice-cream-outline.svg" }, "ice-cream-sharp": { "codepoint": 62346, "source": "fixedSvg/ice-cream-sharp.svg" }, "id-card": { "codepoint": 62347, "source": "fixedSvg/id-card.svg" }, "id-card-outline": { "codepoint": 62348, "source": "fixedSvg/id-card-outline.svg" }, "id-card-sharp": { "codepoint": 62349, "source": "fixedSvg/id-card-sharp.svg" }, "image": { "codepoint": 62350, "source": "fixedSvg/image.svg" }, "image-outline": { "codepoint": 62351, "source": "fixedSvg/image-outline.svg" }, "image-sharp": { "codepoint": 62352, "source": "fixedSvg/image-sharp.svg" }, "images": { "codepoint": 62353, "source": "fixedSvg/images.svg" }, "images-outline": { "codepoint": 62354, "source": "fixedSvg/images-outline.svg" }, "images-sharp": { "codepoint": 62355, "source": "fixedSvg/images-sharp.svg" }, "infinite": { "codepoint": 62356, "source": "fixedSvg/infinite.svg" }, "infinite-outline": { "codepoint": 62357, "source": "fixedSvg/infinite-outline.svg" }, "infinite-sharp": { "codepoint": 62358, "source": "fixedSvg/infinite-sharp.svg" }, "information": { "codepoint": 62359, "source": "fixedSvg/information.svg" }, "information-circle": { "codepoint": 62360, "source": "fixedSvg/information-circle.svg" }, "information-circle-outline": { "codepoint": 62361, "source": "fixedSvg/information-circle-outline.svg" }, "information-circle-sharp": { "codepoint": 62362, "source": "fixedSvg/information-circle-sharp.svg" }, "information-outline": { "codepoint": 62363, "source": "fixedSvg/information-outline.svg" }, "information-sharp": { "codepoint": 62364, "source": "fixedSvg/information-sharp.svg" }, "invert-mode": { "codepoint": 62365, "source": "fixedSvg/invert-mode.svg" }, "invert-mode-outline": { "codepoint": 62366, "source": "fixedSvg/invert-mode-outline.svg" }, "invert-mode-sharp": { "codepoint": 62367, "source": "fixedSvg/invert-mode-sharp.svg" }, "journal": { "codepoint": 62368, "source": "fixedSvg/journal.svg" }, "journal-outline": { "codepoint": 62369, "source": "fixedSvg/journal-outline.svg" }, "journal-sharp": { "codepoint": 62370, "source": "fixedSvg/journal-sharp.svg" }, "key": { "codepoint": 62371, "source": "fixedSvg/key.svg" }, "key-outline": { "codepoint": 62372, "source": "fixedSvg/key-outline.svg" }, "key-sharp": { "codepoint": 62373, "source": "fixedSvg/key-sharp.svg" }, "keypad": { "codepoint": 62374, "source": "fixedSvg/keypad.svg" }, "keypad-outline": { "codepoint": 62375, "source": "fixedSvg/keypad-outline.svg" }, "keypad-sharp": { "codepoint": 62376, "source": "fixedSvg/keypad-sharp.svg" }, "language": { "codepoint": 62377, "source": "fixedSvg/language.svg" }, "language-outline": { "codepoint": 62378, "source": "fixedSvg/language-outline.svg" }, "language-sharp": { "codepoint": 62379, "source": "fixedSvg/language-sharp.svg" }, "laptop": { "codepoint": 62380, "source": "fixedSvg/laptop.svg" }, "laptop-outline": { "codepoint": 62381, "source": "fixedSvg/laptop-outline.svg" }, "laptop-sharp": { "codepoint": 62382, "source": "fixedSvg/laptop-sharp.svg" }, "layers": { "codepoint": 62383, "source": "fixedSvg/layers.svg" }, "layers-outline": { "codepoint": 62384, "source": "fixedSvg/layers-outline.svg" }, "layers-sharp": { "codepoint": 62385, "source": "fixedSvg/layers-sharp.svg" }, "leaf": { "codepoint": 62386, "source": "fixedSvg/leaf.svg" }, "leaf-outline": { "codepoint": 62387, "source": "fixedSvg/leaf-outline.svg" }, "leaf-sharp": { "codepoint": 62388, "source": "fixedSvg/leaf-sharp.svg" }, "library": { "codepoint": 62389, "source": "fixedSvg/library.svg" }, "library-outline": { "codepoint": 62390, "source": "fixedSvg/library-outline.svg" }, "library-sharp": { "codepoint": 62391, "source": "fixedSvg/library-sharp.svg" }, "link": { "codepoint": 62392, "source": "fixedSvg/link.svg" }, "link-outline": { "codepoint": 62393, "source": "fixedSvg/link-outline.svg" }, "link-sharp": { "codepoint": 62394, "source": "fixedSvg/link-sharp.svg" }, "list": { "codepoint": 62395, "source": "fixedSvg/list.svg" }, "list-circle": { "codepoint": 62396, "source": "fixedSvg/list-circle.svg" }, "list-circle-outline": { "codepoint": 62397, "source": "fixedSvg/list-circle-outline.svg" }, "list-circle-sharp": { "codepoint": 62398, "source": "fixedSvg/list-circle-sharp.svg" }, "list-outline": { "codepoint": 62399, "source": "fixedSvg/list-outline.svg" }, "list-sharp": { "codepoint": 62400, "source": "fixedSvg/list-sharp.svg" }, "locate": { "codepoint": 62401, "source": "fixedSvg/locate.svg" }, "locate-outline": { "codepoint": 62402, "source": "fixedSvg/locate-outline.svg" }, "locate-sharp": { "codepoint": 62403, "source": "fixedSvg/locate-sharp.svg" }, "location": { "codepoint": 62404, "source": "fixedSvg/location.svg" }, "location-outline": { "codepoint": 62405, "source": "fixedSvg/location-outline.svg" }, "location-sharp": { "codepoint": 62406, "source": "fixedSvg/location-sharp.svg" }, "lock-closed": { "codepoint": 62407, "source": "fixedSvg/lock-closed.svg" }, "lock-closed-outline": { "codepoint": 62408, "source": "fixedSvg/lock-closed-outline.svg" }, "lock-closed-sharp": { "codepoint": 62409, "source": "fixedSvg/lock-closed-sharp.svg" }, "lock-open": { "codepoint": 62410, "source": "fixedSvg/lock-open.svg" }, "lock-open-outline": { "codepoint": 62411, "source": "fixedSvg/lock-open-outline.svg" }, "lock-open-sharp": { "codepoint": 62412, "source": "fixedSvg/lock-open-sharp.svg" }, "log-in": { "codepoint": 62413, "source": "fixedSvg/log-in.svg" }, "log-in-outline": { "codepoint": 62414, "source": "fixedSvg/log-in-outline.svg" }, "log-in-sharp": { "codepoint": 62415, "source": "fixedSvg/log-in-sharp.svg" }, "log-out": { "codepoint": 62416, "source": "fixedSvg/log-out.svg" }, "log-out-outline": { "codepoint": 62417, "source": "fixedSvg/log-out-outline.svg" }, "log-out-sharp": { "codepoint": 62418, "source": "fixedSvg/log-out-sharp.svg" }, "logo-alipay": { "codepoint": 62419, "source": "fixedSvg/logo-alipay.svg" }, "logo-amazon": { "codepoint": 62420, "source": "fixedSvg/logo-amazon.svg" }, "logo-amplify": { "codepoint": 62421, "source": "fixedSvg/logo-amplify.svg" }, "logo-android": { "codepoint": 62422, "source": "fixedSvg/logo-android.svg" }, "logo-angular": { "codepoint": 62423, "source": "fixedSvg/logo-angular.svg" }, "logo-appflow": { "codepoint": 63049, "source": "fixedSvg/logo-appflow.svg" }, "logo-apple": { "codepoint": 62424, "source": "fixedSvg/logo-apple.svg" }, "logo-apple-appstore": { "codepoint": 62425, "source": "fixedSvg/logo-apple-appstore.svg" }, "logo-apple-ar": { "codepoint": 62426, "source": "fixedSvg/logo-apple-ar.svg" }, "logo-behance": { "codepoint": 62427, "source": "fixedSvg/logo-behance.svg" }, "logo-bitbucket": { "codepoint": 62428, "source": "fixedSvg/logo-bitbucket.svg" }, "logo-bitcoin": { "codepoint": 62429, "source": "fixedSvg/logo-bitcoin.svg" }, "logo-buffer": { "codepoint": 62430, "source": "fixedSvg/logo-buffer.svg" }, "logo-capacitor": { "codepoint": 62431, "source": "fixedSvg/logo-capacitor.svg" }, "logo-chrome": { "codepoint": 62432, "source": "fixedSvg/logo-chrome.svg" }, "logo-closed-captioning": { "codepoint": 62433, "source": "fixedSvg/logo-closed-captioning.svg" }, "logo-codepen": { "codepoint": 62434, "source": "fixedSvg/logo-codepen.svg" }, "logo-css3": { "codepoint": 62435, "source": "fixedSvg/logo-css3.svg" }, "logo-designernews": { "codepoint": 62436, "source": "fixedSvg/logo-designernews.svg" }, "logo-deviantart": { "codepoint": 62437, "source": "fixedSvg/logo-deviantart.svg" }, "logo-discord": { "codepoint": 62438, "source": "fixedSvg/logo-discord.svg" }, "logo-docker": { "codepoint": 62439, "source": "fixedSvg/logo-docker.svg" }, "logo-dribbble": { "codepoint": 62440, "source": "fixedSvg/logo-dribbble.svg" }, "logo-dropbox": { "codepoint": 62441, "source": "fixedSvg/logo-dropbox.svg" }, "logo-edge": { "codepoint": 62442, "source": "fixedSvg/logo-edge.svg" }, "logo-electron": { "codepoint": 62443, "source": "fixedSvg/logo-electron.svg" }, "logo-euro": { "codepoint": 62444, "source": "fixedSvg/logo-euro.svg" }, "logo-facebook": { "codepoint": 62445, "source": "fixedSvg/logo-facebook.svg" }, "logo-figma": { "codepoint": 62446, "source": "fixedSvg/logo-figma.svg" }, "logo-firebase": { "codepoint": 62447, "source": "fixedSvg/logo-firebase.svg" }, "logo-firefox": { "codepoint": 62448, "source": "fixedSvg/logo-firefox.svg" }, "logo-flickr": { "codepoint": 62449, "source": "fixedSvg/logo-flickr.svg" }, "logo-foursquare": { "codepoint": 62450, "source": "fixedSvg/logo-foursquare.svg" }, "logo-github": { "codepoint": 62451, "source": "fixedSvg/logo-github.svg" }, "logo-gitlab": { "codepoint": 62452, "source": "fixedSvg/logo-gitlab.svg" }, "logo-google": { "codepoint": 62453, "source": "fixedSvg/logo-google.svg" }, "logo-google-playstore": { "codepoint": 62454, "source": "fixedSvg/logo-google-playstore.svg" }, "logo-hackernews": { "codepoint": 62455, "source": "fixedSvg/logo-hackernews.svg" }, "logo-html5": { "codepoint": 62456, "source": "fixedSvg/logo-html5.svg" }, "logo-instagram": { "codepoint": 62457, "source": "fixedSvg/logo-instagram.svg" }, "logo-ionic": { "codepoint": 62458, "source": "fixedSvg/logo-ionic.svg" }, "logo-ionitron": { "codepoint": 62459, "source": "fixedSvg/logo-ionitron.svg" }, "logo-javascript": { "codepoint": 62460, "source": "fixedSvg/logo-javascript.svg" }, "logo-laravel": { "codepoint": 62461, "source": "fixedSvg/logo-laravel.svg" }, "logo-linkedin": { "codepoint": 62462, "source": "fixedSvg/logo-linkedin.svg" }, "logo-markdown": { "codepoint": 62463, "source": "fixedSvg/logo-markdown.svg" }, "logo-mastodon": { "codepoint": 62464, "source": "fixedSvg/logo-mastodon.svg" }, "logo-medium": { "codepoint": 62465, "source": "fixedSvg/logo-medium.svg" }, "logo-microsoft": { "codepoint": 62466, "source": "fixedSvg/logo-microsoft.svg" }, "logo-no-smoking": { "codepoint": 62467, "source": "fixedSvg/logo-no-smoking.svg" }, "logo-nodejs": { "codepoint": 62468, "source": "fixedSvg/logo-nodejs.svg" }, "logo-npm": { "codepoint": 62469, "source": "fixedSvg/logo-npm.svg" }, "logo-octocat": { "codepoint": 62470, "source": "fixedSvg/logo-octocat.svg" }, "logo-paypal": { "codepoint": 62471, "source": "fixedSvg/logo-paypal.svg" }, "logo-pinterest": { "codepoint": 62472, "source": "fixedSvg/logo-pinterest.svg" }, "logo-playstation": { "codepoint": 62473, "source": "fixedSvg/logo-playstation.svg" }, "logo-pwa": { "codepoint": 62474, "source": "fixedSvg/logo-pwa.svg" }, "logo-python": { "codepoint": 62475, "source": "fixedSvg/logo-python.svg" }, "logo-react": { "codepoint": 62476, "source": "fixedSvg/logo-react.svg" }, "logo-reddit": { "codepoint": 62477, "source": "fixedSvg/logo-reddit.svg" }, "logo-rss": { "codepoint": 62478, "source": "fixedSvg/logo-rss.svg" }, "logo-sass": { "codepoint": 62479, "source": "fixedSvg/logo-sass.svg" }, "logo-skype": { "codepoint": 62480, "source": "fixedSvg/logo-skype.svg" }, "logo-slack": { "codepoint": 62481, "source": "fixedSvg/logo-slack.svg" }, "logo-snapchat": { "codepoint": 62482, "source": "fixedSvg/logo-snapchat.svg" }, "logo-soundcloud": { "codepoint": 62483, "source": "fixedSvg/logo-soundcloud.svg" }, "logo-stackoverflow": { "codepoint": 62484, "source": "fixedSvg/logo-stackoverflow.svg" }, "logo-steam": { "codepoint": 62485, "source": "fixedSvg/logo-steam.svg" }, "logo-stencil": { "codepoint": 62486, "source": "fixedSvg/logo-stencil.svg" }, "logo-tableau": { "codepoint": 62487, "source": "fixedSvg/logo-tableau.svg" }, "logo-threads": { "codepoint": 63052, "source": "fixedSvg/logo-threads.svg" }, "logo-tiktok": { "codepoint": 62488, "source": "fixedSvg/logo-tiktok.svg" }, "logo-trapeze": { "codepoint": 63050, "source": "fixedSvg/logo-trapeze.svg" }, "logo-tumblr": { "codepoint": 62489, "source": "fixedSvg/logo-tumblr.svg" }, "logo-tux": { "codepoint": 62490, "source": "fixedSvg/logo-tux.svg" }, "logo-twitch": { "codepoint": 62491, "source": "fixedSvg/logo-twitch.svg" }, "logo-twitter": { "codepoint": 62492, "source": "fixedSvg/logo-twitter.svg" }, "logo-usd": { "codepoint": 62493, "source": "fixedSvg/logo-usd.svg" }, "logo-venmo": { "codepoint": 62494, "source": "fixedSvg/logo-venmo.svg" }, "logo-vercel": { "codepoint": 62495, "source": "fixedSvg/logo-vercel.svg" }, "logo-vimeo": { "codepoint": 62496, "source": "fixedSvg/logo-vimeo.svg" }, "logo-vk": { "codepoint": 62497, "source": "fixedSvg/logo-vk.svg" }, "logo-vue": { "codepoint": 62498, "source": "fixedSvg/logo-vue.svg" }, "logo-web-component": { "codepoint": 62499, "source": "fixedSvg/logo-web-component.svg" }, "logo-wechat": { "codepoint": 62500, "source": "fixedSvg/logo-wechat.svg" }, "logo-whatsapp": { "codepoint": 62501, "source": "fixedSvg/logo-whatsapp.svg" }, "logo-windows": { "codepoint": 62502, "source": "fixedSvg/logo-windows.svg" }, "logo-wordpress": { "codepoint": 62503, "source": "fixedSvg/logo-wordpress.svg" }, "logo-x": { "codepoint": 63051, "source": "fixedSvg/logo-x.svg" }, "logo-xbox": { "codepoint": 62504, "source": "fixedSvg/logo-xbox.svg" }, "logo-xing": { "codepoint": 62505, "source": "fixedSvg/logo-xing.svg" }, "logo-yahoo": { "codepoint": 62506, "source": "fixedSvg/logo-yahoo.svg" }, "logo-yen": { "codepoint": 62507, "source": "fixedSvg/logo-yen.svg" }, "logo-youtube": { "codepoint": 62508, "source": "fixedSvg/logo-youtube.svg" }, "magnet": { "codepoint": 62509, "source": "fixedSvg/magnet.svg" }, "magnet-outline": { "codepoint": 62510, "source": "fixedSvg/magnet-outline.svg" }, "magnet-sharp": { "codepoint": 62511, "source": "fixedSvg/magnet-sharp.svg" }, "mail": { "codepoint": 62512, "source": "fixedSvg/mail.svg" }, "mail-open": { "codepoint": 62513, "source": "fixedSvg/mail-open.svg" }, "mail-open-outline": { "codepoint": 62514, "source": "fixedSvg/mail-open-outline.svg" }, "mail-open-sharp": { "codepoint": 62515, "source": "fixedSvg/mail-open-sharp.svg" }, "mail-outline": { "codepoint": 62516, "source": "fixedSvg/mail-outline.svg" }, "mail-sharp": { "codepoint": 62517, "source": "fixedSvg/mail-sharp.svg" }, "mail-unread": { "codepoint": 62518, "source": "fixedSvg/mail-unread.svg" }, "mail-unread-outline": { "codepoint": 62519, "source": "fixedSvg/mail-unread-outline.svg" }, "mail-unread-sharp": { "codepoint": 62520, "source": "fixedSvg/mail-unread-sharp.svg" }, "male": { "codepoint": 62521, "source": "fixedSvg/male.svg" }, "male-female": { "codepoint": 62522, "source": "fixedSvg/male-female.svg" }, "male-female-outline": { "codepoint": 62523, "source": "fixedSvg/male-female-outline.svg" }, "male-female-sharp": { "codepoint": 62524, "source": "fixedSvg/male-female-sharp.svg" }, "male-outline": { "codepoint": 62525, "source": "fixedSvg/male-outline.svg" }, "male-sharp": { "codepoint": 62526, "source": "fixedSvg/male-sharp.svg" }, "man": { "codepoint": 62527, "source": "fixedSvg/man.svg" }, "man-outline": { "codepoint": 62528, "source": "fixedSvg/man-outline.svg" }, "man-sharp": { "codepoint": 62529, "source": "fixedSvg/man-sharp.svg" }, "map": { "codepoint": 62530, "source": "fixedSvg/map.svg" }, "map-outline": { "codepoint": 62531, "source": "fixedSvg/map-outline.svg" }, "map-sharp": { "codepoint": 62532, "source": "fixedSvg/map-sharp.svg" }, "medal": { "codepoint": 62533, "source": "fixedSvg/medal.svg" }, "medal-outline": { "codepoint": 62534, "source": "fixedSvg/medal-outline.svg" }, "medal-sharp": { "codepoint": 62535, "source": "fixedSvg/medal-sharp.svg" }, "medical": { "codepoint": 62536, "source": "fixedSvg/medical.svg" }, "medical-outline": { "codepoint": 62537, "source": "fixedSvg/medical-outline.svg" }, "medical-sharp": { "codepoint": 62538, "source": "fixedSvg/medical-sharp.svg" }, "medkit": { "codepoint": 62539, "source": "fixedSvg/medkit.svg" }, "medkit-outline": { "codepoint": 62540, "source": "fixedSvg/medkit-outline.svg" }, "medkit-sharp": { "codepoint": 62541, "source": "fixedSvg/medkit-sharp.svg" }, "megaphone": { "codepoint": 62542, "source": "fixedSvg/megaphone.svg" }, "megaphone-outline": { "codepoint": 62543, "source": "fixedSvg/megaphone-outline.svg" }, "megaphone-sharp": { "codepoint": 62544, "source": "fixedSvg/megaphone-sharp.svg" }, "menu": { "codepoint": 62545, "source": "fixedSvg/menu.svg" }, "menu-outline": { "codepoint": 62546, "source": "fixedSvg/menu-outline.svg" }, "menu-sharp": { "codepoint": 62547, "source": "fixedSvg/menu-sharp.svg" }, "mic": { "codepoint": 62548, "source": "fixedSvg/mic.svg" }, "mic-circle": { "codepoint": 62549, "source": "fixedSvg/mic-circle.svg" }, "mic-circle-outline": { "codepoint": 62550, "source": "fixedSvg/mic-circle-outline.svg" }, "mic-circle-sharp": { "codepoint": 62551, "source": "fixedSvg/mic-circle-sharp.svg" }, "mic-off": { "codepoint": 62552, "source": "fixedSvg/mic-off.svg" }, "mic-off-circle": { "codepoint": 62553, "source": "fixedSvg/mic-off-circle.svg" }, "mic-off-circle-outline": { "codepoint": 62554, "source": "fixedSvg/mic-off-circle-outline.svg" }, "mic-off-circle-sharp": { "codepoint": 62555, "source": "fixedSvg/mic-off-circle-sharp.svg" }, "mic-off-outline": { "codepoint": 62556, "source": "fixedSvg/mic-off-outline.svg" }, "mic-off-sharp": { "codepoint": 62557, "source": "fixedSvg/mic-off-sharp.svg" }, "mic-outline": { "codepoint": 62558, "source": "fixedSvg/mic-outline.svg" }, "mic-sharp": { "codepoint": 62559, "source": "fixedSvg/mic-sharp.svg" }, "moon": { "codepoint": 62560, "source": "fixedSvg/moon.svg" }, "moon-outline": { "codepoint": 62561, "source": "fixedSvg/moon-outline.svg" }, "moon-sharp": { "codepoint": 62562, "source": "fixedSvg/moon-sharp.svg" }, "move": { "codepoint": 62563, "source": "fixedSvg/move.svg" }, "move-outline": { "codepoint": 62564, "source": "fixedSvg/move-outline.svg" }, "move-sharp": { "codepoint": 62565, "source": "fixedSvg/move-sharp.svg" }, "musical-note": { "codepoint": 62566, "source": "fixedSvg/musical-note.svg" }, "musical-note-outline": { "codepoint": 62567, "source": "fixedSvg/musical-note-outline.svg" }, "musical-note-sharp": { "codepoint": 62568, "source": "fixedSvg/musical-note-sharp.svg" }, "musical-notes": { "codepoint": 62569, "source": "fixedSvg/musical-notes.svg" }, "musical-notes-outline": { "codepoint": 62570, "source": "fixedSvg/musical-notes-outline.svg" }, "musical-notes-sharp": { "codepoint": 62571, "source": "fixedSvg/musical-notes-sharp.svg" }, "navigate": { "codepoint": 62572, "source": "fixedSvg/navigate.svg" }, "navigate-circle": { "codepoint": 62573, "source": "fixedSvg/navigate-circle.svg" }, "navigate-circle-outline": { "codepoint": 62574, "source": "fixedSvg/navigate-circle-outline.svg" }, "navigate-circle-sharp": { "codepoint": 62575, "source": "fixedSvg/navigate-circle-sharp.svg" }, "navigate-outline": { "codepoint": 62576, "source": "fixedSvg/navigate-outline.svg" }, "navigate-sharp": { "codepoint": 62577, "source": "fixedSvg/navigate-sharp.svg" }, "newspaper": { "codepoint": 62578, "source": "fixedSvg/newspaper.svg" }, "newspaper-outline": { "codepoint": 62579, "source": "fixedSvg/newspaper-outline.svg" }, "newspaper-sharp": { "codepoint": 62580, "source": "fixedSvg/newspaper-sharp.svg" }, "notifications": { "codepoint": 62581, "source": "fixedSvg/notifications.svg" }, "notifications-circle": { "codepoint": 62582, "source": "fixedSvg/notifications-circle.svg" }, "notifications-circle-outline": { "codepoint": 62583, "source": "fixedSvg/notifications-circle-outline.svg" }, "notifications-circle-sharp": { "codepoint": 62584, "source": "fixedSvg/notifications-circle-sharp.svg" }, "notifications-off": { "codepoint": 62585, "source": "fixedSvg/notifications-off.svg" }, "notifications-off-circle": { "codepoint": 62586, "source": "fixedSvg/notifications-off-circle.svg" }, "notifications-off-circle-outline": { "codepoint": 62587, "source": "fixedSvg/notifications-off-circle-outline.svg" }, "notifications-off-circle-sharp": { "codepoint": 62588, "source": "fixedSvg/notifications-off-circle-sharp.svg" }, "notifications-off-outline": { "codepoint": 62589, "source": "fixedSvg/notifications-off-outline.svg" }, "notifications-off-sharp": { "codepoint": 62590, "source": "fixedSvg/notifications-off-sharp.svg" }, "notifications-outline": { "codepoint": 62591, "source": "fixedSvg/notifications-outline.svg" }, "notifications-sharp": { "codepoint": 62592, "source": "fixedSvg/notifications-sharp.svg" }, "nuclear": { "codepoint": 62593, "source": "fixedSvg/nuclear.svg" }, "nuclear-outline": { "codepoint": 62594, "source": "fixedSvg/nuclear-outline.svg" }, "nuclear-sharp": { "codepoint": 62595, "source": "fixedSvg/nuclear-sharp.svg" }, "nutrition": { "codepoint": 62596, "source": "fixedSvg/nutrition.svg" }, "nutrition-outline": { "codepoint": 62597, "source": "fixedSvg/nutrition-outline.svg" }, "nutrition-sharp": { "codepoint": 62598, "source": "fixedSvg/nutrition-sharp.svg" }, "open": { "codepoint": 62599, "source": "fixedSvg/open.svg" }, "open-outline": { "codepoint": 62600, "source": "fixedSvg/open-outline.svg" }, "open-sharp": { "codepoint": 62601, "source": "fixedSvg/open-sharp.svg" }, "options": { "codepoint": 62602, "source": "fixedSvg/options.svg" }, "options-outline": { "codepoint": 62603, "source": "fixedSvg/options-outline.svg" }, "options-sharp": { "codepoint": 62604, "source": "fixedSvg/options-sharp.svg" }, "paper-plane": { "codepoint": 62605, "source": "fixedSvg/paper-plane.svg" }, "paper-plane-outline": { "codepoint": 62606, "source": "fixedSvg/paper-plane-outline.svg" }, "paper-plane-sharp": { "codepoint": 62607, "source": "fixedSvg/paper-plane-sharp.svg" }, "partly-sunny": { "codepoint": 62608, "source": "fixedSvg/partly-sunny.svg" }, "partly-sunny-outline": { "codepoint": 62609, "source": "fixedSvg/partly-sunny-outline.svg" }, "partly-sunny-sharp": { "codepoint": 62610, "source": "fixedSvg/partly-sunny-sharp.svg" }, "pause": { "codepoint": 62611, "source": "fixedSvg/pause.svg" }, "pause-circle": { "codepoint": 62612, "source": "fixedSvg/pause-circle.svg" }, "pause-circle-outline": { "codepoint": 62613, "source": "fixedSvg/pause-circle-outline.svg" }, "pause-circle-sharp": { "codepoint": 62614, "source": "fixedSvg/pause-circle-sharp.svg" }, "pause-outline": { "codepoint": 62615, "source": "fixedSvg/pause-outline.svg" }, "pause-sharp": { "codepoint": 62616, "source": "fixedSvg/pause-sharp.svg" }, "paw": { "codepoint": 62617, "source": "fixedSvg/paw.svg" }, "paw-outline": { "codepoint": 62618, "source": "fixedSvg/paw-outline.svg" }, "paw-sharp": { "codepoint": 62619, "source": "fixedSvg/paw-sharp.svg" }, "pencil": { "codepoint": 62620, "source": "fixedSvg/pencil.svg" }, "pencil-outline": { "codepoint": 62621, "source": "fixedSvg/pencil-outline.svg" }, "pencil-sharp": { "codepoint": 62622, "source": "fixedSvg/pencil-sharp.svg" }, "people": { "codepoint": 62623, "source": "fixedSvg/people.svg" }, "people-circle": { "codepoint": 62624, "source": "fixedSvg/people-circle.svg" }, "people-circle-outline": { "codepoint": 62625, "source": "fixedSvg/people-circle-outline.svg" }, "people-circle-sharp": { "codepoint": 62626, "source": "fixedSvg/people-circle-sharp.svg" }, "people-outline": { "codepoint": 62627, "source": "fixedSvg/people-outline.svg" }, "people-sharp": { "codepoint": 62628, "source": "fixedSvg/people-sharp.svg" }, "person": { "codepoint": 62629, "source": "fixedSvg/person.svg" }, "person-add": { "codepoint": 62630, "source": "fixedSvg/person-add.svg" }, "person-add-outline": { "codepoint": 62631, "source": "fixedSvg/person-add-outline.svg" }, "person-add-sharp": { "codepoint": 62632, "source": "fixedSvg/person-add-sharp.svg" }, "person-circle": { "codepoint": 62633, "source": "fixedSvg/person-circle.svg" }, "person-circle-outline": { "codepoint": 62634, "source": "fixedSvg/person-circle-outline.svg" }, "person-circle-sharp": { "codepoint": 62635, "source": "fixedSvg/person-circle-sharp.svg" }, "person-outline": { "codepoint": 62636, "source": "fixedSvg/person-outline.svg" }, "person-remove": { "codepoint": 62637, "source": "fixedSvg/person-remove.svg" }, "person-remove-outline": { "codepoint": 62638, "source": "fixedSvg/person-remove-outline.svg" }, "person-remove-sharp": { "codepoint": 62639, "source": "fixedSvg/person-remove-sharp.svg" }, "person-sharp": { "codepoint": 62640, "source": "fixedSvg/person-sharp.svg" }, "phone-landscape": { "codepoint": 62641, "source": "fixedSvg/phone-landscape.svg" }, "phone-landscape-outline": { "codepoint": 62642, "source": "fixedSvg/phone-landscape-outline.svg" }, "phone-landscape-sharp": { "codepoint": 62643, "source": "fixedSvg/phone-landscape-sharp.svg" }, "phone-portrait": { "codepoint": 62644, "source": "fixedSvg/phone-portrait.svg" }, "phone-portrait-outline": { "codepoint": 62645, "source": "fixedSvg/phone-portrait-outline.svg" }, "phone-portrait-sharp": { "codepoint": 62646, "source": "fixedSvg/phone-portrait-sharp.svg" }, "pie-chart": { "codepoint": 62647, "source": "fixedSvg/pie-chart.svg" }, "pie-chart-outline": { "codepoint": 62648, "source": "fixedSvg/pie-chart-outline.svg" }, "pie-chart-sharp": { "codepoint": 62649, "source": "fixedSvg/pie-chart-sharp.svg" }, "pin": { "codepoint": 62650, "source": "fixedSvg/pin.svg" }, "pin-outline": { "codepoint": 62651, "source": "fixedSvg/pin-outline.svg" }, "pin-sharp": { "codepoint": 62652, "source": "fixedSvg/pin-sharp.svg" }, "pint": { "codepoint": 62653, "source": "fixedSvg/pint.svg" }, "pint-outline": { "codepoint": 62654, "source": "fixedSvg/pint-outline.svg" }, "pint-sharp": { "codepoint": 62655, "source": "fixedSvg/pint-sharp.svg" }, "pizza": { "codepoint": 62656, "source": "fixedSvg/pizza.svg" }, "pizza-outline": { "codepoint": 62657, "source": "fixedSvg/pizza-outline.svg" }, "pizza-sharp": { "codepoint": 62658, "source": "fixedSvg/pizza-sharp.svg" }, "planet": { "codepoint": 62659, "source": "fixedSvg/planet.svg" }, "planet-outline": { "codepoint": 62660, "source": "fixedSvg/planet-outline.svg" }, "planet-sharp": { "codepoint": 62661, "source": "fixedSvg/planet-sharp.svg" }, "play": { "codepoint": 62662, "source": "fixedSvg/play.svg" }, "play-back": { "codepoint": 62663, "source": "fixedSvg/play-back.svg" }, "play-back-circle": { "codepoint": 62664, "source": "fixedSvg/play-back-circle.svg" }, "play-back-circle-outline": { "codepoint": 62665, "source": "fixedSvg/play-back-circle-outline.svg" }, "play-back-circle-sharp": { "codepoint": 62666, "source": "fixedSvg/play-back-circle-sharp.svg" }, "play-back-outline": { "codepoint": 62667, "source": "fixedSvg/play-back-outline.svg" }, "play-back-sharp": { "codepoint": 62668, "source": "fixedSvg/play-back-sharp.svg" }, "play-circle": { "codepoint": 62669, "source": "fixedSvg/play-circle.svg" }, "play-circle-outline": { "codepoint": 62670, "source": "fixedSvg/play-circle-outline.svg" }, "play-circle-sharp": { "codepoint": 62671, "source": "fixedSvg/play-circle-sharp.svg" }, "play-forward": { "codepoint": 62672, "source": "fixedSvg/play-forward.svg" }, "play-forward-circle": { "codepoint": 62673, "source": "fixedSvg/play-forward-circle.svg" }, "play-forward-circle-outline": { "codepoint": 62674, "source": "fixedSvg/play-forward-circle-outline.svg" }, "play-forward-circle-sharp": { "codepoint": 62675, "source": "fixedSvg/play-forward-circle-sharp.svg" }, "play-forward-outline": { "codepoint": 62676, "source": "fixedSvg/play-forward-outline.svg" }, "play-forward-sharp": { "codepoint": 62677, "source": "fixedSvg/play-forward-sharp.svg" }, "play-outline": { "codepoint": 62678, "source": "fixedSvg/play-outline.svg" }, "play-sharp": { "codepoint": 62679, "source": "fixedSvg/play-sharp.svg" }, "play-skip-back": { "codepoint": 62680, "source": "fixedSvg/play-skip-back.svg" }, "play-skip-back-circle": { "codepoint": 62681, "source": "fixedSvg/play-skip-back-circle.svg" }, "play-skip-back-circle-outline": { "codepoint": 62682, "source": "fixedSvg/play-skip-back-circle-outline.svg" }, "play-skip-back-circle-sharp": { "codepoint": 62683, "source": "fixedSvg/play-skip-back-circle-sharp.svg" }, "play-skip-back-outline": { "codepoint": 62684, "source": "fixedSvg/play-skip-back-outline.svg" }, "play-skip-back-sharp": { "codepoint": 62685, "source": "fixedSvg/play-skip-back-sharp.svg" }, "play-skip-forward": { "codepoint": 62686, "source": "fixedSvg/play-skip-forward.svg" }, "play-skip-forward-circle": { "codepoint": 62687, "source": "fixedSvg/play-skip-forward-circle.svg" }, "play-skip-forward-circle-outline": { "codepoint": 62688, "source": "fixedSvg/play-skip-forward-circle-outline.svg" }, "play-skip-forward-circle-sharp": { "codepoint": 62689, "source": "fixedSvg/play-skip-forward-circle-sharp.svg" }, "play-skip-forward-outline": { "codepoint": 62690, "source": "fixedSvg/play-skip-forward-outline.svg" }, "play-skip-forward-sharp": { "codepoint": 62691, "source": "fixedSvg/play-skip-forward-sharp.svg" }, "podium": { "codepoint": 62692, "source": "fixedSvg/podium.svg" }, "podium-outline": { "codepoint": 62693, "source": "fixedSvg/podium-outline.svg" }, "podium-sharp": { "codepoint": 62694, "source": "fixedSvg/podium-sharp.svg" }, "power": { "codepoint": 62695, "source": "fixedSvg/power.svg" }, "power-outline": { "codepoint": 62696, "source": "fixedSvg/power-outline.svg" }, "power-sharp": { "codepoint": 62697, "source": "fixedSvg/power-sharp.svg" }, "pricetag": { "codepoint": 62698, "source": "fixedSvg/pricetag.svg" }, "pricetag-outline": { "codepoint": 62699, "source": "fixedSvg/pricetag-outline.svg" }, "pricetag-sharp": { "codepoint": 62700, "source": "fixedSvg/pricetag-sharp.svg" }, "pricetags": { "codepoint": 62701, "source": "fixedSvg/pricetags.svg" }, "pricetags-outline": { "codepoint": 62702, "source": "fixedSvg/pricetags-outline.svg" }, "pricetags-sharp": { "codepoint": 62703, "source": "fixedSvg/pricetags-sharp.svg" }, "print": { "codepoint": 62704, "source": "fixedSvg/print.svg" }, "print-outline": { "codepoint": 62705, "source": "fixedSvg/print-outline.svg" }, "print-sharp": { "codepoint": 62706, "source": "fixedSvg/print-sharp.svg" }, "prism": { "codepoint": 62707, "source": "fixedSvg/prism.svg" }, "prism-outline": { "codepoint": 62708, "source": "fixedSvg/prism-outline.svg" }, "prism-sharp": { "codepoint": 62709, "source": "fixedSvg/prism-sharp.svg" }, "pulse": { "codepoint": 62710, "source": "fixedSvg/pulse.svg" }, "pulse-outline": { "codepoint": 62711, "source": "fixedSvg/pulse-outline.svg" }, "pulse-sharp": { "codepoint": 62712, "source": "fixedSvg/pulse-sharp.svg" }, "push": { "codepoint": 62713, "source": "fixedSvg/push.svg" }, "push-outline": { "codepoint": 62714, "source": "fixedSvg/push-outline.svg" }, "push-sharp": { "codepoint": 62715, "source": "fixedSvg/push-sharp.svg" }, "qr-code": { "codepoint": 62716, "source": "fixedSvg/qr-code.svg" }, "qr-code-outline": { "codepoint": 62717, "source": "fixedSvg/qr-code-outline.svg" }, "qr-code-sharp": { "codepoint": 62718, "source": "fixedSvg/qr-code-sharp.svg" }, "radio": { "codepoint": 62719, "source": "fixedSvg/radio.svg" }, "radio-button-off": { "codepoint": 62720, "source": "fixedSvg/radio-button-off.svg" }, "radio-button-off-outline": { "codepoint": 62721, "source": "fixedSvg/radio-button-off-outline.svg" }, "radio-button-off-sharp": { "codepoint": 62722, "source": "fixedSvg/radio-button-off-sharp.svg" }, "radio-button-on": { "codepoint": 62723, "source": "fixedSvg/radio-button-on.svg" }, "radio-button-on-outline": { "codepoint": 62724, "source": "fixedSvg/radio-button-on-outline.svg" }, "radio-button-on-sharp": { "codepoint": 62725, "source": "fixedSvg/radio-button-on-sharp.svg" }, "radio-outline": { "codepoint": 62726, "source": "fixedSvg/radio-outline.svg" }, "radio-sharp": { "codepoint": 62727, "source": "fixedSvg/radio-sharp.svg" }, "rainy": { "codepoint": 62728, "source": "fixedSvg/rainy.svg" }, "rainy-outline": { "codepoint": 62729, "source": "fixedSvg/rainy-outline.svg" }, "rainy-sharp": { "codepoint": 62730, "source": "fixedSvg/rainy-sharp.svg" }, "reader": { "codepoint": 62731, "source": "fixedSvg/reader.svg" }, "reader-outline": { "codepoint": 62732, "source": "fixedSvg/reader-outline.svg" }, "reader-sharp": { "codepoint": 62733, "source": "fixedSvg/reader-sharp.svg" }, "receipt": { "codepoint": 62734, "source": "fixedSvg/receipt.svg" }, "receipt-outline": { "codepoint": 62735, "source": "fixedSvg/receipt-outline.svg" }, "receipt-sharp": { "codepoint": 62736, "source": "fixedSvg/receipt-sharp.svg" }, "recording": { "codepoint": 62737, "source": "fixedSvg/recording.svg" }, "recording-outline": { "codepoint": 62738, "source": "fixedSvg/recording-outline.svg" }, "recording-sharp": { "codepoint": 62739, "source": "fixedSvg/recording-sharp.svg" }, "refresh": { "codepoint": 62740, "source": "fixedSvg/refresh.svg" }, "refresh-circle": { "codepoint": 62741, "source": "fixedSvg/refresh-circle.svg" }, "refresh-circle-outline": { "codepoint": 62742, "source": "fixedSvg/refresh-circle-outline.svg" }, "refresh-circle-sharp": { "codepoint": 62743, "source": "fixedSvg/refresh-circle-sharp.svg" }, "refresh-outline": { "codepoint": 62744, "source": "fixedSvg/refresh-outline.svg" }, "refresh-sharp": { "codepoint": 62745, "source": "fixedSvg/refresh-sharp.svg" }, "reload": { "codepoint": 62746, "source": "fixedSvg/reload.svg" }, "reload-circle": { "codepoint": 62747, "source": "fixedSvg/reload-circle.svg" }, "reload-circle-outline": { "codepoint": 62748, "source": "fixedSvg/reload-circle-outline.svg" }, "reload-circle-sharp": { "codepoint": 62749, "source": "fixedSvg/reload-circle-sharp.svg" }, "reload-outline": { "codepoint": 62750, "source": "fixedSvg/reload-outline.svg" }, "reload-sharp": { "codepoint": 62751, "source": "fixedSvg/reload-sharp.svg" }, "remove": { "codepoint": 62752, "source": "fixedSvg/remove.svg" }, "remove-circle": { "codepoint": 62753, "source": "fixedSvg/remove-circle.svg" }, "remove-circle-outline": { "codepoint": 62754, "source": "fixedSvg/remove-circle-outline.svg" }, "remove-circle-sharp": { "codepoint": 62755, "source": "fixedSvg/remove-circle-sharp.svg" }, "remove-outline": { "codepoint": 62756, "source": "fixedSvg/remove-outline.svg" }, "remove-sharp": { "codepoint": 62757, "source": "fixedSvg/remove-sharp.svg" }, "reorder-four": { "codepoint": 62758, "source": "fixedSvg/reorder-four.svg" }, "reorder-four-outline": { "codepoint": 62759, "source": "fixedSvg/reorder-four-outline.svg" }, "reorder-four-sharp": { "codepoint": 62760, "source": "fixedSvg/reorder-four-sharp.svg" }, "reorder-three": { "codepoint": 62761, "source": "fixedSvg/reorder-three.svg" }, "reorder-three-outline": { "codepoint": 62762, "source": "fixedSvg/reorder-three-outline.svg" }, "reorder-three-sharp": { "codepoint": 62763, "source": "fixedSvg/reorder-three-sharp.svg" }, "reorder-two": { "codepoint": 62764, "source": "fixedSvg/reorder-two.svg" }, "reorder-two-outline": { "codepoint": 62765, "source": "fixedSvg/reorder-two-outline.svg" }, "reorder-two-sharp": { "codepoint": 62766, "source": "fixedSvg/reorder-two-sharp.svg" }, "repeat": { "codepoint": 62767, "source": "fixedSvg/repeat.svg" }, "repeat-outline": { "codepoint": 62768, "source": "fixedSvg/repeat-outline.svg" }, "repeat-sharp": { "codepoint": 62769, "source": "fixedSvg/repeat-sharp.svg" }, "resize": { "codepoint": 62770, "source": "fixedSvg/resize.svg" }, "resize-outline": { "codepoint": 62771, "source": "fixedSvg/resize-outline.svg" }, "resize-sharp": { "codepoint": 62772, "source": "fixedSvg/resize-sharp.svg" }, "restaurant": { "codepoint": 62773, "source": "fixedSvg/restaurant.svg" }, "restaurant-outline": { "codepoint": 62774, "source": "fixedSvg/restaurant-outline.svg" }, "restaurant-sharp": { "codepoint": 62775, "source": "fixedSvg/restaurant-sharp.svg" }, "return-down-back": { "codepoint": 62776, "source": "fixedSvg/return-down-back.svg" }, "return-down-back-outline": { "codepoint": 62777, "source": "fixedSvg/return-down-back-outline.svg" }, "return-down-back-sharp": { "codepoint": 62778, "source": "fixedSvg/return-down-back-sharp.svg" }, "return-down-forward": { "codepoint": 62779, "source": "fixedSvg/return-down-forward.svg" }, "return-down-forward-outline": { "codepoint": 62780, "source": "fixedSvg/return-down-forward-outline.svg" }, "return-down-forward-sharp": { "codepoint": 62781, "source": "fixedSvg/return-down-forward-sharp.svg" }, "return-up-back": { "codepoint": 62782, "source": "fixedSvg/return-up-back.svg" }, "return-up-back-outline": { "codepoint": 62783, "source": "fixedSvg/return-up-back-outline.svg" }, "return-up-back-sharp": { "codepoint": 62784, "source": "fixedSvg/return-up-back-sharp.svg" }, "return-up-forward": { "codepoint": 62785, "source": "fixedSvg/return-up-forward.svg" }, "return-up-forward-outline": { "codepoint": 62786, "source": "fixedSvg/return-up-forward-outline.svg" }, "return-up-forward-sharp": { "codepoint": 62787, "source": "fixedSvg/return-up-forward-sharp.svg" }, "ribbon": { "codepoint": 62788, "source": "fixedSvg/ribbon.svg" }, "ribbon-outline": { "codepoint": 62789, "source": "fixedSvg/ribbon-outline.svg" }, "ribbon-sharp": { "codepoint": 62790, "source": "fixedSvg/ribbon-sharp.svg" }, "rocket": { "codepoint": 62791, "source": "fixedSvg/rocket.svg" }, "rocket-outline": { "codepoint": 62792, "source": "fixedSvg/rocket-outline.svg" }, "rocket-sharp": { "codepoint": 62793, "source": "fixedSvg/rocket-sharp.svg" }, "rose": { "codepoint": 62794, "source": "fixedSvg/rose.svg" }, "rose-outline": { "codepoint": 62795, "source": "fixedSvg/rose-outline.svg" }, "rose-sharp": { "codepoint": 62796, "source": "fixedSvg/rose-sharp.svg" }, "sad": { "codepoint": 62797, "source": "fixedSvg/sad.svg" }, "sad-outline": { "codepoint": 62798, "source": "fixedSvg/sad-outline.svg" }, "sad-sharp": { "codepoint": 62799, "source": "fixedSvg/sad-sharp.svg" }, "save": { "codepoint": 62800, "source": "fixedSvg/save.svg" }, "save-outline": { "codepoint": 62801, "source": "fixedSvg/save-outline.svg" }, "save-sharp": { "codepoint": 62802, "source": "fixedSvg/save-sharp.svg" }, "scale": { "codepoint": 62803, "source": "fixedSvg/scale.svg" }, "scale-outline": { "codepoint": 62804, "source": "fixedSvg/scale-outline.svg" }, "scale-sharp": { "codepoint": 62805, "source": "fixedSvg/scale-sharp.svg" }, "scan": { "codepoint": 62806, "source": "fixedSvg/scan.svg" }, "scan-circle": { "codepoint": 62807, "source": "fixedSvg/scan-circle.svg" }, "scan-circle-outline": { "codepoint": 62808, "source": "fixedSvg/scan-circle-outline.svg" }, "scan-circle-sharp": { "codepoint": 62809, "source": "fixedSvg/scan-circle-sharp.svg" }, "scan-outline": { "codepoint": 62810, "source": "fixedSvg/scan-outline.svg" }, "scan-sharp": { "codepoint": 62811, "source": "fixedSvg/scan-sharp.svg" }, "school": { "codepoint": 62812, "source": "fixedSvg/school.svg" }, "school-outline": { "codepoint": 62813, "source": "fixedSvg/school-outline.svg" }, "school-sharp": { "codepoint": 62814, "source": "fixedSvg/school-sharp.svg" }, "search": { "codepoint": 62815, "source": "fixedSvg/search.svg" }, "search-circle": { "codepoint": 62816, "source": "fixedSvg/search-circle.svg" }, "search-circle-outline": { "codepoint": 62817, "source": "fixedSvg/search-circle-outline.svg" }, "search-circle-sharp": { "codepoint": 62818, "source": "fixedSvg/search-circle-sharp.svg" }, "search-outline": { "codepoint": 62819, "source": "fixedSvg/search-outline.svg" }, "search-sharp": { "codepoint": 62820, "source": "fixedSvg/search-sharp.svg" }, "send": { "codepoint": 62821, "source": "fixedSvg/send.svg" }, "send-outline": { "codepoint": 62822, "source": "fixedSvg/send-outline.svg" }, "send-sharp": { "codepoint": 62823, "source": "fixedSvg/send-sharp.svg" }, "server": { "codepoint": 62824, "source": "fixedSvg/server.svg" }, "server-outline": { "codepoint": 62825, "source": "fixedSvg/server-outline.svg" }, "server-sharp": { "codepoint": 62826, "source": "fixedSvg/server-sharp.svg" }, "settings": { "codepoint": 62827, "source": "fixedSvg/settings.svg" }, "settings-outline": { "codepoint": 62828, "source": "fixedSvg/settings-outline.svg" }, "settings-sharp": { "codepoint": 62829, "source": "fixedSvg/settings-sharp.svg" }, "shapes": { "codepoint": 62830, "source": "fixedSvg/shapes.svg" }, "shapes-outline": { "codepoint": 62831, "source": "fixedSvg/shapes-outline.svg" }, "shapes-sharp": { "codepoint": 62832, "source": "fixedSvg/shapes-sharp.svg" }, "share": { "codepoint": 62833, "source": "fixedSvg/share.svg" }, "share-outline": { "codepoint": 62834, "source": "fixedSvg/share-outline.svg" }, "share-sharp": { "codepoint": 62835, "source": "fixedSvg/share-sharp.svg" }, "share-social": { "codepoint": 62836, "source": "fixedSvg/share-social.svg" }, "share-social-outline": { "codepoint": 62837, "source": "fixedSvg/share-social-outline.svg" }, "share-social-sharp": { "codepoint": 62838, "source": "fixedSvg/share-social-sharp.svg" }, "shield": { "codepoint": 62839, "source": "fixedSvg/shield.svg" }, "shield-checkmark": { "codepoint": 62840, "source": "fixedSvg/shield-checkmark.svg" }, "shield-checkmark-outline": { "codepoint": 62841, "source": "fixedSvg/shield-checkmark-outline.svg" }, "shield-checkmark-sharp": { "codepoint": 62842, "source": "fixedSvg/shield-checkmark-sharp.svg" }, "shield-half": { "codepoint": 62843, "source": "fixedSvg/shield-half.svg" }, "shield-half-outline": { "codepoint": 62844, "source": "fixedSvg/shield-half-outline.svg" }, "shield-half-sharp": { "codepoint": 62845, "source": "fixedSvg/shield-half-sharp.svg" }, "shield-outline": { "codepoint": 62846, "source": "fixedSvg/shield-outline.svg" }, "shield-sharp": { "codepoint": 62847, "source": "fixedSvg/shield-sharp.svg" }, "shirt": { "codepoint": 62848, "source": "fixedSvg/shirt.svg" }, "shirt-outline": { "codepoint": 62849, "source": "fixedSvg/shirt-outline.svg" }, "shirt-sharp": { "codepoint": 62850, "source": "fixedSvg/shirt-sharp.svg" }, "shuffle": { "codepoint": 62851, "source": "fixedSvg/shuffle.svg" }, "shuffle-outline": { "codepoint": 62852, "source": "fixedSvg/shuffle-outline.svg" }, "shuffle-sharp": { "codepoint": 62853, "source": "fixedSvg/shuffle-sharp.svg" }, "skull": { "codepoint": 62854, "source": "fixedSvg/skull.svg" }, "skull-outline": { "codepoint": 62855, "source": "fixedSvg/skull-outline.svg" }, "skull-sharp": { "codepoint": 62856, "source": "fixedSvg/skull-sharp.svg" }, "snow": { "codepoint": 62857, "source": "fixedSvg/snow.svg" }, "snow-outline": { "codepoint": 62858, "source": "fixedSvg/snow-outline.svg" }, "snow-sharp": { "codepoint": 62859, "source": "fixedSvg/snow-sharp.svg" }, "sparkles": { "codepoint": 62860, "source": "fixedSvg/sparkles.svg" }, "sparkles-outline": { "codepoint": 62861, "source": "fixedSvg/sparkles-outline.svg" }, "sparkles-sharp": { "codepoint": 62862, "source": "fixedSvg/sparkles-sharp.svg" }, "speedometer": { "codepoint": 62863, "source": "fixedSvg/speedometer.svg" }, "speedometer-outline": { "codepoint": 62864, "source": "fixedSvg/speedometer-outline.svg" }, "speedometer-sharp": { "codepoint": 62865, "source": "fixedSvg/speedometer-sharp.svg" }, "square": { "codepoint": 62866, "source": "fixedSvg/square.svg" }, "square-outline": { "codepoint": 62867, "source": "fixedSvg/square-outline.svg" }, "square-sharp": { "codepoint": 62868, "source": "fixedSvg/square-sharp.svg" }, "star": { "codepoint": 62869, "source": "fixedSvg/star.svg" }, "star-half": { "codepoint": 62870, "source": "fixedSvg/star-half.svg" }, "star-half-outline": { "codepoint": 62871, "source": "fixedSvg/star-half-outline.svg" }, "star-half-sharp": { "codepoint": 62872, "source": "fixedSvg/star-half-sharp.svg" }, "star-outline": { "codepoint": 62873, "source": "fixedSvg/star-outline.svg" }, "star-sharp": { "codepoint": 62874, "source": "fixedSvg/star-sharp.svg" }, "stats-chart": { "codepoint": 62875, "source": "fixedSvg/stats-chart.svg" }, "stats-chart-outline": { "codepoint": 62876, "source": "fixedSvg/stats-chart-outline.svg" }, "stats-chart-sharp": { "codepoint": 62877, "source": "fixedSvg/stats-chart-sharp.svg" }, "stop": { "codepoint": 62878, "source": "fixedSvg/stop.svg" }, "stop-circle": { "codepoint": 62879, "source": "fixedSvg/stop-circle.svg" }, "stop-circle-outline": { "codepoint": 62880, "source": "fixedSvg/stop-circle-outline.svg" }, "stop-circle-sharp": { "codepoint": 62881, "source": "fixedSvg/stop-circle-sharp.svg" }, "stop-outline": { "codepoint": 62882, "source": "fixedSvg/stop-outline.svg" }, "stop-sharp": { "codepoint": 62883, "source": "fixedSvg/stop-sharp.svg" }, "stopwatch": { "codepoint": 62884, "source": "fixedSvg/stopwatch.svg" }, "stopwatch-outline": { "codepoint": 62885, "source": "fixedSvg/stopwatch-outline.svg" }, "stopwatch-sharp": { "codepoint": 62886, "source": "fixedSvg/stopwatch-sharp.svg" }, "storefront": { "codepoint": 62887, "source": "fixedSvg/storefront.svg" }, "storefront-outline": { "codepoint": 62888, "source": "fixedSvg/storefront-outline.svg" }, "storefront-sharp": { "codepoint": 62889, "source": "fixedSvg/storefront-sharp.svg" }, "subway": { "codepoint": 62890, "source": "fixedSvg/subway.svg" }, "subway-outline": { "codepoint": 62891, "source": "fixedSvg/subway-outline.svg" }, "subway-sharp": { "codepoint": 62892, "source": "fixedSvg/subway-sharp.svg" }, "sunny": { "codepoint": 62893, "source": "fixedSvg/sunny.svg" }, "sunny-outline": { "codepoint": 62894, "source": "fixedSvg/sunny-outline.svg" }, "sunny-sharp": { "codepoint": 62895, "source": "fixedSvg/sunny-sharp.svg" }, "swap-horizontal": { "codepoint": 62896, "source": "fixedSvg/swap-horizontal.svg" }, "swap-horizontal-outline": { "codepoint": 62897, "source": "fixedSvg/swap-horizontal-outline.svg" }, "swap-horizontal-sharp": { "codepoint": 62898, "source": "fixedSvg/swap-horizontal-sharp.svg" }, "swap-vertical": { "codepoint": 62899, "source": "fixedSvg/swap-vertical.svg" }, "swap-vertical-outline": { "codepoint": 62900, "source": "fixedSvg/swap-vertical-outline.svg" }, "swap-vertical-sharp": { "codepoint": 62901, "source": "fixedSvg/swap-vertical-sharp.svg" }, "sync": { "codepoint": 62902, "source": "fixedSvg/sync.svg" }, "sync-circle": { "codepoint": 62903, "source": "fixedSvg/sync-circle.svg" }, "sync-circle-outline": { "codepoint": 62904, "source": "fixedSvg/sync-circle-outline.svg" }, "sync-circle-sharp": { "codepoint": 62905, "source": "fixedSvg/sync-circle-sharp.svg" }, "sync-outline": { "codepoint": 62906, "source": "fixedSvg/sync-outline.svg" }, "sync-sharp": { "codepoint": 62907, "source": "fixedSvg/sync-sharp.svg" }, "tablet-landscape": { "codepoint": 62908, "source": "fixedSvg/tablet-landscape.svg" }, "tablet-landscape-outline": { "codepoint": 62909, "source": "fixedSvg/tablet-landscape-outline.svg" }, "tablet-landscape-sharp": { "codepoint": 62910, "source": "fixedSvg/tablet-landscape-sharp.svg" }, "tablet-portrait": { "codepoint": 62911, "source": "fixedSvg/tablet-portrait.svg" }, "tablet-portrait-outline": { "codepoint": 62912, "source": "fixedSvg/tablet-portrait-outline.svg" }, "tablet-portrait-sharp": { "codepoint": 62913, "source": "fixedSvg/tablet-portrait-sharp.svg" }, "telescope": { "codepoint": 62914, "source": "fixedSvg/telescope.svg" }, "telescope-outline": { "codepoint": 62915, "source": "fixedSvg/telescope-outline.svg" }, "telescope-sharp": { "codepoint": 62916, "source": "fixedSvg/telescope-sharp.svg" }, "tennisball": { "codepoint": 62917, "source": "fixedSvg/tennisball.svg" }, "tennisball-outline": { "codepoint": 62918, "source": "fixedSvg/tennisball-outline.svg" }, "tennisball-sharp": { "codepoint": 62919, "source": "fixedSvg/tennisball-sharp.svg" }, "terminal": { "codepoint": 62920, "source": "fixedSvg/terminal.svg" }, "terminal-outline": { "codepoint": 62921, "source": "fixedSvg/terminal-outline.svg" }, "terminal-sharp": { "codepoint": 62922, "source": "fixedSvg/terminal-sharp.svg" }, "text": { "codepoint": 62923, "source": "fixedSvg/text.svg" }, "text-outline": { "codepoint": 62924, "source": "fixedSvg/text-outline.svg" }, "text-sharp": { "codepoint": 62925, "source": "fixedSvg/text-sharp.svg" }, "thermometer": { "codepoint": 62926, "source": "fixedSvg/thermometer.svg" }, "thermometer-outline": { "codepoint": 62927, "source": "fixedSvg/thermometer-outline.svg" }, "thermometer-sharp": { "codepoint": 62928, "source": "fixedSvg/thermometer-sharp.svg" }, "thumbs-down": { "codepoint": 62929, "source": "fixedSvg/thumbs-down.svg" }, "thumbs-down-outline": { "codepoint": 62930, "source": "fixedSvg/thumbs-down-outline.svg" }, "thumbs-down-sharp": { "codepoint": 62931, "source": "fixedSvg/thumbs-down-sharp.svg" }, "thumbs-up": { "codepoint": 62932, "source": "fixedSvg/thumbs-up.svg" }, "thumbs-up-outline": { "codepoint": 62933, "source": "fixedSvg/thumbs-up-outline.svg" }, "thumbs-up-sharp": { "codepoint": 62934, "source": "fixedSvg/thumbs-up-sharp.svg" }, "thunderstorm": { "codepoint": 62935, "source": "fixedSvg/thunderstorm.svg" }, "thunderstorm-outline": { "codepoint": 62936, "source": "fixedSvg/thunderstorm-outline.svg" }, "thunderstorm-sharp": { "codepoint": 62937, "source": "fixedSvg/thunderstorm-sharp.svg" }, "ticket": { "codepoint": 62938, "source": "fixedSvg/ticket.svg" }, "ticket-outline": { "codepoint": 62939, "source": "fixedSvg/ticket-outline.svg" }, "ticket-sharp": { "codepoint": 62940, "source": "fixedSvg/ticket-sharp.svg" }, "time": { "codepoint": 62941, "source": "fixedSvg/time.svg" }, "time-outline": { "codepoint": 62942, "source": "fixedSvg/time-outline.svg" }, "time-sharp": { "codepoint": 62943, "source": "fixedSvg/time-sharp.svg" }, "timer": { "codepoint": 62944, "source": "fixedSvg/timer.svg" }, "timer-outline": { "codepoint": 62945, "source": "fixedSvg/timer-outline.svg" }, "timer-sharp": { "codepoint": 62946, "source": "fixedSvg/timer-sharp.svg" }, "today": { "codepoint": 62947, "source": "fixedSvg/today.svg" }, "today-outline": { "codepoint": 62948, "source": "fixedSvg/today-outline.svg" }, "today-sharp": { "codepoint": 62949, "source": "fixedSvg/today-sharp.svg" }, "toggle": { "codepoint": 62950, "source": "fixedSvg/toggle.svg" }, "toggle-outline": { "codepoint": 62951, "source": "fixedSvg/toggle-outline.svg" }, "toggle-sharp": { "codepoint": 62952, "source": "fixedSvg/toggle-sharp.svg" }, "trail-sign": { "codepoint": 62953, "source": "fixedSvg/trail-sign.svg" }, "trail-sign-outline": { "codepoint": 62954, "source": "fixedSvg/trail-sign-outline.svg" }, "trail-sign-sharp": { "codepoint": 62955, "source": "fixedSvg/trail-sign-sharp.svg" }, "train": { "codepoint": 62956, "source": "fixedSvg/train.svg" }, "train-outline": { "codepoint": 62957, "source": "fixedSvg/train-outline.svg" }, "train-sharp": { "codepoint": 62958, "source": "fixedSvg/train-sharp.svg" }, "transgender": { "codepoint": 62959, "source": "fixedSvg/transgender.svg" }, "transgender-outline": { "codepoint": 62960, "source": "fixedSvg/transgender-outline.svg" }, "transgender-sharp": { "codepoint": 62961, "source": "fixedSvg/transgender-sharp.svg" }, "trash": { "codepoint": 62962, "source": "fixedSvg/trash.svg" }, "trash-bin": { "codepoint": 62963, "source": "fixedSvg/trash-bin.svg" }, "trash-bin-outline": { "codepoint": 62964, "source": "fixedSvg/trash-bin-outline.svg" }, "trash-bin-sharp": { "codepoint": 62965, "source": "fixedSvg/trash-bin-sharp.svg" }, "trash-outline": { "codepoint": 62966, "source": "fixedSvg/trash-outline.svg" }, "trash-sharp": { "codepoint": 62967, "source": "fixedSvg/trash-sharp.svg" }, "trending-down": { "codepoint": 62968, "source": "fixedSvg/trending-down.svg" }, "trending-down-outline": { "codepoint": 62969, "source": "fixedSvg/trending-down-outline.svg" }, "trending-down-sharp": { "codepoint": 62970, "source": "fixedSvg/trending-down-sharp.svg" }, "trending-up": { "codepoint": 62971, "source": "fixedSvg/trending-up.svg" }, "trending-up-outline": { "codepoint": 62972, "source": "fixedSvg/trending-up-outline.svg" }, "trending-up-sharp": { "codepoint": 62973, "source": "fixedSvg/trending-up-sharp.svg" }, "triangle": { "codepoint": 62974, "source": "fixedSvg/triangle.svg" }, "triangle-outline": { "codepoint": 62975, "source": "fixedSvg/triangle-outline.svg" }, "triangle-sharp": { "codepoint": 62976, "source": "fixedSvg/triangle-sharp.svg" }, "trophy": { "codepoint": 62977, "source": "fixedSvg/trophy.svg" }, "trophy-outline": { "codepoint": 62978, "source": "fixedSvg/trophy-outline.svg" }, "trophy-sharp": { "codepoint": 62979, "source": "fixedSvg/trophy-sharp.svg" }, "tv": { "codepoint": 62980, "source": "fixedSvg/tv.svg" }, "tv-outline": { "codepoint": 62981, "source": "fixedSvg/tv-outline.svg" }, "tv-sharp": { "codepoint": 62982, "source": "fixedSvg/tv-sharp.svg" }, "umbrella": { "codepoint": 62983, "source": "fixedSvg/umbrella.svg" }, "umbrella-outline": { "codepoint": 62984, "source": "fixedSvg/umbrella-outline.svg" }, "umbrella-sharp": { "codepoint": 62985, "source": "fixedSvg/umbrella-sharp.svg" }, "unlink": { "codepoint": 62986, "source": "fixedSvg/unlink.svg" }, "unlink-outline": { "codepoint": 62987, "source": "fixedSvg/unlink-outline.svg" }, "unlink-sharp": { "codepoint": 62988, "source": "fixedSvg/unlink-sharp.svg" }, "videocam": { "codepoint": 62989, "source": "fixedSvg/videocam.svg" }, "videocam-off": { "codepoint": 62990, "source": "fixedSvg/videocam-off.svg" }, "videocam-off-outline": { "codepoint": 62991, "source": "fixedSvg/videocam-off-outline.svg" }, "videocam-off-sharp": { "codepoint": 62992, "source": "fixedSvg/videocam-off-sharp.svg" }, "videocam-outline": { "codepoint": 62993, "source": "fixedSvg/videocam-outline.svg" }, "videocam-sharp": { "codepoint": 62994, "source": "fixedSvg/videocam-sharp.svg" }, "volume-high": { "codepoint": 62995, "source": "fixedSvg/volume-high.svg" }, "volume-high-outline": { "codepoint": 62996, "source": "fixedSvg/volume-high-outline.svg" }, "volume-high-sharp": { "codepoint": 62997, "source": "fixedSvg/volume-high-sharp.svg" }, "volume-low": { "codepoint": 62998, "source": "fixedSvg/volume-low.svg" }, "volume-low-outline": { "codepoint": 62999, "source": "fixedSvg/volume-low-outline.svg" }, "volume-low-sharp": { "codepoint": 63000, "source": "fixedSvg/volume-low-sharp.svg" }, "volume-medium": { "codepoint": 63001, "source": "fixedSvg/volume-medium.svg" }, "volume-medium-outline": { "codepoint": 63002, "source": "fixedSvg/volume-medium-outline.svg" }, "volume-medium-sharp": { "codepoint": 63003, "source": "fixedSvg/volume-medium-sharp.svg" }, "volume-mute": { "codepoint": 63004, "source": "fixedSvg/volume-mute.svg" }, "volume-mute-outline": { "codepoint": 63005, "source": "fixedSvg/volume-mute-outline.svg" }, "volume-mute-sharp": { "codepoint": 63006, "source": "fixedSvg/volume-mute-sharp.svg" }, "volume-off": { "codepoint": 63007, "source": "fixedSvg/volume-off.svg" }, "volume-off-outline": { "codepoint": 63008, "source": "fixedSvg/volume-off-outline.svg" }, "volume-off-sharp": { "codepoint": 63009, "source": "fixedSvg/volume-off-sharp.svg" }, "walk": { "codepoint": 63010, "source": "fixedSvg/walk.svg" }, "walk-outline": { "codepoint": 63011, "source": "fixedSvg/walk-outline.svg" }, "walk-sharp": { "codepoint": 63012, "source": "fixedSvg/walk-sharp.svg" }, "wallet": { "codepoint": 63013, "source": "fixedSvg/wallet.svg" }, "wallet-outline": { "codepoint": 63014, "source": "fixedSvg/wallet-outline.svg" }, "wallet-sharp": { "codepoint": 63015, "source": "fixedSvg/wallet-sharp.svg" }, "warning": { "codepoint": 63016, "source": "fixedSvg/warning.svg" }, "warning-outline": { "codepoint": 63017, "source": "fixedSvg/warning-outline.svg" }, "warning-sharp": { "codepoint": 63018, "source": "fixedSvg/warning-sharp.svg" }, "watch": { "codepoint": 63019, "source": "fixedSvg/watch.svg" }, "watch-outline": { "codepoint": 63020, "source": "fixedSvg/watch-outline.svg" }, "watch-sharp": { "codepoint": 63021, "source": "fixedSvg/watch-sharp.svg" }, "water": { "codepoint": 63022, "source": "fixedSvg/water.svg" }, "water-outline": { "codepoint": 63023, "source": "fixedSvg/water-outline.svg" }, "water-sharp": { "codepoint": 63024, "source": "fixedSvg/water-sharp.svg" }, "wifi": { "codepoint": 63025, "source": "fixedSvg/wifi.svg" }, "wifi-outline": { "codepoint": 63026, "source": "fixedSvg/wifi-outline.svg" }, "wifi-sharp": { "codepoint": 63027, "source": "fixedSvg/wifi-sharp.svg" }, "wine": { "codepoint": 63028, "source": "fixedSvg/wine.svg" }, "wine-outline": { "codepoint": 63029, "source": "fixedSvg/wine-outline.svg" }, "wine-sharp": { "codepoint": 63030, "source": "fixedSvg/wine-sharp.svg" }, "woman": { "codepoint": 63031, "source": "fixedSvg/woman.svg" }, "woman-outline": { "codepoint": 63032, "source": "fixedSvg/woman-outline.svg" }, "woman-sharp": { "codepoint": 63033, "source": "fixedSvg/woman-sharp.svg" } }, "options": { "autowidth": false, "config": false, "copyright": "", "css3": false, "css_selector": ".icon-{{glyph}}", "debug": false, "font_ascent": 448, "font_descent": 64, "font_design_size": 16, "font_em": 512, "font_name": "Ionicons", "force": true, "input": { "templates": "fixedSvg", "vectors": "fixedSvg" }, "no_hash": true, "output": { "css": "Ionicons", "fonts": "Ionicons", "preview": "Ionicons" }, "preprocessor_path": null, "quiet": false, "templates": [ "css" ] }, "templates": [ "Ionicons/Ionicons.css" ] } ================================================ FILE: packages/ionicons/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "ionicons", "upstreamFont": "ionicons", "buildSteps": { "fixSVGPaths": { "location": "../../node_modules/ionicons/dist/svg" }, "fontCustom": { "location": "fixedSvg", "cleanup": true }, "fontforgeScript": { "script": "correct-direction.py" }, "glyphmap": { "mode": "css", "cleanup": true } }, "versions": [ { "rnvi": "12.0.0", "upstream": "7.4.0" }, { "rnvi": "12.0.1", "upstream": "8.0.8" }, { "rnvi": "12.4.1", "upstream": "8.0.13" } ] } } ================================================ FILE: packages/ionicons/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/ionicons/README.md ================================================ # React Native Vector Icons - Ionicons Ionicons font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/ionicons ``` ## Usage ```jsx import { Ionicons } from '@react-native-vector-icons/ionicons'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 7.4.0 | | > 12.0.1 | 8.0.8 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/ionicons/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.ionicons" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsIonicons" codegenJavaPackageName = "com.reactnativevectoricons.ionicons" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-ionicons") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-ionicons/fonts" eachFile { println "(RNVI:ionicons) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/ionicons/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/ionicons/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/ionicons/android/src/main/java/VectorIconsIoniconsPackage.kt ================================================ package com.reactnativevectoricons.ionicons import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsIoniconsPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/ionicons/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/ionicons/glyphmaps/Ionicons.json ================================================ { "accessibility": 61696, "accessibility-outline": 61697, "accessibility-sharp": 61698, "add": 61699, "add-circle": 61700, "add-circle-outline": 61701, "add-circle-sharp": 61702, "add-outline": 61703, "add-sharp": 61704, "airplane": 61705, "airplane-outline": 61706, "airplane-sharp": 61707, "alarm": 61708, "alarm-outline": 61709, "alarm-sharp": 61710, "albums": 61711, "albums-outline": 61712, "albums-sharp": 61713, "alert": 61714, "alert-circle": 61715, "alert-circle-outline": 61716, "alert-circle-sharp": 61717, "alert-outline": 61718, "alert-sharp": 61719, "american-football": 61720, "american-football-outline": 61721, "american-football-sharp": 61722, "analytics": 61723, "analytics-outline": 61724, "analytics-sharp": 61725, "aperture": 61726, "aperture-outline": 61727, "aperture-sharp": 61728, "apps": 61729, "apps-outline": 61730, "apps-sharp": 61731, "archive": 61732, "archive-outline": 61733, "archive-sharp": 61734, "arrow-back": 61735, "arrow-back-circle": 61736, "arrow-back-circle-outline": 61737, "arrow-back-circle-sharp": 61738, "arrow-back-outline": 61739, "arrow-back-sharp": 61740, "arrow-down": 61741, "arrow-down-circle": 61742, "arrow-down-circle-outline": 61743, "arrow-down-circle-sharp": 61744, "arrow-down-left-box": 63034, "arrow-down-left-box-outline": 63035, "arrow-down-left-box-sharp": 63036, "arrow-down-outline": 61745, "arrow-down-right-box": 63037, "arrow-down-right-box-outline": 63038, "arrow-down-right-box-sharp": 63039, "arrow-down-sharp": 61746, "arrow-forward": 61747, "arrow-forward-circle": 61748, "arrow-forward-circle-outline": 61749, "arrow-forward-circle-sharp": 61750, "arrow-forward-outline": 61751, "arrow-forward-sharp": 61752, "arrow-redo": 61753, "arrow-redo-circle": 61754, "arrow-redo-circle-outline": 61755, "arrow-redo-circle-sharp": 61756, "arrow-redo-outline": 61757, "arrow-redo-sharp": 61758, "arrow-undo": 61759, "arrow-undo-circle": 61760, "arrow-undo-circle-outline": 61761, "arrow-undo-circle-sharp": 61762, "arrow-undo-outline": 61763, "arrow-undo-sharp": 61764, "arrow-up": 61765, "arrow-up-circle": 61766, "arrow-up-circle-outline": 61767, "arrow-up-circle-sharp": 61768, "arrow-up-left-box": 63040, "arrow-up-left-box-outline": 63041, "arrow-up-left-box-sharp": 63042, "arrow-up-outline": 61769, "arrow-up-right-box": 63043, "arrow-up-right-box-outline": 63044, "arrow-up-right-box-sharp": 63045, "arrow-up-sharp": 61770, "at": 61771, "at-circle": 61772, "at-circle-outline": 61773, "at-circle-sharp": 61774, "at-outline": 61775, "at-sharp": 61776, "attach": 61777, "attach-outline": 61778, "attach-sharp": 61779, "backspace": 61780, "backspace-outline": 61781, "backspace-sharp": 61782, "bag": 61783, "bag-add": 61784, "bag-add-outline": 61785, "bag-add-sharp": 61786, "bag-check": 61787, "bag-check-outline": 61788, "bag-check-sharp": 61789, "bag-handle": 61790, "bag-handle-outline": 61791, "bag-handle-sharp": 61792, "bag-outline": 61793, "bag-remove": 61794, "bag-remove-outline": 61795, "bag-remove-sharp": 61796, "bag-sharp": 61797, "balloon": 61798, "balloon-outline": 61799, "balloon-sharp": 61800, "ban": 61801, "ban-outline": 61802, "ban-sharp": 61803, "bandage": 61804, "bandage-outline": 61805, "bandage-sharp": 61806, "bar-chart": 61807, "bar-chart-outline": 61808, "bar-chart-sharp": 61809, "barbell": 61810, "barbell-outline": 61811, "barbell-sharp": 61812, "barcode": 61813, "barcode-outline": 61814, "barcode-sharp": 61815, "baseball": 61816, "baseball-outline": 61817, "baseball-sharp": 61818, "basket": 61819, "basket-outline": 61820, "basket-sharp": 61821, "basketball": 61822, "basketball-outline": 61823, "basketball-sharp": 61824, "battery-charging": 61825, "battery-charging-outline": 61826, "battery-charging-sharp": 61827, "battery-dead": 61828, "battery-dead-outline": 61829, "battery-dead-sharp": 61830, "battery-full": 61831, "battery-full-outline": 61832, "battery-full-sharp": 61833, "battery-half": 61834, "battery-half-outline": 61835, "battery-half-sharp": 61836, "beaker": 61837, "beaker-outline": 61838, "beaker-sharp": 61839, "bed": 61840, "bed-outline": 61841, "bed-sharp": 61842, "beer": 61843, "beer-outline": 61844, "beer-sharp": 61845, "bicycle": 61846, "bicycle-outline": 61847, "bicycle-sharp": 61848, "binoculars": 63046, "binoculars-outline": 63047, "binoculars-sharp": 63048, "bluetooth": 61849, "bluetooth-outline": 61850, "bluetooth-sharp": 61851, "boat": 61852, "boat-outline": 61853, "boat-sharp": 61854, "body": 61855, "body-outline": 61856, "body-sharp": 61857, "bonfire": 61858, "bonfire-outline": 61859, "bonfire-sharp": 61860, "book": 61861, "book-outline": 61862, "book-sharp": 61863, "bookmark": 61864, "bookmark-outline": 61865, "bookmark-sharp": 61866, "bookmarks": 61867, "bookmarks-outline": 61868, "bookmarks-sharp": 61869, "bowling-ball": 61870, "bowling-ball-outline": 61871, "bowling-ball-sharp": 61872, "briefcase": 61873, "briefcase-outline": 61874, "briefcase-sharp": 61875, "browsers": 61876, "browsers-outline": 61877, "browsers-sharp": 61878, "brush": 61879, "brush-outline": 61880, "brush-sharp": 61881, "bug": 61882, "bug-outline": 61883, "bug-sharp": 61884, "build": 61885, "build-outline": 61886, "build-sharp": 61887, "bulb": 61888, "bulb-outline": 61889, "bulb-sharp": 61890, "bus": 61891, "bus-outline": 61892, "bus-sharp": 61893, "business": 61894, "business-outline": 61895, "business-sharp": 61896, "cafe": 61897, "cafe-outline": 61898, "cafe-sharp": 61899, "calculator": 61900, "calculator-outline": 61901, "calculator-sharp": 61902, "calendar": 61903, "calendar-clear": 61904, "calendar-clear-outline": 61905, "calendar-clear-sharp": 61906, "calendar-number": 61907, "calendar-number-outline": 61908, "calendar-number-sharp": 61909, "calendar-outline": 61910, "calendar-sharp": 61911, "call": 61912, "call-outline": 61913, "call-sharp": 61914, "camera": 61915, "camera-outline": 61916, "camera-reverse": 61917, "camera-reverse-outline": 61918, "camera-reverse-sharp": 61919, "camera-sharp": 61920, "car": 61921, "car-outline": 61922, "car-sharp": 61923, "car-sport": 61924, "car-sport-outline": 61925, "car-sport-sharp": 61926, "card": 61927, "card-outline": 61928, "card-sharp": 61929, "caret-back": 61930, "caret-back-circle": 61931, "caret-back-circle-outline": 61932, "caret-back-circle-sharp": 61933, "caret-back-outline": 61934, "caret-back-sharp": 61935, "caret-down": 61936, "caret-down-circle": 61937, "caret-down-circle-outline": 61938, "caret-down-circle-sharp": 61939, "caret-down-outline": 61940, "caret-down-sharp": 61941, "caret-forward": 61942, "caret-forward-circle": 61943, "caret-forward-circle-outline": 61944, "caret-forward-circle-sharp": 61945, "caret-forward-outline": 61946, "caret-forward-sharp": 61947, "caret-up": 61948, "caret-up-circle": 61949, "caret-up-circle-outline": 61950, "caret-up-circle-sharp": 61951, "caret-up-outline": 61952, "caret-up-sharp": 61953, "cart": 61954, "cart-outline": 61955, "cart-sharp": 61956, "cash": 61957, "cash-outline": 61958, "cash-sharp": 61959, "cellular": 61960, "cellular-outline": 61961, "cellular-sharp": 61962, "chatbox": 61963, "chatbox-ellipses": 61964, "chatbox-ellipses-outline": 61965, "chatbox-ellipses-sharp": 61966, "chatbox-outline": 61967, "chatbox-sharp": 61968, "chatbubble": 61969, "chatbubble-ellipses": 61970, "chatbubble-ellipses-outline": 61971, "chatbubble-ellipses-sharp": 61972, "chatbubble-outline": 61973, "chatbubble-sharp": 61974, "chatbubbles": 61975, "chatbubbles-outline": 61976, "chatbubbles-sharp": 61977, "checkbox": 61978, "checkbox-outline": 61979, "checkbox-sharp": 61980, "checkmark": 61981, "checkmark-circle": 61982, "checkmark-circle-outline": 61983, "checkmark-circle-sharp": 61984, "checkmark-done": 61985, "checkmark-done-circle": 61986, "checkmark-done-circle-outline": 61987, "checkmark-done-circle-sharp": 61988, "checkmark-done-outline": 61989, "checkmark-done-sharp": 61990, "checkmark-outline": 61991, "checkmark-sharp": 61992, "chevron-back": 61993, "chevron-back-circle": 61994, "chevron-back-circle-outline": 61995, "chevron-back-circle-sharp": 61996, "chevron-back-outline": 61997, "chevron-back-sharp": 61998, "chevron-collapse": 61999, "chevron-collapse-outline": 62000, "chevron-collapse-sharp": 62001, "chevron-down": 62002, "chevron-down-circle": 62003, "chevron-down-circle-outline": 62004, "chevron-down-circle-sharp": 62005, "chevron-down-outline": 62006, "chevron-down-sharp": 62007, "chevron-expand": 62008, "chevron-expand-outline": 62009, "chevron-expand-sharp": 62010, "chevron-forward": 62011, "chevron-forward-circle": 62012, "chevron-forward-circle-outline": 62013, "chevron-forward-circle-sharp": 62014, "chevron-forward-outline": 62015, "chevron-forward-sharp": 62016, "chevron-up": 62017, "chevron-up-circle": 62018, "chevron-up-circle-outline": 62019, "chevron-up-circle-sharp": 62020, "chevron-up-outline": 62021, "chevron-up-sharp": 62022, "clipboard": 62023, "clipboard-outline": 62024, "clipboard-sharp": 62025, "close": 62026, "close-circle": 62027, "close-circle-outline": 62028, "close-circle-sharp": 62029, "close-outline": 62030, "close-sharp": 62031, "cloud": 62032, "cloud-circle": 62033, "cloud-circle-outline": 62034, "cloud-circle-sharp": 62035, "cloud-done": 62036, "cloud-done-outline": 62037, "cloud-done-sharp": 62038, "cloud-download": 62039, "cloud-download-outline": 62040, "cloud-download-sharp": 62041, "cloud-offline": 62042, "cloud-offline-outline": 62043, "cloud-offline-sharp": 62044, "cloud-outline": 62045, "cloud-sharp": 62046, "cloud-upload": 62047, "cloud-upload-outline": 62048, "cloud-upload-sharp": 62049, "cloudy": 62050, "cloudy-night": 62051, "cloudy-night-outline": 62052, "cloudy-night-sharp": 62053, "cloudy-outline": 62054, "cloudy-sharp": 62055, "code": 62056, "code-download": 62057, "code-download-outline": 62058, "code-download-sharp": 62059, "code-outline": 62060, "code-sharp": 62061, "code-slash": 62062, "code-slash-outline": 62063, "code-slash-sharp": 62064, "code-working": 62065, "code-working-outline": 62066, "code-working-sharp": 62067, "cog": 62068, "cog-outline": 62069, "cog-sharp": 62070, "color-fill": 62071, "color-fill-outline": 62072, "color-fill-sharp": 62073, "color-filter": 62074, "color-filter-outline": 62075, "color-filter-sharp": 62076, "color-palette": 62077, "color-palette-outline": 62078, "color-palette-sharp": 62079, "color-wand": 62080, "color-wand-outline": 62081, "color-wand-sharp": 62082, "compass": 62083, "compass-outline": 62084, "compass-sharp": 62085, "construct": 62086, "construct-outline": 62087, "construct-sharp": 62088, "contract": 62089, "contract-outline": 62090, "contract-sharp": 62091, "contrast": 62092, "contrast-outline": 62093, "contrast-sharp": 62094, "copy": 62095, "copy-outline": 62096, "copy-sharp": 62097, "create": 62098, "create-outline": 62099, "create-sharp": 62100, "crop": 62101, "crop-outline": 62102, "crop-sharp": 62103, "cube": 62104, "cube-outline": 62105, "cube-sharp": 62106, "cut": 62107, "cut-outline": 62108, "cut-sharp": 62109, "desktop": 62110, "desktop-outline": 62111, "desktop-sharp": 62112, "diamond": 62113, "diamond-outline": 62114, "diamond-sharp": 62115, "dice": 62116, "dice-outline": 62117, "dice-sharp": 62118, "disc": 62119, "disc-outline": 62120, "disc-sharp": 62121, "document": 62122, "document-attach": 62123, "document-attach-outline": 62124, "document-attach-sharp": 62125, "document-lock": 62126, "document-lock-outline": 62127, "document-lock-sharp": 62128, "document-outline": 62129, "document-sharp": 62130, "document-text": 62131, "document-text-outline": 62132, "document-text-sharp": 62133, "documents": 62134, "documents-outline": 62135, "documents-sharp": 62136, "download": 62137, "download-outline": 62138, "download-sharp": 62139, "duplicate": 62140, "duplicate-outline": 62141, "duplicate-sharp": 62142, "ear": 62143, "ear-outline": 62144, "ear-sharp": 62145, "earth": 62146, "earth-outline": 62147, "earth-sharp": 62148, "easel": 62149, "easel-outline": 62150, "easel-sharp": 62151, "egg": 62152, "egg-outline": 62153, "egg-sharp": 62154, "ellipse": 62155, "ellipse-outline": 62156, "ellipse-sharp": 62157, "ellipsis-horizontal": 62158, "ellipsis-horizontal-circle": 62159, "ellipsis-horizontal-circle-outline": 62160, "ellipsis-horizontal-circle-sharp": 62161, "ellipsis-horizontal-outline": 62162, "ellipsis-horizontal-sharp": 62163, "ellipsis-vertical": 62164, "ellipsis-vertical-circle": 62165, "ellipsis-vertical-circle-outline": 62166, "ellipsis-vertical-circle-sharp": 62167, "ellipsis-vertical-outline": 62168, "ellipsis-vertical-sharp": 62169, "enter": 62170, "enter-outline": 62171, "enter-sharp": 62172, "exit": 62173, "exit-outline": 62174, "exit-sharp": 62175, "expand": 62176, "expand-outline": 62177, "expand-sharp": 62178, "extension-puzzle": 62179, "extension-puzzle-outline": 62180, "extension-puzzle-sharp": 62181, "eye": 62182, "eye-off": 62183, "eye-off-outline": 62184, "eye-off-sharp": 62185, "eye-outline": 62186, "eye-sharp": 62187, "eyedrop": 62188, "eyedrop-outline": 62189, "eyedrop-sharp": 62190, "fast-food": 62191, "fast-food-outline": 62192, "fast-food-sharp": 62193, "female": 62194, "female-outline": 62195, "female-sharp": 62196, "file-tray": 62197, "file-tray-full": 62198, "file-tray-full-outline": 62199, "file-tray-full-sharp": 62200, "file-tray-outline": 62201, "file-tray-sharp": 62202, "file-tray-stacked": 62203, "file-tray-stacked-outline": 62204, "file-tray-stacked-sharp": 62205, "film": 62206, "film-outline": 62207, "film-sharp": 62208, "filter": 62209, "filter-circle": 62210, "filter-circle-outline": 62211, "filter-circle-sharp": 62212, "filter-outline": 62213, "filter-sharp": 62214, "finger-print": 62215, "finger-print-outline": 62216, "finger-print-sharp": 62217, "fish": 62218, "fish-outline": 62219, "fish-sharp": 62220, "fitness": 62221, "fitness-outline": 62222, "fitness-sharp": 62223, "flag": 62224, "flag-outline": 62225, "flag-sharp": 62226, "flame": 62227, "flame-outline": 62228, "flame-sharp": 62229, "flash": 62230, "flash-off": 62231, "flash-off-outline": 62232, "flash-off-sharp": 62233, "flash-outline": 62234, "flash-sharp": 62235, "flashlight": 62236, "flashlight-outline": 62237, "flashlight-sharp": 62238, "flask": 62239, "flask-outline": 62240, "flask-sharp": 62241, "flower": 62242, "flower-outline": 62243, "flower-sharp": 62244, "folder": 62245, "folder-open": 62246, "folder-open-outline": 62247, "folder-open-sharp": 62248, "folder-outline": 62249, "folder-sharp": 62250, "football": 62251, "football-outline": 62252, "football-sharp": 62253, "footsteps": 62254, "footsteps-outline": 62255, "footsteps-sharp": 62256, "funnel": 62257, "funnel-outline": 62258, "funnel-sharp": 62259, "game-controller": 62260, "game-controller-outline": 62261, "game-controller-sharp": 62262, "gift": 62263, "gift-outline": 62264, "gift-sharp": 62265, "git-branch": 62266, "git-branch-outline": 62267, "git-branch-sharp": 62268, "git-commit": 62269, "git-commit-outline": 62270, "git-commit-sharp": 62271, "git-compare": 62272, "git-compare-outline": 62273, "git-compare-sharp": 62274, "git-merge": 62275, "git-merge-outline": 62276, "git-merge-sharp": 62277, "git-network": 62278, "git-network-outline": 62279, "git-network-sharp": 62280, "git-pull-request": 62281, "git-pull-request-outline": 62282, "git-pull-request-sharp": 62283, "glasses": 62284, "glasses-outline": 62285, "glasses-sharp": 62286, "globe": 62287, "globe-outline": 62288, "globe-sharp": 62289, "golf": 62290, "golf-outline": 62291, "golf-sharp": 62292, "grid": 62293, "grid-outline": 62294, "grid-sharp": 62295, "hammer": 62296, "hammer-outline": 62297, "hammer-sharp": 62298, "hand-left": 62299, "hand-left-outline": 62300, "hand-left-sharp": 62301, "hand-right": 62302, "hand-right-outline": 62303, "hand-right-sharp": 62304, "happy": 62305, "happy-outline": 62306, "happy-sharp": 62307, "hardware-chip": 62308, "hardware-chip-outline": 62309, "hardware-chip-sharp": 62310, "headset": 62311, "headset-outline": 62312, "headset-sharp": 62313, "heart": 62314, "heart-circle": 62315, "heart-circle-outline": 62316, "heart-circle-sharp": 62317, "heart-dislike": 62318, "heart-dislike-circle": 62319, "heart-dislike-circle-outline": 62320, "heart-dislike-circle-sharp": 62321, "heart-dislike-outline": 62322, "heart-dislike-sharp": 62323, "heart-half": 62324, "heart-half-outline": 62325, "heart-half-sharp": 62326, "heart-outline": 62327, "heart-sharp": 62328, "help": 62329, "help-buoy": 62330, "help-buoy-outline": 62331, "help-buoy-sharp": 62332, "help-circle": 62333, "help-circle-outline": 62334, "help-circle-sharp": 62335, "help-outline": 62336, "help-sharp": 62337, "home": 62338, "home-outline": 62339, "home-sharp": 62340, "hourglass": 62341, "hourglass-outline": 62342, "hourglass-sharp": 62343, "ice-cream": 62344, "ice-cream-outline": 62345, "ice-cream-sharp": 62346, "id-card": 62347, "id-card-outline": 62348, "id-card-sharp": 62349, "image": 62350, "image-outline": 62351, "image-sharp": 62352, "images": 62353, "images-outline": 62354, "images-sharp": 62355, "infinite": 62356, "infinite-outline": 62357, "infinite-sharp": 62358, "information": 62359, "information-circle": 62360, "information-circle-outline": 62361, "information-circle-sharp": 62362, "information-outline": 62363, "information-sharp": 62364, "invert-mode": 62365, "invert-mode-outline": 62366, "invert-mode-sharp": 62367, "journal": 62368, "journal-outline": 62369, "journal-sharp": 62370, "key": 62371, "key-outline": 62372, "key-sharp": 62373, "keypad": 62374, "keypad-outline": 62375, "keypad-sharp": 62376, "language": 62377, "language-outline": 62378, "language-sharp": 62379, "laptop": 62380, "laptop-outline": 62381, "laptop-sharp": 62382, "layers": 62383, "layers-outline": 62384, "layers-sharp": 62385, "leaf": 62386, "leaf-outline": 62387, "leaf-sharp": 62388, "library": 62389, "library-outline": 62390, "library-sharp": 62391, "link": 62392, "link-outline": 62393, "link-sharp": 62394, "list": 62395, "list-circle": 62396, "list-circle-outline": 62397, "list-circle-sharp": 62398, "list-outline": 62399, "list-sharp": 62400, "locate": 62401, "locate-outline": 62402, "locate-sharp": 62403, "location": 62404, "location-outline": 62405, "location-sharp": 62406, "lock-closed": 62407, "lock-closed-outline": 62408, "lock-closed-sharp": 62409, "lock-open": 62410, "lock-open-outline": 62411, "lock-open-sharp": 62412, "log-in": 62413, "log-in-outline": 62414, "log-in-sharp": 62415, "log-out": 62416, "log-out-outline": 62417, "log-out-sharp": 62418, "logo-alipay": 62419, "logo-amazon": 62420, "logo-amplify": 62421, "logo-android": 62422, "logo-angular": 62423, "logo-appflow": 63049, "logo-apple": 62424, "logo-apple-appstore": 62425, "logo-apple-ar": 62426, "logo-behance": 62427, "logo-bitbucket": 62428, "logo-bitcoin": 62429, "logo-buffer": 62430, "logo-capacitor": 62431, "logo-chrome": 62432, "logo-closed-captioning": 62433, "logo-codepen": 62434, "logo-css3": 62435, "logo-designernews": 62436, "logo-deviantart": 62437, "logo-discord": 62438, "logo-docker": 62439, "logo-dribbble": 62440, "logo-dropbox": 62441, "logo-edge": 62442, "logo-electron": 62443, "logo-euro": 62444, "logo-facebook": 62445, "logo-figma": 62446, "logo-firebase": 62447, "logo-firefox": 62448, "logo-flickr": 62449, "logo-foursquare": 62450, "logo-github": 62451, "logo-gitlab": 62452, "logo-google": 62453, "logo-google-playstore": 62454, "logo-hackernews": 62455, "logo-html5": 62456, "logo-instagram": 62457, "logo-ionic": 62458, "logo-ionitron": 62459, "logo-javascript": 62460, "logo-laravel": 62461, "logo-linkedin": 62462, "logo-markdown": 62463, "logo-mastodon": 62464, "logo-medium": 62465, "logo-microsoft": 62466, "logo-no-smoking": 62467, "logo-nodejs": 62468, "logo-npm": 62469, "logo-octocat": 62470, "logo-paypal": 62471, "logo-pinterest": 62472, "logo-playstation": 62473, "logo-pwa": 62474, "logo-python": 62475, "logo-react": 62476, "logo-reddit": 62477, "logo-rss": 62478, "logo-sass": 62479, "logo-skype": 62480, "logo-slack": 62481, "logo-snapchat": 62482, "logo-soundcloud": 62483, "logo-stackoverflow": 62484, "logo-steam": 62485, "logo-stencil": 62486, "logo-tableau": 62487, "logo-threads": 63052, "logo-tiktok": 62488, "logo-trapeze": 63050, "logo-tumblr": 62489, "logo-tux": 62490, "logo-twitch": 62491, "logo-twitter": 62492, "logo-usd": 62493, "logo-venmo": 62494, "logo-vercel": 62495, "logo-vimeo": 62496, "logo-vk": 62497, "logo-vue": 62498, "logo-web-component": 62499, "logo-wechat": 62500, "logo-whatsapp": 62501, "logo-windows": 62502, "logo-wordpress": 62503, "logo-x": 63051, "logo-xbox": 62504, "logo-xing": 62505, "logo-yahoo": 62506, "logo-yen": 62507, "logo-youtube": 62508, "magnet": 62509, "magnet-outline": 62510, "magnet-sharp": 62511, "mail": 62512, "mail-open": 62513, "mail-open-outline": 62514, "mail-open-sharp": 62515, "mail-outline": 62516, "mail-sharp": 62517, "mail-unread": 62518, "mail-unread-outline": 62519, "mail-unread-sharp": 62520, "male": 62521, "male-female": 62522, "male-female-outline": 62523, "male-female-sharp": 62524, "male-outline": 62525, "male-sharp": 62526, "man": 62527, "man-outline": 62528, "man-sharp": 62529, "map": 62530, "map-outline": 62531, "map-sharp": 62532, "medal": 62533, "medal-outline": 62534, "medal-sharp": 62535, "medical": 62536, "medical-outline": 62537, "medical-sharp": 62538, "medkit": 62539, "medkit-outline": 62540, "medkit-sharp": 62541, "megaphone": 62542, "megaphone-outline": 62543, "megaphone-sharp": 62544, "menu": 62545, "menu-outline": 62546, "menu-sharp": 62547, "mic": 62548, "mic-circle": 62549, "mic-circle-outline": 62550, "mic-circle-sharp": 62551, "mic-off": 62552, "mic-off-circle": 62553, "mic-off-circle-outline": 62554, "mic-off-circle-sharp": 62555, "mic-off-outline": 62556, "mic-off-sharp": 62557, "mic-outline": 62558, "mic-sharp": 62559, "moon": 62560, "moon-outline": 62561, "moon-sharp": 62562, "move": 62563, "move-outline": 62564, "move-sharp": 62565, "musical-note": 62566, "musical-note-outline": 62567, "musical-note-sharp": 62568, "musical-notes": 62569, "musical-notes-outline": 62570, "musical-notes-sharp": 62571, "navigate": 62572, "navigate-circle": 62573, "navigate-circle-outline": 62574, "navigate-circle-sharp": 62575, "navigate-outline": 62576, "navigate-sharp": 62577, "newspaper": 62578, "newspaper-outline": 62579, "newspaper-sharp": 62580, "notifications": 62581, "notifications-circle": 62582, "notifications-circle-outline": 62583, "notifications-circle-sharp": 62584, "notifications-off": 62585, "notifications-off-circle": 62586, "notifications-off-circle-outline": 62587, "notifications-off-circle-sharp": 62588, "notifications-off-outline": 62589, "notifications-off-sharp": 62590, "notifications-outline": 62591, "notifications-sharp": 62592, "nuclear": 62593, "nuclear-outline": 62594, "nuclear-sharp": 62595, "nutrition": 62596, "nutrition-outline": 62597, "nutrition-sharp": 62598, "open": 62599, "open-outline": 62600, "open-sharp": 62601, "options": 62602, "options-outline": 62603, "options-sharp": 62604, "paper-plane": 62605, "paper-plane-outline": 62606, "paper-plane-sharp": 62607, "partly-sunny": 62608, "partly-sunny-outline": 62609, "partly-sunny-sharp": 62610, "pause": 62611, "pause-circle": 62612, "pause-circle-outline": 62613, "pause-circle-sharp": 62614, "pause-outline": 62615, "pause-sharp": 62616, "paw": 62617, "paw-outline": 62618, "paw-sharp": 62619, "pencil": 62620, "pencil-outline": 62621, "pencil-sharp": 62622, "people": 62623, "people-circle": 62624, "people-circle-outline": 62625, "people-circle-sharp": 62626, "people-outline": 62627, "people-sharp": 62628, "person": 62629, "person-add": 62630, "person-add-outline": 62631, "person-add-sharp": 62632, "person-circle": 62633, "person-circle-outline": 62634, "person-circle-sharp": 62635, "person-outline": 62636, "person-remove": 62637, "person-remove-outline": 62638, "person-remove-sharp": 62639, "person-sharp": 62640, "phone-landscape": 62641, "phone-landscape-outline": 62642, "phone-landscape-sharp": 62643, "phone-portrait": 62644, "phone-portrait-outline": 62645, "phone-portrait-sharp": 62646, "pie-chart": 62647, "pie-chart-outline": 62648, "pie-chart-sharp": 62649, "pin": 62650, "pin-outline": 62651, "pin-sharp": 62652, "pint": 62653, "pint-outline": 62654, "pint-sharp": 62655, "pizza": 62656, "pizza-outline": 62657, "pizza-sharp": 62658, "planet": 62659, "planet-outline": 62660, "planet-sharp": 62661, "play": 62662, "play-back": 62663, "play-back-circle": 62664, "play-back-circle-outline": 62665, "play-back-circle-sharp": 62666, "play-back-outline": 62667, "play-back-sharp": 62668, "play-circle": 62669, "play-circle-outline": 62670, "play-circle-sharp": 62671, "play-forward": 62672, "play-forward-circle": 62673, "play-forward-circle-outline": 62674, "play-forward-circle-sharp": 62675, "play-forward-outline": 62676, "play-forward-sharp": 62677, "play-outline": 62678, "play-sharp": 62679, "play-skip-back": 62680, "play-skip-back-circle": 62681, "play-skip-back-circle-outline": 62682, "play-skip-back-circle-sharp": 62683, "play-skip-back-outline": 62684, "play-skip-back-sharp": 62685, "play-skip-forward": 62686, "play-skip-forward-circle": 62687, "play-skip-forward-circle-outline": 62688, "play-skip-forward-circle-sharp": 62689, "play-skip-forward-outline": 62690, "play-skip-forward-sharp": 62691, "podium": 62692, "podium-outline": 62693, "podium-sharp": 62694, "power": 62695, "power-outline": 62696, "power-sharp": 62697, "pricetag": 62698, "pricetag-outline": 62699, "pricetag-sharp": 62700, "pricetags": 62701, "pricetags-outline": 62702, "pricetags-sharp": 62703, "print": 62704, "print-outline": 62705, "print-sharp": 62706, "prism": 62707, "prism-outline": 62708, "prism-sharp": 62709, "pulse": 62710, "pulse-outline": 62711, "pulse-sharp": 62712, "push": 62713, "push-outline": 62714, "push-sharp": 62715, "qr-code": 62716, "qr-code-outline": 62717, "qr-code-sharp": 62718, "radio": 62719, "radio-button-off": 62720, "radio-button-off-outline": 62721, "radio-button-off-sharp": 62722, "radio-button-on": 62723, "radio-button-on-outline": 62724, "radio-button-on-sharp": 62725, "radio-outline": 62726, "radio-sharp": 62727, "rainy": 62728, "rainy-outline": 62729, "rainy-sharp": 62730, "reader": 62731, "reader-outline": 62732, "reader-sharp": 62733, "receipt": 62734, "receipt-outline": 62735, "receipt-sharp": 62736, "recording": 62737, "recording-outline": 62738, "recording-sharp": 62739, "refresh": 62740, "refresh-circle": 62741, "refresh-circle-outline": 62742, "refresh-circle-sharp": 62743, "refresh-outline": 62744, "refresh-sharp": 62745, "reload": 62746, "reload-circle": 62747, "reload-circle-outline": 62748, "reload-circle-sharp": 62749, "reload-outline": 62750, "reload-sharp": 62751, "remove": 62752, "remove-circle": 62753, "remove-circle-outline": 62754, "remove-circle-sharp": 62755, "remove-outline": 62756, "remove-sharp": 62757, "reorder-four": 62758, "reorder-four-outline": 62759, "reorder-four-sharp": 62760, "reorder-three": 62761, "reorder-three-outline": 62762, "reorder-three-sharp": 62763, "reorder-two": 62764, "reorder-two-outline": 62765, "reorder-two-sharp": 62766, "repeat": 62767, "repeat-outline": 62768, "repeat-sharp": 62769, "resize": 62770, "resize-outline": 62771, "resize-sharp": 62772, "restaurant": 62773, "restaurant-outline": 62774, "restaurant-sharp": 62775, "return-down-back": 62776, "return-down-back-outline": 62777, "return-down-back-sharp": 62778, "return-down-forward": 62779, "return-down-forward-outline": 62780, "return-down-forward-sharp": 62781, "return-up-back": 62782, "return-up-back-outline": 62783, "return-up-back-sharp": 62784, "return-up-forward": 62785, "return-up-forward-outline": 62786, "return-up-forward-sharp": 62787, "ribbon": 62788, "ribbon-outline": 62789, "ribbon-sharp": 62790, "rocket": 62791, "rocket-outline": 62792, "rocket-sharp": 62793, "rose": 62794, "rose-outline": 62795, "rose-sharp": 62796, "sad": 62797, "sad-outline": 62798, "sad-sharp": 62799, "save": 62800, "save-outline": 62801, "save-sharp": 62802, "scale": 62803, "scale-outline": 62804, "scale-sharp": 62805, "scan": 62806, "scan-circle": 62807, "scan-circle-outline": 62808, "scan-circle-sharp": 62809, "scan-outline": 62810, "scan-sharp": 62811, "school": 62812, "school-outline": 62813, "school-sharp": 62814, "search": 62815, "search-circle": 62816, "search-circle-outline": 62817, "search-circle-sharp": 62818, "search-outline": 62819, "search-sharp": 62820, "send": 62821, "send-outline": 62822, "send-sharp": 62823, "server": 62824, "server-outline": 62825, "server-sharp": 62826, "settings": 62827, "settings-outline": 62828, "settings-sharp": 62829, "shapes": 62830, "shapes-outline": 62831, "shapes-sharp": 62832, "share": 62833, "share-outline": 62834, "share-sharp": 62835, "share-social": 62836, "share-social-outline": 62837, "share-social-sharp": 62838, "shield": 62839, "shield-checkmark": 62840, "shield-checkmark-outline": 62841, "shield-checkmark-sharp": 62842, "shield-half": 62843, "shield-half-outline": 62844, "shield-half-sharp": 62845, "shield-outline": 62846, "shield-sharp": 62847, "shirt": 62848, "shirt-outline": 62849, "shirt-sharp": 62850, "shuffle": 62851, "shuffle-outline": 62852, "shuffle-sharp": 62853, "skull": 62854, "skull-outline": 62855, "skull-sharp": 62856, "snow": 62857, "snow-outline": 62858, "snow-sharp": 62859, "sparkles": 62860, "sparkles-outline": 62861, "sparkles-sharp": 62862, "speedometer": 62863, "speedometer-outline": 62864, "speedometer-sharp": 62865, "square": 62866, "square-outline": 62867, "square-sharp": 62868, "star": 62869, "star-half": 62870, "star-half-outline": 62871, "star-half-sharp": 62872, "star-outline": 62873, "star-sharp": 62874, "stats-chart": 62875, "stats-chart-outline": 62876, "stats-chart-sharp": 62877, "stop": 62878, "stop-circle": 62879, "stop-circle-outline": 62880, "stop-circle-sharp": 62881, "stop-outline": 62882, "stop-sharp": 62883, "stopwatch": 62884, "stopwatch-outline": 62885, "stopwatch-sharp": 62886, "storefront": 62887, "storefront-outline": 62888, "storefront-sharp": 62889, "subway": 62890, "subway-outline": 62891, "subway-sharp": 62892, "sunny": 62893, "sunny-outline": 62894, "sunny-sharp": 62895, "swap-horizontal": 62896, "swap-horizontal-outline": 62897, "swap-horizontal-sharp": 62898, "swap-vertical": 62899, "swap-vertical-outline": 62900, "swap-vertical-sharp": 62901, "sync": 62902, "sync-circle": 62903, "sync-circle-outline": 62904, "sync-circle-sharp": 62905, "sync-outline": 62906, "sync-sharp": 62907, "tablet-landscape": 62908, "tablet-landscape-outline": 62909, "tablet-landscape-sharp": 62910, "tablet-portrait": 62911, "tablet-portrait-outline": 62912, "tablet-portrait-sharp": 62913, "telescope": 62914, "telescope-outline": 62915, "telescope-sharp": 62916, "tennisball": 62917, "tennisball-outline": 62918, "tennisball-sharp": 62919, "terminal": 62920, "terminal-outline": 62921, "terminal-sharp": 62922, "text": 62923, "text-outline": 62924, "text-sharp": 62925, "thermometer": 62926, "thermometer-outline": 62927, "thermometer-sharp": 62928, "thumbs-down": 62929, "thumbs-down-outline": 62930, "thumbs-down-sharp": 62931, "thumbs-up": 62932, "thumbs-up-outline": 62933, "thumbs-up-sharp": 62934, "thunderstorm": 62935, "thunderstorm-outline": 62936, "thunderstorm-sharp": 62937, "ticket": 62938, "ticket-outline": 62939, "ticket-sharp": 62940, "time": 62941, "time-outline": 62942, "time-sharp": 62943, "timer": 62944, "timer-outline": 62945, "timer-sharp": 62946, "today": 62947, "today-outline": 62948, "today-sharp": 62949, "toggle": 62950, "toggle-outline": 62951, "toggle-sharp": 62952, "trail-sign": 62953, "trail-sign-outline": 62954, "trail-sign-sharp": 62955, "train": 62956, "train-outline": 62957, "train-sharp": 62958, "transgender": 62959, "transgender-outline": 62960, "transgender-sharp": 62961, "trash": 62962, "trash-bin": 62963, "trash-bin-outline": 62964, "trash-bin-sharp": 62965, "trash-outline": 62966, "trash-sharp": 62967, "trending-down": 62968, "trending-down-outline": 62969, "trending-down-sharp": 62970, "trending-up": 62971, "trending-up-outline": 62972, "trending-up-sharp": 62973, "triangle": 62974, "triangle-outline": 62975, "triangle-sharp": 62976, "trophy": 62977, "trophy-outline": 62978, "trophy-sharp": 62979, "tv": 62980, "tv-outline": 62981, "tv-sharp": 62982, "umbrella": 62983, "umbrella-outline": 62984, "umbrella-sharp": 62985, "unlink": 62986, "unlink-outline": 62987, "unlink-sharp": 62988, "videocam": 62989, "videocam-off": 62990, "videocam-off-outline": 62991, "videocam-off-sharp": 62992, "videocam-outline": 62993, "videocam-sharp": 62994, "volume-high": 62995, "volume-high-outline": 62996, "volume-high-sharp": 62997, "volume-low": 62998, "volume-low-outline": 62999, "volume-low-sharp": 63000, "volume-medium": 63001, "volume-medium-outline": 63002, "volume-medium-sharp": 63003, "volume-mute": 63004, "volume-mute-outline": 63005, "volume-mute-sharp": 63006, "volume-off": 63007, "volume-off-outline": 63008, "volume-off-sharp": 63009, "walk": 63010, "walk-outline": 63011, "walk-sharp": 63012, "wallet": 63013, "wallet-outline": 63014, "wallet-sharp": 63015, "warning": 63016, "warning-outline": 63017, "warning-sharp": 63018, "watch": 63019, "watch-outline": 63020, "watch-sharp": 63021, "water": 63022, "water-outline": 63023, "water-sharp": 63024, "wifi": 63025, "wifi-outline": 63026, "wifi-sharp": 63027, "wine": 63028, "wine-outline": 63029, "wine-sharp": 63030, "woman": 63031, "woman-outline": 63032, "woman-sharp": 63033 } ================================================ FILE: packages/ionicons/package.json ================================================ { "name": "@react-native-vector-icons/ionicons", "version": "12.5.0", "description": "Ionicons font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "ionicons" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/ionicons" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "ionicons": "8.0.13" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/ionicons/react-native-vector-icons-ionicons.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-ionicons' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/ionicons/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Ionicons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Ionicons.json'; export const Ionicons = createIconSet(glyphMap, { postScriptName: 'Ionicons', fontFileName: 'Ionicons.ttf', fontSource: require('../fonts/Ionicons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type IoniconsIconName = keyof typeof glyphMap; /** @alias */ export default Ionicons; ================================================ FILE: packages/ionicons/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Ionicons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Ionicons.json'; export const Ionicons = createIconSet(glyphMap, { postScriptName: 'Ionicons', fontFileName: 'Ionicons.ttf', }); export type IoniconsIconName = keyof typeof glyphMap; /** @alias */ export default Ionicons; ================================================ FILE: packages/ionicons/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/ionicons/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/lucide/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "lucide", "upstreamFont": "lucide-static", "buildSteps": { "glyphmap": { "location": "../../node_modules/lucide-static/font/lucide.css", "mode": "css", "prefix": ".icon-" }, "copyFont": { "location": "../../node_modules/lucide-static/font/lucide.ttf", "cleanup": true } }, "versions": [ { "rnvi": "12.0.0", "upstream": "0.473.0" }, { "rnvi": "12.0.1", "upstream": "0.525.0" }, { "rnvi": "12.4.1", "upstream": "0.576.0" } ] } } ================================================ FILE: packages/lucide/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Lucide to 0.576.0 ([#1875](https://github.com/oblador/react-native-vector-icons/pull/1875)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🩹 Fixes - upgrade lucide to 0.548.0 ([#1852](https://github.com/oblador/react-native-vector-icons/pull/1852)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🩹 Fixes - upgrade lucide to 0.525.0 ([#1798](https://github.com/oblador/react-native-vector-icons/pull/1798)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/lucide/README.md ================================================ # React Native Vector Icons - Lucide Lucide font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/lucide ``` ## Usage ```jsx import { Lucide } from '@react-native-vector-icons/lucide'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 0.473.0 | | > 12.0.1 | 0.525.0 | | > 12.4.1 | 0.576.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/lucide/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.lucide" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsLucide" codegenJavaPackageName = "com.reactnativevectoricons.lucide" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-lucide") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-lucide/fonts" eachFile { println "(RNVI:lucide) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/lucide/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/lucide/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/lucide/android/src/main/java/VectorIconsLucidePackage.kt ================================================ package com.reactnativevectoricons.lucide import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsLucidePackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/lucide/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/lucide/glyphmaps/Lucide.json ================================================ { "a-arrow-down": 58757, "a-arrow-up": 58758, "a-large-small": 58759, "accessibility": 58007, "activity-square": 58548, "activity": 57400, "air-vent": 58189, "airplay": 57401, "alarm-check": 57836, "alarm-clock-check": 57836, "alarm-clock-minus": 57837, "alarm-clock-off": 57915, "alarm-clock-plus": 57838, "alarm-clock": 57402, "alarm-minus": 57837, "alarm-plus": 57838, "alarm-smoke": 58747, "album": 57403, "alert-circle": 57463, "alert-octagon": 57639, "alert-triangle": 57747, "align-center-horizontal": 57964, "align-center-vertical": 57965, "align-center": 57730, "align-end-horizontal": 57966, "align-end-vertical": 57967, "align-horizontal-distribute-center": 57404, "align-horizontal-distribute-end": 57405, "align-horizontal-distribute-start": 57406, "align-horizontal-justify-center": 57970, "align-horizontal-justify-end": 57971, "align-horizontal-justify-start": 57972, "align-horizontal-space-around": 57973, "align-horizontal-space-between": 57974, "align-justify": 57732, "align-left": 57733, "align-right": 57731, "align-start-horizontal": 57968, "align-start-vertical": 57969, "align-vertical-distribute-center": 57982, "align-vertical-distribute-end": 57983, "align-vertical-distribute-start": 57984, "align-vertical-justify-center": 57975, "align-vertical-justify-end": 57976, "align-vertical-justify-start": 57977, "align-vertical-space-around": 57978, "align-vertical-space-between": 57979, "ambulance": 58811, "ampersand": 58524, "ampersands": 58525, "amphora": 58907, "anchor": 57407, "angry": 58108, "annoyed": 58109, "antenna": 58594, "anvil": 58752, "aperture": 57408, "app-window-mac": 58834, "app-window": 58406, "apple": 58190, "archive-restore": 58061, "archive-x": 58636, "archive": 57409, "area-chart": 58579, "armchair": 58048, "arrow-big-down-dash": 58397, "arrow-big-down": 57825, "arrow-big-left-dash": 58398, "arrow-big-left": 57826, "arrow-big-right-dash": 58399, "arrow-big-right": 57827, "arrow-big-up-dash": 58400, "arrow-big-up": 57828, "arrow-down-0-1": 58387, "arrow-down-01": 58387, "arrow-down-1-0": 58388, "arrow-down-10": 58388, "arrow-down-a-z": 58389, "arrow-down-az": 58389, "arrow-down-circle": 57464, "arrow-down-from-line": 58452, "arrow-down-left-from-circle": 58359, "arrow-down-left-from-square": 58785, "arrow-down-left-square": 58549, "arrow-down-left": 57411, "arrow-down-narrow-wide": 57412, "arrow-down-right-from-circle": 58360, "arrow-down-right-from-square": 58786, "arrow-down-right-square": 58550, "arrow-down-right": 57413, "arrow-down-square": 58407, "arrow-down-to-dot": 58445, "arrow-down-to-line": 58453, "arrow-down-up": 57414, "arrow-down-wide-narrow": 57415, "arrow-down-z-a": 58390, "arrow-down-za": 58390, "arrow-down": 57410, "arrow-left-circle": 57465, "arrow-left-from-line": 58454, "arrow-left-right": 57930, "arrow-left-square": 58408, "arrow-left-to-line": 58455, "arrow-left": 57416, "arrow-right-circle": 57466, "arrow-right-from-line": 58456, "arrow-right-left": 58391, "arrow-right-square": 58409, "arrow-right-to-line": 58457, "arrow-right": 57417, "arrow-up-0-1": 58392, "arrow-up-01": 58392, "arrow-up-1-0": 58393, "arrow-up-10": 58393, "arrow-up-a-z": 58394, "arrow-up-az": 58394, "arrow-up-circle": 57467, "arrow-up-down": 58237, "arrow-up-from-dot": 58446, "arrow-up-from-line": 58458, "arrow-up-left-from-circle": 58361, "arrow-up-left-from-square": 58787, "arrow-up-left-square": 58551, "arrow-up-left": 57419, "arrow-up-narrow-wide": 57420, "arrow-up-right-from-circle": 58362, "arrow-up-right-from-square": 58788, "arrow-up-right-square": 58552, "arrow-up-right": 57421, "arrow-up-square": 58410, "arrow-up-to-line": 58459, "arrow-up-wide-narrow": 58395, "arrow-up-z-a": 58396, "arrow-up-za": 58396, "arrow-up": 57418, "arrows-up-from-line": 58580, "asterisk-square": 57704, "asterisk": 57839, "at-sign": 57422, "atom": 58327, "audio-lines": 58714, "audio-waveform": 58715, "award": 57423, "axe": 57424, "axis-3-d": 58110, "axis-3d": 58110, "baby": 58062, "backpack": 58056, "badge-alert": 58485, "badge-cent": 58639, "badge-check": 57921, "badge-dollar-sign": 58486, "badge-euro": 58640, "badge-help": 58491, "badge-indian-rupee": 58641, "badge-info": 58487, "badge-japanese-yen": 58642, "badge-minus": 58488, "badge-percent": 58489, "badge-plus": 58490, "badge-pound-sterling": 58643, "badge-question-mark": 58491, "badge-russian-ruble": 58644, "badge-swiss-franc": 58645, "badge-turkish-lira": 59006, "badge-x": 58492, "badge": 58484, "baggage-claim": 58057, "balloon": 59055, "ban": 57425, "banana": 58191, "bandage": 58909, "banknote-arrow-down": 58956, "banknote-arrow-up": 58957, "banknote-x": 58958, "banknote": 57426, "bar-chart-2": 57448, "bar-chart-3": 58019, "bar-chart-4": 58020, "bar-chart-big": 58537, "bar-chart-horizontal-big": 58535, "bar-chart-horizontal": 58018, "bar-chart": 57450, "barcode": 58675, "barrel": 58997, "baseline": 57989, "bath": 58027, "battery-charging": 57428, "battery-full": 57429, "battery-low": 57430, "battery-medium": 57431, "battery-plus": 58942, "battery-warning": 58284, "battery": 57427, "beaker": 57432, "bean-off": 58256, "bean": 58255, "bed-double": 58050, "bed-single": 58051, "bed": 58049, "beef": 58277, "beer-off": 58841, "beer": 58063, "bell-dot": 58411, "bell-electric": 58748, "bell-minus": 57840, "bell-off": 57434, "bell-plus": 57841, "bell-ring": 57892, "bell": 57433, "between-horizonal-end": 58769, "between-horizonal-start": 58770, "between-horizontal-end": 58769, "between-horizontal-start": 58770, "between-vertical-end": 58771, "between-vertical-start": 58772, "biceps-flexed": 58859, "bike": 57810, "binary": 57842, "binoculars": 58913, "biohazard": 58433, "bird": 58309, "birdhouse": 59034, "bitcoin": 57435, "blend": 58780, "blinds": 58304, "blocks": 58618, "bluetooth-connected": 57784, "bluetooth-off": 57785, "bluetooth-searching": 57786, "bluetooth": 57436, "bold": 57437, "bolt": 58764, "bomb": 58111, "bone": 58200, "book-a": 58692, "book-alert": 58994, "book-audio": 58693, "book-check": 58694, "book-copy": 58348, "book-dashed": 58349, "book-down": 58350, "book-headphones": 58695, "book-heart": 58696, "book-image": 58697, "book-key": 58351, "book-lock": 58352, "book-marked": 58353, "book-minus": 58354, "book-open-check": 58241, "book-open-text": 58698, "book-open": 57439, "book-plus": 58355, "book-search": 59051, "book-template": 58349, "book-text": 58699, "book-type": 58700, "book-up-2": 58534, "book-up": 58356, "book-user": 58701, "book-x": 58357, "book": 57438, "bookmark-check": 58655, "bookmark-minus": 57916, "bookmark-plus": 57917, "bookmark-x": 58656, "bookmark": 57440, "boom-box": 58606, "bot-message-square": 58830, "bot-off": 58848, "bot": 57787, "bottle-wine": 59003, "bow-arrow": 58974, "box-select": 57803, "box": 57441, "boxes": 58064, "braces": 58218, "brackets": 58435, "brain-circuit": 58311, "brain-cog": 58312, "brain": 58310, "brick-wall-fire": 58963, "brick-wall-shield": 59024, "brick-wall": 58753, "briefcase-business": 58837, "briefcase-conveyor-belt": 58923, "briefcase-medical": 58838, "briefcase": 57442, "bring-to-front": 58607, "brush-cleaning": 58982, "brush": 57811, "bubbles": 58964, "bug-off": 58637, "bug-play": 58638, "bug": 57868, "building-2": 58000, "building": 57804, "bus-front": 58619, "bus": 57812, "cable-car": 58620, "cable": 58595, "cake-slice": 58553, "cake": 58180, "calculator": 57788, "calendar-1": 58928, "calendar-arrow-down": 58878, "calendar-arrow-up": 58879, "calendar-check-2": 58040, "calendar-check": 58039, "calendar-clock": 58116, "calendar-cog": 58861, "calendar-days": 58041, "calendar-fold": 58804, "calendar-heart": 58117, "calendar-minus-2": 58805, "calendar-minus": 58042, "calendar-off": 58043, "calendar-plus-2": 58806, "calendar-plus": 58044, "calendar-range": 58045, "calendar-search": 58118, "calendar-sync": 58934, "calendar-x-2": 58047, "calendar-x": 58046, "calendar": 57443, "calendars": 59047, "camera-off": 57445, "camera": 57444, "candlestick-chart": 58536, "candy-cane": 58554, "candy-off": 58258, "candy": 58257, "cannabis-off": 59055, "cannabis": 58836, "captions-off": 58817, "captions": 58276, "car-front": 58621, "car-taxi-front": 58622, "car": 57813, "caravan": 58681, "card-sim": 58993, "carrot": 57946, "case-lower": 58328, "case-sensitive": 58329, "case-upper": 58330, "cassette-tape": 58570, "cast": 57446, "castle": 58336, "cat": 58252, "cctv": 58749, "chart-area": 58579, "chart-bar-big": 58535, "chart-bar-decreasing": 58887, "chart-bar-increasing": 58888, "chart-bar-stacked": 58889, "chart-bar": 58018, "chart-candlestick": 58536, "chart-column-big": 58537, "chart-column-decreasing": 57447, "chart-column-increasing": 58020, "chart-column-stacked": 58890, "chart-column": 58019, "chart-gantt": 58916, "chart-line": 58021, "chart-network": 58891, "chart-no-axes-column-decreasing": 57449, "chart-no-axes-column-increasing": 57450, "chart-no-axes-column": 57448, "chart-no-axes-combined": 58892, "chart-no-axes-gantt": 58564, "chart-pie": 57451, "chart-scatter": 58506, "chart-spline": 58893, "check-check": 58254, "check-circle-2": 57894, "check-circle": 57468, "check-line": 58987, "check-square-2": 58713, "check-square": 57706, "check": 57452, "chef-hat": 58028, "cherry": 58192, "chess-bishop": 59040, "chess-king": 59041, "chess-knight": 59042, "chess-pawn": 59043, "chess-queen": 59044, "chess-rook": 59045, "chevron-down-circle": 58589, "chevron-down-square": 58319, "chevron-down": 57453, "chevron-first": 57923, "chevron-last": 57924, "chevron-left-circle": 58590, "chevron-left-square": 58320, "chevron-left": 57454, "chevron-right-circle": 58591, "chevron-right-square": 58321, "chevron-right": 57455, "chevron-up-circle": 58592, "chevron-up-square": 58322, "chevron-up": 57456, "chevrons-down-up": 57896, "chevrons-down": 57457, "chevrons-left-right-ellipsis": 58911, "chevrons-left-right": 58003, "chevrons-left": 57458, "chevrons-right-left": 58004, "chevrons-right": 57459, "chevrons-up-down": 57873, "chevrons-up": 57460, "chrome": 57461, "chromium": 57461, "church": 58337, "cigarette-off": 58055, "cigarette": 58054, "circle-alert": 57463, "circle-arrow-down": 57464, "circle-arrow-left": 57465, "circle-arrow-out-down-left": 58359, "circle-arrow-out-down-right": 58360, "circle-arrow-out-up-left": 58361, "circle-arrow-out-up-right": 58362, "circle-arrow-right": 57466, "circle-arrow-up": 57467, "circle-check-big": 57468, "circle-check": 57894, "circle-chevron-down": 58589, "circle-chevron-left": 58590, "circle-chevron-right": 58591, "circle-chevron-up": 58592, "circle-dashed": 58544, "circle-divide": 57469, "circle-dollar-sign": 58493, "circle-dot-dashed": 58545, "circle-dot": 58181, "circle-ellipsis": 58182, "circle-equal": 58368, "circle-fading-arrow-up": 58904, "circle-fading-plus": 58812, "circle-gauge": 58593, "circle-help": 57474, "circle-minus": 57470, "circle-off": 58369, "circle-parking-off": 58314, "circle-parking": 58313, "circle-pause": 57471, "circle-percent": 58650, "circle-pile": 59055, "circle-play": 57472, "circle-plus": 57473, "circle-pound-sterling": 58989, "circle-power": 58704, "circle-question-mark": 57474, "circle-slash-2": 57875, "circle-slash": 58370, "circle-slashed": 57875, "circle-small": 58944, "circle-star": 59021, "circle-stop": 57475, "circle-user-round": 58466, "circle-user": 58465, "circle-x": 57476, "circle": 57462, "circuit-board": 58371, "citrus": 58229, "clapperboard": 58011, "clipboard-check": 57881, "clipboard-clock": 59016, "clipboard-copy": 57893, "clipboard-edit": 58119, "clipboard-list": 57478, "clipboard-minus": 58814, "clipboard-paste": 58344, "clipboard-pen-line": 58120, "clipboard-pen": 58119, "clipboard-plus": 58815, "clipboard-signature": 58120, "clipboard-type": 58121, "clipboard-x": 57890, "clipboard": 57477, "clock-1": 57931, "clock-10": 57932, "clock-11": 57933, "clock-12": 57934, "clock-2": 57935, "clock-3": 57936, "clock-4": 57937, "clock-5": 57938, "clock-6": 57939, "clock-7": 57940, "clock-8": 57941, "clock-9": 57942, "clock-alert": 58922, "clock-arrow-down": 58880, "clock-arrow-up": 58881, "clock-check": 59038, "clock-fading": 58954, "clock-plus": 58983, "clock": 57479, "closed-caption": 59018, "cloud-alert": 58931, "cloud-backup": 59055, "cloud-check": 58990, "cloud-cog": 58122, "cloud-download": 57481, "cloud-drizzle": 57482, "cloud-fog": 57876, "cloud-hail": 57483, "cloud-lightning": 57484, "cloud-moon-rain": 58106, "cloud-moon": 57877, "cloud-off": 57485, "cloud-rain-wind": 57487, "cloud-rain": 57486, "cloud-snow": 57488, "cloud-sun-rain": 58107, "cloud-sun": 57878, "cloud-sync": 59055, "cloud-upload": 57489, "cloud": 57480, "cloudy": 57879, "clover": 57490, "club": 58518, "code-2": 57862, "code-square": 57707, "code-xml": 57862, "code": 57491, "codepen": 57492, "codesandbox": 57493, "coffee": 57494, "cog": 58123, "coins": 57495, "columns-2": 57496, "columns-3-cog": 58977, "columns-3": 57497, "columns-4": 58761, "columns-settings": 58977, "columns": 57496, "combine": 58444, "command": 57498, "compass": 57499, "component": 58029, "computer": 58596, "concierge-bell": 58232, "cone": 58659, "construction": 58292, "contact-2": 58467, "contact-round": 58467, "contact": 57500, "container": 58581, "contrast": 57501, "cookie": 57963, "cooking-pot": 58756, "copy-check": 58363, "copy-minus": 58364, "copy-plus": 58365, "copy-slash": 58366, "copy-x": 58367, "copy": 57502, "copyleft": 57503, "copyright": 57504, "corner-down-left": 57505, "corner-down-right": 57506, "corner-left-down": 57507, "corner-left-up": 57508, "corner-right-down": 57509, "corner-right-up": 57510, "corner-up-left": 57511, "corner-up-right": 57512, "cpu": 57513, "creative-commons": 58290, "credit-card": 57514, "croissant": 58030, "crop": 57515, "cross": 57829, "crosshair": 57516, "crown": 57814, "cuboid": 58660, "cup-soda": 58065, "curly-braces": 58218, "currency": 57904, "cylinder": 58661, "dam": 58886, "database-backup": 58283, "database-search": 59057, "database-zap": 58635, "database": 57517, "decimals-arrow-left": 58972, "decimals-arrow-right": 58973, "delete": 57518, "dessert": 58555, "diameter": 58662, "diamond-minus": 58849, "diamond-percent": 58651, "diamond-plus": 58850, "diamond": 58066, "dice-1": 57991, "dice-2": 57992, "dice-3": 57993, "dice-4": 57994, "dice-5": 57995, "dice-6": 57996, "dices": 58053, "diff": 58124, "disc-2": 58358, "disc-3": 58516, "disc-album": 58716, "disc": 57519, "divide-circle": 57469, "divide-square": 57709, "divide": 57520, "dna-off": 58260, "dna": 58259, "dock": 58835, "dog": 58253, "dollar-sign": 57521, "donut": 58556, "door-closed-locked": 58980, "door-closed": 58325, "door-open": 58326, "dot-square": 57710, "dot": 58447, "download-cloud": 57481, "download": 57522, "drafting-compass": 58663, "drama": 58657, "dribbble": 57523, "drill": 58765, "drone": 58998, "droplet-off": 58936, "droplet": 57524, "droplets": 57525, "drum": 58717, "drumstick": 57947, "dumbbell": 58273, "ear-off": 58243, "ear": 58242, "earth-lock": 58828, "earth": 57843, "eclipse": 58781, "edit-2": 57647, "edit-3": 57648, "edit": 57714, "egg-fried": 58193, "egg-off": 58261, "egg": 57949, "ellipsis-vertical": 57527, "ellipsis": 57526, "equal-approximately": 58932, "equal-not": 57790, "equal-square": 57711, "equal": 57789, "eraser": 57999, "ethernet-port": 58912, "euro": 57528, "ev-charger": 59031, "expand": 57882, "external-link": 57529, "eye-closed": 58926, "eye-off": 57531, "eye": 57530, "facebook": 57532, "factory": 58015, "fan": 58233, "fast-forward": 57533, "feather": 57534, "fence": 58754, "ferris-wheel": 58495, "figma": 57535, "file-archive": 58125, "file-audio-2": 58138, "file-audio": 58138, "file-axis-3-d": 58126, "file-axis-3d": 58126, "file-badge-2": 58127, "file-badge": 58127, "file-bar-chart-2": 58129, "file-bar-chart": 58130, "file-box": 58128, "file-braces-corner": 58220, "file-braces": 58219, "file-chart-column-increasing": 58130, "file-chart-column": 58129, "file-chart-line": 58131, "file-chart-pie": 58132, "file-check-2": 57538, "file-check-corner": 57538, "file-check": 57537, "file-clock": 58133, "file-code-2": 58462, "file-code-corner": 58462, "file-code": 57539, "file-cog-2": 58134, "file-cog": 58134, "file-diff": 58135, "file-digit": 57540, "file-down": 58136, "file-edit": 58143, "file-exclamation-point": 58137, "file-headphone": 58138, "file-heart": 58139, "file-image": 58140, "file-input": 57541, "file-json-2": 58220, "file-json": 58219, "file-key-2": 58141, "file-key": 58141, "file-line-chart": 58131, "file-lock-2": 58142, "file-lock": 58142, "file-minus-2": 57543, "file-minus-corner": 57543, "file-minus": 57542, "file-music": 58718, "file-output": 57544, "file-pen-line": 58144, "file-pen": 58143, "file-pie-chart": 58132, "file-play": 58145, "file-plus-2": 57546, "file-plus-corner": 57546, "file-plus": 57545, "file-question-mark": 58146, "file-question": 58146, "file-scan": 58147, "file-search-2": 58148, "file-search-corner": 58148, "file-search": 57547, "file-signal": 58149, "file-signature": 58144, "file-sliders": 58784, "file-spreadsheet": 58150, "file-stack": 58529, "file-symlink": 58151, "file-terminal": 58152, "file-text": 57548, "file-type-2": 58221, "file-type-corner": 58221, "file-type": 58153, "file-up": 58154, "file-user": 58925, "file-video-2": 58155, "file-video-camera": 58155, "file-video": 58145, "file-volume-2": 58149, "file-volume": 58156, "file-warning": 58137, "file-x-2": 57550, "file-x-corner": 57550, "file-x": 57549, "file": 57536, "files": 57551, "film": 57552, "filter-x": 58293, "filter": 57564, "fingerprint-pattern": 58059, "fingerprint": 58059, "fire-extinguisher": 58750, "fish-off": 58288, "fish-symbol": 58612, "fish": 58278, "fishing-hook": 59055, "fishing-rod": 59057, "flag-off": 58002, "flag-triangle-left": 57911, "flag-triangle-right": 57912, "flag": 57553, "flame-kindling": 58682, "flame": 57554, "flashlight-off": 57556, "flashlight": 57555, "flask-conical-off": 58262, "flask-conical": 57557, "flask-round": 57558, "flip-horizontal-2": 58206, "flip-horizontal": 58205, "flip-vertical-2": 58208, "flip-vertical": 58207, "flower-2": 58068, "flower": 58067, "focus": 58014, "fold-horizontal": 58427, "fold-vertical": 58428, "folder-archive": 58157, "folder-check": 58158, "folder-clock": 58159, "folder-closed": 58160, "folder-code": 58875, "folder-cog-2": 58161, "folder-cog": 58161, "folder-dot": 58565, "folder-down": 58162, "folder-edit": 58168, "folder-git-2": 58378, "folder-git": 58377, "folder-heart": 58163, "folder-input": 58164, "folder-kanban": 58566, "folder-key": 58165, "folder-lock": 58166, "folder-minus": 57560, "folder-open-dot": 58567, "folder-open": 57927, "folder-output": 58167, "folder-pen": 58168, "folder-plus": 57561, "folder-root": 58568, "folder-search-2": 58170, "folder-search": 58169, "folder-symlink": 58171, "folder-sync": 58569, "folder-tree": 58172, "folder-up": 58173, "folder-x": 58174, "folder": 57559, "folders": 58175, "footprints": 58297, "fork-knife-crossed": 58103, "fork-knife": 58102, "forklift": 58305, "form-input": 57887, "form": 59048, "forward": 57897, "frame": 58001, "framer": 57562, "frown": 57563, "fuel": 58031, "fullscreen": 58676, "function-square": 57901, "funnel-plus": 57565, "funnel-x": 58293, "funnel": 57564, "gallery-horizontal-end": 58575, "gallery-horizontal": 58574, "gallery-thumbnails": 58576, "gallery-vertical-end": 58578, "gallery-vertical": 58577, "gamepad-2": 57567, "gamepad-directional": 59035, "gamepad": 57566, "gantt-chart-square": 58916, "gantt-chart": 58564, "gauge-circle": 58593, "gauge": 57791, "gavel": 57568, "gem": 57922, "georgian-lari": 59000, "ghost": 57870, "gift": 57569, "git-branch-minus": 59036, "git-branch-plus": 57844, "git-branch": 57570, "git-commit-horizontal": 57571, "git-commit-vertical": 58706, "git-commit": 57571, "git-compare-arrows": 58707, "git-compare": 58201, "git-fork": 57997, "git-graph": 58708, "git-merge-conflict": 59057, "git-merge": 57572, "git-pull-request-arrow": 58709, "git-pull-request-closed": 58202, "git-pull-request-create-arrow": 58711, "git-pull-request-create": 58710, "git-pull-request-draft": 58203, "git-pull-request": 57573, "github": 57574, "gitlab": 57575, "glass-water": 58069, "glasses": 57869, "globe-2": 57843, "globe-lock": 58829, "globe-off": 59057, "globe-x": 59057, "globe": 57576, "goal": 58533, "gpu": 58986, "grab": 57830, "graduation-cap": 57908, "grape": 58194, "grid-2-x-2-check": 58852, "grid-2-x-2-plus": 58920, "grid-2-x-2-x": 58853, "grid-2-x-2": 58623, "grid-2x2-check": 58852, "grid-2x2-plus": 58920, "grid-2x2-x": 58853, "grid-2x2": 58623, "grid-3-x-3": 57577, "grid-3x2": 58991, "grid-3x3": 57577, "grid": 57577, "grip-horizontal": 57578, "grip-vertical": 57579, "grip": 58289, "group": 58468, "guitar": 58719, "ham": 58839, "hamburger": 58981, "hammer": 57580, "hand-coins": 58808, "hand-fist": 59019, "hand-grab": 57830, "hand-heart": 58809, "hand-helping": 58296, "hand-metal": 57900, "hand-platter": 58810, "hand": 57815, "handbag": 59017, "handshake": 58816, "hard-drive-download": 58597, "hard-drive-upload": 58598, "hard-drive": 57581, "hard-hat": 57582, "hash": 57583, "hat-glasses": 59011, "haze": 57584, "hd": 59055, "hdmi-port": 58599, "heading-1": 58245, "heading-2": 58246, "heading-3": 58247, "heading-4": 58248, "heading-5": 58249, "heading-6": 58250, "heading": 58244, "headphone-off": 58921, "headphones": 57585, "headset": 58813, "heart-crack": 58070, "heart-handshake": 58071, "heart-minus": 58961, "heart-off": 58005, "heart-plus": 58962, "heart-pulse": 58222, "heart": 57586, "heater": 58766, "helicopter": 59037, "help-circle": 57474, "helping-hand": 58296, "hexagon": 57587, "highlighter": 57588, "history": 57845, "home": 57589, "hop-off": 58264, "hop": 58263, "hospital": 58840, "hotel": 58338, "hourglass": 58006, "house-heart": 59029, "house-plug": 58864, "house-plus": 58865, "house-wifi": 58940, "house": 57589, "ice-cream-2": 58279, "ice-cream-bowl": 58279, "ice-cream-cone": 58195, "ice-cream": 58195, "id-card-lanyard": 58992, "id-card": 58903, "image-down": 58684, "image-minus": 57846, "image-off": 57792, "image-play": 58847, "image-plus": 57847, "image-up": 58827, "image-upscale": 58935, "image": 57590, "images": 58820, "import": 57903, "inbox": 57591, "indent-decrease": 57607, "indent-increase": 57608, "indent": 57608, "indian-rupee": 57592, "infinity": 57831, "info": 57593, "inspect": 57858, "inspection-panel": 58755, "instagram": 57594, "italic": 57595, "iteration-ccw": 58403, "iteration-cw": 58404, "japanese-yen": 57596, "joystick": 58197, "kanban-square-dashed": 57708, "kanban-square": 57712, "kanban": 58588, "kayak": 59023, "key-round": 58531, "key-square": 58532, "key": 57597, "keyboard-music": 58720, "keyboard-off": 58846, "keyboard": 57988, "lamp-ceiling": 58073, "lamp-desk": 58074, "lamp-floor": 58075, "lamp-wall-down": 58076, "lamp-wall-up": 58077, "lamp": 58072, "land-plot": 58664, "landmark": 57914, "languages": 57598, "laptop-2": 57816, "laptop-minimal-check": 58930, "laptop-minimal": 57816, "laptop": 57805, "lasso-select": 57807, "lasso": 57806, "laugh": 58112, "layers-2": 58666, "layers-3": 58665, "layers-plus": 59055, "layers": 58665, "layout-dashboard": 57793, "layout-grid": 57599, "layout-list": 57817, "layout-panel-left": 58480, "layout-panel-top": 58481, "layout-template": 57863, "layout": 57644, "leaf": 58078, "leafy-green": 58479, "lectern": 58857, "lens-concave": 59057, "lens-convex": 59057, "letter-text": 58885, "library-big": 58702, "library-square": 58703, "library": 57600, "life-buoy": 57601, "ligature": 58426, "lightbulb-off": 57864, "lightbulb": 57794, "line-chart": 58021, "line-dot-right-horizontal": 59057, "line-squiggle": 59002, "link-2-off": 57604, "link-2": 57603, "link": 57602, "linkedin": 57605, "list-check": 58874, "list-checks": 57808, "list-chevrons-down-up": 59028, "list-chevrons-up-down": 59030, "list-collapse": 58779, "list-end": 58079, "list-filter-plus": 58937, "list-filter": 58464, "list-indent-decrease": 57607, "list-indent-increase": 57608, "list-minus": 57918, "list-music": 58080, "list-ordered": 57809, "list-plus": 57919, "list-restart": 58450, "list-start": 58081, "list-todo": 58563, "list-tree": 58376, "list-video": 58082, "list-x": 57920, "list": 57606, "loader-2": 57610, "loader-circle": 57610, "loader-pinwheel": 58854, "loader": 57609, "locate-fixed": 57819, "locate-off": 57986, "locate": 57818, "location-edit": 58965, "lock-keyhole-open": 58674, "lock-keyhole": 58673, "lock-open": 57612, "lock": 57611, "log-in": 57613, "log-out": 57614, "logs": 58868, "lollipop": 58557, "luggage": 58058, "m-square": 58627, "magnet": 58037, "mail-check": 58209, "mail-minus": 58210, "mail-open": 58211, "mail-plus": 58212, "mail-question-mark": 58213, "mail-question": 58213, "mail-search": 58214, "mail-warning": 58215, "mail-x": 58216, "mail": 57615, "mailbox": 58324, "mails": 58217, "map-minus": 59014, "map-pin-check-inside": 58896, "map-pin-check": 58895, "map-pin-house": 58908, "map-pin-minus-inside": 58898, "map-pin-minus": 58897, "map-pin-off": 58022, "map-pin-pen": 58965, "map-pin-plus-inside": 58900, "map-pin-plus": 58899, "map-pin-x-inside": 58902, "map-pin-x": 58901, "map-pin": 57617, "map-pinned": 58685, "map-plus": 58943, "map": 57616, "mars-stroke": 58946, "mars": 58945, "martini": 58083, "maximize-2": 57619, "maximize": 57618, "medal": 58223, "megaphone-off": 58224, "megaphone": 57909, "meh": 57620, "memory-stick": 58437, "menu-square": 58451, "menu": 57621, "merge": 58431, "message-circle-check": 59057, "message-circle-code": 58722, "message-circle-dashed": 58723, "message-circle-heart": 58724, "message-circle-more": 58725, "message-circle-off": 58726, "message-circle-plus": 58727, "message-circle-question-mark": 58728, "message-circle-question": 58728, "message-circle-reply": 58729, "message-circle-warning": 58730, "message-circle-x": 58731, "message-circle": 57622, "message-square-check": 59057, "message-square-code": 58732, "message-square-dashed": 58379, "message-square-diff": 58733, "message-square-dot": 58734, "message-square-heart": 58735, "message-square-lock": 58924, "message-square-more": 58736, "message-square-off": 58737, "message-square-plus": 58380, "message-square-quote": 58738, "message-square-reply": 58739, "message-square-share": 58740, "message-square-text": 58741, "message-square-warning": 58742, "message-square-x": 58743, "message-square": 57623, "messages-square": 58381, "metronome": 59057, "mic-2": 58185, "mic-off": 57625, "mic-vocal": 58185, "mic": 57624, "microchip": 58906, "microscope": 58084, "microwave": 58234, "milestone": 58008, "milk-off": 58266, "milk": 58265, "minimize-2": 57627, "minimize": 57626, "minus-circle": 57470, "minus-square": 57713, "minus": 57628, "mirror-rectangular": 59057, "mirror-round": 59057, "monitor-check": 58498, "monitor-cloud": 59033, "monitor-cog": 58883, "monitor-dot": 58499, "monitor-down": 58401, "monitor-off": 57820, "monitor-pause": 58500, "monitor-play": 58501, "monitor-smartphone": 58274, "monitor-speaker": 57872, "monitor-stop": 58502, "monitor-up": 58402, "monitor-x": 58503, "monitor": 57629, "moon-star": 58384, "moon": 57630, "more-horizontal": 57526, "more-vertical": 57527, "motorbike": 59032, "mountain-snow": 57906, "mountain": 57905, "mouse-left": 59057, "mouse-off": 58843, "mouse-pointer-2-off": 59046, "mouse-pointer-2": 57795, "mouse-pointer-ban": 58855, "mouse-pointer-click": 57632, "mouse-pointer-square-dashed": 58633, "mouse-pointer": 57631, "mouse-right": 59057, "mouse": 57998, "move-3-d": 58085, "move-3d": 58085, "move-diagonal-2": 57797, "move-diagonal": 57796, "move-down-left": 58509, "move-down-right": 58510, "move-down": 58508, "move-horizontal": 57798, "move-left": 58511, "move-right": 58512, "move-up-left": 58514, "move-up-right": 58515, "move-up": 58513, "move-vertical": 57799, "move": 57633, "music-2": 58186, "music-3": 58187, "music-4": 58188, "music": 57634, "navigation-2-off": 58023, "navigation-2": 57636, "navigation-off": 58024, "navigation": 57635, "network": 57637, "newspaper": 58184, "nfc": 58307, "non-binary": 58947, "notebook-pen": 58774, "notebook-tabs": 58775, "notebook-text": 58776, "notebook": 58773, "notepad-text-dashed": 58778, "notepad-text": 58777, "nut-off": 58268, "nut": 58267, "octagon-alert": 57639, "octagon-minus": 58919, "octagon-pause": 57883, "octagon-x": 57640, "octagon": 57638, "omega": 58905, "option": 57848, "orbit": 58343, "origami": 58851, "outdent": 57607, "package-2": 58176, "package-check": 57958, "package-minus": 57959, "package-open": 58060, "package-plus": 57960, "package-search": 57961, "package-x": 57962, "package": 57641, "paint-bucket": 58086, "paint-roller": 58782, "paintbrush-2": 58088, "paintbrush-vertical": 58088, "paintbrush": 58087, "palette": 57821, "palmtree": 57985, "panda": 58984, "panel-bottom-close": 58413, "panel-bottom-dashed": 58414, "panel-bottom-inactive": 58414, "panel-bottom-open": 58415, "panel-bottom": 58412, "panel-left-close": 57884, "panel-left-dashed": 58416, "panel-left-inactive": 58416, "panel-left-open": 57885, "panel-left-right-dashed": 59026, "panel-left": 57642, "panel-right-close": 58418, "panel-right-dashed": 58419, "panel-right-inactive": 58419, "panel-right-open": 58420, "panel-right": 58417, "panel-top-bottom-dashed": 59027, "panel-top-close": 58422, "panel-top-dashed": 58423, "panel-top-inactive": 58423, "panel-top-open": 58424, "panel-top": 58421, "panels-left-bottom": 57643, "panels-left-right": 57497, "panels-right-bottom": 58760, "panels-top-bottom": 58762, "panels-top-left": 57644, "paperclip": 57645, "parentheses": 58436, "parking-circle-off": 58314, "parking-circle": 58313, "parking-meter": 58624, "parking-square-off": 58316, "parking-square": 58315, "party-popper": 58179, "pause-circle": 57471, "pause-octagon": 57883, "pause": 57646, "paw-print": 58613, "pc-case": 58438, "pen-box": 57714, "pen-line": 57648, "pen-off": 58862, "pen-square": 57714, "pen-tool": 57649, "pen": 57647, "pencil-line": 58608, "pencil-off": 58863, "pencil-ruler": 58609, "pencil": 57849, "pentagon": 58667, "percent-circle": 58650, "percent-diamond": 58651, "percent-square": 58652, "percent": 57650, "person-standing": 57886, "philippine-peso": 58884, "phone-call": 57652, "phone-forwarded": 57653, "phone-incoming": 57654, "phone-missed": 57655, "phone-off": 57656, "phone-outgoing": 57657, "phone": 57651, "pi-square": 58504, "pi": 58482, "piano": 58721, "pickaxe": 58822, "picture-in-picture-2": 58287, "picture-in-picture": 58286, "pie-chart": 57451, "piggy-bank": 57658, "pilcrow-left": 58844, "pilcrow-right": 58845, "pilcrow-square": 58507, "pilcrow": 58275, "pill-bottle": 58858, "pill": 58301, "pin-off": 58038, "pin": 57945, "pipette": 57659, "pizza": 58196, "plane-landing": 58317, "plane-takeoff": 58318, "plane": 57822, "play-circle": 57472, "play-square": 58497, "play": 57660, "plug-2": 58240, "plug-zap-2": 58460, "plug-zap": 58460, "plug": 58239, "plus-circle": 57473, "plus-square": 57715, "plus": 57661, "pocket-knife": 58528, "pocket": 57662, "podcast": 57850, "pointer-off": 58751, "pointer": 57832, "popcorn": 58558, "popsicle": 58559, "pound-sterling": 57663, "power-circle": 58704, "power-off": 57865, "power-square": 58705, "power": 57664, "presentation": 58542, "printer-check": 58869, "printer-x": 59057, "printer": 57665, "projector": 58543, "proportions": 58831, "puzzle": 58012, "pyramid": 58668, "qr-code": 57823, "quote": 57913, "rabbit": 58614, "radar": 58519, "radiation": 58434, "radical": 58818, "radio-receiver": 57851, "radio-tower": 58372, "radio": 57666, "radius": 58669, "rail-symbol": 58625, "rainbow": 58562, "rat": 58347, "ratio": 58600, "receipt-cent": 58789, "receipt-euro": 58790, "receipt-indian-rupee": 58791, "receipt-japanese-yen": 58792, "receipt-pound-sterling": 58793, "receipt-russian-ruble": 58794, "receipt-swiss-franc": 58795, "receipt-text": 58796, "receipt-turkish-lira": 59007, "receipt": 58323, "rectangle-circle": 58995, "rectangle-ellipsis": 57887, "rectangle-goggles": 58966, "rectangle-horizontal": 58230, "rectangle-vertical": 58231, "recycle": 58089, "redo-2": 58016, "redo-dot": 58448, "redo": 57667, "refresh-ccw-dot": 58546, "refresh-ccw": 57668, "refresh-cw-off": 58520, "refresh-cw": 57669, "refrigerator": 58235, "regex": 57852, "remove-formatting": 58291, "repeat-1": 57853, "repeat-2": 58385, "repeat": 57670, "replace-all": 58332, "replace": 58331, "reply-all": 57899, "reply": 57898, "rewind": 57671, "ribbon": 58712, "rocket": 57990, "rocking-chair": 57907, "roller-coaster": 58496, "rose": 59025, "rotate-3-d": 58090, "rotate-3d": 58090, "rotate-ccw-key": 58960, "rotate-ccw-square": 58832, "rotate-ccw": 57672, "rotate-cw-square": 58833, "rotate-cw": 57673, "route-off": 58687, "route": 58686, "router": 58303, "rows-2": 58425, "rows-3": 58762, "rows-4": 58763, "rows": 58425, "rss": 57674, "ruler-dimension-line": 58978, "ruler": 57675, "russian-ruble": 57676, "sailboat": 58238, "salad": 58280, "sandwich": 58281, "satellite-dish": 58440, "satellite": 58439, "saudi-riyal": 58955, "save-all": 58383, "save-off": 58867, "save": 57677, "scale-3-d": 58091, "scale-3d": 58091, "scale": 57874, "scaling": 58092, "scan-barcode": 58677, "scan-eye": 58678, "scan-face": 58225, "scan-heart": 58938, "scan-line": 57944, "scan-qr-code": 58870, "scan-search": 58679, "scan-text": 58680, "scan": 57943, "scatter-chart": 58506, "school-2": 58341, "school": 58339, "scissors-line-dashed": 58601, "scissors-square-dashed-bottom": 58603, "scissors-square": 58604, "scissors": 57678, "scooter": 59052, "screen-share-off": 57680, "screen-share": 57679, "scroll-text": 58463, "scroll": 58093, "search-alert": 59055, "search-check": 58538, "search-code": 58539, "search-slash": 58540, "search-x": 58541, "search": 57681, "section": 58856, "send-horizonal": 58610, "send-horizontal": 58610, "send-to-back": 58611, "send": 57682, "separator-horizontal": 57800, "separator-vertical": 57801, "server-cog": 58177, "server-crash": 57833, "server-off": 57834, "server": 57683, "settings-2": 57925, "settings": 57684, "shapes": 58547, "share-2": 57686, "share": 57685, "sheet": 57687, "shell": 58615, "shelving-unit": 59057, "shield-alert": 57854, "shield-ban": 57689, "shield-check": 57855, "shield-close": 57856, "shield-ellipsis": 58646, "shield-half": 58647, "shield-minus": 58648, "shield-off": 57690, "shield-plus": 58649, "shield-question-mark": 58382, "shield-question": 58382, "shield-user": 58951, "shield-x": 57856, "shield": 57688, "ship-wheel": 58626, "ship": 58298, "shirt": 57802, "shopping-bag": 57691, "shopping-basket": 58602, "shopping-cart": 57692, "shovel": 57693, "shower-head": 58236, "shredder": 58971, "shrimp": 58953, "shrink": 57888, "shrub": 58094, "shuffle": 57694, "sidebar-close": 57884, "sidebar-open": 57885, "sidebar": 57642, "sigma-square": 58505, "sigma": 57857, "signal-high": 57952, "signal-low": 57953, "signal-medium": 57954, "signal-zero": 57955, "signal": 57951, "signature": 58866, "signpost-big": 58689, "signpost": 58688, "siren": 58095, "skip-back": 57695, "skip-forward": 57696, "skull": 57889, "slack": 57697, "slash-square": 57716, "slash": 58653, "slice": 58096, "sliders-horizontal": 58010, "sliders-vertical": 57698, "sliders": 57698, "smartphone-charging": 57902, "smartphone-nfc": 58308, "smartphone": 57699, "smile-plus": 58113, "smile": 57700, "snail": 58616, "snowflake": 57701, "soap-dispenser-droplet": 58985, "sofa": 58052, "solar-panel": 59039, "sort-asc": 57420, "sort-desc": 57415, "soup": 58282, "space": 58333, "spade": 58521, "sparkle": 58494, "sparkles": 58386, "speaker": 57702, "speech": 58654, "spell-check-2": 58523, "spell-check": 58522, "spline-pointer": 58959, "spline": 58251, "split-square-horizontal": 58294, "split-square-vertical": 58295, "split": 58432, "spool": 58999, "spotlight": 59010, "spray-can": 58517, "sprout": 57835, "square-activity": 58548, "square-arrow-down-left": 58549, "square-arrow-down-right": 58550, "square-arrow-down": 58407, "square-arrow-left": 58408, "square-arrow-out-down-left": 58785, "square-arrow-out-down-right": 58786, "square-arrow-out-up-left": 58787, "square-arrow-out-up-right": 58788, "square-arrow-right-enter": 59057, "square-arrow-right-exit": 59057, "square-arrow-right": 58409, "square-arrow-up-left": 58551, "square-arrow-up-right": 58552, "square-arrow-up": 58410, "square-asterisk": 57704, "square-bottom-dashed-scissors": 58603, "square-centerline-dashed-horizontal": 59057, "square-centerline-dashed-vertical": 59057, "square-chart-gantt": 57705, "square-check-big": 57706, "square-check": 58713, "square-chevron-down": 58319, "square-chevron-left": 58320, "square-chevron-right": 58321, "square-chevron-up": 58322, "square-code": 57707, "square-dashed-bottom-code": 58561, "square-dashed-bottom": 58560, "square-dashed-kanban": 57708, "square-dashed-mouse-pointer": 58633, "square-dashed-top-solid": 58988, "square-dashed": 57803, "square-divide": 57709, "square-dot": 57710, "square-equal": 57711, "square-function": 57901, "square-gantt-chart": 57705, "square-kanban": 57712, "square-library": 58703, "square-m": 58627, "square-menu": 58451, "square-minus": 57713, "square-mouse-pointer": 57858, "square-parking-off": 58316, "square-parking": 58315, "square-pause": 59012, "square-pen": 57714, "square-percent": 58652, "square-pi": 58504, "square-pilcrow": 58507, "square-play": 58497, "square-plus": 57715, "square-power": 58705, "square-radical": 58819, "square-round-corner": 58952, "square-scissors": 58604, "square-sigma": 58505, "square-slash": 57716, "square-split-horizontal": 58294, "square-split-vertical": 58295, "square-square": 58894, "square-stack": 58530, "square-star": 59022, "square-stop": 59013, "square-terminal": 57866, "square-user-round": 58470, "square-user": 58469, "square-x": 57717, "square": 57703, "squares-exclude": 58967, "squares-intersect": 58968, "squares-subtract": 58969, "squares-unite": 58970, "squircle-dashed": 59001, "squircle": 58746, "squirrel": 58527, "stamp": 58299, "star-half": 57867, "star-off": 58032, "star": 57718, "stars": 58386, "step-back": 58345, "step-forward": 58346, "stethoscope": 58097, "sticker": 58114, "sticky-note": 58115, "stone": 59055, "stop-circle": 57475, "store": 58340, "stretch-horizontal": 57980, "stretch-vertical": 57981, "strikethrough": 57719, "subscript": 57948, "subtitles": 58276, "sun-dim": 58009, "sun-medium": 58033, "sun-moon": 58034, "sun-snow": 58226, "sun": 57720, "sunrise": 57721, "sunset": 57722, "superscript": 57950, "swatch-book": 58783, "swiss-franc": 57723, "switch-camera": 57724, "sword": 58035, "swords": 58036, "syringe": 58098, "table-2": 58105, "table-cells-merge": 58823, "table-cells-split": 58824, "table-columns-split": 58825, "table-config": 58977, "table-of-contents": 58910, "table-properties": 58587, "table-rows-split": 58826, "table": 57725, "tablet-smartphone": 58634, "tablet": 57726, "tablets": 58302, "tag": 57727, "tags": 58204, "tally-1": 58582, "tally-2": 58583, "tally-3": 58584, "tally-4": 58585, "tally-5": 58586, "tangent": 58670, "target": 57728, "telescope": 58821, "tent-tree": 58683, "tent": 57895, "terminal-square": 57866, "terminal": 57729, "test-tube-2": 58374, "test-tube-diagonal": 58374, "test-tube": 58373, "test-tubes": 58375, "text-align-center": 57730, "text-align-end": 57731, "text-align-justify": 57732, "text-align-start": 57733, "text-cursor-input": 57957, "text-cursor": 57956, "text-initial": 58885, "text-quote": 58526, "text-search": 58797, "text-select": 58334, "text-selection": 58334, "text-wrap": 57928, "text": 57733, "theater": 58658, "thermometer-snowflake": 57735, "thermometer-sun": 57736, "thermometer": 57734, "thumbs-down": 57737, "thumbs-up": 57738, "ticket-check": 58798, "ticket-minus": 58799, "ticket-percent": 58800, "ticket-plus": 58801, "ticket-slash": 58802, "ticket-x": 58803, "ticket": 57871, "tickets-plane": 58915, "tickets": 58914, "timer-off": 57929, "timer-reset": 57910, "timer": 57824, "toggle-left": 57739, "toggle-right": 57740, "toilet": 58933, "tool-case": 59005, "toolbox": 59056, "tornado": 57880, "torus": 58671, "touchpad-off": 58442, "touchpad": 58441, "towel-rack": 59057, "tower-control": 58300, "toy-brick": 58183, "tractor": 58628, "traffic-cone": 58629, "train-front-tunnel": 58631, "train-front": 58630, "train-track": 58632, "train": 58025, "tram-front": 58025, "transgender": 58948, "trash-2": 57742, "trash": 57741, "tree-deciduous": 58099, "tree-palm": 57985, "tree-pine": 58100, "trees": 58101, "trello": 57743, "trending-down": 57744, "trending-up-down": 58917, "trending-up": 57745, "triangle-alert": 57747, "triangle-dashed": 58941, "triangle-right": 58605, "triangle": 57746, "trophy": 58227, "truck-electric": 58975, "truck": 57748, "turkish-lira": 59008, "turntable": 59020, "turtle": 58617, "tv-2": 57859, "tv-minimal-play": 58860, "tv-minimal": 57859, "tv": 57749, "twitch": 57750, "twitter": 57751, "type-outline": 58882, "type": 57752, "umbrella-off": 58691, "umbrella": 57753, "underline": 57754, "undo-2": 58017, "undo-dot": 58449, "undo": 57755, "unfold-horizontal": 58429, "unfold-vertical": 58430, "ungroup": 58471, "university": 58341, "unlink-2": 57757, "unlink": 57756, "unlock-keyhole": 58674, "unlock": 57612, "unplug": 58461, "upload-cloud": 57489, "upload": 57758, "usb": 58198, "user-2": 58472, "user-check-2": 58473, "user-check": 57760, "user-circle-2": 58466, "user-circle": 58465, "user-cog-2": 58474, "user-cog": 58178, "user-key": 59057, "user-lock": 58976, "user-minus-2": 58475, "user-minus": 57761, "user-pen": 58876, "user-plus-2": 58476, "user-plus": 57762, "user-round-check": 58473, "user-round-cog": 58474, "user-round-key": 59057, "user-round-minus": 58475, "user-round-pen": 58877, "user-round-plus": 58476, "user-round-search": 58744, "user-round-x": 58477, "user-round": 58472, "user-search": 58745, "user-square-2": 58470, "user-square": 58469, "user-star": 59015, "user-x-2": 58477, "user-x": 57763, "user": 57759, "users-2": 58478, "users-round": 58478, "users": 57764, "utensils-crossed": 58103, "utensils": 58102, "utility-pole": 58306, "van": 59053, "variable": 58483, "vault": 58767, "vector-square": 59004, "vegan": 58269, "venetian-mask": 58026, "venus-and-mars": 58950, "venus": 58949, "verified": 57921, "vibrate-off": 58013, "vibrate": 57891, "video-off": 57766, "video": 57765, "videotape": 58571, "view": 57767, "voicemail": 57768, "volleyball": 58927, "volume-1": 57770, "volume-2": 57771, "volume-off": 58918, "volume-x": 57772, "volume": 57769, "vote": 58285, "wallet-2": 58573, "wallet-cards": 58572, "wallet-minimal": 58573, "wallet": 57860, "wallpaper": 58443, "wand-2": 58199, "wand-sparkles": 58199, "wand": 57926, "warehouse": 58342, "washing-machine": 58768, "watch": 57773, "waves-arrow-down": 59049, "waves-arrow-up": 59050, "waves-ladder": 58939, "waves": 57987, "waypoints": 58690, "webcam": 57861, "webhook-off": 58807, "webhook": 58228, "weight-tilde": 59054, "weight": 58672, "wheat-off": 58271, "wheat": 58270, "whole-word": 58335, "wifi-cog": 58996, "wifi-high": 58871, "wifi-low": 58872, "wifi-off": 57775, "wifi-pen": 58979, "wifi-sync": 59009, "wifi-zero": 58873, "wifi": 57774, "wind-arrow-down": 58929, "wind": 57776, "wine-off": 58272, "wine": 58104, "workflow": 58405, "worm": 58842, "wrap-text": 57928, "wrench": 57777, "x-circle": 57476, "x-line-top": 59057, "x-octagon": 57640, "x-square": 57717, "x": 57778, "youtube": 57779, "zap-off": 57781, "zap": 57780, "zodiac-aquarius": 59057, "zodiac-aries": 59057, "zodiac-cancer": 59057, "zodiac-capricorn": 59057, "zodiac-gemini": 59057, "zodiac-leo": 59057, "zodiac-libra": 59057, "zodiac-ophiuchus": 59057, "zodiac-pisces": 59057, "zodiac-sagittarius": 59057, "zodiac-scorpio": 59057, "zodiac-taurus": 59057, "zodiac-virgo": 59057, "zoom-in": 57782, "zoom-out": 57783 } ================================================ FILE: packages/lucide/package.json ================================================ { "name": "@react-native-vector-icons/lucide", "version": "12.5.0", "description": "Lucide font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "lucide" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/lucide" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "lucide-static": "0.576.0" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/lucide/react-native-vector-icons-lucide.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-lucide' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/lucide/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Lucide icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Lucide.json'; export const Lucide = createIconSet(glyphMap, { postScriptName: 'Lucide', fontFileName: 'Lucide.ttf', fontSource: require('../fonts/Lucide.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type LucideIconName = keyof typeof glyphMap; /** @alias */ export default Lucide; ================================================ FILE: packages/lucide/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Lucide icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Lucide.json'; export const Lucide = createIconSet(glyphMap, { postScriptName: 'Lucide', fontFileName: 'Lucide.ttf', }); export type LucideIconName = keyof typeof glyphMap; /** @alias */ export default Lucide; ================================================ FILE: packages/lucide/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/lucide/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/material-design-icons/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "material-design-icons", "upstreamFont": "@mdi/font", "buildSteps": { "glyphmap": { "location": "../../node_modules/@mdi/font/css/materialdesignicons.css", "mode": "css", "prefix": ".mdi-" }, "copyFont": { "location": "../../node_modules/@mdi/font/fonts/materialdesignicons-webfont.ttf" } }, "versions": [ { "rnvi": "12.0.0", "upstream": "7.4.47" } ] } } ================================================ FILE: packages/material-design-icons/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/material-design-icons/README.md ================================================ # React Native Vector Icons - Material Design Icons Material Design Icons font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/material-design-icons ``` ## Usage ```jsx import { MaterialDesignIcons } from '@react-native-vector-icons/material-design-icons'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 7.4.47 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/material-design-icons/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.material_design_icons" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsMaterialDesignIcons" codegenJavaPackageName = "com.reactnativevectoricons.material_design_icons" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-material-design-icons") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-material-design-icons/fonts" eachFile { println "(RNVI:material-design-icons) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/material-design-icons/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/material-design-icons/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/material-design-icons/android/src/main/java/VectorIconsMaterialDesignIconsPackage.kt ================================================ package com.reactnativevectoricons.material_design_icons import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsMaterialDesignIconsPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/material-design-icons/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/material-design-icons/glyphmaps/MaterialDesignIcons.json ================================================ { "ab-testing": 983497, "abacus": 988896, "abjad-arabic": 987944, "abjad-hebrew": 987945, "abugida-devanagari": 987946, "abugida-thai": 987947, "access-point": 983043, "access-point-check": 988472, "access-point-minus": 988473, "access-point-network": 983042, "access-point-network-off": 986081, "access-point-off": 988433, "access-point-plus": 988474, "access-point-remove": 988475, "account": 983044, "account-alert": 983045, "account-alert-outline": 985936, "account-arrow-down": 989288, "account-arrow-down-outline": 989289, "account-arrow-left": 985937, "account-arrow-left-outline": 985938, "account-arrow-right": 985939, "account-arrow-right-outline": 985940, "account-arrow-up": 989287, "account-arrow-up-outline": 989290, "account-badge": 989962, "account-badge-outline": 989963, "account-box": 983046, "account-box-edit-outline": 990408, "account-box-minus-outline": 990409, "account-box-multiple": 985396, "account-box-multiple-outline": 987146, "account-box-outline": 983047, "account-box-plus-outline": 990410, "account-cancel": 987871, "account-cancel-outline": 987872, "account-card": 990116, "account-card-outline": 990117, "account-cash": 987287, "account-cash-outline": 987288, "account-check": 983048, "account-check-outline": 986082, "account-child": 985737, "account-child-circle": 985738, "account-child-outline": 987336, "account-circle": 983049, "account-circle-outline": 985941, "account-clock": 985942, "account-clock-outline": 985943, "account-cog": 988016, "account-cog-outline": 988017, "account-convert": 983050, "account-convert-outline": 987905, "account-cowboy-hat": 986779, "account-cowboy-hat-outline": 989171, "account-credit-card": 990118, "account-credit-card-outline": 990119, "account-details": 984625, "account-details-outline": 988018, "account-edit": 984764, "account-edit-outline": 987131, "account-eye": 984096, "account-eye-outline": 987771, "account-file": 990375, "account-file-outline": 990376, "account-file-text": 990377, "account-file-text-outline": 990378, "account-filter": 985398, "account-filter-outline": 987037, "account-group": 985161, "account-group-outline": 985944, "account-hard-hat": 984501, "account-hard-hat-outline": 989727, "account-heart": 985241, "account-heart-outline": 986083, "account-injury": 989205, "account-injury-outline": 989206, "account-key": 983051, "account-key-outline": 986084, "account-lock": 987486, "account-lock-open": 989536, "account-lock-open-outline": 989537, "account-lock-outline": 987487, "account-minus": 983053, "account-minus-outline": 985836, "account-multiple": 983054, "account-multiple-check": 985285, "account-multiple-check-outline": 987646, "account-multiple-minus": 984531, "account-multiple-minus-outline": 986085, "account-multiple-outline": 983055, "account-multiple-plus": 983056, "account-multiple-plus-outline": 985088, "account-multiple-remove": 987658, "account-multiple-remove-outline": 987659, "account-music": 985091, "account-music-outline": 986345, "account-network": 983057, "account-network-off": 989937, "account-network-off-outline": 989938, "account-network-outline": 986086, "account-off": 983058, "account-off-outline": 986087, "account-outline": 983059, "account-plus": 983060, "account-plus-outline": 985089, "account-question": 985945, "account-question-outline": 985946, "account-reactivate": 988459, "account-reactivate-outline": 988460, "account-remove": 983061, "account-remove-outline": 985837, "account-school": 989728, "account-school-outline": 989729, "account-search": 983062, "account-search-outline": 985397, "account-settings": 984624, "account-settings-outline": 987337, "account-star": 983063, "account-star-outline": 986088, "account-supervisor": 985739, "account-supervisor-circle": 985740, "account-supervisor-circle-outline": 988396, "account-supervisor-outline": 987437, "account-switch": 983065, "account-switch-outline": 984267, "account-sync": 989467, "account-sync-outline": 989468, "account-tag": 990235, "account-tag-outline": 990236, "account-tie": 986339, "account-tie-hat": 989336, "account-tie-hat-outline": 989337, "account-tie-outline": 987338, "account-tie-voice": 987912, "account-tie-voice-off": 987914, "account-tie-voice-off-outline": 987915, "account-tie-voice-outline": 987913, "account-tie-woman": 989836, "account-voice": 984523, "account-voice-off": 986836, "account-wrench": 989338, "account-wrench-outline": 989339, "adjust": 983066, "advertisements": 989482, "advertisements-off": 989483, "air-conditioner": 983067, "air-filter": 986435, "air-horn": 986540, "air-humidifier": 987289, "air-humidifier-off": 988262, "air-purifier": 986436, "air-purifier-off": 990039, "airbag": 986089, "airballoon": 983068, "airballoon-outline": 987147, "airplane": 983069, "airplane-alert": 989306, "airplane-check": 989307, "airplane-clock": 989308, "airplane-cog": 989309, "airplane-edit": 989310, "airplane-landing": 984532, "airplane-marker": 989311, "airplane-minus": 989312, "airplane-off": 983070, "airplane-plus": 989313, "airplane-remove": 989314, "airplane-search": 989315, "airplane-settings": 989316, "airplane-takeoff": 984533, "airport": 985163, "alarm": 983072, "alarm-bell": 984974, "alarm-check": 983073, "alarm-light": 984975, "alarm-light-off": 988958, "alarm-light-off-outline": 988959, "alarm-light-outline": 986090, "alarm-multiple": 983074, "alarm-note": 986737, "alarm-note-off": 986738, "alarm-off": 983075, "alarm-panel": 988612, "alarm-panel-outline": 988613, "alarm-plus": 983076, "alarm-snooze": 984718, "album": 983077, "alert": 983078, "alert-box": 983079, "alert-box-outline": 986340, "alert-circle": 983080, "alert-circle-check": 987629, "alert-circle-check-outline": 987630, "alert-circle-outline": 984534, "alert-decagram": 984765, "alert-decagram-outline": 986341, "alert-minus": 988347, "alert-minus-outline": 988350, "alert-octagon": 983081, "alert-octagon-outline": 986342, "alert-octagram": 984935, "alert-octagram-outline": 986343, "alert-outline": 983082, "alert-plus": 988346, "alert-plus-outline": 988349, "alert-remove": 988348, "alert-remove-outline": 988351, "alert-rhombus": 987598, "alert-rhombus-outline": 987599, "alien": 985242, "alien-outline": 987339, "align-horizontal-center": 987587, "align-horizontal-distribute": 989538, "align-horizontal-left": 987586, "align-horizontal-right": 987588, "align-vertical-bottom": 987589, "align-vertical-center": 987590, "align-vertical-distribute": 989539, "align-vertical-top": 987591, "all-inclusive": 984766, "all-inclusive-box": 989325, "all-inclusive-box-outline": 989326, "allergy": 987736, "alpha": 983083, "alpha-a": 985838, "alpha-a-box": 985864, "alpha-a-box-outline": 986091, "alpha-a-circle": 986092, "alpha-a-circle-outline": 986093, "alpha-b": 985839, "alpha-b-box": 985865, "alpha-b-box-outline": 986094, "alpha-b-circle": 986095, "alpha-b-circle-outline": 986096, "alpha-c": 985840, "alpha-c-box": 985866, "alpha-c-box-outline": 986097, "alpha-c-circle": 986098, "alpha-c-circle-outline": 986099, "alpha-d": 985841, "alpha-d-box": 985867, "alpha-d-box-outline": 986100, "alpha-d-circle": 986101, "alpha-d-circle-outline": 986102, "alpha-e": 985842, "alpha-e-box": 985868, "alpha-e-box-outline": 986103, "alpha-e-circle": 986104, "alpha-e-circle-outline": 986105, "alpha-f": 985843, "alpha-f-box": 985869, "alpha-f-box-outline": 986106, "alpha-f-circle": 986107, "alpha-f-circle-outline": 986108, "alpha-g": 985844, "alpha-g-box": 985870, "alpha-g-box-outline": 986109, "alpha-g-circle": 986110, "alpha-g-circle-outline": 986111, "alpha-h": 985845, "alpha-h-box": 985871, "alpha-h-box-outline": 986112, "alpha-h-circle": 986113, "alpha-h-circle-outline": 986114, "alpha-i": 985846, "alpha-i-box": 985872, "alpha-i-box-outline": 986115, "alpha-i-circle": 986116, "alpha-i-circle-outline": 986117, "alpha-j": 985847, "alpha-j-box": 985873, "alpha-j-box-outline": 986118, "alpha-j-circle": 986119, "alpha-j-circle-outline": 986120, "alpha-k": 985848, "alpha-k-box": 985874, "alpha-k-box-outline": 986121, "alpha-k-circle": 986122, "alpha-k-circle-outline": 986123, "alpha-l": 985849, "alpha-l-box": 985875, "alpha-l-box-outline": 986124, "alpha-l-circle": 986125, "alpha-l-circle-outline": 986126, "alpha-m": 985850, "alpha-m-box": 985876, "alpha-m-box-outline": 986127, "alpha-m-circle": 986128, "alpha-m-circle-outline": 986129, "alpha-n": 985851, "alpha-n-box": 985877, "alpha-n-box-outline": 986130, "alpha-n-circle": 986131, "alpha-n-circle-outline": 986132, "alpha-o": 985852, "alpha-o-box": 985878, "alpha-o-box-outline": 986133, "alpha-o-circle": 986134, "alpha-o-circle-outline": 986135, "alpha-p": 985853, "alpha-p-box": 985879, "alpha-p-box-outline": 986136, "alpha-p-circle": 986137, "alpha-p-circle-outline": 986138, "alpha-q": 985854, "alpha-q-box": 985880, "alpha-q-box-outline": 986139, "alpha-q-circle": 986140, "alpha-q-circle-outline": 986141, "alpha-r": 985855, "alpha-r-box": 985881, "alpha-r-box-outline": 986142, "alpha-r-circle": 986143, "alpha-r-circle-outline": 986144, "alpha-s": 985856, "alpha-s-box": 985882, "alpha-s-box-outline": 986145, "alpha-s-circle": 986146, "alpha-s-circle-outline": 986147, "alpha-t": 985857, "alpha-t-box": 985883, "alpha-t-box-outline": 986148, "alpha-t-circle": 986149, "alpha-t-circle-outline": 986150, "alpha-u": 985858, "alpha-u-box": 985884, "alpha-u-box-outline": 986151, "alpha-u-circle": 986152, "alpha-u-circle-outline": 986153, "alpha-v": 985859, "alpha-v-box": 985885, "alpha-v-box-outline": 986154, "alpha-v-circle": 986155, "alpha-v-circle-outline": 986156, "alpha-w": 985860, "alpha-w-box": 985886, "alpha-w-box-outline": 986157, "alpha-w-circle": 986158, "alpha-w-circle-outline": 986159, "alpha-x": 985861, "alpha-x-box": 985887, "alpha-x-box-outline": 986160, "alpha-x-circle": 986161, "alpha-x-circle-outline": 986162, "alpha-y": 985862, "alpha-y-box": 985888, "alpha-y-box-outline": 986163, "alpha-y-circle": 986164, "alpha-y-circle-outline": 986165, "alpha-z": 985863, "alpha-z-box": 985889, "alpha-z-box-outline": 986166, "alpha-z-circle": 986167, "alpha-z-circle-outline": 986168, "alphabet-aurebesh": 987948, "alphabet-cyrillic": 987949, "alphabet-greek": 987950, "alphabet-latin": 987951, "alphabet-piqad": 987952, "alphabet-tengwar": 987959, "alphabetical": 983084, "alphabetical-off": 987148, "alphabetical-variant": 987149, "alphabetical-variant-off": 987150, "altimeter": 984535, "ambulance": 983087, "ammunition": 986344, "ampersand": 985741, "amplifier": 983088, "amplifier-off": 987573, "anchor": 983089, "android": 983090, "android-studio": 983092, "angle-acute": 985399, "angle-obtuse": 985400, "angle-right": 985401, "angular": 984754, "angularjs": 984767, "animation": 984536, "animation-outline": 985743, "animation-play": 985402, "animation-play-outline": 985744, "ansible": 987290, "antenna": 987417, "anvil": 985243, "apache-kafka": 987151, "api": 987291, "api-off": 987735, "apple": 983093, "apple-finder": 983094, "apple-icloud": 983096, "apple-ios": 983095, "apple-keyboard-caps": 984626, "apple-keyboard-command": 984627, "apple-keyboard-control": 984628, "apple-keyboard-option": 984629, "apple-keyboard-shift": 984630, "apple-safari": 983097, "application": 985286, "application-array": 987381, "application-array-outline": 987382, "application-braces": 987383, "application-braces-outline": 987384, "application-brackets": 986251, "application-brackets-outline": 986252, "application-cog": 984693, "application-cog-outline": 988535, "application-edit": 983214, "application-edit-outline": 984601, "application-export": 986541, "application-import": 986542, "application-outline": 984596, "application-parentheses": 987385, "application-parentheses-outline": 987386, "application-settings": 985952, "application-settings-outline": 988501, "application-variable": 987387, "application-variable-outline": 987388, "approximately-equal": 987038, "approximately-equal-box": 987039, "apps": 983099, "apps-box": 986438, "arch": 985287, "archive": 983100, "archive-alert": 988413, "archive-alert-outline": 988414, "archive-arrow-down": 987737, "archive-arrow-down-outline": 987738, "archive-arrow-up": 987739, "archive-arrow-up-outline": 987740, "archive-cancel": 989003, "archive-cancel-outline": 989004, "archive-check": 989005, "archive-check-outline": 989006, "archive-clock": 989007, "archive-clock-outline": 989008, "archive-cog": 989009, "archive-cog-outline": 989010, "archive-edit": 989011, "archive-edit-outline": 989012, "archive-eye": 989013, "archive-eye-outline": 989014, "archive-lock": 989015, "archive-lock-open": 989016, "archive-lock-open-outline": 989017, "archive-lock-outline": 989018, "archive-marker": 989019, "archive-marker-outline": 989020, "archive-minus": 989021, "archive-minus-outline": 989022, "archive-music": 989023, "archive-music-outline": 989024, "archive-off": 989025, "archive-off-outline": 989026, "archive-outline": 987662, "archive-plus": 989027, "archive-plus-outline": 989028, "archive-refresh": 989029, "archive-refresh-outline": 989030, "archive-remove": 989031, "archive-remove-outline": 989032, "archive-search": 989033, "archive-search-outline": 989034, "archive-settings": 989035, "archive-settings-outline": 989036, "archive-star": 989037, "archive-star-outline": 989038, "archive-sync": 989039, "archive-sync-outline": 989040, "arm-flex": 987095, "arm-flex-outline": 987094, "arrange-bring-forward": 983101, "arrange-bring-to-front": 983102, "arrange-send-backward": 983103, "arrange-send-to-back": 983104, "arrow-all": 983105, "arrow-bottom-left": 983106, "arrow-bottom-left-bold-box": 989540, "arrow-bottom-left-bold-box-outline": 989541, "arrow-bottom-left-bold-outline": 985527, "arrow-bottom-left-thick": 985528, "arrow-bottom-left-thin": 989622, "arrow-bottom-left-thin-circle-outline": 988566, "arrow-bottom-right": 983107, "arrow-bottom-right-bold-box": 989542, "arrow-bottom-right-bold-box-outline": 989543, "arrow-bottom-right-bold-outline": 985529, "arrow-bottom-right-thick": 985530, "arrow-bottom-right-thin": 989623, "arrow-bottom-right-thin-circle-outline": 988565, "arrow-collapse": 984597, "arrow-collapse-all": 983108, "arrow-collapse-down": 984978, "arrow-collapse-horizontal": 985164, "arrow-collapse-left": 984979, "arrow-collapse-right": 984980, "arrow-collapse-up": 984981, "arrow-collapse-vertical": 985165, "arrow-decision": 985531, "arrow-decision-auto": 985532, "arrow-decision-auto-outline": 985533, "arrow-decision-outline": 985534, "arrow-down": 983109, "arrow-down-bold": 984878, "arrow-down-bold-box": 984879, "arrow-down-bold-box-outline": 984880, "arrow-down-bold-circle": 983111, "arrow-down-bold-circle-outline": 983112, "arrow-down-bold-hexagon-outline": 983113, "arrow-down-bold-outline": 985535, "arrow-down-box": 984768, "arrow-down-circle": 986331, "arrow-down-circle-outline": 986332, "arrow-down-drop-circle": 983114, "arrow-down-drop-circle-outline": 983115, "arrow-down-left": 989089, "arrow-down-left-bold": 989090, "arrow-down-right": 989091, "arrow-down-right-bold": 989092, "arrow-down-thick": 983110, "arrow-down-thin": 989619, "arrow-down-thin-circle-outline": 988569, "arrow-expand": 984598, "arrow-expand-all": 983116, "arrow-expand-down": 984982, "arrow-expand-horizontal": 985166, "arrow-expand-left": 984983, "arrow-expand-right": 984984, "arrow-expand-up": 984985, "arrow-expand-vertical": 985167, "arrow-horizontal-lock": 987483, "arrow-left": 983117, "arrow-left-bold": 984881, "arrow-left-bold-box": 984882, "arrow-left-bold-box-outline": 984883, "arrow-left-bold-circle": 983119, "arrow-left-bold-circle-outline": 983120, "arrow-left-bold-hexagon-outline": 983121, "arrow-left-bold-outline": 985536, "arrow-left-bottom": 989093, "arrow-left-bottom-bold": 989094, "arrow-left-box": 984769, "arrow-left-circle": 986333, "arrow-left-circle-outline": 986334, "arrow-left-drop-circle": 983122, "arrow-left-drop-circle-outline": 983123, "arrow-left-right": 986739, "arrow-left-right-bold": 986740, "arrow-left-right-bold-outline": 985537, "arrow-left-thick": 983118, "arrow-left-thin": 989617, "arrow-left-thin-circle-outline": 988570, "arrow-left-top": 989095, "arrow-left-top-bold": 989096, "arrow-oscillating": 990353, "arrow-oscillating-off": 990354, "arrow-projectile": 989248, "arrow-projectile-multiple": 989247, "arrow-right": 983124, "arrow-right-bold": 984884, "arrow-right-bold-box": 984885, "arrow-right-bold-box-outline": 984886, "arrow-right-bold-circle": 983126, "arrow-right-bold-circle-outline": 983127, "arrow-right-bold-hexagon-outline": 983128, "arrow-right-bold-outline": 985538, "arrow-right-bottom": 989097, "arrow-right-bottom-bold": 989098, "arrow-right-box": 984770, "arrow-right-circle": 986335, "arrow-right-circle-outline": 986336, "arrow-right-drop-circle": 983129, "arrow-right-drop-circle-outline": 983130, "arrow-right-thick": 983125, "arrow-right-thin": 989616, "arrow-right-thin-circle-outline": 988568, "arrow-right-top": 989099, "arrow-right-top-bold": 989100, "arrow-split-horizontal": 985403, "arrow-split-vertical": 985404, "arrow-top-left": 983131, "arrow-top-left-bold-box": 989544, "arrow-top-left-bold-box-outline": 989545, "arrow-top-left-bold-outline": 985539, "arrow-top-left-bottom-right": 986741, "arrow-top-left-bottom-right-bold": 986742, "arrow-top-left-thick": 985540, "arrow-top-left-thin": 989621, "arrow-top-left-thin-circle-outline": 988563, "arrow-top-right": 983132, "arrow-top-right-bold-box": 989546, "arrow-top-right-bold-box-outline": 989547, "arrow-top-right-bold-outline": 985541, "arrow-top-right-bottom-left": 986743, "arrow-top-right-bottom-left-bold": 986744, "arrow-top-right-thick": 985542, "arrow-top-right-thin": 989620, "arrow-top-right-thin-circle-outline": 988564, "arrow-u-down-left": 989101, "arrow-u-down-left-bold": 989102, "arrow-u-down-right": 989103, "arrow-u-down-right-bold": 989104, "arrow-u-left-bottom": 989105, "arrow-u-left-bottom-bold": 989106, "arrow-u-left-top": 989107, "arrow-u-left-top-bold": 989108, "arrow-u-right-bottom": 989109, "arrow-u-right-bottom-bold": 989110, "arrow-u-right-top": 989111, "arrow-u-right-top-bold": 989112, "arrow-u-up-left": 989113, "arrow-u-up-left-bold": 989114, "arrow-u-up-right": 989115, "arrow-u-up-right-bold": 989116, "arrow-up": 983133, "arrow-up-bold": 984887, "arrow-up-bold-box": 984888, "arrow-up-bold-box-outline": 984889, "arrow-up-bold-circle": 983135, "arrow-up-bold-circle-outline": 983136, "arrow-up-bold-hexagon-outline": 983137, "arrow-up-bold-outline": 985543, "arrow-up-box": 984771, "arrow-up-circle": 986337, "arrow-up-circle-outline": 986338, "arrow-up-down": 986745, "arrow-up-down-bold": 986746, "arrow-up-down-bold-outline": 985544, "arrow-up-drop-circle": 983138, "arrow-up-drop-circle-outline": 983139, "arrow-up-left": 989117, "arrow-up-left-bold": 989118, "arrow-up-right": 989119, "arrow-up-right-bold": 989120, "arrow-up-thick": 983134, "arrow-up-thin": 989618, "arrow-up-thin-circle-outline": 988567, "arrow-vertical-lock": 987484, "artboard": 990106, "artstation": 985947, "aspect-ratio": 985636, "assistant": 983140, "asterisk": 984772, "asterisk-circle-outline": 989735, "at": 983141, "atlassian": 985092, "atm": 986439, "atom": 984936, "atom-variant": 986747, "attachment": 983142, "attachment-check": 989889, "attachment-lock": 989636, "attachment-minus": 989890, "attachment-off": 989891, "attachment-plus": 989892, "attachment-remove": 989893, "atv": 990064, "audio-input-rca": 989291, "audio-input-stereo-minijack": 989292, "audio-input-xlr": 989293, "audio-video": 985405, "audio-video-off": 987574, "augmented-reality": 985168, "aurora": 990137, "auto-download": 988030, "auto-fix": 983144, "auto-mode": 990240, "auto-upload": 983145, "autorenew": 983146, "autorenew-off": 989671, "av-timer": 983147, "awning": 990087, "awning-outline": 990088, "aws": 986639, "axe": 985288, "axe-battle": 989250, "axis": 986440, "axis-arrow": 986441, "axis-arrow-info": 988174, "axis-arrow-lock": 986442, "axis-lock": 986443, "axis-x-arrow": 986444, "axis-x-arrow-lock": 986445, "axis-x-rotate-clockwise": 986446, "axis-x-rotate-counterclockwise": 986447, "axis-x-y-arrow-lock": 986448, "axis-y-arrow": 986449, "axis-y-arrow-lock": 986450, "axis-y-rotate-clockwise": 986451, "axis-y-rotate-counterclockwise": 986452, "axis-z-arrow": 986453, "axis-z-arrow-lock": 986454, "axis-z-rotate-clockwise": 986455, "axis-z-rotate-counterclockwise": 986456, "babel": 985637, "baby": 983148, "baby-bottle": 986937, "baby-bottle-outline": 986938, "baby-buggy": 988128, "baby-buggy-off": 989939, "baby-carriage": 984719, "baby-carriage-off": 987040, "baby-face": 986748, "baby-face-outline": 986749, "backburger": 983149, "backspace": 983150, "backspace-outline": 985948, "backspace-reverse": 986750, "backspace-reverse-outline": 986751, "backup-restore": 983151, "bacteria": 986837, "bacteria-outline": 986838, "badge-account": 986535, "badge-account-alert": 986536, "badge-account-alert-outline": 986537, "badge-account-horizontal": 986637, "badge-account-horizontal-outline": 986638, "badge-account-outline": 986538, "badminton": 985169, "bag-carry-on": 986939, "bag-carry-on-check": 986469, "bag-carry-on-off": 986940, "bag-checked": 986941, "bag-personal": 986640, "bag-personal-off": 986641, "bag-personal-off-outline": 986642, "bag-personal-outline": 986643, "bag-personal-plus": 990372, "bag-personal-plus-outline": 990373, "bag-personal-tag": 989964, "bag-personal-tag-outline": 989965, "bag-suitcase": 988555, "bag-suitcase-off": 988557, "bag-suitcase-off-outline": 988558, "bag-suitcase-outline": 988556, "baguette": 986942, "balcony": 989207, "balloon": 985638, "ballot": 985545, "ballot-outline": 985546, "ballot-recount": 986169, "ballot-recount-outline": 986170, "bandage": 986543, "bank": 983152, "bank-check": 988757, "bank-circle": 990211, "bank-circle-outline": 990212, "bank-minus": 986544, "bank-off": 988758, "bank-off-outline": 988759, "bank-outline": 986752, "bank-plus": 986545, "bank-remove": 986546, "bank-transfer": 985639, "bank-transfer-in": 985640, "bank-transfer-out": 985641, "barcode": 983153, "barcode-off": 987702, "barcode-scan": 983154, "barley": 983155, "barley-off": 985949, "barn": 985950, "barrel": 983156, "barrel-outline": 989736, "baseball": 985170, "baseball-bat": 985171, "baseball-diamond": 988652, "baseball-diamond-outline": 988653, "baseball-outline": 990298, "bash": 987523, "basket": 983158, "basket-check": 989413, "basket-check-outline": 989414, "basket-fill": 983159, "basket-minus": 988451, "basket-minus-outline": 988452, "basket-off": 988453, "basket-off-outline": 988454, "basket-outline": 987521, "basket-plus": 988455, "basket-plus-outline": 988456, "basket-remove": 988457, "basket-remove-outline": 988458, "basket-unfill": 983160, "basketball": 985094, "basketball-hoop": 986171, "basketball-hoop-outline": 986172, "bat": 985951, "bathtub": 989208, "bathtub-outline": 989209, "battery": 983161, "battery-10": 983162, "battery-10-bluetooth": 985406, "battery-20": 983163, "battery-20-bluetooth": 985407, "battery-30": 983164, "battery-30-bluetooth": 985408, "battery-40": 983165, "battery-40-bluetooth": 985409, "battery-50": 983166, "battery-50-bluetooth": 985410, "battery-60": 983167, "battery-60-bluetooth": 985411, "battery-70": 983168, "battery-70-bluetooth": 985412, "battery-80": 983169, "battery-80-bluetooth": 985413, "battery-90": 983170, "battery-90-bluetooth": 985414, "battery-alert": 983171, "battery-alert-bluetooth": 985415, "battery-alert-variant": 987340, "battery-alert-variant-outline": 987341, "battery-arrow-down": 989150, "battery-arrow-down-outline": 989151, "battery-arrow-up": 989152, "battery-arrow-up-outline": 989153, "battery-bluetooth": 985416, "battery-bluetooth-variant": 985417, "battery-charging": 983172, "battery-charging-10": 985244, "battery-charging-100": 983173, "battery-charging-20": 983174, "battery-charging-30": 983175, "battery-charging-40": 983176, "battery-charging-50": 985245, "battery-charging-60": 983177, "battery-charging-70": 985246, "battery-charging-80": 983178, "battery-charging-90": 983179, "battery-charging-high": 987814, "battery-charging-low": 987812, "battery-charging-medium": 987813, "battery-charging-outline": 985247, "battery-charging-wireless": 985095, "battery-charging-wireless-10": 985096, "battery-charging-wireless-20": 985097, "battery-charging-wireless-30": 985098, "battery-charging-wireless-40": 985099, "battery-charging-wireless-50": 985100, "battery-charging-wireless-60": 985101, "battery-charging-wireless-70": 985102, "battery-charging-wireless-80": 985103, "battery-charging-wireless-90": 985104, "battery-charging-wireless-alert": 985105, "battery-charging-wireless-outline": 985106, "battery-check": 989154, "battery-check-outline": 989155, "battery-clock": 989669, "battery-clock-outline": 989670, "battery-heart": 987663, "battery-heart-outline": 987664, "battery-heart-variant": 987665, "battery-high": 987811, "battery-lock": 989084, "battery-lock-open": 989085, "battery-low": 987809, "battery-medium": 987810, "battery-minus": 989156, "battery-minus-outline": 989157, "battery-minus-variant": 983180, "battery-negative": 983181, "battery-off": 987741, "battery-off-outline": 987742, "battery-outline": 983182, "battery-plus": 989158, "battery-plus-outline": 989159, "battery-plus-variant": 983183, "battery-positive": 983184, "battery-remove": 989160, "battery-remove-outline": 989161, "battery-sync": 989236, "battery-sync-outline": 989237, "battery-unknown": 983185, "battery-unknown-bluetooth": 985418, "beach": 983186, "beaker": 986346, "beaker-alert": 987689, "beaker-alert-outline": 987690, "beaker-check": 987691, "beaker-check-outline": 987692, "beaker-minus": 987693, "beaker-minus-outline": 987694, "beaker-outline": 984720, "beaker-plus": 987695, "beaker-plus-outline": 987696, "beaker-question": 987697, "beaker-question-outline": 987698, "beaker-remove": 987699, "beaker-remove-outline": 987700, "bed": 983779, "bed-clock": 990100, "bed-double": 987092, "bed-double-outline": 987091, "bed-empty": 985248, "bed-king": 987090, "bed-king-outline": 987089, "bed-outline": 983193, "bed-queen": 987088, "bed-queen-outline": 987099, "bed-single": 987245, "bed-single-outline": 987246, "bee": 987041, "bee-flower": 987042, "beehive-off-outline": 988141, "beehive-outline": 987342, "beekeeper": 988386, "beer": 983192, "beer-outline": 987916, "bell": 983194, "bell-alert": 986457, "bell-alert-outline": 986753, "bell-badge": 987499, "bell-badge-outline": 983416, "bell-cancel": 988135, "bell-cancel-outline": 988136, "bell-check": 987621, "bell-check-outline": 987622, "bell-circle": 986458, "bell-circle-outline": 986459, "bell-cog": 989737, "bell-cog-outline": 989738, "bell-minus": 988137, "bell-minus-outline": 988138, "bell-off": 983195, "bell-off-outline": 985745, "bell-outline": 983196, "bell-plus": 983197, "bell-plus-outline": 985746, "bell-remove": 988139, "bell-remove-outline": 988140, "bell-ring": 983198, "bell-ring-outline": 983199, "bell-sleep": 983200, "bell-sleep-outline": 985747, "bench": 990241, "bench-back": 990242, "beta": 983201, "betamax": 985547, "biathlon": 986644, "bicycle": 987292, "bicycle-basket": 987701, "bicycle-cargo": 989340, "bicycle-electric": 988596, "bicycle-penny-farthing": 988649, "bike": 983203, "bike-fast": 987423, "bike-pedal": 990243, "bike-pedal-clipless": 990244, "bike-pedal-mountain": 990245, "billboard": 987152, "billiards": 985953, "billiards-rack": 985954, "binoculars": 983205, "bio": 983206, "biohazard": 983207, "bird": 988614, "bitbucket": 983208, "bitcoin": 985107, "black-mesa": 983209, "blender": 986347, "blender-outline": 989210, "blender-software": 983211, "blinds": 983212, "blinds-horizontal": 989739, "blinds-horizontal-closed": 989740, "blinds-open": 987153, "blinds-vertical": 989741, "blinds-vertical-closed": 989742, "block-helper": 983213, "blood-bag": 986348, "bluetooth": 983215, "bluetooth-audio": 983216, "bluetooth-connect": 983217, "bluetooth-off": 983218, "bluetooth-settings": 983219, "bluetooth-transfer": 983220, "blur": 983221, "blur-linear": 983222, "blur-off": 983223, "blur-radial": 983224, "bolt": 986547, "bomb": 984721, "bomb-off": 984773, "bone": 983225, "bone-off": 989664, "book": 983226, "book-account": 988077, "book-account-outline": 988078, "book-alert": 988796, "book-alert-outline": 988797, "book-alphabet": 984605, "book-arrow-down": 988798, "book-arrow-down-outline": 988799, "book-arrow-left": 988800, "book-arrow-left-outline": 988801, "book-arrow-right": 988802, "book-arrow-right-outline": 988803, "book-arrow-up": 988804, "book-arrow-up-outline": 988805, "book-cancel": 988806, "book-cancel-outline": 988807, "book-check": 988403, "book-check-outline": 988404, "book-clock": 988808, "book-clock-outline": 988809, "book-cog": 988810, "book-cog-outline": 988811, "book-cross": 983202, "book-edit": 988812, "book-edit-outline": 988813, "book-education": 988873, "book-education-outline": 988874, "book-heart": 989725, "book-heart-outline": 989726, "book-information-variant": 987247, "book-lock": 984986, "book-lock-open": 984987, "book-lock-open-outline": 988814, "book-lock-outline": 988815, "book-marker": 988816, "book-marker-outline": 988817, "book-minus": 984537, "book-minus-multiple": 985748, "book-minus-multiple-outline": 985355, "book-minus-outline": 988818, "book-multiple": 983227, "book-multiple-outline": 984118, "book-music": 983143, "book-music-outline": 988819, "book-off": 988820, "book-off-outline": 988821, "book-open": 983229, "book-open-blank-variant": 983230, "book-open-blank-variant-outline": 990411, "book-open-outline": 985955, "book-open-page-variant": 984538, "book-open-page-variant-outline": 988630, "book-open-variant": 988407, "book-open-variant-outline": 990412, "book-outline": 985956, "book-play": 986754, "book-play-outline": 986755, "book-plus": 984539, "book-plus-multiple": 985749, "book-plus-multiple-outline": 985822, "book-plus-outline": 988822, "book-refresh": 988823, "book-refresh-outline": 988824, "book-remove": 985751, "book-remove-multiple": 985750, "book-remove-multiple-outline": 984266, "book-remove-outline": 988825, "book-search": 986756, "book-search-outline": 986757, "book-settings": 988826, "book-settings-outline": 988827, "book-sync": 988828, "book-sync-outline": 988872, "book-variant": 983231, "bookmark": 983232, "bookmark-box": 990069, "bookmark-box-multiple": 989548, "bookmark-box-multiple-outline": 989549, "bookmark-box-outline": 990070, "bookmark-check": 983233, "bookmark-check-outline": 988027, "bookmark-minus": 985548, "bookmark-minus-outline": 985549, "bookmark-multiple": 986645, "bookmark-multiple-outline": 986646, "bookmark-music": 983234, "bookmark-music-outline": 988025, "bookmark-off": 985550, "bookmark-off-outline": 985551, "bookmark-outline": 983235, "bookmark-plus": 983237, "bookmark-plus-outline": 983236, "bookmark-remove": 983238, "bookmark-remove-outline": 988026, "bookshelf": 987743, "boom-gate": 986758, "boom-gate-alert": 986759, "boom-gate-alert-outline": 986760, "boom-gate-arrow-down": 986761, "boom-gate-arrow-down-outline": 986762, "boom-gate-arrow-up": 986764, "boom-gate-arrow-up-outline": 986765, "boom-gate-outline": 986763, "boom-gate-up": 989177, "boom-gate-up-outline": 989178, "boombox": 984540, "boomerang": 987343, "bootstrap": 984774, "border-all": 983239, "border-all-variant": 985249, "border-bottom": 983240, "border-bottom-variant": 985250, "border-color": 983241, "border-horizontal": 983242, "border-inside": 983243, "border-left": 983244, "border-left-variant": 985251, "border-none": 983245, "border-none-variant": 985252, "border-outside": 983246, "border-radius": 989940, "border-right": 983247, "border-right-variant": 985253, "border-style": 983248, "border-top": 983249, "border-top-variant": 985254, "border-vertical": 983250, "bottle-soda": 987248, "bottle-soda-classic": 987249, "bottle-soda-classic-outline": 988003, "bottle-soda-outline": 987250, "bottle-tonic": 987438, "bottle-tonic-outline": 987439, "bottle-tonic-plus": 987440, "bottle-tonic-plus-outline": 987441, "bottle-tonic-skull": 987442, "bottle-tonic-skull-outline": 987443, "bottle-wine": 985172, "bottle-wine-outline": 987920, "bow-arrow": 989249, "bow-tie": 984696, "bowl": 983694, "bowl-mix": 984599, "bowl-mix-outline": 983780, "bowl-outline": 983721, "bowling": 983251, "box": 983252, "box-cutter": 983253, "box-cutter-off": 985930, "box-shadow": 984631, "boxing-glove": 985957, "braille": 985552, "brain": 985553, "bread-slice": 986350, "bread-slice-outline": 986351, "bridge": 984600, "briefcase": 983254, "briefcase-account": 986352, "briefcase-account-outline": 986353, "briefcase-arrow-left-right": 989837, "briefcase-arrow-left-right-outline": 989838, "briefcase-arrow-up-down": 989839, "briefcase-arrow-up-down-outline": 989840, "briefcase-check": 983255, "briefcase-check-outline": 987934, "briefcase-clock": 987344, "briefcase-clock-outline": 987345, "briefcase-download": 983256, "briefcase-download-outline": 986173, "briefcase-edit": 985752, "briefcase-edit-outline": 986174, "briefcase-eye": 989145, "briefcase-eye-outline": 989146, "briefcase-minus": 985642, "briefcase-minus-outline": 986175, "briefcase-off": 988760, "briefcase-off-outline": 988761, "briefcase-outline": 985108, "briefcase-plus": 985643, "briefcase-plus-outline": 986176, "briefcase-remove": 985644, "briefcase-remove-outline": 986177, "briefcase-search": 985645, "briefcase-search-outline": 986178, "briefcase-upload": 983257, "briefcase-upload-outline": 986179, "briefcase-variant": 988308, "briefcase-variant-off": 988762, "briefcase-variant-off-outline": 988763, "briefcase-variant-outline": 988309, "brightness-1": 983258, "brightness-2": 983259, "brightness-3": 983260, "brightness-4": 983261, "brightness-5": 983262, "brightness-6": 983263, "brightness-7": 983264, "brightness-auto": 983265, "brightness-percent": 986354, "broadcast": 988960, "broadcast-off": 988961, "broom": 983266, "brush": 983267, "brush-off": 989041, "brush-outline": 989709, "brush-variant": 989203, "bucket": 988181, "bucket-outline": 988182, "buffet": 984440, "bug": 983268, "bug-check": 985646, "bug-check-outline": 985647, "bug-outline": 985648, "bug-pause": 989941, "bug-pause-outline": 989942, "bug-play": 989943, "bug-play-outline": 989944, "bug-stop": 989945, "bug-stop-outline": 989946, "bugle": 986548, "bulkhead-light": 989743, "bulldozer": 985890, "bullet": 986355, "bulletin-board": 983269, "bullhorn": 983270, "bullhorn-outline": 985891, "bullhorn-variant": 989550, "bullhorn-variant-outline": 989551, "bullseye": 984541, "bullseye-arrow": 985289, "bulma": 987879, "bunk-bed": 987906, "bunk-bed-outline": 983191, "bus": 983271, "bus-alert": 985753, "bus-articulated-end": 984988, "bus-articulated-front": 984989, "bus-clock": 985290, "bus-double-decker": 984990, "bus-electric": 989469, "bus-marker": 987666, "bus-multiple": 986943, "bus-school": 984991, "bus-side": 984992, "bus-sign": 990401, "bus-stop": 987154, "bus-stop-covered": 987155, "bus-stop-uncovered": 987156, "bus-wrench": 990402, "butterfly": 988553, "butterfly-outline": 988554, "button-cursor": 990031, "button-pointer": 990032, "cabin-a-frame": 989324, "cable-data": 988052, "cached": 983272, "cactus": 986549, "cake": 983273, "cake-layered": 983274, "cake-variant": 983275, "cake-variant-outline": 989168, "calculator": 983276, "calculator-variant": 985754, "calculator-variant-outline": 988582, "calendar": 983277, "calendar-account": 986839, "calendar-account-outline": 986840, "calendar-alert": 985649, "calendar-alert-outline": 990050, "calendar-arrow-left": 987444, "calendar-arrow-right": 987445, "calendar-badge": 990109, "calendar-badge-outline": 990110, "calendar-blank": 983278, "calendar-blank-multiple": 987251, "calendar-blank-outline": 985958, "calendar-check": 983279, "calendar-check-outline": 986180, "calendar-clock": 983280, "calendar-clock-outline": 988897, "calendar-collapse-horizontal": 989341, "calendar-collapse-horizontal-outline": 990051, "calendar-cursor": 988539, "calendar-cursor-outline": 990052, "calendar-edit": 985255, "calendar-edit-outline": 990053, "calendar-end": 988780, "calendar-end-outline": 990054, "calendar-expand-horizontal": 989342, "calendar-expand-horizontal-outline": 990055, "calendar-export": 985892, "calendar-export-outline": 990056, "calendar-filter": 989746, "calendar-filter-outline": 989747, "calendar-heart": 985554, "calendar-heart-outline": 990057, "calendar-import": 985893, "calendar-import-outline": 990058, "calendar-lock": 988737, "calendar-lock-open": 990043, "calendar-lock-open-outline": 990044, "calendar-lock-outline": 988738, "calendar-minus": 986460, "calendar-minus-outline": 990059, "calendar-month": 986647, "calendar-month-outline": 986648, "calendar-multiple": 983281, "calendar-multiple-check": 983282, "calendar-multiselect": 985650, "calendar-multiselect-outline": 990037, "calendar-outline": 985959, "calendar-plus": 983283, "calendar-plus-outline": 990060, "calendar-question": 984722, "calendar-question-outline": 990061, "calendar-range": 984697, "calendar-range-outline": 985960, "calendar-refresh": 983521, "calendar-refresh-outline": 983555, "calendar-remove": 983284, "calendar-remove-outline": 986181, "calendar-search": 985420, "calendar-search-outline": 990062, "calendar-star": 985555, "calendar-star-four-points": 990239, "calendar-star-outline": 990035, "calendar-start": 988781, "calendar-start-outline": 990063, "calendar-sync": 986766, "calendar-sync-outline": 986767, "calendar-text": 983285, "calendar-text-outline": 986182, "calendar-today": 983286, "calendar-today-outline": 989744, "calendar-week": 985651, "calendar-week-begin": 985652, "calendar-week-begin-outline": 989745, "calendar-week-outline": 989748, "calendar-weekend": 986841, "calendar-weekend-outline": 986842, "call-made": 983287, "call-merge": 983288, "call-missed": 983289, "call-received": 983290, "call-split": 983291, "camcorder": 983292, "camcorder-off": 983295, "camera": 983296, "camera-account": 985291, "camera-burst": 984723, "camera-control": 985961, "camera-document": 989297, "camera-document-off": 989298, "camera-enhance": 983297, "camera-enhance-outline": 985962, "camera-flip": 988633, "camera-flip-outline": 988634, "camera-front": 983298, "camera-front-variant": 983299, "camera-gopro": 984993, "camera-image": 985292, "camera-iris": 983300, "camera-lock": 989716, "camera-lock-open": 990221, "camera-lock-open-outline": 990222, "camera-lock-outline": 989717, "camera-marker": 989607, "camera-marker-outline": 989608, "camera-metering-center": 984994, "camera-metering-matrix": 984995, "camera-metering-partial": 984996, "camera-metering-spot": 984997, "camera-off": 984543, "camera-off-outline": 989631, "camera-outline": 986461, "camera-party-mode": 983301, "camera-plus": 986843, "camera-plus-outline": 986844, "camera-rear": 983302, "camera-rear-variant": 983303, "camera-retake": 986649, "camera-retake-outline": 986650, "camera-switch": 983304, "camera-switch-outline": 985162, "camera-timer": 983305, "camera-wireless": 986550, "camera-wireless-outline": 986551, "campfire": 986845, "cancel": 984890, "candelabra": 989138, "candelabra-fire": 989139, "candle": 984546, "candy": 989552, "candy-off": 989553, "candy-off-outline": 989554, "candy-outline": 989555, "candycane": 983306, "cannabis": 984998, "cannabis-off": 988782, "caps-lock": 985755, "car": 983307, "car-2-plus": 987157, "car-3-plus": 987158, "car-arrow-left": 988082, "car-arrow-right": 988083, "car-back": 986651, "car-battery": 983308, "car-brake-abs": 986183, "car-brake-alert": 986184, "car-brake-fluid-level": 989449, "car-brake-hold": 986462, "car-brake-low-pressure": 989450, "car-brake-parking": 986463, "car-brake-retarder": 987159, "car-brake-temperature": 989451, "car-brake-worn-linings": 989452, "car-child-seat": 987043, "car-clock": 989556, "car-clutch": 987160, "car-cog": 988108, "car-connected": 983309, "car-convertible": 984999, "car-coolant-level": 987161, "car-cruise-control": 986464, "car-defrost-front": 986465, "car-defrost-rear": 986466, "car-door": 985963, "car-door-lock": 987293, "car-door-lock-open": 990337, "car-electric": 985964, "car-electric-outline": 988597, "car-emergency": 988687, "car-esp": 986185, "car-estate": 985000, "car-hatchback": 985001, "car-info": 987582, "car-key": 985965, "car-lifted-pickup": 988461, "car-light-alert": 989453, "car-light-dimmed": 986186, "car-light-fog": 986187, "car-light-high": 986188, "car-limousine": 985293, "car-multiple": 985966, "car-off": 986652, "car-outline": 988397, "car-parking-lights": 986467, "car-pickup": 985002, "car-search": 990093, "car-search-outline": 990094, "car-seat": 987044, "car-seat-cooler": 987045, "car-seat-heater": 987046, "car-select": 989305, "car-settings": 988109, "car-shift-pattern": 986944, "car-side": 985003, "car-speed-limiter": 989454, "car-sports": 985004, "car-tire-alert": 986189, "car-traction-control": 986468, "car-turbocharger": 987162, "car-wash": 983310, "car-windshield": 987163, "car-windshield-outline": 987164, "car-wireless": 989304, "car-wrench": 989204, "carabiner": 988352, "caravan": 985005, "card": 985967, "card-account-details": 984530, "card-account-details-outline": 986539, "card-account-details-star": 983715, "card-account-details-star-outline": 984795, "card-account-mail": 983438, "card-account-mail-outline": 986776, "card-account-phone": 986777, "card-account-phone-outline": 986778, "card-bulleted": 985968, "card-bulleted-off": 985969, "card-bulleted-off-outline": 985970, "card-bulleted-outline": 985971, "card-bulleted-settings": 985972, "card-bulleted-settings-outline": 985973, "card-minus": 988672, "card-minus-outline": 988673, "card-multiple": 989169, "card-multiple-outline": 989170, "card-off": 988674, "card-off-outline": 988675, "card-outline": 985974, "card-plus": 987647, "card-plus-outline": 987648, "card-remove": 988676, "card-remove-outline": 988677, "card-search": 987252, "card-search-outline": 987253, "card-text": 985975, "card-text-outline": 985976, "cards": 984632, "cards-club": 985294, "cards-club-outline": 989343, "cards-diamond": 985295, "cards-diamond-outline": 987165, "cards-heart": 985296, "cards-heart-outline": 989344, "cards-outline": 984633, "cards-playing": 989345, "cards-playing-club": 989346, "cards-playing-club-multiple": 989347, "cards-playing-club-multiple-outline": 989348, "cards-playing-club-outline": 989349, "cards-playing-diamond": 989350, "cards-playing-diamond-multiple": 989351, "cards-playing-diamond-multiple-outline": 989352, "cards-playing-diamond-outline": 989353, "cards-playing-heart": 989354, "cards-playing-heart-multiple": 989355, "cards-playing-heart-multiple-outline": 989356, "cards-playing-heart-outline": 989357, "cards-playing-outline": 984634, "cards-playing-spade": 989358, "cards-playing-spade-multiple": 989359, "cards-playing-spade-multiple-outline": 989360, "cards-playing-spade-outline": 989361, "cards-spade": 985297, "cards-spade-outline": 989362, "cards-variant": 984775, "carrot": 983311, "cart": 983312, "cart-arrow-down": 986470, "cart-arrow-right": 986190, "cart-arrow-up": 986471, "cart-check": 988650, "cart-heart": 989408, "cart-minus": 986472, "cart-off": 984683, "cart-outline": 983313, "cart-percent": 990126, "cart-plus": 983314, "cart-remove": 986473, "cart-variant": 988651, "case-sensitive-alt": 983315, "cash": 983316, "cash-100": 983317, "cash-check": 988398, "cash-clock": 989841, "cash-edit": 990379, "cash-fast": 989276, "cash-lock": 988394, "cash-lock-open": 988395, "cash-marker": 986552, "cash-minus": 987744, "cash-multiple": 983318, "cash-off": 990329, "cash-plus": 987745, "cash-refund": 985756, "cash-register": 986356, "cash-remove": 987746, "cash-sync": 989842, "cassette": 985556, "cast": 983320, "cast-audio": 987166, "cast-audio-variant": 989001, "cast-connected": 983321, "cast-education": 986653, "cast-off": 984970, "cast-variant": 983071, "castle": 983322, "cat": 983323, "cctv": 985006, "cctv-off": 989279, "ceiling-fan": 989079, "ceiling-fan-light": 989080, "ceiling-light": 984937, "ceiling-light-multiple": 989405, "ceiling-light-multiple-outline": 989406, "ceiling-light-outline": 989127, "cellphone": 983324, "cellphone-arrow-down": 985557, "cellphone-arrow-down-variant": 989637, "cellphone-basic": 983326, "cellphone-charging": 988055, "cellphone-check": 989181, "cellphone-cog": 985425, "cellphone-dock": 983327, "cellphone-information": 986945, "cellphone-key": 985422, "cellphone-link": 983329, "cellphone-link-off": 983330, "cellphone-lock": 985423, "cellphone-marker": 989242, "cellphone-message": 985299, "cellphone-message-off": 987346, "cellphone-nfc": 986768, "cellphone-nfc-off": 987864, "cellphone-off": 985424, "cellphone-play": 987167, "cellphone-remove": 985421, "cellphone-screenshot": 985653, "cellphone-settings": 983331, "cellphone-sound": 985426, "cellphone-text": 985298, "cellphone-wireless": 985109, "centos": 987418, "certificate": 983332, "certificate-outline": 987528, "chair-rolling": 986952, "chair-school": 983333, "chandelier": 989075, "charity": 986191, "charity-search": 990338, "chart-arc": 983334, "chart-areaspline": 983335, "chart-areaspline-variant": 986769, "chart-bar": 983336, "chart-bar-stacked": 984938, "chart-bell-curve": 986192, "chart-bell-curve-cumulative": 987047, "chart-box": 988493, "chart-box-multiple": 990413, "chart-box-multiple-outline": 990414, "chart-box-outline": 988494, "chart-box-plus-outline": 988495, "chart-bubble": 984547, "chart-donut": 985007, "chart-donut-variant": 985008, "chart-gantt": 984684, "chart-histogram": 983337, "chart-line": 983338, "chart-line-stacked": 984939, "chart-line-variant": 985009, "chart-multiline": 985300, "chart-multiple": 987667, "chart-pie": 983339, "chart-pie-outline": 990175, "chart-ppf": 988032, "chart-sankey": 987615, "chart-sankey-variant": 987616, "chart-scatter-plot": 986770, "chart-scatter-plot-hexbin": 984685, "chart-timeline": 984686, "chart-timeline-variant": 986771, "chart-timeline-variant-shimmer": 988598, "chart-tree": 986772, "chart-waterfall": 989464, "chat": 985977, "chat-alert": 985978, "chat-alert-outline": 987849, "chat-minus": 988176, "chat-minus-outline": 988179, "chat-outline": 986846, "chat-plus": 988175, "chat-plus-outline": 988178, "chat-processing": 985979, "chat-processing-outline": 987850, "chat-question": 988984, "chat-question-outline": 988985, "chat-remove": 988177, "chat-remove-outline": 988180, "chat-sleep": 987857, "chat-sleep-outline": 987858, "check": 983340, "check-all": 983341, "check-bold": 986654, "check-circle": 984544, "check-circle-outline": 984545, "check-decagram": 984977, "check-decagram-outline": 988992, "check-network": 986195, "check-network-outline": 986196, "check-outline": 985173, "check-underline": 986655, "check-underline-circle": 986656, "check-underline-circle-outline": 986657, "checkbook": 985757, "checkbook-arrow-left": 990237, "checkbook-arrow-right": 990238, "checkbox-blank": 983342, "checkbox-blank-badge": 987510, "checkbox-blank-badge-outline": 983319, "checkbox-blank-circle": 983343, "checkbox-blank-circle-outline": 983344, "checkbox-blank-off": 987884, "checkbox-blank-off-outline": 987885, "checkbox-blank-outline": 983345, "checkbox-intermediate": 985174, "checkbox-intermediate-variant": 990036, "checkbox-marked": 983346, "checkbox-marked-circle": 983347, "checkbox-marked-circle-auto-outline": 990246, "checkbox-marked-circle-minus-outline": 990247, "checkbox-marked-circle-outline": 983348, "checkbox-marked-circle-plus-outline": 989479, "checkbox-marked-outline": 983349, "checkbox-multiple-blank": 983350, "checkbox-multiple-blank-circle": 984635, "checkbox-multiple-blank-circle-outline": 984636, "checkbox-multiple-blank-outline": 983351, "checkbox-multiple-marked": 983352, "checkbox-multiple-marked-circle": 984637, "checkbox-multiple-marked-circle-outline": 984638, "checkbox-multiple-marked-outline": 983353, "checkbox-multiple-outline": 986193, "checkbox-outline": 986194, "checkerboard": 983354, "checkerboard-minus": 987650, "checkerboard-plus": 987649, "checkerboard-remove": 987651, "cheese": 987833, "cheese-off": 988142, "chef-hat": 985980, "chemical-weapon": 983355, "chess-bishop": 985180, "chess-king": 985175, "chess-knight": 985176, "chess-pawn": 985177, "chess-queen": 985178, "chess-rook": 985179, "chevron-double-down": 983356, "chevron-double-left": 983357, "chevron-double-right": 983358, "chevron-double-up": 983359, "chevron-down": 983360, "chevron-down-box": 985558, "chevron-down-box-outline": 985559, "chevron-down-circle": 985894, "chevron-down-circle-outline": 985895, "chevron-left": 983361, "chevron-left-box": 985560, "chevron-left-box-outline": 985561, "chevron-left-circle": 985896, "chevron-left-circle-outline": 985897, "chevron-right": 983362, "chevron-right-box": 985562, "chevron-right-box-outline": 985563, "chevron-right-circle": 985898, "chevron-right-circle-outline": 985899, "chevron-triple-down": 986553, "chevron-triple-left": 986554, "chevron-triple-right": 986555, "chevron-triple-up": 986556, "chevron-up": 983363, "chevron-up-box": 985564, "chevron-up-box-outline": 985565, "chevron-up-circle": 985900, "chevron-up-circle-outline": 985901, "chili-alert": 989162, "chili-alert-outline": 989163, "chili-hot": 985010, "chili-hot-outline": 989164, "chili-medium": 985011, "chili-medium-outline": 989165, "chili-mild": 985012, "chili-mild-outline": 989166, "chili-off": 988263, "chili-off-outline": 989167, "chip": 984602, "church": 983364, "church-outline": 989954, "cigar": 987529, "cigar-off": 988187, "circle": 984933, "circle-box": 988636, "circle-box-outline": 988637, "circle-double": 986773, "circle-edit-outline": 985301, "circle-expand": 986774, "circle-half": 988053, "circle-half-full": 988054, "circle-medium": 985566, "circle-multiple": 985912, "circle-multiple-outline": 984725, "circle-off-outline": 987347, "circle-opacity": 989267, "circle-outline": 984934, "circle-slice-1": 985758, "circle-slice-2": 985759, "circle-slice-3": 985760, "circle-slice-4": 985761, "circle-slice-5": 985762, "circle-slice-6": 985763, "circle-slice-7": 985764, "circle-slice-8": 985765, "circle-small": 985567, "circular-saw": 986658, "city": 983366, "city-switch": 990248, "city-variant": 985654, "city-variant-outline": 985655, "clipboard": 983367, "clipboard-account": 983368, "clipboard-account-outline": 986197, "clipboard-alert": 983369, "clipboard-alert-outline": 986359, "clipboard-arrow-down": 983370, "clipboard-arrow-down-outline": 986198, "clipboard-arrow-left": 983371, "clipboard-arrow-left-outline": 986360, "clipboard-arrow-right": 986361, "clipboard-arrow-right-outline": 986362, "clipboard-arrow-up": 986199, "clipboard-arrow-up-outline": 986200, "clipboard-check": 983374, "clipboard-check-multiple": 987747, "clipboard-check-multiple-outline": 987748, "clipboard-check-outline": 985256, "clipboard-clock": 988898, "clipboard-clock-outline": 988899, "clipboard-edit": 988389, "clipboard-edit-outline": 988390, "clipboard-file": 987749, "clipboard-file-outline": 987750, "clipboard-flow": 984776, "clipboard-flow-outline": 987415, "clipboard-list": 987348, "clipboard-list-outline": 987349, "clipboard-minus": 988696, "clipboard-minus-outline": 988697, "clipboard-multiple": 987751, "clipboard-multiple-outline": 987752, "clipboard-off": 988698, "clipboard-off-outline": 988699, "clipboard-outline": 983372, "clipboard-play": 986201, "clipboard-play-multiple": 987753, "clipboard-play-multiple-outline": 987754, "clipboard-play-outline": 986202, "clipboard-plus": 984913, "clipboard-plus-outline": 987935, "clipboard-pulse": 985181, "clipboard-pulse-outline": 985182, "clipboard-remove": 988700, "clipboard-remove-outline": 988701, "clipboard-search": 988702, "clipboard-search-outline": 988703, "clipboard-text": 983373, "clipboard-text-clock": 989433, "clipboard-text-clock-outline": 989434, "clipboard-text-multiple": 987755, "clipboard-text-multiple-outline": 987756, "clipboard-text-off": 988704, "clipboard-text-off-outline": 988705, "clipboard-text-outline": 985656, "clipboard-text-play": 986203, "clipboard-text-play-outline": 986204, "clipboard-text-search": 988706, "clipboard-text-search-outline": 988707, "clippy": 983375, "clock": 985428, "clock-alert": 985429, "clock-alert-outline": 984526, "clock-check": 987048, "clock-check-outline": 987049, "clock-digital": 986775, "clock-edit": 989626, "clock-edit-outline": 989627, "clock-end": 983377, "clock-fast": 983378, "clock-in": 983379, "clock-minus": 989283, "clock-minus-outline": 989284, "clock-out": 983380, "clock-outline": 983376, "clock-plus": 989281, "clock-plus-outline": 989282, "clock-remove": 989285, "clock-remove-outline": 989286, "clock-star-four-points": 990249, "clock-star-four-points-outline": 990250, "clock-start": 983381, "clock-time-eight": 988230, "clock-time-eight-outline": 988242, "clock-time-eleven": 988233, "clock-time-eleven-outline": 988245, "clock-time-five": 988227, "clock-time-five-outline": 988239, "clock-time-four": 988226, "clock-time-four-outline": 988238, "clock-time-nine": 988231, "clock-time-nine-outline": 988243, "clock-time-one": 988223, "clock-time-one-outline": 988235, "clock-time-seven": 988229, "clock-time-seven-outline": 988241, "clock-time-six": 988228, "clock-time-six-outline": 988240, "clock-time-ten": 988232, "clock-time-ten-outline": 988244, "clock-time-three": 988225, "clock-time-three-outline": 988237, "clock-time-twelve": 988234, "clock-time-twelve-outline": 988246, "clock-time-two": 988224, "clock-time-two-outline": 988236, "close": 983382, "close-box": 983383, "close-box-multiple": 986205, "close-box-multiple-outline": 986206, "close-box-outline": 983384, "close-circle": 983385, "close-circle-multiple": 984618, "close-circle-multiple-outline": 985219, "close-circle-outline": 983386, "close-network": 983387, "close-network-outline": 986207, "close-octagon": 983388, "close-octagon-outline": 983389, "close-outline": 984777, "close-thick": 988056, "closed-caption": 983390, "closed-caption-outline": 986557, "cloud": 983391, "cloud-alert": 985568, "cloud-alert-outline": 990176, "cloud-arrow-down": 990177, "cloud-arrow-down-outline": 990178, "cloud-arrow-left": 990179, "cloud-arrow-left-outline": 990180, "cloud-arrow-right": 990181, "cloud-arrow-right-outline": 990182, "cloud-arrow-up": 990183, "cloud-arrow-up-outline": 990184, "cloud-braces": 985013, "cloud-cancel": 990185, "cloud-cancel-outline": 990186, "cloud-check": 990187, "cloud-check-outline": 990188, "cloud-check-variant": 983392, "cloud-check-variant-outline": 987852, "cloud-circle": 983393, "cloud-circle-outline": 990189, "cloud-clock": 990190, "cloud-clock-outline": 990191, "cloud-cog": 990192, "cloud-cog-outline": 990193, "cloud-download": 983394, "cloud-download-outline": 985981, "cloud-key": 990369, "cloud-key-outline": 990370, "cloud-lock": 987633, "cloud-lock-open": 990194, "cloud-lock-open-outline": 990195, "cloud-lock-outline": 987634, "cloud-minus": 990196, "cloud-minus-outline": 990197, "cloud-off": 990198, "cloud-off-outline": 983396, "cloud-outline": 983395, "cloud-percent": 989749, "cloud-percent-outline": 989750, "cloud-plus": 990199, "cloud-plus-outline": 990200, "cloud-print": 983397, "cloud-print-outline": 983398, "cloud-question": 985657, "cloud-question-outline": 990201, "cloud-refresh": 990202, "cloud-refresh-outline": 990203, "cloud-refresh-variant": 984362, "cloud-refresh-variant-outline": 990204, "cloud-remove": 990205, "cloud-remove-outline": 990206, "cloud-search": 985430, "cloud-search-outline": 985431, "cloud-sync": 984639, "cloud-sync-outline": 987862, "cloud-tags": 985014, "cloud-upload": 983399, "cloud-upload-outline": 985982, "clouds": 990101, "clover": 985110, "clover-outline": 990306, "coach-lamp": 987168, "coach-lamp-variant": 989751, "coat-rack": 987294, "code-array": 983400, "code-block-braces": 990339, "code-block-brackets": 990340, "code-block-parentheses": 990341, "code-block-tags": 990342, "code-braces": 983401, "code-braces-box": 987350, "code-brackets": 983402, "code-equal": 983403, "code-greater-than": 983404, "code-greater-than-or-equal": 983405, "code-json": 984614, "code-less-than": 983406, "code-less-than-or-equal": 983407, "code-not-equal": 983408, "code-not-equal-variant": 983409, "code-parentheses": 983410, "code-parentheses-box": 987351, "code-string": 983411, "code-tags": 983412, "code-tags-check": 984724, "codepen": 983413, "coffee": 983414, "coffee-maker": 987295, "coffee-maker-check": 989489, "coffee-maker-check-outline": 989490, "coffee-maker-outline": 989211, "coffee-off": 987050, "coffee-off-outline": 987051, "coffee-outline": 984778, "coffee-to-go": 983415, "coffee-to-go-outline": 987918, "coffin": 985983, "cog": 984211, "cog-box": 984212, "cog-clockwise": 987613, "cog-counterclockwise": 987614, "cog-off": 988110, "cog-off-outline": 988111, "cog-outline": 985275, "cog-pause": 989491, "cog-pause-outline": 989492, "cog-play": 989493, "cog-play-outline": 989494, "cog-refresh": 988254, "cog-refresh-outline": 988255, "cog-stop": 989495, "cog-stop-outline": 989496, "cog-sync": 988256, "cog-sync-outline": 988257, "cog-transfer": 987227, "cog-transfer-outline": 987228, "cogs": 985302, "collage": 984640, "collapse-all": 985766, "collapse-all-outline": 985767, "color-helper": 983417, "comma": 986659, "comma-box": 986667, "comma-box-outline": 986660, "comma-circle": 986661, "comma-circle-outline": 986662, "comment": 983418, "comment-account": 983419, "comment-account-outline": 983420, "comment-alert": 983421, "comment-alert-outline": 983422, "comment-arrow-left": 985569, "comment-arrow-left-outline": 985570, "comment-arrow-right": 985571, "comment-arrow-right-outline": 985572, "comment-bookmark": 988590, "comment-bookmark-outline": 988591, "comment-check": 983423, "comment-check-outline": 983424, "comment-edit": 987583, "comment-edit-outline": 987844, "comment-eye": 985658, "comment-eye-outline": 985659, "comment-flash": 988592, "comment-flash-outline": 988593, "comment-minus": 988639, "comment-minus-outline": 988640, "comment-multiple": 985183, "comment-multiple-outline": 983425, "comment-off": 988641, "comment-off-outline": 988642, "comment-outline": 983426, "comment-plus": 985573, "comment-plus-outline": 983427, "comment-processing": 983428, "comment-processing-outline": 983429, "comment-question": 985111, "comment-question-outline": 983430, "comment-quote": 987169, "comment-quote-outline": 987170, "comment-remove": 984542, "comment-remove-outline": 983431, "comment-search": 985660, "comment-search-outline": 985661, "comment-text": 983432, "comment-text-multiple": 985184, "comment-text-multiple-outline": 985185, "comment-text-outline": 983433, "compare": 983434, "compare-horizontal": 988306, "compare-remove": 989363, "compare-vertical": 988307, "compass": 983435, "compass-off": 985984, "compass-off-outline": 985985, "compass-outline": 983436, "compass-rose": 988034, "compost": 989752, "cone": 989516, "cone-off": 989517, "connection": 988694, "console": 983437, "console-line": 985015, "console-network": 985257, "console-network-outline": 986208, "consolidate": 987352, "contactless-payment": 986474, "contactless-payment-circle": 983841, "contactless-payment-circle-outline": 984072, "contacts": 984779, "contacts-outline": 984504, "contain": 985662, "contain-end": 985663, "contain-start": 985664, "content-copy": 983439, "content-cut": 983440, "content-duplicate": 983441, "content-paste": 983442, "content-save": 983443, "content-save-alert": 986946, "content-save-alert-outline": 986947, "content-save-all": 983444, "content-save-all-outline": 986948, "content-save-check": 989418, "content-save-check-outline": 989419, "content-save-cog": 988251, "content-save-cog-outline": 988252, "content-save-edit": 986363, "content-save-edit-outline": 986364, "content-save-minus": 990019, "content-save-minus-outline": 990020, "content-save-move": 986663, "content-save-move-outline": 986664, "content-save-off": 988739, "content-save-off-outline": 988740, "content-save-outline": 985112, "content-save-plus": 990017, "content-save-plus-outline": 990018, "content-save-settings": 984603, "content-save-settings-outline": 985902, "contrast": 983445, "contrast-box": 983446, "contrast-circle": 983447, "controller": 983732, "controller-classic": 985986, "controller-classic-outline": 985987, "controller-off": 983733, "cookie": 983448, "cookie-alert": 988880, "cookie-alert-outline": 988881, "cookie-check": 988882, "cookie-check-outline": 988883, "cookie-clock": 988900, "cookie-clock-outline": 988901, "cookie-cog": 988884, "cookie-cog-outline": 988885, "cookie-edit": 988902, "cookie-edit-outline": 988903, "cookie-lock": 988904, "cookie-lock-outline": 988905, "cookie-minus": 988890, "cookie-minus-outline": 988891, "cookie-off": 988906, "cookie-off-outline": 988907, "cookie-outline": 988894, "cookie-plus": 988886, "cookie-plus-outline": 988887, "cookie-refresh": 988908, "cookie-refresh-outline": 988909, "cookie-remove": 988888, "cookie-remove-outline": 988889, "cookie-settings": 988892, "cookie-settings-outline": 988893, "coolant-temperature": 984008, "copyleft": 989497, "copyright": 984550, "cordova": 985432, "corn": 985016, "corn-off": 988143, "cosine-wave": 988281, "counter": 983449, "countertop": 989212, "countertop-outline": 989213, "cow": 983450, "cow-off": 989436, "cpu-32-bit": 986847, "cpu-64-bit": 986848, "cradle": 989579, "cradle-outline": 989585, "crane": 985186, "creation": 984692, "creation-outline": 990251, "creative-commons": 986475, "credit-card": 987119, "credit-card-check": 988112, "credit-card-check-outline": 988113, "credit-card-chip": 989455, "credit-card-chip-outline": 989456, "credit-card-clock": 986849, "credit-card-clock-outline": 986850, "credit-card-edit": 989143, "credit-card-edit-outline": 989144, "credit-card-fast": 989457, "credit-card-fast-outline": 989458, "credit-card-lock": 989415, "credit-card-lock-outline": 989416, "credit-card-marker": 984744, "credit-card-marker-outline": 986558, "credit-card-minus": 987052, "credit-card-minus-outline": 987053, "credit-card-multiple": 987120, "credit-card-multiple-outline": 983452, "credit-card-off": 987121, "credit-card-off-outline": 984548, "credit-card-outline": 983451, "credit-card-plus": 987122, "credit-card-plus-outline": 984694, "credit-card-refresh": 988741, "credit-card-refresh-outline": 988742, "credit-card-refund": 987123, "credit-card-refund-outline": 985768, "credit-card-remove": 987054, "credit-card-remove-outline": 987055, "credit-card-scan": 987124, "credit-card-scan-outline": 983453, "credit-card-search": 988743, "credit-card-search-outline": 988744, "credit-card-settings": 987125, "credit-card-settings-outline": 985303, "credit-card-sync": 988745, "credit-card-sync-outline": 988746, "credit-card-wireless": 985090, "credit-card-wireless-off": 984442, "credit-card-wireless-off-outline": 984443, "credit-card-wireless-outline": 986476, "cricket": 986477, "crop": 983454, "crop-free": 983455, "crop-landscape": 983456, "crop-portrait": 983457, "crop-rotate": 984726, "crop-square": 983458, "cross": 985427, "cross-bolnisi": 986349, "cross-celtic": 986357, "cross-outline": 986358, "crosshairs": 983459, "crosshairs-gps": 983460, "crosshairs-off": 986949, "crosshairs-question": 987446, "crowd": 989557, "crown": 983461, "crown-circle": 989148, "crown-circle-outline": 989149, "crown-outline": 987600, "cryengine": 985433, "crystal-ball": 985903, "cube": 983462, "cube-off": 988188, "cube-off-outline": 988189, "cube-outline": 983463, "cube-scan": 985988, "cube-send": 983464, "cube-unfolded": 983465, "cup": 983466, "cup-off": 984549, "cup-off-outline": 988029, "cup-outline": 987919, "cup-water": 983467, "cupboard": 986950, "cupboard-outline": 986951, "cupcake": 985434, "curling": 985187, "currency-bdt": 985188, "currency-brl": 985989, "currency-btc": 983468, "currency-cny": 985018, "currency-eth": 985019, "currency-eur": 983469, "currency-eur-off": 987925, "currency-fra": 989753, "currency-gbp": 983470, "currency-ils": 986209, "currency-inr": 983471, "currency-jpy": 985020, "currency-krw": 985021, "currency-kzt": 985189, "currency-mnt": 988434, "currency-ngn": 983472, "currency-php": 985574, "currency-rial": 986780, "currency-rub": 983473, "currency-rupee": 989558, "currency-sign": 985022, "currency-thb": 990213, "currency-try": 983474, "currency-twd": 985023, "currency-uah": 990107, "currency-usd": 983489, "currency-usd-off": 984698, "current-ac": 988288, "current-dc": 985436, "cursor-default": 983488, "cursor-default-click": 986365, "cursor-default-click-outline": 986366, "cursor-default-gesture": 987431, "cursor-default-gesture-outline": 987432, "cursor-default-outline": 983487, "cursor-move": 983486, "cursor-pointer": 983485, "cursor-text": 984551, "curtains": 989254, "curtains-closed": 989255, "cylinder": 989518, "cylinder-off": 989519, "dance-ballroom": 988667, "dance-pole": 988536, "data-matrix": 988476, "data-matrix-edit": 988477, "data-matrix-minus": 988478, "data-matrix-plus": 988479, "data-matrix-remove": 988480, "data-matrix-scan": 988481, "database": 983484, "database-alert": 988730, "database-alert-outline": 988708, "database-arrow-down": 988731, "database-arrow-down-outline": 988709, "database-arrow-left": 988732, "database-arrow-left-outline": 988710, "database-arrow-right": 988733, "database-arrow-right-outline": 988711, "database-arrow-up": 988734, "database-arrow-up-outline": 988712, "database-check": 985769, "database-check-outline": 988713, "database-clock": 988735, "database-clock-outline": 988714, "database-cog": 988747, "database-cog-outline": 988748, "database-edit": 985990, "database-edit-outline": 988715, "database-export": 985438, "database-export-outline": 988716, "database-eye": 989471, "database-eye-off": 989472, "database-eye-off-outline": 989473, "database-eye-outline": 989474, "database-import": 985437, "database-import-outline": 988717, "database-lock": 985770, "database-lock-outline": 988718, "database-marker": 987894, "database-marker-outline": 988719, "database-minus": 983483, "database-minus-outline": 988720, "database-off": 988736, "database-off-outline": 988721, "database-outline": 988722, "database-plus": 983482, "database-plus-outline": 988723, "database-refresh": 984514, "database-refresh-outline": 988724, "database-remove": 986368, "database-remove-outline": 988725, "database-search": 985190, "database-search-outline": 988726, "database-settings": 986369, "database-settings-outline": 988727, "database-sync": 986367, "database-sync-outline": 988728, "death-star": 985304, "death-star-variant": 985305, "deathly-hallows": 985991, "debian": 985306, "debug-step-into": 983481, "debug-step-out": 983480, "debug-step-over": 983479, "decagram": 984940, "decagram-outline": 984941, "decimal": 987297, "decimal-comma": 987298, "decimal-comma-decrease": 987299, "decimal-comma-increase": 987300, "decimal-decrease": 983478, "decimal-increase": 983477, "delete": 983476, "delete-alert": 987301, "delete-alert-outline": 987302, "delete-circle": 984707, "delete-circle-outline": 985992, "delete-clock": 988502, "delete-clock-outline": 988503, "delete-empty": 984780, "delete-empty-outline": 986781, "delete-forever": 984552, "delete-forever-outline": 985993, "delete-off": 987303, "delete-off-outline": 987304, "delete-outline": 985575, "delete-restore": 985113, "delete-sweep": 984553, "delete-sweep-outline": 986210, "delete-variant": 983475, "delta": 983490, "desk": 987705, "desk-lamp": 985439, "desk-lamp-off": 989983, "desk-lamp-on": 989984, "deskphone": 983491, "desktop-classic": 985024, "desktop-tower": 983493, "desktop-tower-monitor": 985771, "details": 983494, "dev-to": 986478, "developer-board": 984727, "deviantart": 983495, "devices": 987056, "dharmachakra": 985419, "diabetes": 987430, "dialpad": 984604, "diameter": 986211, "diameter-outline": 986212, "diameter-variant": 986213, "diamond": 985994, "diamond-outline": 985995, "diamond-stone": 983496, "diaper-outline": 990415, "dice-1": 983498, "dice-1-outline": 987466, "dice-2": 983499, "dice-2-outline": 987467, "dice-3": 983500, "dice-3-outline": 987468, "dice-4": 983501, "dice-4-outline": 987469, "dice-5": 983502, "dice-5-outline": 987470, "dice-6": 983503, "dice-6-outline": 987471, "dice-d10": 987475, "dice-d10-outline": 984943, "dice-d12": 987476, "dice-d12-outline": 985191, "dice-d20": 987477, "dice-d20-outline": 984554, "dice-d4": 987472, "dice-d4-outline": 984555, "dice-d6": 987473, "dice-d6-outline": 984557, "dice-d8": 987474, "dice-d8-outline": 984556, "dice-multiple": 984942, "dice-multiple-outline": 987478, "digital-ocean": 987703, "dip-switch": 985025, "directions": 983504, "directions-fork": 984641, "disc": 984558, "disc-alert": 983505, "disc-player": 985440, "dishwasher": 985772, "dishwasher-alert": 987576, "dishwasher-off": 987577, "disqus": 983506, "distribute-horizontal-center": 987593, "distribute-horizontal-left": 987592, "distribute-horizontal-right": 987594, "distribute-vertical-bottom": 987595, "distribute-vertical-center": 987596, "distribute-vertical-top": 987597, "diversify": 989303, "diving": 989559, "diving-flippers": 986559, "diving-helmet": 986560, "diving-scuba": 990071, "diving-scuba-flag": 986562, "diving-scuba-mask": 986561, "diving-scuba-tank": 986563, "diving-scuba-tank-multiple": 986564, "diving-snorkel": 986565, "division": 983508, "division-box": 983509, "dlna": 985665, "dna": 984708, "dns": 983510, "dns-outline": 985996, "dock-bottom": 987305, "dock-left": 987306, "dock-right": 987307, "dock-top": 988435, "dock-window": 987308, "docker": 985192, "doctor": 985666, "dog": 985667, "dog-service": 985773, "dog-side": 985668, "dog-side-off": 988910, "dolby": 984755, "dolly": 986782, "dolphin": 989364, "domain": 983511, "domain-off": 986479, "domain-plus": 987309, "domain-remove": 987310, "domain-switch": 990252, "dome-light": 988190, "domino-mask": 987171, "donkey": 985026, "door": 985114, "door-closed": 985115, "door-closed-cancel": 990355, "door-closed-lock": 987311, "door-open": 985116, "door-sliding": 989214, "door-sliding-lock": 989215, "door-sliding-open": 989216, "doorbell": 987878, "doorbell-video": 985193, "dot-net": 985774, "dots-circle": 989560, "dots-grid": 988668, "dots-hexagon": 988671, "dots-horizontal": 983512, "dots-horizontal-circle": 985027, "dots-horizontal-circle-outline": 985997, "dots-square": 988669, "dots-triangle": 988670, "dots-vertical": 983513, "dots-vertical-circle": 985028, "dots-vertical-circle-outline": 985998, "download": 983514, "download-box": 988258, "download-box-outline": 988259, "download-circle": 988260, "download-circle-outline": 988261, "download-lock": 987936, "download-lock-outline": 987937, "download-multiple": 985577, "download-multiple-outline": 990416, "download-network": 984820, "download-network-outline": 986214, "download-off": 987312, "download-off-outline": 987313, "download-outline": 985999, "drag": 983515, "drag-horizontal": 983516, "drag-horizontal-variant": 987888, "drag-variant": 986000, "drag-vertical": 983517, "drag-vertical-variant": 987889, "drama-masks": 986370, "draw": 986953, "draw-pen": 989625, "drawing": 983518, "drawing-box": 983519, "dresser": 986954, "dresser-outline": 986955, "drone": 983522, "dropbox": 983523, "drupal": 983524, "duck": 983525, "dumbbell": 983526, "dump-truck": 986215, "ear-hearing": 985029, "ear-hearing-loop": 989934, "ear-hearing-off": 985669, "earbuds": 989263, "earbuds-off": 989264, "earbuds-off-outline": 989265, "earbuds-outline": 989266, "earth": 983527, "earth-arrow-down": 990343, "earth-arrow-left": 990344, "earth-arrow-right": 987921, "earth-arrow-up": 990345, "earth-box": 984781, "earth-box-minus": 988167, "earth-box-off": 984782, "earth-box-plus": 988166, "earth-box-remove": 988168, "earth-minus": 988164, "earth-off": 983528, "earth-plus": 988163, "earth-remove": 988165, "egg": 985775, "egg-easter": 985776, "egg-fried": 989258, "egg-off": 988144, "egg-off-outline": 988145, "egg-outline": 988146, "eiffel-tower": 988523, "eight-track": 985578, "eject": 983530, "eject-circle": 989987, "eject-circle-outline": 989988, "eject-outline": 986001, "electric-switch": 986783, "electric-switch-closed": 987353, "electron-framework": 987172, "elephant": 985030, "elevation-decline": 983531, "elevation-rise": 983532, "elevator": 983533, "elevator-down": 987842, "elevator-passenger": 988033, "elevator-passenger-off": 989561, "elevator-passenger-off-outline": 989562, "elevator-passenger-outline": 989563, "elevator-up": 987841, "ellipse": 986784, "ellipse-outline": 986785, "email": 983534, "email-alert": 984783, "email-alert-outline": 986434, "email-arrow-left": 987354, "email-arrow-left-outline": 987355, "email-arrow-right": 987356, "email-arrow-right-outline": 987357, "email-box": 986371, "email-check": 985777, "email-check-outline": 985778, "email-edit": 986851, "email-edit-outline": 986852, "email-fast": 989295, "email-fast-outline": 989296, "email-heart-outline": 990299, "email-lock": 983537, "email-lock-outline": 990049, "email-mark-as-unread": 986002, "email-minus": 986853, "email-minus-outline": 986854, "email-multiple": 986855, "email-multiple-outline": 986856, "email-newsletter": 987057, "email-off": 988131, "email-off-outline": 988132, "email-open": 983535, "email-open-heart-outline": 990300, "email-open-multiple": 986857, "email-open-multiple-outline": 986858, "email-open-outline": 984559, "email-outline": 983536, "email-plus": 985579, "email-plus-outline": 985580, "email-remove": 988769, "email-remove-outline": 988770, "email-seal": 989531, "email-seal-outline": 989532, "email-search": 985441, "email-search-outline": 985442, "email-sync": 987847, "email-sync-outline": 987848, "email-variant": 984560, "ember": 985904, "emby": 984756, "emoticon": 986216, "emoticon-angry": 986217, "emoticon-angry-outline": 986218, "emoticon-confused": 987358, "emoticon-confused-outline": 987359, "emoticon-cool": 986219, "emoticon-cool-outline": 983539, "emoticon-cry": 986220, "emoticon-cry-outline": 986221, "emoticon-dead": 986222, "emoticon-dead-outline": 984731, "emoticon-devil": 986223, "emoticon-devil-outline": 983540, "emoticon-excited": 986224, "emoticon-excited-outline": 984732, "emoticon-frown": 986956, "emoticon-frown-outline": 986957, "emoticon-happy": 986225, "emoticon-happy-outline": 983541, "emoticon-kiss": 986226, "emoticon-kiss-outline": 986227, "emoticon-lol": 987668, "emoticon-lol-outline": 987669, "emoticon-minus": 990386, "emoticon-minus-outline": 990387, "emoticon-neutral": 986228, "emoticon-neutral-outline": 983542, "emoticon-outline": 983538, "emoticon-plus": 990388, "emoticon-plus-outline": 990389, "emoticon-poop": 983543, "emoticon-poop-outline": 986229, "emoticon-remove": 990390, "emoticon-remove-outline": 990391, "emoticon-sad": 986230, "emoticon-sad-outline": 983544, "emoticon-sick": 988540, "emoticon-sick-outline": 988541, "emoticon-tongue": 983545, "emoticon-tongue-outline": 986231, "emoticon-wink": 986232, "emoticon-wink-outline": 986233, "engine": 983546, "engine-off": 985670, "engine-off-outline": 985671, "engine-outline": 983547, "epsilon": 987360, "equal": 983548, "equal-box": 983549, "equalizer": 986786, "equalizer-outline": 986787, "eraser": 983550, "eraser-variant": 984642, "escalator": 983551, "escalator-box": 988057, "escalator-down": 987840, "escalator-up": 987839, "eslint": 986234, "et": 985779, "ethereum": 985194, "ethernet": 983552, "ethernet-cable": 983553, "ethernet-cable-off": 983554, "ethernet-off": 990417, "ev-plug-ccs1": 988441, "ev-plug-ccs2": 988442, "ev-plug-chademo": 988443, "ev-plug-tesla": 988444, "ev-plug-type1": 988445, "ev-plug-type2": 988446, "ev-station": 984561, "evernote": 983556, "excavator": 987173, "exclamation": 983557, "exclamation-thick": 987704, "exit-run": 985672, "exit-to-app": 983558, "expand-all": 985780, "expand-all-outline": 985781, "expansion-card": 985262, "expansion-card-variant": 987058, "exponent": 985443, "exponent-box": 985444, "export": 983559, "export-variant": 986003, "eye": 983560, "eye-arrow-left": 989437, "eye-arrow-left-outline": 989438, "eye-arrow-right": 989439, "eye-arrow-right-outline": 989440, "eye-check": 986372, "eye-check-outline": 986373, "eye-circle": 986004, "eye-circle-outline": 986005, "eye-closed": 990371, "eye-lock": 990214, "eye-lock-open": 990215, "eye-lock-open-outline": 990216, "eye-lock-outline": 990217, "eye-minus": 987174, "eye-minus-outline": 987175, "eye-off": 983561, "eye-off-outline": 984785, "eye-outline": 984784, "eye-plus": 985195, "eye-plus-outline": 985196, "eye-refresh": 989564, "eye-refresh-outline": 989565, "eye-remove": 988643, "eye-remove-outline": 988644, "eye-settings": 985197, "eye-settings-outline": 985198, "eyedropper": 983562, "eyedropper-minus": 988125, "eyedropper-off": 988127, "eyedropper-plus": 988124, "eyedropper-remove": 988126, "eyedropper-variant": 983563, "face-agent": 986480, "face-man": 984643, "face-man-outline": 986006, "face-man-profile": 984644, "face-man-shimmer": 988620, "face-man-shimmer-outline": 988621, "face-mask": 988550, "face-mask-outline": 988551, "face-recognition": 986235, "face-woman": 987255, "face-woman-outline": 987256, "face-woman-profile": 987254, "face-woman-shimmer": 988622, "face-woman-shimmer-outline": 988623, "facebook": 983564, "facebook-gaming": 985053, "facebook-messenger": 983566, "facebook-workplace": 985905, "factory": 983567, "family-tree": 988686, "fan": 983568, "fan-alert": 988268, "fan-auto": 988957, "fan-chevron-down": 988269, "fan-chevron-up": 988270, "fan-clock": 989754, "fan-minus": 988272, "fan-off": 985117, "fan-plus": 988271, "fan-remove": 988273, "fan-speed-1": 988274, "fan-speed-2": 988275, "fan-speed-3": 988276, "fast-forward": 983569, "fast-forward-10": 986481, "fast-forward-15": 989498, "fast-forward-30": 986374, "fast-forward-45": 989970, "fast-forward-5": 987640, "fast-forward-60": 988683, "fast-forward-outline": 984786, "faucet": 989993, "faucet-variant": 989994, "fax": 983570, "feather": 984787, "feature-search": 985673, "feature-search-outline": 985674, "fedora": 985307, "fence": 989082, "fence-electric": 989174, "fencing": 988353, "ferris-wheel": 986788, "ferry": 983571, "file": 983572, "file-account": 984891, "file-account-outline": 987176, "file-alert": 985675, "file-alert-outline": 985676, "file-arrow-left-right": 989843, "file-arrow-left-right-outline": 989844, "file-arrow-up-down": 989845, "file-arrow-up-down-outline": 989846, "file-cabinet": 985782, "file-cad": 986859, "file-cad-box": 986860, "file-cancel": 986566, "file-cancel-outline": 986567, "file-certificate": 987526, "file-certificate-outline": 987527, "file-chart": 983573, "file-chart-check": 989638, "file-chart-check-outline": 989639, "file-chart-outline": 987177, "file-check": 983574, "file-check-outline": 986665, "file-clock": 987873, "file-clock-outline": 987874, "file-cloud": 983575, "file-cloud-outline": 987178, "file-code": 983598, "file-code-outline": 987179, "file-cog": 987259, "file-cog-outline": 987260, "file-compare": 985258, "file-delimited": 983576, "file-delimited-outline": 986789, "file-document": 983577, "file-document-alert": 989847, "file-document-alert-outline": 989848, "file-document-arrow-right": 990223, "file-document-arrow-right-outline": 990224, "file-document-check": 989849, "file-document-check-outline": 989850, "file-document-edit": 986568, "file-document-edit-outline": 986569, "file-document-minus": 989851, "file-document-minus-outline": 989852, "file-document-multiple": 988439, "file-document-multiple-outline": 988440, "file-document-outline": 985582, "file-document-plus": 989853, "file-document-plus-outline": 989854, "file-document-refresh": 990330, "file-document-refresh-outline": 990331, "file-document-remove": 989855, "file-document-remove-outline": 989856, "file-download": 985445, "file-download-outline": 985446, "file-edit": 987623, "file-edit-outline": 987624, "file-excel": 983579, "file-excel-box": 983580, "file-excel-box-outline": 987180, "file-excel-outline": 987181, "file-export": 983581, "file-export-outline": 987182, "file-eye": 986570, "file-eye-outline": 986571, "file-find": 983582, "file-find-outline": 986007, "file-gif-box": 986488, "file-hidden": 984595, "file-image": 983583, "file-image-marker": 989042, "file-image-marker-outline": 989043, "file-image-minus": 989499, "file-image-minus-outline": 989500, "file-image-outline": 986800, "file-image-plus": 989501, "file-image-plus-outline": 989502, "file-image-remove": 989503, "file-image-remove-outline": 989504, "file-import": 983584, "file-import-outline": 987183, "file-jpg-box": 983589, "file-key": 987524, "file-key-outline": 987525, "file-link": 987511, "file-link-outline": 987512, "file-lock": 983585, "file-lock-open": 989640, "file-lock-open-outline": 989641, "file-lock-outline": 987184, "file-marker": 989044, "file-marker-outline": 989045, "file-minus": 989857, "file-minus-outline": 989858, "file-move": 985785, "file-move-outline": 987185, "file-multiple": 983586, "file-multiple-outline": 987186, "file-music": 983587, "file-music-outline": 986666, "file-outline": 983588, "file-pdf-box": 983590, "file-percent": 985118, "file-percent-outline": 987187, "file-phone": 987513, "file-phone-outline": 987514, "file-plus": 984914, "file-plus-outline": 986861, "file-png-box": 986669, "file-powerpoint": 983591, "file-powerpoint-box": 983592, "file-powerpoint-box-outline": 987188, "file-powerpoint-outline": 987189, "file-presentation-box": 983593, "file-question": 985199, "file-question-outline": 987190, "file-refresh": 985368, "file-refresh-outline": 984385, "file-remove": 986008, "file-remove-outline": 987191, "file-replace": 985906, "file-replace-outline": 985907, "file-restore": 984688, "file-restore-outline": 987192, "file-rotate-left": 989755, "file-rotate-left-outline": 989756, "file-rotate-right": 989757, "file-rotate-right-outline": 989758, "file-search": 986236, "file-search-outline": 986237, "file-send": 983594, "file-send-outline": 987193, "file-settings": 987257, "file-settings-outline": 987258, "file-sign": 989635, "file-star": 987194, "file-star-four-points": 990253, "file-star-four-points-outline": 990254, "file-star-outline": 987195, "file-swap": 987060, "file-swap-outline": 987061, "file-sync": 987670, "file-sync-outline": 987671, "file-table": 986238, "file-table-box": 987361, "file-table-box-multiple": 987362, "file-table-box-multiple-outline": 987363, "file-table-box-outline": 987364, "file-table-outline": 986239, "file-tree": 984645, "file-tree-outline": 988114, "file-undo": 985308, "file-undo-outline": 987196, "file-upload": 985677, "file-upload-outline": 985678, "file-video": 983595, "file-video-outline": 986668, "file-word": 983596, "file-word-box": 983597, "file-word-box-outline": 987197, "file-word-outline": 987198, "file-xml-box": 990027, "film": 983599, "filmstrip": 983600, "filmstrip-box": 983858, "filmstrip-box-multiple": 986392, "filmstrip-off": 983601, "filter": 983602, "filter-check": 989420, "filter-check-outline": 989421, "filter-cog": 989859, "filter-cog-outline": 989860, "filter-menu": 987365, "filter-menu-outline": 987366, "filter-minus": 986862, "filter-minus-outline": 986863, "filter-multiple": 989759, "filter-multiple-outline": 989760, "filter-off": 988399, "filter-off-outline": 988400, "filter-outline": 983603, "filter-plus": 986864, "filter-plus-outline": 986865, "filter-remove": 983604, "filter-remove-outline": 983605, "filter-settings": 989861, "filter-settings-outline": 989862, "filter-variant": 983606, "filter-variant-minus": 987410, "filter-variant-plus": 987411, "filter-variant-remove": 987199, "finance": 985119, "find-replace": 984788, "fingerprint": 983607, "fingerprint-off": 986801, "fire": 983608, "fire-alert": 988631, "fire-circle": 989191, "fire-extinguisher": 986866, "fire-hydrant": 987447, "fire-hydrant-alert": 987448, "fire-hydrant-off": 987449, "fire-off": 988962, "fire-station": 990403, "fire-truck": 985259, "firebase": 985447, "firefox": 983609, "fireplace": 986670, "fireplace-off": 986671, "firewire": 984510, "firework": 986672, "firework-off": 988963, "fish": 983610, "fish-off": 988147, "fishbowl": 986867, "fishbowl-outline": 986868, "fit-to-page": 986869, "fit-to-page-outline": 986870, "fit-to-screen": 989428, "fit-to-screen-outline": 989429, "flag": 983611, "flag-checkered": 983612, "flag-minus": 986009, "flag-minus-outline": 987314, "flag-off": 989422, "flag-off-outline": 989423, "flag-outline": 983613, "flag-plus": 986010, "flag-plus-outline": 987315, "flag-remove": 986011, "flag-remove-outline": 987316, "flag-triangle": 983615, "flag-variant": 983616, "flag-variant-minus": 990132, "flag-variant-minus-outline": 990133, "flag-variant-off": 990128, "flag-variant-off-outline": 990129, "flag-variant-outline": 983614, "flag-variant-plus": 990130, "flag-variant-plus-outline": 990131, "flag-variant-remove": 990134, "flag-variant-remove-outline": 990135, "flare": 986482, "flash": 983617, "flash-alert": 986871, "flash-alert-outline": 986872, "flash-auto": 983618, "flash-off": 983619, "flash-off-outline": 990021, "flash-outline": 984789, "flash-red-eye": 984699, "flash-triangle": 989981, "flash-triangle-outline": 989982, "flashlight": 983620, "flashlight-off": 983621, "flask": 983187, "flask-empty": 983188, "flask-empty-minus": 987706, "flask-empty-minus-outline": 987707, "flask-empty-off": 988148, "flask-empty-off-outline": 988149, "flask-empty-outline": 983189, "flask-empty-plus": 987708, "flask-empty-plus-outline": 987709, "flask-empty-remove": 987710, "flask-empty-remove-outline": 987711, "flask-minus": 987712, "flask-minus-outline": 987713, "flask-off": 988150, "flask-off-outline": 988151, "flask-outline": 983190, "flask-plus": 987714, "flask-plus-outline": 987715, "flask-remove": 987716, "flask-remove-outline": 987717, "flask-round-bottom": 987723, "flask-round-bottom-empty": 987724, "flask-round-bottom-empty-outline": 987725, "flask-round-bottom-outline": 987726, "fleur-de-lis": 987907, "flip-horizontal": 987367, "flip-to-back": 983623, "flip-to-front": 983624, "flip-vertical": 987368, "floor-lamp": 985309, "floor-lamp-dual": 987200, "floor-lamp-dual-outline": 989134, "floor-lamp-outline": 989128, "floor-lamp-torchiere": 988999, "floor-lamp-torchiere-outline": 989142, "floor-lamp-torchiere-variant": 987201, "floor-lamp-torchiere-variant-outline": 989135, "floor-plan": 985121, "floppy": 983625, "floppy-variant": 985583, "flower": 983626, "flower-outline": 985584, "flower-pollen": 989317, "flower-pollen-outline": 989318, "flower-poppy": 986376, "flower-tulip": 985585, "flower-tulip-outline": 985586, "focus-auto": 986958, "focus-field": 986959, "focus-field-horizontal": 986960, "focus-field-vertical": 986961, "folder": 983627, "folder-account": 983628, "folder-account-outline": 986012, "folder-alert": 986572, "folder-alert-outline": 986573, "folder-arrow-down": 989672, "folder-arrow-down-outline": 989673, "folder-arrow-left": 989674, "folder-arrow-left-outline": 989675, "folder-arrow-left-right": 989676, "folder-arrow-left-right-outline": 989677, "folder-arrow-right": 989678, "folder-arrow-right-outline": 989679, "folder-arrow-up": 989680, "folder-arrow-up-down": 989681, "folder-arrow-up-down-outline": 989682, "folder-arrow-up-outline": 989683, "folder-cancel": 989684, "folder-cancel-outline": 989685, "folder-check": 989566, "folder-check-outline": 989567, "folder-clock": 985786, "folder-clock-outline": 985787, "folder-cog": 987263, "folder-cog-outline": 987264, "folder-download": 983629, "folder-download-outline": 987369, "folder-edit": 985310, "folder-edit-outline": 986574, "folder-eye": 989066, "folder-eye-outline": 989067, "folder-file": 989686, "folder-file-outline": 989687, "folder-google-drive": 983630, "folder-heart": 987370, "folder-heart-outline": 987371, "folder-hidden": 989086, "folder-home": 987317, "folder-home-outline": 987318, "folder-image": 983631, "folder-information": 987319, "folder-information-outline": 987320, "folder-key": 985260, "folder-key-network": 985261, "folder-key-network-outline": 986240, "folder-key-outline": 987372, "folder-lock": 983632, "folder-lock-open": 983633, "folder-lock-open-outline": 989863, "folder-lock-outline": 989864, "folder-marker": 987757, "folder-marker-outline": 987758, "folder-minus": 990025, "folder-minus-outline": 990026, "folder-move": 983634, "folder-move-outline": 987718, "folder-multiple": 983635, "folder-multiple-image": 983636, "folder-multiple-outline": 983637, "folder-multiple-plus": 988286, "folder-multiple-plus-outline": 988287, "folder-music": 987993, "folder-music-outline": 987994, "folder-network": 985200, "folder-network-outline": 986241, "folder-off": 989688, "folder-off-outline": 989689, "folder-open": 984944, "folder-open-outline": 986575, "folder-outline": 983638, "folder-play": 989690, "folder-play-outline": 989691, "folder-plus": 983639, "folder-plus-outline": 986013, "folder-pound": 986377, "folder-pound-outline": 986378, "folder-question": 989642, "folder-question-outline": 989643, "folder-refresh": 984905, "folder-refresh-outline": 984386, "folder-remove": 983640, "folder-remove-outline": 986014, "folder-search": 985448, "folder-search-outline": 985449, "folder-settings": 987261, "folder-settings-outline": 987262, "folder-star": 984733, "folder-star-multiple": 988115, "folder-star-multiple-outline": 988116, "folder-star-outline": 986015, "folder-swap": 987062, "folder-swap-outline": 987063, "folder-sync": 986379, "folder-sync-outline": 986380, "folder-table": 987875, "folder-table-outline": 987876, "folder-text": 986242, "folder-text-outline": 986243, "folder-upload": 983641, "folder-upload-outline": 987373, "folder-wrench": 989692, "folder-wrench-outline": 989693, "folder-zip": 984811, "folder-zip-outline": 985017, "font-awesome": 983098, "food": 983642, "food-apple": 983643, "food-apple-outline": 986244, "food-croissant": 985032, "food-drumstick": 988191, "food-drumstick-off": 988264, "food-drumstick-off-outline": 988265, "food-drumstick-outline": 988192, "food-fork-drink": 984562, "food-halal": 988530, "food-hot-dog": 989259, "food-kosher": 988531, "food-off": 984563, "food-off-outline": 989461, "food-outline": 989462, "food-steak": 988266, "food-steak-off": 988267, "food-takeout-box": 989238, "food-takeout-box-outline": 989239, "food-turkey": 988956, "food-variant": 983644, "food-variant-off": 988133, "foot-print": 986962, "football": 983645, "football-australian": 983646, "football-helmet": 983647, "forest": 989335, "forest-outline": 990307, "forklift": 985033, "form-dropdown": 988160, "form-select": 988161, "form-textarea": 987285, "form-textbox": 984590, "form-textbox-lock": 987997, "form-textbox-password": 985077, "format-align-bottom": 984915, "format-align-center": 983648, "format-align-justify": 983649, "format-align-left": 983650, "format-align-middle": 984916, "format-align-right": 983651, "format-align-top": 984917, "format-annotation-minus": 985788, "format-annotation-plus": 984646, "format-bold": 983652, "format-clear": 983653, "format-color-fill": 983654, "format-color-highlight": 986673, "format-color-marker-cancel": 987923, "format-color-text": 984734, "format-columns": 985311, "format-float-center": 983655, "format-float-left": 983656, "format-float-none": 983657, "format-float-right": 983658, "format-font": 984790, "format-font-size-decrease": 985587, "format-font-size-increase": 985588, "format-header-1": 983659, "format-header-2": 983660, "format-header-3": 983661, "format-header-4": 983662, "format-header-5": 983663, "format-header-6": 983664, "format-header-decrease": 983665, "format-header-equal": 983666, "format-header-increase": 983667, "format-header-pound": 983668, "format-horizontal-align-center": 984606, "format-horizontal-align-left": 984607, "format-horizontal-align-right": 984608, "format-indent-decrease": 983669, "format-indent-increase": 983670, "format-italic": 983671, "format-letter-case": 985908, "format-letter-case-lower": 985909, "format-letter-case-upper": 985910, "format-letter-ends-with": 987064, "format-letter-matches": 987065, "format-letter-spacing": 989526, "format-letter-spacing-variant": 989947, "format-letter-starts-with": 987066, "format-line-height": 989948, "format-line-spacing": 983672, "format-line-style": 984520, "format-line-weight": 984521, "format-list-bulleted": 983673, "format-list-bulleted-square": 986576, "format-list-bulleted-triangle": 986802, "format-list-bulleted-type": 983674, "format-list-checkbox": 985450, "format-list-checks": 984918, "format-list-group": 989280, "format-list-group-plus": 990038, "format-list-numbered": 983675, "format-list-numbered-rtl": 986381, "format-list-text": 987759, "format-overline": 986803, "format-page-break": 984791, "format-page-split": 989463, "format-paint": 983676, "format-paragraph": 983677, "format-paragraph-spacing": 989949, "format-pilcrow": 984792, "format-pilcrow-arrow-left": 983686, "format-pilcrow-arrow-right": 983685, "format-quote-close": 983678, "format-quote-close-outline": 987560, "format-quote-open": 984919, "format-quote-open-outline": 987559, "format-rotate-90": 984746, "format-section": 984735, "format-size": 983679, "format-strikethrough": 983680, "format-strikethrough-variant": 983681, "format-subscript": 983682, "format-superscript": 983683, "format-text": 983684, "format-text-rotation-angle-down": 987067, "format-text-rotation-angle-up": 987068, "format-text-rotation-down": 986483, "format-text-rotation-down-vertical": 987069, "format-text-rotation-none": 986484, "format-text-rotation-up": 987070, "format-text-rotation-vertical": 987071, "format-text-variant": 986674, "format-text-variant-outline": 988431, "format-text-wrapping-clip": 986382, "format-text-wrapping-overflow": 986383, "format-text-wrapping-wrap": 986384, "format-textbox": 986385, "format-title": 984564, "format-underline": 983687, "format-underline-wavy": 989417, "format-vertical-align-bottom": 984609, "format-vertical-align-center": 984610, "format-vertical-align-top": 984611, "format-wrap-inline": 983688, "format-wrap-square": 983689, "format-wrap-tight": 983690, "format-wrap-top-bottom": 983691, "forum": 983692, "forum-minus": 989865, "forum-minus-outline": 989866, "forum-outline": 985122, "forum-plus": 989867, "forum-plus-outline": 989868, "forum-remove": 989869, "forum-remove-outline": 989870, "forward": 983693, "forwardburger": 986485, "fountain": 985451, "fountain-pen": 986386, "fountain-pen-tip": 986387, "fraction-one-half": 989586, "freebsd": 985312, "french-fries": 989527, "frequently-asked-questions": 986804, "fridge": 983696, "fridge-alert": 987569, "fridge-alert-outline": 987570, "fridge-bottom": 983698, "fridge-industrial": 988654, "fridge-industrial-alert": 988655, "fridge-industrial-alert-outline": 988656, "fridge-industrial-off": 988657, "fridge-industrial-off-outline": 988658, "fridge-industrial-outline": 988659, "fridge-off": 987567, "fridge-off-outline": 987568, "fridge-outline": 983695, "fridge-top": 983697, "fridge-variant": 988660, "fridge-variant-alert": 988661, "fridge-variant-alert-outline": 988662, "fridge-variant-off": 988663, "fridge-variant-off-outline": 988664, "fridge-variant-outline": 988665, "fruit-cherries": 987202, "fruit-cherries-off": 988152, "fruit-citrus": 987203, "fruit-citrus-off": 988153, "fruit-grapes": 987204, "fruit-grapes-outline": 987205, "fruit-pear": 989710, "fruit-pineapple": 987206, "fruit-watermelon": 987207, "fuel": 985034, "fuel-cell": 989365, "fullscreen": 983699, "fullscreen-exit": 983700, "function": 983701, "function-variant": 985201, "furigana-horizontal": 987265, "furigana-vertical": 987266, "fuse": 986245, "fuse-alert": 988205, "fuse-blade": 986246, "fuse-off": 988204, "gamepad": 983702, "gamepad-circle": 986675, "gamepad-circle-down": 986676, "gamepad-circle-left": 986677, "gamepad-circle-outline": 986678, "gamepad-circle-right": 986679, "gamepad-circle-up": 986680, "gamepad-down": 986681, "gamepad-left": 986682, "gamepad-outline": 989465, "gamepad-right": 986683, "gamepad-round": 986684, "gamepad-round-down": 986685, "gamepad-round-left": 986686, "gamepad-round-outline": 986687, "gamepad-round-right": 986688, "gamepad-round-up": 986689, "gamepad-square": 986805, "gamepad-square-outline": 986806, "gamepad-up": 986690, "gamepad-variant": 983703, "gamepad-variant-outline": 986807, "gamma": 987374, "gantry-crane": 986577, "garage": 984793, "garage-alert": 985202, "garage-alert-variant": 987861, "garage-lock": 989179, "garage-open": 984794, "garage-open-variant": 987860, "garage-variant": 987859, "garage-variant-lock": 989180, "gas-burner": 989723, "gas-cylinder": 984647, "gas-station": 983704, "gas-station-in-use": 990404, "gas-station-in-use-outline": 990405, "gas-station-off": 988169, "gas-station-off-outline": 988170, "gas-station-outline": 986808, "gate": 983705, "gate-alert": 989176, "gate-and": 985313, "gate-arrow-left": 989175, "gate-arrow-right": 987497, "gate-buffer": 989950, "gate-nand": 985314, "gate-nor": 985315, "gate-not": 985316, "gate-open": 987498, "gate-or": 985317, "gate-xnor": 985318, "gate-xor": 985319, "gatsby": 986691, "gauge": 983706, "gauge-empty": 985203, "gauge-full": 985204, "gauge-low": 985205, "gavel": 983707, "gender-female": 983708, "gender-male": 983709, "gender-male-female": 983710, "gender-male-female-variant": 987455, "gender-non-binary": 987456, "gender-transgender": 983711, "generator-mobile": 990346, "generator-portable": 990347, "generator-stationary": 990348, "gentoo": 985320, "gesture": 985035, "gesture-double-tap": 984892, "gesture-pinch": 985789, "gesture-spread": 985790, "gesture-swipe": 986486, "gesture-swipe-down": 984893, "gesture-swipe-horizontal": 985791, "gesture-swipe-left": 984894, "gesture-swipe-right": 984895, "gesture-swipe-up": 984896, "gesture-swipe-vertical": 985792, "gesture-tap": 984897, "gesture-tap-box": 987817, "gesture-tap-button": 987816, "gesture-tap-hold": 986487, "gesture-two-double-tap": 984898, "gesture-two-tap": 984899, "ghost": 983712, "ghost-off": 985589, "ghost-off-outline": 988764, "ghost-outline": 988765, "gift": 986692, "gift-off": 988911, "gift-off-outline": 988912, "gift-open": 988913, "gift-open-outline": 988914, "gift-outline": 983713, "git": 983714, "github": 983716, "gitlab": 986016, "glass-cocktail": 983894, "glass-cocktail-off": 988646, "glass-flute": 983717, "glass-fragile": 989299, "glass-mug": 983718, "glass-mug-off": 988647, "glass-mug-variant": 987414, "glass-mug-variant-off": 988648, "glass-pint-outline": 987917, "glass-stange": 983719, "glass-tulip": 983720, "glass-wine": 985206, "glasses": 983722, "globe-light": 984687, "globe-light-outline": 987863, "globe-model": 985321, "gmail": 983723, "gnome": 983724, "go-kart": 986489, "go-kart-track": 986490, "gog": 986017, "gold": 987727, "golf": 985123, "golf-cart": 987556, "golf-tee": 987267, "gondola": 984710, "goodreads": 986491, "google": 983725, "google-ads": 986247, "google-analytics": 985036, "google-assistant": 985037, "google-cardboard": 983726, "google-chrome": 983727, "google-circles": 983728, "google-circles-communities": 983729, "google-circles-extended": 983730, "google-circles-group": 983731, "google-classroom": 983744, "google-cloud": 987638, "google-downasaur": 988002, "google-drive": 983734, "google-earth": 983735, "google-fit": 985452, "google-glass": 983736, "google-hangouts": 983753, "google-keep": 984796, "google-lens": 985590, "google-maps": 984565, "google-my-business": 987208, "google-nearby": 983737, "google-play": 983740, "google-plus": 983741, "google-podcast": 986809, "google-spreadsheet": 985591, "google-street-view": 986248, "google-translate": 983743, "gradient-horizontal": 989002, "gradient-vertical": 984736, "grain": 986492, "graph": 987209, "graph-outline": 987210, "graphql": 985207, "grass": 988432, "grave-stone": 986018, "grease-pencil": 984648, "greater-than": 985453, "greater-than-or-equal": 985454, "greenhouse": 983085, "grid": 983745, "grid-large": 984920, "grid-off": 983746, "grill": 986693, "grill-outline": 987530, "group": 983747, "guitar-acoustic": 984945, "guitar-electric": 983748, "guitar-pick": 983749, "guitar-pick-outline": 983750, "guy-fawkes-mask": 985125, "gymnastics": 989761, "hail": 985793, "hair-dryer": 987375, "hair-dryer-outline": 987376, "halloween": 986019, "hamburger": 984709, "hamburger-check": 989046, "hamburger-minus": 989047, "hamburger-off": 989048, "hamburger-plus": 989049, "hamburger-remove": 989050, "hammer": 985322, "hammer-screwdriver": 987938, "hammer-sickle": 989319, "hammer-wrench": 987939, "hand-back-left": 986694, "hand-back-left-off": 989232, "hand-back-left-off-outline": 989234, "hand-back-left-outline": 989228, "hand-back-right": 986695, "hand-back-right-off": 989233, "hand-back-right-off-outline": 989235, "hand-back-right-outline": 989229, "hand-clap": 989515, "hand-clap-off": 989762, "hand-coin": 989327, "hand-coin-outline": 989328, "hand-cycle": 990108, "hand-extended": 989366, "hand-extended-outline": 989367, "hand-front-left": 989227, "hand-front-left-outline": 989230, "hand-front-right": 985679, "hand-front-right-outline": 989231, "hand-heart": 987377, "hand-heart-outline": 988542, "hand-okay": 985680, "hand-peace": 985681, "hand-peace-variant": 985682, "hand-pointing-down": 985683, "hand-pointing-left": 985684, "hand-pointing-right": 983751, "hand-pointing-up": 985685, "hand-saw": 986696, "hand-wash": 988543, "hand-wash-outline": 988544, "hand-water": 988063, "hand-wave": 989217, "hand-wave-outline": 989218, "handball": 986963, "handcuffs": 987454, "hands-pray": 984441, "handshake": 987672, "handshake-outline": 988577, "hanger": 983752, "hard-hat": 985455, "harddisk": 983754, "harddisk-plus": 987211, "harddisk-remove": 987212, "hat-fedora": 986020, "hazard-lights": 986249, "hdmi-port": 990136, "hdr": 986493, "hdr-off": 986494, "head": 987998, "head-alert": 987960, "head-alert-outline": 987961, "head-check": 987962, "head-check-outline": 987963, "head-cog": 987964, "head-cog-outline": 987965, "head-dots-horizontal": 987966, "head-dots-horizontal-outline": 987967, "head-flash": 987968, "head-flash-outline": 987969, "head-heart": 987970, "head-heart-outline": 987971, "head-lightbulb": 987972, "head-lightbulb-outline": 987973, "head-minus": 987974, "head-minus-outline": 987975, "head-outline": 987999, "head-plus": 987976, "head-plus-outline": 987977, "head-question": 987978, "head-question-outline": 987979, "head-remove": 987980, "head-remove-outline": 987981, "head-snowflake": 987982, "head-snowflake-outline": 987983, "head-sync": 987984, "head-sync-outline": 987985, "headphones": 983755, "headphones-bluetooth": 985456, "headphones-box": 983756, "headphones-off": 985038, "headphones-settings": 983757, "headset": 983758, "headset-dock": 983759, "headset-off": 983760, "heart": 983761, "heart-box": 983762, "heart-box-outline": 983763, "heart-broken": 983764, "heart-broken-outline": 986388, "heart-circle": 985457, "heart-circle-outline": 985458, "heart-cog": 988771, "heart-cog-outline": 988772, "heart-flash": 986873, "heart-half": 984799, "heart-half-full": 984798, "heart-half-outline": 984800, "heart-minus": 988207, "heart-minus-outline": 988210, "heart-multiple": 985686, "heart-multiple-outline": 985687, "heart-off": 984921, "heart-off-outline": 988212, "heart-outline": 983765, "heart-plus": 988206, "heart-plus-outline": 988209, "heart-pulse": 984566, "heart-remove": 988208, "heart-remove-outline": 988211, "heart-search": 990349, "heart-settings": 988773, "heart-settings-outline": 988774, "heat-pump": 989763, "heat-pump-outline": 989764, "heat-wave": 989765, "heating-coil": 989871, "helicopter": 985794, "help": 983766, "help-box": 984971, "help-box-multiple": 990218, "help-box-multiple-outline": 990219, "help-box-outline": 990220, "help-circle": 983767, "help-circle-outline": 984613, "help-network": 984821, "help-network-outline": 986250, "help-rhombus": 986021, "help-rhombus-outline": 986022, "hexadecimal": 987815, "hexagon": 983768, "hexagon-multiple": 984801, "hexagon-multiple-outline": 987378, "hexagon-outline": 983769, "hexagon-slice-1": 985795, "hexagon-slice-2": 985796, "hexagon-slice-3": 985797, "hexagon-slice-4": 985798, "hexagon-slice-5": 985799, "hexagon-slice-6": 985800, "hexagram": 985801, "hexagram-outline": 985802, "high-definition": 985039, "high-definition-box": 985208, "highway": 984567, "hiking": 986495, "history": 983770, "hockey-puck": 985209, "hockey-sticks": 985210, "hololens": 983771, "home": 983772, "home-account": 985126, "home-alert": 985211, "home-alert-outline": 988624, "home-analytics": 986810, "home-assistant": 985040, "home-automation": 985041, "home-battery": 989441, "home-battery-outline": 989442, "home-circle": 985042, "home-circle-outline": 987213, "home-city": 986389, "home-city-outline": 986390, "home-clock": 989714, "home-clock-outline": 989715, "home-edit": 987481, "home-edit-outline": 987482, "home-export-outline": 987035, "home-flood": 986874, "home-floor-0": 986578, "home-floor-1": 986496, "home-floor-2": 986497, "home-floor-3": 986498, "home-floor-a": 986499, "home-floor-b": 986500, "home-floor-g": 986501, "home-floor-l": 986502, "home-floor-negative-1": 986579, "home-group": 986580, "home-group-minus": 989633, "home-group-plus": 989632, "home-group-remove": 989634, "home-heart": 985127, "home-import-outline": 987036, "home-lightbulb": 987729, "home-lightbulb-outline": 987730, "home-lightning-bolt": 989443, "home-lightning-bolt-outline": 989444, "home-lock": 985323, "home-lock-open": 985324, "home-map-marker": 984568, "home-minus": 985460, "home-minus-outline": 988117, "home-modern": 983773, "home-off": 989766, "home-off-outline": 989767, "home-outline": 984737, "home-percent": 990332, "home-percent-outline": 990333, "home-plus": 985461, "home-plus-outline": 988118, "home-remove": 987719, "home-remove-outline": 988119, "home-roof": 987435, "home-search": 988080, "home-search-outline": 988081, "home-silo": 990112, "home-silo-outline": 990113, "home-sound-in": 990255, "home-sound-in-outline": 990256, "home-sound-out": 990257, "home-sound-out-outline": 990258, "home-switch": 989076, "home-switch-outline": 989077, "home-thermometer": 986964, "home-thermometer-outline": 986965, "home-variant": 983774, "home-variant-outline": 986023, "hook": 984802, "hook-off": 984803, "hoop-house": 986710, "hops": 983775, "horizontal-rotate-clockwise": 987379, "horizontal-rotate-counterclockwise": 987380, "horse": 988607, "horse-human": 988608, "horse-variant": 988609, "horse-variant-fast": 989294, "horseshoe": 985688, "hospital": 987126, "hospital-box": 983776, "hospital-box-outline": 987127, "hospital-building": 983777, "hospital-marker": 983778, "hot-tub": 985128, "hours-12": 990356, "hours-24": 988280, "hub": 990357, "hub-outline": 990358, "hubspot": 986391, "hulu": 985129, "human": 983782, "human-baby-changing-table": 988043, "human-cane": 988545, "human-capacity-decrease": 988571, "human-capacity-increase": 988572, "human-child": 983783, "human-dolly": 989568, "human-edit": 988392, "human-female": 984649, "human-female-boy": 985689, "human-female-dance": 988617, "human-female-female": 985690, "human-female-female-child": 990350, "human-female-girl": 985691, "human-greeting": 989124, "human-greeting-proximity": 988573, "human-greeting-variant": 984650, "human-handsdown": 984651, "human-handsup": 984652, "human-male": 984653, "human-male-board": 985232, "human-male-board-poll": 985158, "human-male-boy": 985692, "human-male-child": 988044, "human-male-female": 983784, "human-male-female-child": 989219, "human-male-girl": 985693, "human-male-height": 986875, "human-male-height-variant": 986876, "human-male-male": 985694, "human-male-male-child": 990351, "human-non-binary": 989256, "human-pregnant": 984527, "human-queue": 988529, "human-scooter": 987625, "human-walker": 990065, "human-wheelchair": 988045, "human-white-cane": 989569, "humble-bundle": 984900, "hvac": 987986, "hvac-off": 988574, "hydraulic-oil-level": 987940, "hydraulic-oil-temperature": 987941, "hydro-power": 987877, "hydrogen-station": 989332, "ice-cream": 985130, "ice-cream-off": 986706, "ice-pop": 986877, "id-card": 987072, "identifier": 986878, "ideogram-cjk": 987953, "ideogram-cjk-variant": 987954, "image": 983785, "image-album": 983786, "image-area": 983787, "image-area-close": 983788, "image-auto-adjust": 987073, "image-broken": 983789, "image-broken-variant": 983790, "image-check": 989989, "image-check-outline": 989990, "image-edit": 987619, "image-edit-outline": 987620, "image-filter-black-white": 983792, "image-filter-center-focus": 983793, "image-filter-center-focus-strong": 986879, "image-filter-center-focus-strong-outline": 986880, "image-filter-center-focus-weak": 983794, "image-filter-drama": 983795, "image-filter-drama-outline": 990207, "image-filter-frames": 983796, "image-filter-hdr": 983797, "image-filter-hdr-outline": 990308, "image-filter-none": 983798, "image-filter-tilt-shift": 983799, "image-filter-vintage": 983800, "image-frame": 986697, "image-lock": 989872, "image-lock-outline": 989873, "image-marker": 989051, "image-marker-outline": 989052, "image-minus": 988185, "image-minus-outline": 990023, "image-move": 985592, "image-multiple": 983801, "image-multiple-outline": 983791, "image-off": 985131, "image-off-outline": 987601, "image-outline": 985462, "image-plus": 985212, "image-plus-outline": 990022, "image-refresh": 989694, "image-refresh-outline": 989695, "image-remove": 988184, "image-remove-outline": 990024, "image-search": 985463, "image-search-outline": 985464, "image-size-select-actual": 986253, "image-size-select-large": 986254, "image-size-select-small": 986255, "image-sync": 989696, "image-sync-outline": 989697, "image-text": 988685, "import": 983802, "inbox": 984711, "inbox-arrow-down": 983803, "inbox-arrow-down-outline": 987760, "inbox-arrow-up": 984017, "inbox-arrow-up-outline": 987761, "inbox-full": 987762, "inbox-full-outline": 987763, "inbox-multiple": 985264, "inbox-multiple-outline": 986024, "inbox-outline": 987764, "inbox-remove": 988575, "inbox-remove-outline": 988576, "incognito": 984569, "incognito-circle": 988193, "incognito-circle-off": 988194, "incognito-off": 983157, "induction": 989260, "infinity": 984804, "information": 983804, "information-box": 990309, "information-box-outline": 990310, "information-off": 989068, "information-off-outline": 989069, "information-outline": 983805, "information-slab-box": 990311, "information-slab-box-outline": 990312, "information-slab-circle": 990313, "information-slab-circle-outline": 990314, "information-slab-symbol": 990315, "information-symbol": 990316, "information-variant": 984654, "information-variant-box": 990317, "information-variant-box-outline": 990318, "information-variant-circle": 990319, "information-variant-circle-outline": 990320, "instagram": 983806, "instrument-triangle": 987214, "integrated-circuit-chip": 989459, "invert-colors": 983809, "invert-colors-off": 986698, "invoice": 990418, "invoice-arrow-left": 990419, "invoice-arrow-left-outline": 990420, "invoice-arrow-right": 990421, "invoice-arrow-right-outline": 990422, "invoice-check": 990423, "invoice-check-outline": 990424, "invoice-clock": 990425, "invoice-clock-outline": 990426, "invoice-edit": 990427, "invoice-edit-outline": 990428, "invoice-export-outline": 990429, "invoice-fast": 990430, "invoice-fast-outline": 990431, "invoice-import": 990432, "invoice-import-outline": 990433, "invoice-list": 990434, "invoice-list-outline": 990435, "invoice-minus": 990436, "invoice-minus-outline": 990437, "invoice-multiple": 990438, "invoice-multiple-outline": 990439, "invoice-outline": 990440, "invoice-plus": 990441, "invoice-plus-outline": 990442, "invoice-remove": 990443, "invoice-remove-outline": 990444, "invoice-send": 990445, "invoice-send-outline": 990446, "invoice-text": 990447, "invoice-text-arrow-left": 990448, "invoice-text-arrow-left-outline": 990449, "invoice-text-arrow-right": 990450, "invoice-text-arrow-right-outline": 990451, "invoice-text-check": 990452, "invoice-text-check-outline": 990453, "invoice-text-clock": 990454, "invoice-text-clock-outline": 990455, "invoice-text-edit": 990456, "invoice-text-edit-outline": 990457, "invoice-text-fast": 990458, "invoice-text-fast-outline": 990459, "invoice-text-minus": 990460, "invoice-text-minus-outline": 990461, "invoice-text-multiple": 990462, "invoice-text-multiple-outline": 990463, "invoice-text-outline": 990464, "invoice-text-plus": 990465, "invoice-text-plus-outline": 990466, "invoice-text-remove": 990467, "invoice-text-remove-outline": 990468, "invoice-text-send": 990469, "invoice-text-send-outline": 990470, "iobroker": 987880, "ip": 985695, "ip-network": 985696, "ip-network-outline": 986256, "ip-outline": 989570, "ipod": 986257, "iron": 989220, "iron-board": 989240, "iron-outline": 989221, "island": 987215, "island-variant": 990406, "iv-bag": 987321, "jabber": 986581, "jeepney": 983810, "jellyfish": 986881, "jellyfish-outline": 986882, "jira": 983811, "jquery": 985213, "jsfiddle": 983812, "jump-rope": 987903, "kabaddi": 986503, "kangaroo": 988504, "karate": 985132, "kayaking": 985263, "keg": 983813, "kettle": 984570, "kettle-alert": 987927, "kettle-alert-outline": 987928, "kettle-off": 987931, "kettle-off-outline": 987932, "kettle-outline": 986966, "kettle-pour-over": 988988, "kettle-steam": 987929, "kettle-steam-outline": 987930, "kettlebell": 987904, "key": 983814, "key-alert": 989571, "key-alert-outline": 989572, "key-arrow-right": 987922, "key-chain": 988532, "key-chain-variant": 988533, "key-change": 983815, "key-link": 987551, "key-minus": 983816, "key-outline": 986582, "key-plus": 983817, "key-remove": 983818, "key-star": 987550, "key-variant": 983819, "key-wireless": 987074, "keyboard": 983820, "keyboard-backspace": 983821, "keyboard-caps": 983822, "keyboard-close": 983823, "keyboard-close-outline": 990208, "keyboard-esc": 987831, "keyboard-f1": 987819, "keyboard-f10": 987828, "keyboard-f11": 987829, "keyboard-f12": 987830, "keyboard-f2": 987820, "keyboard-f3": 987821, "keyboard-f4": 987822, "keyboard-f5": 987823, "keyboard-f6": 987824, "keyboard-f7": 987825, "keyboard-f8": 987826, "keyboard-f9": 987827, "keyboard-off": 983824, "keyboard-off-outline": 986699, "keyboard-outline": 985467, "keyboard-return": 983825, "keyboard-settings": 985593, "keyboard-settings-outline": 985594, "keyboard-space": 987216, "keyboard-tab": 983826, "keyboard-tab-reverse": 983845, "keyboard-variant": 983827, "khanda": 987389, "kickstarter": 984901, "kite": 989573, "kite-outline": 989574, "kitesurfing": 988996, "klingon": 987995, "knife": 985595, "knife-military": 985596, "knob": 990102, "koala": 988991, "kodi": 983828, "kubernetes": 987390, "label": 983829, "label-multiple": 988021, "label-multiple-outline": 988022, "label-off": 985803, "label-off-outline": 985804, "label-outline": 983830, "label-percent": 987882, "label-percent-outline": 987883, "label-variant": 985805, "label-variant-outline": 985806, "ladder": 988578, "ladybug": 985133, "lambda": 984615, "lamp": 984757, "lamp-outline": 989136, "lamps": 988534, "lamps-outline": 989137, "lan": 983831, "lan-check": 987818, "lan-connect": 983832, "lan-disconnect": 983833, "lan-pending": 983834, "land-fields": 989874, "land-plots": 989875, "land-plots-circle": 989876, "land-plots-circle-variant": 989877, "land-plots-marker": 990301, "land-rows-horizontal": 989878, "land-rows-vertical": 989879, "landslide": 989768, "landslide-outline": 989769, "language-c": 984689, "language-cpp": 984690, "language-csharp": 983835, "language-css3": 983836, "language-fortran": 987674, "language-go": 985043, "language-haskell": 986258, "language-html5": 983837, "language-java": 985911, "language-javascript": 983838, "language-kotlin": 987673, "language-lua": 985265, "language-markdown": 983892, "language-markdown-outline": 986971, "language-php": 983839, "language-python": 983840, "language-r": 985044, "language-ruby": 986413, "language-ruby-on-rails": 985807, "language-rust": 988695, "language-swift": 984805, "language-typescript": 984806, "language-xaml": 984691, "laptop": 983842, "laptop-account": 989770, "laptop-off": 984807, "laravel": 985808, "laser-pointer": 988292, "lasso": 986883, "lastpass": 984134, "latitude": 986967, "launch": 983847, "lava-lamp": 985045, "layers": 983848, "layers-edit": 989330, "layers-minus": 986700, "layers-off": 983849, "layers-off-outline": 985597, "layers-outline": 985598, "layers-plus": 986701, "layers-remove": 986702, "layers-search": 987654, "layers-search-outline": 987655, "layers-triple": 986968, "layers-triple-outline": 986969, "lead-pencil": 984655, "leaf": 983850, "leaf-circle": 989445, "leaf-circle-outline": 989446, "leaf-maple": 986259, "leaf-maple-off": 987866, "leaf-off": 987865, "leak": 986583, "leak-off": 986584, "lectern": 989936, "led-off": 983851, "led-on": 983852, "led-outline": 983853, "led-strip": 985046, "led-strip-variant": 987217, "led-strip-variant-off": 989771, "led-variant-off": 983854, "led-variant-on": 983855, "led-variant-outline": 983856, "leek": 987517, "less-than": 985468, "less-than-or-equal": 985469, "library": 983857, "library-outline": 989730, "library-shelves": 986025, "license": 987075, "lifebuoy": 985214, "light-flood-down": 989575, "light-flood-up": 989576, "light-recessed": 989083, "light-switch": 985470, "light-switch-off": 989732, "lightbulb": 983861, "lightbulb-alert": 989665, "lightbulb-alert-outline": 989666, "lightbulb-auto": 989184, "lightbulb-auto-outline": 989185, "lightbulb-cfl": 987656, "lightbulb-cfl-off": 987657, "lightbulb-cfl-spiral": 987765, "lightbulb-cfl-spiral-off": 987843, "lightbulb-fluorescent-tube": 989188, "lightbulb-fluorescent-tube-outline": 989189, "lightbulb-group": 987731, "lightbulb-group-off": 987853, "lightbulb-group-off-outline": 987854, "lightbulb-group-outline": 987732, "lightbulb-multiple": 987733, "lightbulb-multiple-off": 987855, "lightbulb-multiple-off-outline": 987856, "lightbulb-multiple-outline": 987734, "lightbulb-night": 989772, "lightbulb-night-outline": 989773, "lightbulb-off": 986703, "lightbulb-off-outline": 986704, "lightbulb-on": 984808, "lightbulb-on-10": 989774, "lightbulb-on-20": 989775, "lightbulb-on-30": 989776, "lightbulb-on-40": 989777, "lightbulb-on-50": 989778, "lightbulb-on-60": 989779, "lightbulb-on-70": 989780, "lightbulb-on-80": 989781, "lightbulb-on-90": 989782, "lightbulb-on-outline": 984809, "lightbulb-outline": 983862, "lightbulb-question": 989667, "lightbulb-question-outline": 989668, "lightbulb-spot": 989172, "lightbulb-spot-off": 989173, "lightbulb-variant": 989186, "lightbulb-variant-outline": 989187, "lighthouse": 985599, "lighthouse-on": 985600, "lightning-bolt": 988171, "lightning-bolt-circle": 985120, "lightning-bolt-outline": 988172, "line-scan": 984612, "lingerie": 988278, "link": 983863, "link-box": 986394, "link-box-outline": 986395, "link-box-variant": 986396, "link-box-variant-outline": 986397, "link-circle": 990380, "link-circle-outline": 990381, "link-edit": 990382, "link-lock": 987322, "link-off": 983864, "link-plus": 986260, "link-variant": 983865, "link-variant-minus": 987391, "link-variant-off": 983866, "link-variant-plus": 987392, "link-variant-remove": 987393, "linkedin": 983867, "linux": 983869, "linux-mint": 985325, "lipstick": 988085, "liquid-spot": 989222, "liquor": 989470, "list-box": 990075, "list-box-outline": 990076, "list-status": 988587, "litecoin": 985697, "loading": 984946, "location-enter": 987076, "location-exit": 987077, "lock": 983870, "lock-alert": 985326, "lock-alert-outline": 988625, "lock-check": 988058, "lock-check-outline": 988840, "lock-clock": 985471, "lock-minus": 988841, "lock-minus-outline": 988842, "lock-off": 988785, "lock-off-outline": 988786, "lock-open": 983871, "lock-open-alert": 988059, "lock-open-alert-outline": 988626, "lock-open-check": 988060, "lock-open-check-outline": 988843, "lock-open-minus": 988844, "lock-open-minus-outline": 988845, "lock-open-outline": 983872, "lock-open-plus": 988846, "lock-open-plus-outline": 988847, "lock-open-remove": 988848, "lock-open-remove-outline": 988849, "lock-open-variant": 987078, "lock-open-variant-outline": 987079, "lock-outline": 983873, "lock-pattern": 984810, "lock-percent": 990226, "lock-percent-open": 990227, "lock-percent-open-outline": 990228, "lock-percent-open-variant": 990229, "lock-percent-open-variant-outline": 990230, "lock-percent-outline": 990231, "lock-plus": 984571, "lock-plus-outline": 988850, "lock-question": 985327, "lock-remove": 988851, "lock-remove-outline": 988852, "lock-reset": 984947, "lock-smart": 985266, "locker": 985047, "locker-multiple": 985048, "login": 983874, "login-variant": 984572, "logout": 983875, "logout-variant": 984573, "longitude": 986970, "looks": 983876, "lotion": 988546, "lotion-outline": 988547, "lotion-plus": 988548, "lotion-plus-outline": 988549, "loupe": 983877, "lumx": 983878, "lungs": 987268, "mace": 989251, "magazine-pistol": 983844, "magazine-rifle": 983843, "magic-staff": 989252, "magnet": 983879, "magnet-on": 983880, "magnify": 983881, "magnify-close": 985472, "magnify-expand": 989300, "magnify-minus": 983882, "magnify-minus-cursor": 985698, "magnify-minus-outline": 984812, "magnify-plus": 983883, "magnify-plus-cursor": 985699, "magnify-plus-outline": 984813, "magnify-remove-cursor": 987660, "magnify-remove-outline": 987661, "magnify-scan": 987766, "mail": 986811, "mailbox": 984814, "mailbox-open": 986504, "mailbox-open-outline": 986505, "mailbox-open-up": 986506, "mailbox-open-up-outline": 986507, "mailbox-outline": 986508, "mailbox-up": 986509, "mailbox-up-outline": 986510, "manjaro": 988682, "map": 983885, "map-check": 986812, "map-check-outline": 986813, "map-clock": 986398, "map-clock-outline": 986399, "map-legend": 985601, "map-marker": 983886, "map-marker-account": 989411, "map-marker-account-outline": 989412, "map-marker-alert": 986885, "map-marker-alert-outline": 986886, "map-marker-check": 986261, "map-marker-check-outline": 987899, "map-marker-circle": 983887, "map-marker-distance": 985328, "map-marker-down": 987394, "map-marker-left": 987867, "map-marker-left-outline": 987869, "map-marker-minus": 984656, "map-marker-minus-outline": 987897, "map-marker-multiple": 983888, "map-marker-multiple-outline": 987767, "map-marker-off": 983889, "map-marker-off-outline": 987901, "map-marker-outline": 985049, "map-marker-path": 986400, "map-marker-plus": 984657, "map-marker-plus-outline": 987896, "map-marker-question": 986887, "map-marker-question-outline": 986888, "map-marker-radius": 983890, "map-marker-radius-outline": 987900, "map-marker-remove": 986889, "map-marker-remove-outline": 987898, "map-marker-remove-variant": 986890, "map-marker-right": 987868, "map-marker-right-outline": 987870, "map-marker-star": 988680, "map-marker-star-outline": 988681, "map-marker-up": 987395, "map-minus": 985473, "map-outline": 985474, "map-plus": 985475, "map-search": 985476, "map-search-outline": 985477, "mapbox": 986026, "margin": 983891, "marker": 984658, "marker-cancel": 986585, "marker-check": 983893, "mastodon": 985809, "material-design": 985478, "material-ui": 983895, "math-compass": 983896, "math-cos": 986262, "math-integral": 987080, "math-integral-box": 987081, "math-log": 987269, "math-norm": 987082, "math-norm-box": 987083, "math-sin": 986263, "math-tan": 986264, "matrix": 984616, "medal": 985479, "medal-outline": 987942, "medical-bag": 984815, "medical-cotton-swab": 989880, "medication": 989972, "medication-outline": 989973, "meditation": 987515, "memory": 983899, "memory-arrow-down": 990374, "menorah": 989140, "menorah-fire": 989141, "menu": 983900, "menu-close": 990352, "menu-down": 983901, "menu-down-outline": 984758, "menu-left": 983902, "menu-left-outline": 985602, "menu-open": 986027, "menu-right": 983903, "menu-right-outline": 985603, "menu-swap": 985700, "menu-swap-outline": 985701, "menu-up": 983904, "menu-up-outline": 984759, "merge": 986972, "message": 983905, "message-alert": 983906, "message-alert-outline": 985604, "message-arrow-left": 987890, "message-arrow-left-outline": 987891, "message-arrow-right": 987892, "message-arrow-right-outline": 987893, "message-badge": 989505, "message-badge-outline": 989506, "message-bookmark": 988588, "message-bookmark-outline": 988589, "message-bulleted": 984738, "message-bulleted-off": 984739, "message-check": 990090, "message-check-outline": 990091, "message-cog": 984817, "message-cog-outline": 987506, "message-draw": 983907, "message-fast": 989644, "message-fast-outline": 989645, "message-flash": 988585, "message-flash-outline": 988586, "message-image": 983908, "message-image-outline": 987500, "message-lock": 987084, "message-lock-outline": 987501, "message-minus": 987502, "message-minus-outline": 987503, "message-off": 988749, "message-off-outline": 988750, "message-outline": 983909, "message-plus": 984659, "message-plus-outline": 987323, "message-processing": 983910, "message-processing-outline": 987504, "message-question": 988986, "message-question-outline": 988987, "message-reply": 983911, "message-reply-outline": 988989, "message-reply-text": 983912, "message-reply-text-outline": 988990, "message-settings": 984816, "message-settings-outline": 987505, "message-star": 984730, "message-star-outline": 987728, "message-text": 983913, "message-text-clock": 987507, "message-text-clock-outline": 987508, "message-text-fast": 989646, "message-text-fast-outline": 989647, "message-text-lock": 987085, "message-text-lock-outline": 987509, "message-text-outline": 983914, "message-video": 983915, "meteor": 984617, "meter-electric": 989783, "meter-electric-outline": 989784, "meter-gas": 989785, "meter-gas-outline": 989786, "metronome": 985050, "metronome-tick": 985051, "micro-sd": 985052, "microphone": 983916, "microphone-message": 984330, "microphone-message-off": 984331, "microphone-minus": 985267, "microphone-off": 983917, "microphone-outline": 983918, "microphone-plus": 985268, "microphone-question": 989577, "microphone-question-outline": 989578, "microphone-settings": 983919, "microphone-variant": 983920, "microphone-variant-off": 983921, "microscope": 984660, "microsoft": 983922, "microsoft-access": 988046, "microsoft-azure": 985093, "microsoft-azure-devops": 987093, "microsoft-bing": 983204, "microsoft-dynamics-365": 985480, "microsoft-edge": 983529, "microsoft-excel": 988047, "microsoft-internet-explorer": 983808, "microsoft-office": 984006, "microsoft-onedrive": 984010, "microsoft-onenote": 984903, "microsoft-outlook": 986402, "microsoft-powerpoint": 988048, "microsoft-sharepoint": 988049, "microsoft-teams": 983739, "microsoft-visual-studio": 984592, "microsoft-visual-studio-code": 985630, "microsoft-windows": 984499, "microsoft-windows-classic": 985633, "microsoft-word": 988050, "microsoft-xbox": 984505, "microsoft-xbox-controller": 984506, "microsoft-xbox-controller-battery-alert": 984907, "microsoft-xbox-controller-battery-charging": 985634, "microsoft-xbox-controller-battery-empty": 984908, "microsoft-xbox-controller-battery-full": 984909, "microsoft-xbox-controller-battery-low": 984910, "microsoft-xbox-controller-battery-medium": 984911, "microsoft-xbox-controller-battery-unknown": 984912, "microsoft-xbox-controller-menu": 986735, "microsoft-xbox-controller-off": 984507, "microsoft-xbox-controller-view": 986736, "microwave": 986265, "microwave-off": 988195, "middleware": 986973, "middleware-outline": 986974, "midi": 985329, "midi-port": 985330, "mine": 986586, "minecraft": 983923, "mini-sd": 985605, "minidisc": 985606, "minus": 983924, "minus-box": 983925, "minus-box-multiple": 987457, "minus-box-multiple-outline": 987458, "minus-box-outline": 984818, "minus-circle": 983926, "minus-circle-multiple": 983898, "minus-circle-multiple-outline": 985811, "minus-circle-off": 988249, "minus-circle-off-outline": 988250, "minus-circle-outline": 983927, "minus-network": 983928, "minus-network-outline": 986266, "minus-thick": 988729, "mirror": 987645, "mirror-rectangle": 989087, "mirror-variant": 989088, "mixed-martial-arts": 986511, "mixed-reality": 985215, "molecule": 986028, "molecule-co": 987902, "molecule-co2": 985060, "monitor": 983929, "monitor-account": 989787, "monitor-arrow-down": 989648, "monitor-arrow-down-variant": 989649, "monitor-cellphone": 985481, "monitor-cellphone-star": 985482, "monitor-dashboard": 985607, "monitor-edit": 987846, "monitor-eye": 988084, "monitor-lock": 986587, "monitor-multiple": 983930, "monitor-off": 986512, "monitor-screenshot": 986705, "monitor-share": 988291, "monitor-shimmer": 987396, "monitor-small": 989302, "monitor-speaker": 986975, "monitor-speaker-off": 986976, "monitor-star": 986588, "monitor-vertical": 990259, "moon-first-quarter": 986977, "moon-full": 986978, "moon-last-quarter": 986979, "moon-new": 986980, "moon-waning-crescent": 986981, "moon-waning-gibbous": 986982, "moon-waxing-crescent": 986983, "moon-waxing-gibbous": 986984, "moped": 987270, "moped-electric": 988599, "moped-electric-outline": 988600, "moped-outline": 988601, "more": 983931, "mortar-pestle": 989000, "mortar-pestle-plus": 984049, "mosque": 986437, "mosque-outline": 989223, "mother-heart": 987924, "mother-nurse": 986401, "motion": 988594, "motion-outline": 988595, "motion-pause": 988560, "motion-pause-outline": 988562, "motion-play": 988559, "motion-play-outline": 988561, "motion-sensor": 986513, "motion-sensor-off": 988213, "motorbike": 983932, "motorbike-electric": 988602, "motorbike-off": 989974, "mouse": 983933, "mouse-bluetooth": 985483, "mouse-left-click": 990471, "mouse-left-click-outline": 990472, "mouse-move-down": 988496, "mouse-move-up": 988497, "mouse-move-vertical": 988498, "mouse-off": 983934, "mouse-outline": 990473, "mouse-right-click": 990474, "mouse-right-click-outline": 990475, "mouse-scroll-wheel": 990476, "mouse-variant": 983935, "mouse-variant-off": 983936, "move-resize": 984661, "move-resize-variant": 984662, "movie": 983937, "movie-check": 988915, "movie-check-outline": 988916, "movie-cog": 988917, "movie-cog-outline": 988918, "movie-edit": 987426, "movie-edit-outline": 987427, "movie-filter": 987428, "movie-filter-outline": 987429, "movie-minus": 988919, "movie-minus-outline": 988920, "movie-off": 988921, "movie-off-outline": 988922, "movie-open": 987086, "movie-open-check": 988923, "movie-open-check-outline": 988924, "movie-open-cog": 988925, "movie-open-cog-outline": 988926, "movie-open-edit": 988927, "movie-open-edit-outline": 988928, "movie-open-minus": 988929, "movie-open-minus-outline": 988930, "movie-open-off": 988931, "movie-open-off-outline": 988932, "movie-open-outline": 987087, "movie-open-play": 988933, "movie-open-play-outline": 988934, "movie-open-plus": 988935, "movie-open-plus-outline": 988936, "movie-open-remove": 988937, "movie-open-remove-outline": 988938, "movie-open-settings": 988939, "movie-open-settings-outline": 988940, "movie-open-star": 988941, "movie-open-star-outline": 988942, "movie-outline": 986589, "movie-play": 988943, "movie-play-outline": 988944, "movie-plus": 988945, "movie-plus-outline": 988946, "movie-remove": 988947, "movie-remove-outline": 988948, "movie-roll": 985054, "movie-search": 987602, "movie-search-outline": 987603, "movie-settings": 988949, "movie-settings-outline": 988950, "movie-star": 988951, "movie-star-outline": 988952, "mower": 988783, "mower-bag": 988784, "mower-bag-on": 990048, "mower-on": 990047, "muffin": 985484, "multicast": 989331, "multimedia": 990103, "multiplication": 983938, "multiplication-box": 983939, "mushroom": 985055, "mushroom-off": 988154, "mushroom-off-outline": 988155, "mushroom-outline": 985056, "music": 984922, "music-accidental-double-flat": 986985, "music-accidental-double-sharp": 986986, "music-accidental-flat": 986987, "music-accidental-natural": 986988, "music-accidental-sharp": 986989, "music-box": 983940, "music-box-multiple": 983859, "music-box-multiple-outline": 986884, "music-box-outline": 983941, "music-circle": 983942, "music-circle-outline": 985812, "music-clef-alto": 986990, "music-clef-bass": 986991, "music-clef-treble": 986992, "music-note": 983943, "music-note-bluetooth": 984574, "music-note-bluetooth-off": 984575, "music-note-eighth": 983944, "music-note-eighth-dotted": 986993, "music-note-half": 983945, "music-note-half-dotted": 986994, "music-note-minus": 990089, "music-note-off": 983946, "music-note-off-outline": 986995, "music-note-outline": 986996, "music-note-plus": 986590, "music-note-quarter": 983947, "music-note-quarter-dotted": 986997, "music-note-sixteenth": 983948, "music-note-sixteenth-dotted": 986998, "music-note-whole": 983949, "music-note-whole-dotted": 986999, "music-off": 984923, "music-rest-eighth": 987000, "music-rest-half": 987001, "music-rest-quarter": 987002, "music-rest-sixteenth": 987003, "music-rest-whole": 987004, "mustache": 988638, "nail": 986591, "nas": 985331, "nativescript": 985216, "nature": 983950, "nature-outline": 990321, "nature-people": 983951, "nature-people-outline": 990322, "navigation": 983952, "navigation-outline": 988679, "navigation-variant": 989424, "navigation-variant-outline": 989425, "near-me": 984525, "necklace": 986891, "needle": 983953, "needle-off": 989650, "netflix": 984902, "network": 984819, "network-off": 986267, "network-off-outline": 986268, "network-outline": 986269, "network-pos": 989899, "network-strength-1": 985332, "network-strength-1-alert": 985333, "network-strength-2": 985334, "network-strength-2-alert": 985335, "network-strength-3": 985336, "network-strength-3-alert": 985337, "network-strength-4": 985338, "network-strength-4-alert": 985339, "network-strength-4-cog": 989466, "network-strength-off": 985340, "network-strength-off-outline": 985341, "network-strength-outline": 985342, "new-box": 983956, "newspaper": 983957, "newspaper-check": 989507, "newspaper-minus": 986892, "newspaper-plus": 986893, "newspaper-remove": 989508, "newspaper-variant": 987137, "newspaper-variant-multiple": 987138, "newspaper-variant-multiple-outline": 987139, "newspaper-variant-outline": 987140, "nfc": 983958, "nfc-search-variant": 986707, "nfc-tap": 983959, "nfc-variant": 983960, "nfc-variant-off": 986708, "ninja": 984948, "nintendo-game-boy": 988051, "nintendo-switch": 985057, "nintendo-wii": 984491, "nintendo-wiiu": 984877, "nix": 987397, "nodejs": 983961, "noodles": 987518, "not-equal": 985485, "not-equal-variant": 985486, "note": 983962, "note-alert": 989053, "note-alert-outline": 989054, "note-check": 989055, "note-check-outline": 989056, "note-edit": 989057, "note-edit-outline": 989058, "note-minus": 988751, "note-minus-outline": 988752, "note-multiple": 984760, "note-multiple-outline": 984761, "note-off": 989059, "note-off-outline": 989060, "note-outline": 983963, "note-plus": 983964, "note-plus-outline": 983965, "note-remove": 988753, "note-remove-outline": 988754, "note-search": 988755, "note-search-outline": 988756, "note-text": 983966, "note-text-outline": 987607, "notebook": 985134, "notebook-check": 988405, "notebook-check-outline": 988406, "notebook-edit": 988391, "notebook-edit-outline": 988393, "notebook-heart": 989707, "notebook-heart-outline": 989708, "notebook-minus": 988688, "notebook-minus-outline": 988689, "notebook-multiple": 986709, "notebook-outline": 986815, "notebook-plus": 988690, "notebook-plus-outline": 988691, "notebook-remove": 988692, "notebook-remove-outline": 988693, "notification-clear-all": 983967, "npm": 984823, "nuke": 984740, "null": 985058, "numeric": 983968, "numeric-0": 985913, "numeric-0-box": 983969, "numeric-0-box-multiple": 986894, "numeric-0-box-multiple-outline": 983970, "numeric-0-box-outline": 983971, "numeric-0-circle": 986270, "numeric-0-circle-outline": 986271, "numeric-1": 985914, "numeric-1-box": 983972, "numeric-1-box-multiple": 986895, "numeric-1-box-multiple-outline": 983973, "numeric-1-box-outline": 983974, "numeric-1-circle": 986272, "numeric-1-circle-outline": 986273, "numeric-10": 987113, "numeric-10-box": 987005, "numeric-10-box-multiple": 987114, "numeric-10-box-multiple-outline": 987115, "numeric-10-box-outline": 987006, "numeric-10-circle": 987116, "numeric-10-circle-outline": 987117, "numeric-2": 985915, "numeric-2-box": 983975, "numeric-2-box-multiple": 986896, "numeric-2-box-multiple-outline": 983976, "numeric-2-box-outline": 983977, "numeric-2-circle": 986274, "numeric-2-circle-outline": 986275, "numeric-3": 985916, "numeric-3-box": 983978, "numeric-3-box-multiple": 986897, "numeric-3-box-multiple-outline": 983979, "numeric-3-box-outline": 983980, "numeric-3-circle": 986276, "numeric-3-circle-outline": 986277, "numeric-4": 985917, "numeric-4-box": 983981, "numeric-4-box-multiple": 986898, "numeric-4-box-multiple-outline": 983986, "numeric-4-box-outline": 983982, "numeric-4-circle": 986278, "numeric-4-circle-outline": 986279, "numeric-5": 985918, "numeric-5-box": 983985, "numeric-5-box-multiple": 986899, "numeric-5-box-multiple-outline": 983983, "numeric-5-box-outline": 983984, "numeric-5-circle": 986280, "numeric-5-circle-outline": 986281, "numeric-6": 985919, "numeric-6-box": 983987, "numeric-6-box-multiple": 986900, "numeric-6-box-multiple-outline": 983988, "numeric-6-box-outline": 983989, "numeric-6-circle": 986282, "numeric-6-circle-outline": 986283, "numeric-7": 985920, "numeric-7-box": 983990, "numeric-7-box-multiple": 986901, "numeric-7-box-multiple-outline": 983991, "numeric-7-box-outline": 983992, "numeric-7-circle": 986284, "numeric-7-circle-outline": 986285, "numeric-8": 985921, "numeric-8-box": 983993, "numeric-8-box-multiple": 986902, "numeric-8-box-multiple-outline": 983994, "numeric-8-box-outline": 983995, "numeric-8-circle": 986286, "numeric-8-circle-outline": 986287, "numeric-9": 985922, "numeric-9-box": 983996, "numeric-9-box-multiple": 986903, "numeric-9-box-multiple-outline": 983997, "numeric-9-box-outline": 983998, "numeric-9-circle": 986288, "numeric-9-circle-outline": 986289, "numeric-9-plus": 987118, "numeric-9-plus-box": 983999, "numeric-9-plus-box-multiple": 986904, "numeric-9-plus-box-multiple-outline": 984000, "numeric-9-plus-box-outline": 984001, "numeric-9-plus-circle": 986290, "numeric-9-plus-circle-outline": 986291, "numeric-negative-1": 987218, "numeric-off": 989651, "numeric-positive-1": 988619, "nut": 984824, "nutrition": 984002, "nuxt": 987398, "oar": 984700, "ocarina": 986592, "oci": 987881, "ocr": 987450, "octagon": 984003, "octagon-outline": 984004, "octagram": 984825, "octagram-edit": 990260, "octagram-edit-outline": 990261, "octagram-minus": 990262, "octagram-minus-outline": 990263, "octagram-outline": 984949, "octagram-plus": 990264, "octagram-plus-outline": 990265, "octahedron": 989520, "octahedron-off": 989521, "odnoklassniki": 984005, "offer": 987675, "office-building": 985489, "office-building-cog": 989513, "office-building-cog-outline": 989514, "office-building-marker": 988448, "office-building-marker-outline": 988449, "office-building-minus": 990122, "office-building-minus-outline": 990123, "office-building-outline": 988447, "office-building-plus": 990120, "office-building-plus-outline": 990121, "office-building-remove": 990124, "office-building-remove-outline": 990125, "oil": 984007, "oil-lamp": 986905, "oil-level": 987219, "oil-temperature": 987128, "om": 985459, "omega": 984009, "one-up": 986029, "onepassword": 985217, "opacity": 984524, "open-in-app": 984011, "open-in-new": 984012, "open-source-initiative": 986030, "openid": 984013, "opera": 984014, "orbit": 983064, "orbit-variant": 988635, "order-alphabetical-ascending": 983565, "order-alphabetical-descending": 986375, "order-bool-ascending": 983742, "order-bool-ascending-variant": 985487, "order-bool-descending": 988036, "order-bool-descending-variant": 985488, "order-numeric-ascending": 984389, "order-numeric-descending": 984390, "origin": 985923, "ornament": 984015, "ornament-variant": 984016, "outdoor-lamp": 987220, "overscan": 987141, "owl": 984018, "pac-man": 986031, "package": 984019, "package-check": 990033, "package-down": 984020, "package-up": 984021, "package-variant": 984022, "package-variant-closed": 984023, "package-variant-closed-check": 990034, "package-variant-closed-minus": 989652, "package-variant-closed-plus": 989653, "package-variant-closed-remove": 989654, "package-variant-minus": 989655, "package-variant-plus": 989656, "package-variant-remove": 989657, "page-first": 984576, "page-last": 984577, "page-layout-body": 984826, "page-layout-footer": 984827, "page-layout-header": 984828, "page-layout-header-footer": 987007, "page-layout-sidebar-left": 984829, "page-layout-sidebar-right": 984830, "page-next": 986032, "page-next-outline": 986033, "page-previous": 986034, "page-previous-outline": 986035, "pail": 988183, "pail-minus": 988215, "pail-minus-outline": 988220, "pail-off": 988217, "pail-off-outline": 988222, "pail-outline": 988218, "pail-plus": 988214, "pail-plus-outline": 988219, "pail-remove": 988216, "pail-remove-outline": 988221, "palette": 984024, "palette-advanced": 984025, "palette-outline": 986636, "palette-swatch": 985269, "palette-swatch-outline": 987996, "palette-swatch-variant": 989530, "palm-tree": 987221, "pan": 986036, "pan-bottom-left": 986037, "pan-bottom-right": 986038, "pan-down": 986039, "pan-horizontal": 986040, "pan-left": 986041, "pan-right": 986042, "pan-top-left": 986043, "pan-top-right": 986044, "pan-up": 986045, "pan-vertical": 986046, "panda": 984026, "pandora": 984027, "panorama": 984028, "panorama-fisheye": 984029, "panorama-horizontal": 989480, "panorama-horizontal-outline": 984030, "panorama-outline": 989580, "panorama-sphere": 989581, "panorama-sphere-outline": 989582, "panorama-variant": 989583, "panorama-variant-outline": 989584, "panorama-vertical": 989481, "panorama-vertical-outline": 984031, "panorama-wide-angle": 989535, "panorama-wide-angle-outline": 984032, "paper-cut-vertical": 984033, "paper-roll": 987479, "paper-roll-outline": 987480, "paperclip": 984034, "paperclip-check": 989894, "paperclip-lock": 989658, "paperclip-minus": 989895, "paperclip-off": 989896, "paperclip-plus": 989897, "paperclip-remove": 989898, "parachute": 986292, "parachute-outline": 986293, "paragliding": 988997, "parking": 984035, "party-popper": 987222, "passport": 985059, "passport-alert": 990392, "passport-biometric": 986593, "passport-cancel": 990393, "passport-check": 990394, "passport-minus": 990395, "passport-plus": 990396, "passport-remove": 990397, "pasta": 987488, "patio-heater": 987008, "patreon": 985218, "pause": 984036, "pause-box": 983228, "pause-box-outline": 990074, "pause-circle": 984037, "pause-circle-outline": 984038, "pause-octagon": 984039, "pause-octagon-outline": 984040, "paw": 984041, "paw-off": 984663, "paw-off-outline": 988790, "paw-outline": 988789, "peace": 985220, "peanut": 987132, "peanut-off": 987133, "peanut-off-outline": 987135, "peanut-outline": 987134, "pen": 984042, "pen-lock": 986594, "pen-minus": 986595, "pen-off": 986596, "pen-plus": 986597, "pen-remove": 986598, "pencil": 984043, "pencil-box": 984044, "pencil-box-multiple": 987460, "pencil-box-multiple-outline": 987461, "pencil-box-outline": 984045, "pencil-circle": 984831, "pencil-circle-outline": 984950, "pencil-lock": 984046, "pencil-lock-outline": 986599, "pencil-minus": 986600, "pencil-minus-outline": 986601, "pencil-off": 984047, "pencil-off-outline": 986602, "pencil-outline": 986294, "pencil-plus": 986603, "pencil-plus-outline": 986604, "pencil-remove": 986605, "pencil-remove-outline": 986606, "pencil-ruler": 987987, "pencil-ruler-outline": 990225, "penguin": 986816, "pentagon": 984833, "pentagon-outline": 984832, "pentagram": 988775, "percent": 984048, "percent-box": 989698, "percent-box-outline": 989699, "percent-circle": 989700, "percent-circle-outline": 989701, "percent-outline": 987768, "periodic-table": 985270, "perspective-less": 986403, "perspective-more": 986404, "ph": 989125, "phone": 984050, "phone-alert": 986906, "phone-alert-outline": 987534, "phone-bluetooth": 984051, "phone-bluetooth-outline": 987535, "phone-cancel": 987324, "phone-cancel-outline": 987536, "phone-check": 987561, "phone-check-outline": 987562, "phone-classic": 984578, "phone-classic-off": 987769, "phone-clock": 989659, "phone-dial": 988505, "phone-dial-outline": 988506, "phone-forward": 984052, "phone-forward-outline": 987537, "phone-hangup": 984053, "phone-hangup-outline": 987538, "phone-in-talk": 984054, "phone-in-talk-outline": 987522, "phone-incoming": 984055, "phone-incoming-outgoing": 990015, "phone-incoming-outgoing-outline": 990016, "phone-incoming-outline": 987539, "phone-lock": 984056, "phone-lock-outline": 987540, "phone-log": 984057, "phone-log-outline": 987541, "phone-message": 987542, "phone-message-outline": 987543, "phone-minus": 984664, "phone-minus-outline": 987544, "phone-missed": 984058, "phone-missed-outline": 987557, "phone-off": 986607, "phone-off-outline": 987558, "phone-outgoing": 984059, "phone-outgoing-outline": 987545, "phone-outline": 986608, "phone-paused": 984060, "phone-paused-outline": 987546, "phone-plus": 984665, "phone-plus-outline": 987547, "phone-refresh": 989587, "phone-refresh-outline": 989588, "phone-remove": 988463, "phone-remove-outline": 988464, "phone-return": 985135, "phone-return-outline": 987548, "phone-ring": 987563, "phone-ring-outline": 987564, "phone-rotate-landscape": 985221, "phone-rotate-portrait": 985222, "phone-settings": 984061, "phone-settings-outline": 987549, "phone-sync": 989589, "phone-sync-outline": 989590, "phone-voip": 984062, "pi": 984063, "pi-box": 984064, "pi-hole": 986609, "piano": 984701, "piano-off": 984728, "pickaxe": 985271, "picture-in-picture-bottom-right": 986711, "picture-in-picture-bottom-right-outline": 986712, "picture-in-picture-top-right": 986713, "picture-in-picture-top-right-outline": 986714, "pier": 985223, "pier-crane": 985224, "pig": 984065, "pig-variant": 987142, "pig-variant-outline": 988792, "piggy-bank": 987143, "piggy-bank-outline": 988793, "pill": 984066, "pill-multiple": 990028, "pill-off": 989788, "pillar": 984834, "pin": 984067, "pin-off": 984068, "pin-off-outline": 985392, "pin-outline": 985393, "pine-tree": 984069, "pine-tree-box": 984070, "pine-tree-fire": 988186, "pine-tree-variant": 990323, "pine-tree-variant-outline": 990324, "pinterest": 984071, "pinwheel": 985813, "pinwheel-outline": 985814, "pipe": 985061, "pipe-disconnected": 985062, "pipe-leak": 985225, "pipe-valve": 989261, "pipe-wrench": 987988, "pirate": 985608, "pistol": 984835, "piston": 985226, "pitchfork": 988499, "pizza": 984073, "plane-car": 989951, "plane-train": 989952, "play": 984074, "play-box": 987770, "play-box-edit-outline": 990266, "play-box-lock": 989718, "play-box-lock-open": 989719, "play-box-lock-open-outline": 989720, "play-box-lock-outline": 989721, "play-box-multiple": 986393, "play-box-multiple-outline": 988134, "play-box-outline": 984075, "play-circle": 984076, "play-circle-outline": 984077, "play-network": 985227, "play-network-outline": 986295, "play-outline": 986907, "play-pause": 984078, "play-protected-content": 984079, "play-speed": 985343, "playlist-check": 984519, "playlist-edit": 985344, "playlist-minus": 984080, "playlist-music": 986296, "playlist-music-outline": 986297, "playlist-play": 984081, "playlist-plus": 984082, "playlist-remove": 984083, "playlist-star": 986610, "plex": 984762, "pliers": 989604, "plus": 984085, "plus-box": 984086, "plus-box-multiple": 983860, "plus-box-multiple-outline": 987459, "plus-box-outline": 984836, "plus-circle": 984087, "plus-circle-multiple": 983884, "plus-circle-multiple-outline": 984088, "plus-circle-outline": 984089, "plus-lock": 989789, "plus-lock-open": 989790, "plus-minus": 985490, "plus-minus-box": 985491, "plus-minus-variant": 988361, "plus-network": 984090, "plus-network-outline": 986298, "plus-outline": 984837, "plus-thick": 987628, "pocket": 990398, "podcast": 985492, "podium": 986405, "podium-bronze": 986406, "podium-gold": 986407, "podium-silver": 986408, "point-of-sale": 986514, "pokeball": 984093, "pokemon-go": 985609, "poker-chip": 985136, "polaroid": 984094, "police-badge": 987495, "police-badge-outline": 987496, "police-station": 989241, "poll": 984095, "polo": 988355, "polymer": 984097, "pool": 984582, "pool-thermometer": 989791, "popcorn": 984098, "post": 987144, "post-lamp": 989792, "post-outline": 987145, "postage-stamp": 986299, "pot": 983781, "pot-mix": 984667, "pot-mix-outline": 984695, "pot-outline": 983807, "pot-steam": 984666, "pot-steam-outline": 983846, "pound": 984099, "pound-box": 984100, "pound-box-outline": 987519, "power": 984101, "power-cycle": 985345, "power-off": 985346, "power-on": 985347, "power-plug": 984741, "power-plug-battery": 990267, "power-plug-battery-outline": 990268, "power-plug-off": 984742, "power-plug-off-outline": 988196, "power-plug-outline": 988197, "power-settings": 984102, "power-sleep": 985348, "power-socket": 984103, "power-socket-au": 985349, "power-socket-ch": 987059, "power-socket-de": 987399, "power-socket-eu": 985063, "power-socket-fr": 987400, "power-socket-it": 988415, "power-socket-jp": 987401, "power-socket-uk": 985064, "power-socket-us": 985065, "power-standby": 985350, "powershell": 985610, "prescription": 984838, "presentation": 984104, "presentation-play": 984105, "pretzel": 988514, "printer": 984106, "printer-3d": 984107, "printer-3d-nozzle": 986715, "printer-3d-nozzle-alert": 987584, "printer-3d-nozzle-alert-outline": 987585, "printer-3d-nozzle-heat": 989368, "printer-3d-nozzle-heat-outline": 989369, "printer-3d-nozzle-off": 989977, "printer-3d-nozzle-off-outline": 989978, "printer-3d-nozzle-outline": 986716, "printer-3d-off": 989966, "printer-alert": 984108, "printer-check": 987462, "printer-eye": 988248, "printer-off": 986717, "printer-off-outline": 989061, "printer-outline": 989062, "printer-pos": 987223, "printer-pos-alert": 990140, "printer-pos-alert-outline": 990141, "printer-pos-cancel": 990142, "printer-pos-cancel-outline": 990143, "printer-pos-check": 990144, "printer-pos-check-outline": 990145, "printer-pos-cog": 990146, "printer-pos-cog-outline": 990147, "printer-pos-edit": 990148, "printer-pos-edit-outline": 990149, "printer-pos-minus": 990150, "printer-pos-minus-outline": 990151, "printer-pos-network": 990152, "printer-pos-network-outline": 990153, "printer-pos-off": 990154, "printer-pos-off-outline": 990155, "printer-pos-outline": 990156, "printer-pos-pause": 990157, "printer-pos-pause-outline": 990158, "printer-pos-play": 990159, "printer-pos-play-outline": 990160, "printer-pos-plus": 990161, "printer-pos-plus-outline": 990162, "printer-pos-refresh": 990163, "printer-pos-refresh-outline": 990164, "printer-pos-remove": 990165, "printer-pos-remove-outline": 990166, "printer-pos-star": 990167, "printer-pos-star-outline": 990168, "printer-pos-stop": 990169, "printer-pos-stop-outline": 990170, "printer-pos-sync": 990171, "printer-pos-sync-outline": 990172, "printer-pos-wrench": 990173, "printer-pos-wrench-outline": 990174, "printer-search": 988247, "printer-settings": 984839, "printer-wireless": 985611, "priority-high": 984579, "priority-low": 984580, "professional-hexagon": 984109, "progress-alert": 986300, "progress-check": 985493, "progress-clock": 985494, "progress-close": 987402, "progress-download": 985495, "progress-helper": 990114, "progress-pencil": 989063, "progress-question": 988450, "progress-star": 989064, "progress-star-four-points": 990269, "progress-tag": 990477, "progress-upload": 985496, "progress-wrench": 986301, "projector": 984110, "projector-off": 989731, "projector-screen": 984111, "projector-screen-off": 989197, "projector-screen-off-outline": 989198, "projector-screen-outline": 988964, "projector-screen-variant": 989199, "projector-screen-variant-off": 989200, "projector-screen-variant-off-outline": 989201, "projector-screen-variant-outline": 989202, "propane-tank": 987991, "propane-tank-outline": 987992, "protocol": 987096, "publish": 984743, "publish-off": 989509, "pulse": 984112, "pump": 988162, "pump-off": 989986, "pumpkin": 986047, "purse": 986908, "purse-outline": 986909, "puzzle": 984113, "puzzle-check": 988198, "puzzle-check-outline": 988199, "puzzle-edit": 988371, "puzzle-edit-outline": 988377, "puzzle-heart": 988372, "puzzle-heart-outline": 988378, "puzzle-minus": 988369, "puzzle-minus-outline": 988375, "puzzle-outline": 985702, "puzzle-plus": 988368, "puzzle-plus-outline": 988374, "puzzle-remove": 988370, "puzzle-remove-outline": 988376, "puzzle-star": 988373, "puzzle-star-outline": 988379, "pyramid": 989522, "pyramid-off": 989523, "qi": 985497, "qqchat": 984581, "qrcode": 984114, "qrcode-edit": 985272, "qrcode-minus": 987532, "qrcode-plus": 987531, "qrcode-remove": 987533, "qrcode-scan": 984115, "quadcopter": 984116, "quality-high": 984117, "quality-low": 985612, "quality-medium": 985613, "queue-first-in-last-out": 990383, "quora": 986409, "rabbit": 985351, "rabbit-variant": 989793, "rabbit-variant-outline": 989794, "racing-helmet": 986515, "racquetball": 986516, "radar": 984119, "radiator": 984120, "radiator-disabled": 985815, "radiator-off": 985816, "radio": 984121, "radio-am": 986302, "radio-fm": 986303, "radio-handheld": 984122, "radio-off": 987676, "radio-tower": 984123, "radioactive": 984124, "radioactive-circle": 989277, "radioactive-circle-outline": 989278, "radioactive-off": 986817, "radiobox-blank": 984125, "radiobox-indeterminate-variant": 990302, "radiobox-marked": 984126, "radiology-box": 988357, "radiology-box-outline": 988358, "radius": 986304, "radius-outline": 986305, "railroad-light": 986910, "rake": 988484, "raspberry-pi": 984127, "raw": 989711, "raw-off": 989712, "ray-end": 984128, "ray-end-arrow": 984129, "ray-start": 984130, "ray-start-arrow": 984131, "ray-start-end": 984132, "ray-start-vertex-end": 988632, "ray-vertex": 984133, "razor-double-edge": 989591, "razor-single-edge": 989592, "react": 984840, "read": 984135, "receipt": 985124, "receipt-clock": 990270, "receipt-clock-outline": 990271, "receipt-outline": 984311, "receipt-send": 990272, "receipt-send-outline": 990273, "receipt-text": 984137, "receipt-text-arrow-left": 990274, "receipt-text-arrow-left-outline": 990275, "receipt-text-arrow-right": 990276, "receipt-text-arrow-right-outline": 990277, "receipt-text-check": 989795, "receipt-text-check-outline": 989796, "receipt-text-clock": 990278, "receipt-text-clock-outline": 990279, "receipt-text-edit": 990280, "receipt-text-edit-outline": 990281, "receipt-text-minus": 989797, "receipt-text-minus-outline": 989798, "receipt-text-outline": 989660, "receipt-text-plus": 989799, "receipt-text-plus-outline": 989800, "receipt-text-remove": 989801, "receipt-text-remove-outline": 989802, "receipt-text-send": 990282, "receipt-text-send-outline": 990283, "record": 984138, "record-circle": 986818, "record-circle-outline": 986819, "record-player": 985498, "record-rec": 984139, "rectangle": 986718, "rectangle-outline": 986719, "recycle": 984140, "recycle-variant": 988061, "reddit": 984141, "redhat": 987419, "redo": 984142, "redo-variant": 984143, "reflect-horizontal": 985614, "reflect-vertical": 985615, "refresh": 984144, "refresh-auto": 989426, "refresh-circle": 988023, "regex": 984145, "registered-trademark": 985703, "reiterate": 988552, "relation-many-to-many": 988310, "relation-many-to-one": 988311, "relation-many-to-one-or-many": 988312, "relation-many-to-only-one": 988313, "relation-many-to-zero-or-many": 988314, "relation-many-to-zero-or-one": 988315, "relation-one-or-many-to-many": 988316, "relation-one-or-many-to-one": 988317, "relation-one-or-many-to-one-or-many": 988318, "relation-one-or-many-to-only-one": 988319, "relation-one-or-many-to-zero-or-many": 988320, "relation-one-or-many-to-zero-or-one": 988321, "relation-one-to-many": 988322, "relation-one-to-one": 988323, "relation-one-to-one-or-many": 988324, "relation-one-to-only-one": 988325, "relation-one-to-zero-or-many": 988326, "relation-one-to-zero-or-one": 988327, "relation-only-one-to-many": 988328, "relation-only-one-to-one": 988329, "relation-only-one-to-one-or-many": 988330, "relation-only-one-to-only-one": 988331, "relation-only-one-to-zero-or-many": 988332, "relation-only-one-to-zero-or-one": 988333, "relation-zero-or-many-to-many": 988334, "relation-zero-or-many-to-one": 988335, "relation-zero-or-many-to-one-or-many": 988336, "relation-zero-or-many-to-only-one": 988337, "relation-zero-or-many-to-zero-or-many": 988338, "relation-zero-or-many-to-zero-or-one": 988339, "relation-zero-or-one-to-many": 988340, "relation-zero-or-one-to-one": 988341, "relation-zero-or-one-to-one-or-many": 988342, "relation-zero-or-one-to-only-one": 988343, "relation-zero-or-one-to-zero-or-many": 988344, "relation-zero-or-one-to-zero-or-one": 988345, "relative-scale": 984146, "reload": 984147, "reload-alert": 987403, "reminder": 985228, "remote": 984148, "remote-desktop": 985273, "remote-off": 986820, "remote-tv": 986821, "remote-tv-off": 986822, "rename": 990232, "rename-box": 984149, "rename-box-outline": 990233, "rename-outline": 990234, "reorder-horizontal": 984712, "reorder-vertical": 984713, "repeat": 984150, "repeat-off": 984151, "repeat-once": 984152, "repeat-variant": 984391, "replay": 984153, "reply": 984154, "reply-all": 984155, "reply-all-outline": 986911, "reply-circle": 987566, "reply-outline": 986912, "reproduction": 984156, "resistor": 985924, "resistor-nodes": 985925, "resize": 985704, "resize-bottom-right": 984157, "responsive": 984158, "restart": 984841, "restart-alert": 987404, "restart-off": 986517, "restore": 985499, "restore-alert": 987405, "rewind": 984159, "rewind-10": 986410, "rewind-15": 989510, "rewind-30": 986518, "rewind-45": 989971, "rewind-5": 987641, "rewind-60": 988684, "rewind-outline": 984842, "rhombus": 984843, "rhombus-medium": 985616, "rhombus-medium-outline": 988380, "rhombus-outline": 984844, "rhombus-split": 985617, "rhombus-split-outline": 988381, "ribbon": 984160, "rice": 985066, "rickshaw": 988603, "rickshaw-electric": 988604, "ring": 985067, "rivet": 986720, "road": 984161, "road-variant": 984162, "robber": 987224, "robot": 984745, "robot-angry": 988829, "robot-angry-outline": 988830, "robot-confused": 988831, "robot-confused-outline": 988832, "robot-dead": 988833, "robot-dead-outline": 988834, "robot-excited": 988835, "robot-excited-outline": 988836, "robot-happy": 988953, "robot-happy-outline": 988954, "robot-industrial": 985926, "robot-industrial-outline": 989722, "robot-love": 988837, "robot-love-outline": 988838, "robot-mower": 987639, "robot-mower-outline": 987635, "robot-off": 988839, "robot-off-outline": 988795, "robot-outline": 988794, "robot-vacuum": 984845, "robot-vacuum-alert": 990045, "robot-vacuum-off": 990209, "robot-vacuum-variant": 985352, "robot-vacuum-variant-alert": 990046, "robot-vacuum-variant-off": 990210, "rocket": 984163, "rocket-launch": 988382, "rocket-launch-outline": 988383, "rocket-outline": 988079, "rodent": 987943, "roller-shade": 989803, "roller-shade-closed": 989804, "roller-skate": 986411, "roller-skate-off": 983365, "rollerblade": 986412, "rollerblade-off": 983086, "rollupjs": 986048, "rolodex": 989881, "rolodex-outline": 989882, "roman-numeral-1": 987272, "roman-numeral-10": 987281, "roman-numeral-2": 987273, "roman-numeral-3": 987274, "roman-numeral-4": 987275, "roman-numeral-5": 987276, "roman-numeral-6": 987277, "roman-numeral-7": 987278, "roman-numeral-8": 987279, "roman-numeral-9": 987280, "room-service": 985229, "room-service-outline": 986519, "rotate-360": 989593, "rotate-3d": 986823, "rotate-3d-variant": 984164, "rotate-left": 984165, "rotate-left-variant": 984166, "rotate-orbit": 986520, "rotate-right": 984167, "rotate-right-variant": 984168, "rounded-corner": 984583, "router": 987618, "router-network": 987271, "router-network-wireless": 990359, "router-wireless": 984169, "router-wireless-off": 988579, "router-wireless-settings": 985705, "routes": 984170, "routes-clock": 987225, "rowing": 984584, "rss": 984171, "rss-box": 984172, "rss-off": 986913, "rug": 988277, "rugby": 986521, "ruler": 984173, "ruler-square": 986306, "ruler-square-compass": 986814, "run": 984846, "run-fast": 984174, "rv-truck": 987604, "sack": 986414, "sack-outline": 990284, "sack-percent": 986415, "safe": 985706, "safe-square": 987772, "safe-square-outline": 987773, "safety-goggles": 986416, "sail-boat": 986824, "sail-boat-sink": 989935, "sale": 984175, "sale-outline": 989702, "salesforce": 985230, "sass": 985068, "satellite": 984176, "satellite-uplink": 985353, "satellite-variant": 984177, "sausage": 985274, "sausage-off": 989065, "saw-blade": 986721, "sawtooth-wave": 988282, "saxophone": 984585, "scale": 984178, "scale-balance": 984529, "scale-bathroom": 984179, "scale-off": 987226, "scale-unbalanced": 989624, "scan-helper": 988120, "scanner": 984747, "scanner-off": 985354, "scatter-plot": 986825, "scatter-plot-outline": 986826, "scent": 989528, "scent-off": 989529, "school": 984180, "school-outline": 987520, "scissors-cutting": 985707, "scooter": 988605, "scooter-electric": 988606, "scoreboard": 987774, "scoreboard-outline": 987775, "screen-rotation": 984181, "screen-rotation-lock": 984184, "screw-flat-top": 986611, "screw-lag": 986612, "screw-machine-flat-top": 986613, "screw-machine-round-top": 986614, "screw-round-top": 986615, "screwdriver": 984182, "script": 986049, "script-outline": 984183, "script-text": 986050, "script-text-key": 988965, "script-text-key-outline": 988966, "script-text-outline": 986051, "script-text-play": 988967, "script-text-play-outline": 988968, "sd": 984185, "seal": 984186, "seal-variant": 987097, "search-web": 984847, "seat": 986307, "seat-flat": 984187, "seat-flat-angled": 984188, "seat-individual-suite": 984189, "seat-legroom-extra": 984190, "seat-legroom-normal": 984191, "seat-legroom-reduced": 984192, "seat-outline": 986308, "seat-passenger": 987721, "seat-recline-extra": 984193, "seat-recline-normal": 984194, "seatbelt": 986309, "security": 984195, "security-network": 984196, "seed": 986722, "seed-off": 988157, "seed-off-outline": 988158, "seed-outline": 986723, "seed-plus": 989805, "seed-plus-outline": 989806, "seesaw": 988580, "segment": 986827, "select": 984197, "select-all": 984198, "select-arrow-down": 990041, "select-arrow-up": 990040, "select-color": 986417, "select-compare": 985817, "select-drag": 985708, "select-group": 987010, "select-inverse": 984199, "select-marker": 987776, "select-multiple": 987777, "select-multiple-marker": 987778, "select-off": 984200, "select-place": 987098, "select-remove": 989121, "select-search": 987652, "selection": 984201, "selection-drag": 985709, "selection-ellipse": 986418, "selection-ellipse-arrow-inside": 986914, "selection-ellipse-remove": 989122, "selection-marker": 987779, "selection-multiple": 987781, "selection-multiple-marker": 987780, "selection-off": 984951, "selection-remove": 989123, "selection-search": 987653, "semantic-web": 987926, "send": 984202, "send-check": 987489, "send-check-outline": 987490, "send-circle": 986616, "send-circle-outline": 986617, "send-clock": 987491, "send-clock-outline": 987492, "send-lock": 985069, "send-lock-outline": 987494, "send-outline": 987493, "send-variant": 990285, "send-variant-clock": 990334, "send-variant-clock-outline": 990335, "send-variant-outline": 990286, "serial-port": 984668, "server": 984203, "server-minus": 984204, "server-minus-outline": 990360, "server-network": 984205, "server-network-off": 984206, "server-network-outline": 990361, "server-off": 984207, "server-outline": 990362, "server-plus": 984208, "server-plus-outline": 990363, "server-remove": 984209, "server-security": 984210, "set-all": 984952, "set-center": 984953, "set-center-right": 984954, "set-left": 984955, "set-left-center": 984956, "set-left-right": 984957, "set-merge": 988384, "set-none": 984958, "set-right": 984959, "set-split": 988385, "set-square": 988253, "set-top-box": 985503, "settings-helper": 985710, "shaker": 987406, "shaker-outline": 987407, "shape": 985137, "shape-circle-plus": 984669, "shape-outline": 985138, "shape-oval-plus": 987642, "shape-plus": 984213, "shape-plus-outline": 990287, "shape-polygon-plus": 984670, "shape-rectangle-plus": 984671, "shape-square-plus": 984672, "shape-square-rounded-plus": 988410, "share": 984214, "share-all": 987636, "share-all-outline": 987637, "share-circle": 987565, "share-off": 986915, "share-off-outline": 986916, "share-outline": 985394, "share-variant": 984215, "share-variant-outline": 988436, "shark": 989370, "shark-fin": 988787, "shark-fin-outline": 988788, "shark-off": 989371, "sheep": 986310, "shield": 984216, "shield-account": 985231, "shield-account-outline": 985618, "shield-account-variant": 988583, "shield-account-variant-outline": 988584, "shield-airplane": 984763, "shield-airplane-outline": 986311, "shield-alert": 986828, "shield-alert-outline": 986829, "shield-bug": 988122, "shield-bug-outline": 988123, "shield-car": 987011, "shield-check": 984421, "shield-check-outline": 986312, "shield-cross": 986313, "shield-cross-outline": 986314, "shield-crown": 989372, "shield-crown-outline": 989373, "shield-edit": 987552, "shield-edit-outline": 987553, "shield-half": 988000, "shield-half-full": 984960, "shield-home": 984714, "shield-home-outline": 986315, "shield-key": 986052, "shield-key-outline": 986053, "shield-link-variant": 986419, "shield-link-variant-outline": 986420, "shield-lock": 985501, "shield-lock-open": 989594, "shield-lock-open-outline": 989595, "shield-lock-outline": 986316, "shield-moon": 989224, "shield-moon-outline": 989225, "shield-off": 985502, "shield-off-outline": 985500, "shield-outline": 984217, "shield-plus": 985818, "shield-plus-outline": 985819, "shield-refresh": 983210, "shield-refresh-outline": 983520, "shield-remove": 985820, "shield-remove-outline": 985821, "shield-search": 986522, "shield-star": 987451, "shield-star-outline": 987452, "shield-sun": 987229, "shield-sun-outline": 987230, "shield-sword": 989374, "shield-sword-outline": 989375, "shield-sync": 987554, "shield-sync-outline": 987555, "shimmer": 988485, "ship-wheel": 985139, "shipping-pallet": 989262, "shoe-ballet": 988618, "shoe-cleat": 988615, "shoe-formal": 985927, "shoe-heel": 985928, "shoe-print": 986618, "shoe-sneaker": 988616, "shopping": 984218, "shopping-music": 984219, "shopping-outline": 987605, "shopping-search": 987012, "shopping-search-outline": 989807, "shore": 988409, "shovel": 984848, "shovel-off": 984849, "shower": 985504, "shower-head": 985505, "shredder": 984220, "shuffle": 984221, "shuffle-disabled": 984222, "shuffle-variant": 984223, "shuriken": 988031, "sickle": 989376, "sigma": 984224, "sigma-lower": 984619, "sign-caution": 984225, "sign-direction": 984961, "sign-direction-minus": 987136, "sign-direction-plus": 987100, "sign-direction-remove": 987101, "sign-language": 990029, "sign-language-outline": 990030, "sign-pole": 988408, "sign-real-estate": 987416, "sign-text": 984962, "sign-yield": 990127, "signal": 984226, "signal-2g": 984850, "signal-3g": 984851, "signal-4g": 984852, "signal-5g": 985711, "signal-cellular-1": 985276, "signal-cellular-2": 985277, "signal-cellular-3": 985278, "signal-cellular-outline": 985279, "signal-distance-variant": 986724, "signal-hspa": 984853, "signal-hspa-plus": 984854, "signal-off": 984963, "signal-variant": 984586, "signature": 986619, "signature-freehand": 986620, "signature-image": 986621, "signature-text": 986622, "silo": 990111, "silo-outline": 985929, "silverware": 984227, "silverware-clean": 987102, "silverware-fork": 984228, "silverware-fork-knife": 985712, "silverware-spoon": 984229, "silverware-variant": 984230, "sim": 984231, "sim-alert": 984232, "sim-alert-outline": 988627, "sim-off": 984233, "sim-off-outline": 988628, "sim-outline": 988629, "simple-icons": 987933, "sina-weibo": 985823, "sine-wave": 985435, "sitemap": 984234, "sitemap-outline": 989596, "size-l": 988070, "size-m": 988069, "size-s": 988068, "size-xl": 988071, "size-xs": 988067, "size-xxl": 988072, "size-xxs": 988066, "size-xxxl": 988073, "skate": 986421, "skate-off": 984729, "skateboard": 988354, "skateboarding": 984321, "skew-less": 986422, "skew-more": 986423, "ski": 987908, "ski-cross-country": 987909, "ski-water": 987910, "skip-backward": 984235, "skip-backward-outline": 986917, "skip-forward": 984236, "skip-forward-outline": 986918, "skip-next": 984237, "skip-next-circle": 984673, "skip-next-circle-outline": 984674, "skip-next-outline": 986919, "skip-previous": 984238, "skip-previous-circle": 984675, "skip-previous-circle-outline": 984676, "skip-previous-outline": 986920, "skull": 984716, "skull-crossbones": 986054, "skull-crossbones-outline": 986055, "skull-outline": 986056, "skull-scan": 988359, "skull-scan-outline": 988360, "skype": 984239, "skype-business": 984240, "slack": 984241, "slash-forward": 987103, "slash-forward-box": 987104, "sledding": 984091, "sleep": 984242, "sleep-off": 984243, "slide": 988581, "slope-downhill": 986623, "slope-uphill": 986624, "slot-machine": 987412, "slot-machine-outline": 987413, "smart-card": 987325, "smart-card-off": 989431, "smart-card-off-outline": 989432, "smart-card-outline": 987326, "smart-card-reader": 987327, "smart-card-reader-outline": 987328, "smog": 985713, "smoke": 989081, "smoke-detector": 983954, "smoke-detector-alert": 989486, "smoke-detector-alert-outline": 989487, "smoke-detector-off": 989193, "smoke-detector-off-outline": 989194, "smoke-detector-outline": 989192, "smoke-detector-variant": 989195, "smoke-detector-variant-alert": 989488, "smoke-detector-variant-off": 989196, "smoking": 984244, "smoking-off": 984245, "smoking-pipe": 988173, "smoking-pipe-off": 988200, "snail": 988791, "snake": 988430, "snapchat": 984246, "snowboard": 987911, "snowflake": 984855, "snowflake-alert": 986921, "snowflake-check": 989808, "snowflake-melt": 987851, "snowflake-off": 988387, "snowflake-thermometer": 989809, "snowflake-variant": 986922, "snowman": 984247, "snowmobile": 984797, "snowshoeing": 989810, "soccer": 984248, "soccer-field": 985140, "social-distance-2-meters": 988537, "social-distance-6-feet": 988538, "sofa": 984249, "sofa-outline": 988525, "sofa-single": 988526, "sofa-single-outline": 988527, "solar-panel": 986523, "solar-panel-large": 986524, "solar-power": 985714, "solar-power-variant": 989811, "solar-power-variant-outline": 989812, "soldering-iron": 987282, "solid": 984717, "sony-playstation": 984084, "sort": 984250, "sort-alphabetical-ascending": 984509, "sort-alphabetical-ascending-variant": 987464, "sort-alphabetical-descending": 984511, "sort-alphabetical-descending-variant": 987465, "sort-alphabetical-variant": 984251, "sort-ascending": 984252, "sort-bool-ascending": 988037, "sort-bool-ascending-variant": 988038, "sort-bool-descending": 988039, "sort-bool-descending-variant": 988040, "sort-calendar-ascending": 988487, "sort-calendar-descending": 988488, "sort-clock-ascending": 988489, "sort-clock-ascending-outline": 988490, "sort-clock-descending": 988491, "sort-clock-descending-outline": 988492, "sort-descending": 984253, "sort-numeric-ascending": 988041, "sort-numeric-ascending-variant": 985357, "sort-numeric-descending": 988042, "sort-numeric-descending-variant": 985810, "sort-numeric-variant": 984254, "sort-reverse-variant": 983868, "sort-variant": 984255, "sort-variant-lock": 986317, "sort-variant-lock-open": 986318, "sort-variant-off": 989883, "sort-variant-remove": 987463, "soundbar": 989147, "soundcloud": 984256, "source-branch": 984620, "source-branch-check": 988367, "source-branch-minus": 988363, "source-branch-plus": 988362, "source-branch-refresh": 988365, "source-branch-remove": 988364, "source-branch-sync": 988366, "source-commit": 984856, "source-commit-end": 984857, "source-commit-end-local": 984858, "source-commit-local": 984859, "source-commit-next-local": 984860, "source-commit-start": 984861, "source-commit-start-next-local": 984862, "source-fork": 984257, "source-merge": 984621, "source-pull": 984258, "source-repository": 986319, "source-repository-multiple": 986320, "soy-sauce": 985070, "soy-sauce-off": 988156, "spa": 986321, "spa-outline": 986322, "space-invaders": 986057, "space-station": 988035, "spade": 986725, "speaker": 984259, "speaker-bluetooth": 985506, "speaker-message": 989969, "speaker-multiple": 986424, "speaker-off": 984260, "speaker-pause": 990067, "speaker-play": 990066, "speaker-stop": 990068, "speaker-wireless": 984863, "spear": 989253, "speedometer": 984261, "speedometer-medium": 987013, "speedometer-slow": 987014, "spellcheck": 984262, "sphere": 989524, "sphere-off": 989525, "spider": 987626, "spider-outline": 990325, "spider-thread": 987627, "spider-web": 986058, "spirit-level": 988401, "spoon-sugar": 988201, "spotify": 984263, "spotlight": 984264, "spotlight-beam": 984265, "spray": 984677, "spray-bottle": 985824, "sprinkler": 987231, "sprinkler-fire": 989597, "sprinkler-variant": 987232, "sprout": 986726, "sprout-outline": 986727, "square": 984932, "square-circle": 988416, "square-circle-outline": 990288, "square-edit-outline": 985356, "square-medium": 985619, "square-medium-outline": 985620, "square-off": 987886, "square-off-outline": 987887, "square-opacity": 989268, "square-outline": 984931, "square-root": 984964, "square-root-box": 985507, "square-rounded": 988411, "square-rounded-badge": 989703, "square-rounded-badge-outline": 989704, "square-rounded-outline": 988412, "square-small": 985621, "square-wave": 988283, "squeegee": 985825, "ssh": 985280, "stack-exchange": 984587, "stack-overflow": 984268, "stackpath": 983897, "stadium": 987129, "stadium-outline": 989955, "stadium-variant": 984864, "stairs": 984269, "stairs-box": 988062, "stairs-down": 987838, "stairs-up": 987837, "stamper": 986425, "standard-definition": 985071, "star": 984270, "star-box": 985715, "star-box-multiple": 987782, "star-box-multiple-outline": 987783, "star-box-outline": 985716, "star-check": 988518, "star-check-outline": 988522, "star-circle": 984271, "star-circle-outline": 985508, "star-cog": 988776, "star-cog-outline": 988777, "star-crescent": 985465, "star-david": 985466, "star-face": 985509, "star-four-points": 985826, "star-four-points-box": 990289, "star-four-points-box-outline": 990290, "star-four-points-circle": 990291, "star-four-points-circle-outline": 990292, "star-four-points-outline": 985827, "star-four-points-small": 990293, "star-half": 983622, "star-half-full": 984272, "star-minus": 988516, "star-minus-outline": 988520, "star-off": 984273, "star-off-outline": 988507, "star-outline": 984274, "star-plus": 988515, "star-plus-outline": 988519, "star-remove": 988517, "star-remove-outline": 988521, "star-settings": 988778, "star-settings-outline": 988779, "star-shooting": 988993, "star-shooting-outline": 988994, "star-three-points": 985828, "star-three-points-outline": 985829, "state-machine": 987631, "steam": 984275, "steering": 984276, "steering-off": 985358, "step-backward": 984277, "step-backward-2": 984278, "step-forward": 984279, "step-forward-2": 984280, "stethoscope": 984281, "sticker": 988004, "sticker-alert": 988005, "sticker-alert-outline": 988006, "sticker-check": 988007, "sticker-check-outline": 988008, "sticker-circle-outline": 984528, "sticker-emoji": 984965, "sticker-minus": 988009, "sticker-minus-outline": 988010, "sticker-outline": 988011, "sticker-plus": 988012, "sticker-plus-outline": 988013, "sticker-remove": 988014, "sticker-remove-outline": 988015, "sticker-text": 989070, "sticker-text-outline": 989071, "stocking": 984282, "stomach": 987283, "stool": 989533, "stool-outline": 989534, "stop": 984283, "stop-circle": 984678, "stop-circle-outline": 984679, "storage-tank": 989813, "storage-tank-outline": 989814, "store": 984284, "store-24-hour": 984285, "store-alert": 989377, "store-alert-outline": 989378, "store-check": 989379, "store-check-outline": 989380, "store-clock": 989381, "store-clock-outline": 989382, "store-cog": 989383, "store-cog-outline": 989384, "store-edit": 989385, "store-edit-outline": 989386, "store-marker": 989387, "store-marker-outline": 989388, "store-minus": 988766, "store-minus-outline": 989389, "store-off": 989390, "store-off-outline": 989391, "store-outline": 988001, "store-plus": 988767, "store-plus-outline": 989392, "store-remove": 988768, "store-remove-outline": 989393, "store-search": 989394, "store-search-outline": 989395, "store-settings": 989396, "store-settings-outline": 989397, "storefront": 985031, "storefront-check": 990077, "storefront-check-outline": 990078, "storefront-edit": 990079, "storefront-edit-outline": 990080, "storefront-minus": 990083, "storefront-minus-outline": 990084, "storefront-outline": 987329, "storefront-plus": 990081, "storefront-plus-outline": 990082, "storefront-remove": 990085, "storefront-remove-outline": 990086, "stove": 984286, "strategy": 987606, "stretch-to-page": 986923, "stretch-to-page-outline": 986924, "string-lights": 987834, "string-lights-off": 987835, "subdirectory-arrow-left": 984588, "subdirectory-arrow-right": 984589, "submarine": 988524, "subtitles": 985622, "subtitles-outline": 985623, "subway": 984748, "subway-alert-variant": 986525, "subway-variant": 984287, "summit": 984966, "sun-angle": 989991, "sun-angle-outline": 989992, "sun-clock": 989815, "sun-clock-outline": 989816, "sun-compass": 989605, "sun-snowflake": 989078, "sun-snowflake-variant": 989817, "sun-thermometer": 989398, "sun-thermometer-outline": 989399, "sun-wireless": 989182, "sun-wireless-outline": 989183, "sunglasses": 984288, "surfing": 988998, "surround-sound": 984517, "surround-sound-2-0": 985072, "surround-sound-2-1": 988969, "surround-sound-3-1": 985073, "surround-sound-5-1": 985074, "surround-sound-5-1-2": 988970, "surround-sound-7-1": 985075, "svg": 984865, "swap-horizontal": 984289, "swap-horizontal-bold": 986061, "swap-horizontal-circle": 987105, "swap-horizontal-circle-outline": 987106, "swap-horizontal-hidden": 990478, "swap-horizontal-variant": 985281, "swap-vertical": 984290, "swap-vertical-bold": 986062, "swap-vertical-circle": 987107, "swap-vertical-circle-outline": 987108, "swap-vertical-variant": 985282, "swim": 984291, "switch": 984292, "sword": 984293, "sword-cross": 984967, "syllabary-hangul": 987955, "syllabary-hiragana": 987956, "syllabary-katakana": 987957, "syllabary-katakana-halfwidth": 987958, "symbol": 988417, "symfony": 985830, "synagogue": 989956, "synagogue-outline": 989957, "sync": 984294, "sync-alert": 984295, "sync-circle": 988024, "sync-off": 984296, "tab": 984297, "tab-minus": 985931, "tab-plus": 984924, "tab-remove": 985932, "tab-search": 989598, "tab-unselected": 984298, "table": 984299, "table-account": 988089, "table-alert": 988090, "table-arrow-down": 988091, "table-arrow-left": 988092, "table-arrow-right": 988093, "table-arrow-up": 988094, "table-border": 985624, "table-cancel": 988095, "table-chair": 987233, "table-check": 988096, "table-clock": 988097, "table-cog": 988098, "table-column": 985141, "table-column-plus-after": 984300, "table-column-plus-before": 984301, "table-column-remove": 984302, "table-column-width": 984303, "table-edit": 984304, "table-eye": 987284, "table-eye-off": 988099, "table-filter": 990092, "table-furniture": 984508, "table-headers-eye": 987677, "table-headers-eye-off": 987678, "table-heart": 988100, "table-key": 988101, "table-large": 984305, "table-large-plus": 987015, "table-large-remove": 987016, "table-lock": 988102, "table-merge-cells": 985510, "table-minus": 988103, "table-multiple": 988104, "table-network": 988105, "table-of-contents": 985142, "table-off": 988106, "table-picnic": 988995, "table-pivot": 989244, "table-plus": 985717, "table-question": 989985, "table-refresh": 988064, "table-remove": 985718, "table-row": 985143, "table-row-height": 984306, "table-row-plus-after": 984307, "table-row-plus-before": 984308, "table-row-remove": 984309, "table-search": 985359, "table-settings": 985144, "table-split-cell": 988202, "table-star": 988107, "table-sync": 988065, "table-tennis": 986728, "tablet": 984310, "tablet-cellphone": 985511, "tablet-dashboard": 986830, "taco": 984930, "tag": 984313, "tag-arrow-down": 988971, "tag-arrow-down-outline": 988972, "tag-arrow-left": 988973, "tag-arrow-left-outline": 988974, "tag-arrow-right": 988975, "tag-arrow-right-outline": 988976, "tag-arrow-up": 988977, "tag-arrow-up-outline": 988978, "tag-check": 989818, "tag-check-outline": 989819, "tag-edit": 990364, "tag-edit-outline": 990365, "tag-faces": 984314, "tag-heart": 984715, "tag-heart-outline": 986063, "tag-hidden": 990326, "tag-minus": 985360, "tag-minus-outline": 987679, "tag-multiple": 984315, "tag-multiple-outline": 987895, "tag-off": 987680, "tag-off-outline": 987681, "tag-outline": 984316, "tag-plus": 984866, "tag-plus-outline": 987682, "tag-remove": 984867, "tag-remove-outline": 987683, "tag-search": 989447, "tag-search-outline": 989448, "tag-text": 987684, "tag-text-outline": 984317, "tailwind": 988159, "tally-mark-1": 989884, "tally-mark-2": 989885, "tally-mark-3": 989886, "tally-mark-4": 989887, "tally-mark-5": 989888, "tangram": 984312, "tank": 986426, "tanker-truck": 987109, "tape-drive": 988895, "tape-measure": 985933, "target": 984318, "target-account": 986064, "target-variant": 985719, "taxi": 984319, "tea": 986526, "tea-outline": 986527, "teamviewer": 984320, "teddy-bear": 989435, "telescope": 985934, "television": 984322, "television-ambient-light": 987990, "television-box": 985145, "television-classic": 985076, "television-classic-off": 985146, "television-guide": 984323, "television-off": 985147, "television-pause": 987017, "television-play": 986831, "television-shimmer": 987408, "television-speaker": 989979, "television-speaker-off": 989980, "television-stop": 987018, "temperature-celsius": 984324, "temperature-fahrenheit": 984325, "temperature-kelvin": 984326, "temple-buddhist": 989958, "temple-buddhist-outline": 989959, "temple-hindu": 989960, "temple-hindu-outline": 989961, "tennis": 986528, "tennis-ball": 984327, "tennis-ball-outline": 990303, "tent": 984328, "terraform": 987234, "terrain": 984329, "test-tube": 984680, "test-tube-empty": 985361, "test-tube-off": 985362, "text": 985512, "text-account": 988528, "text-box": 983578, "text-box-check": 986790, "text-box-check-outline": 986791, "text-box-edit": 989820, "text-box-edit-outline": 989821, "text-box-minus": 986792, "text-box-minus-outline": 986793, "text-box-multiple": 985783, "text-box-multiple-outline": 985784, "text-box-outline": 985581, "text-box-plus": 986794, "text-box-plus-outline": 986795, "text-box-remove": 986796, "text-box-remove-outline": 986797, "text-box-search": 986798, "text-box-search-outline": 986799, "text-long": 985514, "text-recognition": 987453, "text-search": 988088, "text-search-variant": 989822, "text-shadow": 984681, "text-short": 985513, "texture": 984332, "texture-box": 987110, "theater": 984333, "theme-light-dark": 984334, "thermometer": 984335, "thermometer-alert": 986625, "thermometer-auto": 989967, "thermometer-bluetooth": 989333, "thermometer-check": 989823, "thermometer-chevron-down": 986626, "thermometer-chevron-up": 986627, "thermometer-high": 987330, "thermometer-lines": 984336, "thermometer-low": 987331, "thermometer-minus": 986628, "thermometer-off": 988465, "thermometer-plus": 986629, "thermometer-probe": 989995, "thermometer-probe-off": 989996, "thermometer-water": 989824, "thermostat": 983955, "thermostat-auto": 989975, "thermostat-box": 985233, "thermostat-box-auto": 989976, "thermostat-cog": 990336, "thought-bubble": 985078, "thought-bubble-outline": 985079, "thumb-down": 984337, "thumb-down-outline": 984338, "thumb-up": 984339, "thumb-up-outline": 984340, "thumbs-up-down": 984341, "thumbs-up-down-outline": 989460, "ticket": 984342, "ticket-account": 984343, "ticket-confirmation": 984344, "ticket-confirmation-outline": 988074, "ticket-outline": 985363, "ticket-percent": 984868, "ticket-percent-outline": 988203, "tie": 984345, "tilde": 984869, "tilde-off": 989427, "timelapse": 984346, "timeline": 986065, "timeline-alert": 987029, "timeline-alert-outline": 987032, "timeline-check": 988466, "timeline-check-outline": 988467, "timeline-clock": 987643, "timeline-clock-outline": 987644, "timeline-minus": 988468, "timeline-minus-outline": 988469, "timeline-outline": 986066, "timeline-plus": 987030, "timeline-plus-outline": 987031, "timeline-question": 987033, "timeline-question-outline": 987034, "timeline-remove": 988470, "timeline-remove-outline": 988471, "timeline-text": 986067, "timeline-text-outline": 986068, "timer": 988075, "timer-10": 984348, "timer-3": 984349, "timer-alert": 989900, "timer-alert-outline": 989901, "timer-cancel": 989902, "timer-cancel-outline": 989903, "timer-check": 989904, "timer-check-outline": 989905, "timer-cog": 989477, "timer-cog-outline": 989478, "timer-edit": 989906, "timer-edit-outline": 989907, "timer-lock": 989908, "timer-lock-open": 989909, "timer-lock-open-outline": 989910, "timer-lock-outline": 989911, "timer-marker": 989912, "timer-marker-outline": 989913, "timer-minus": 989914, "timer-minus-outline": 989915, "timer-music": 989916, "timer-music-outline": 989917, "timer-off": 988076, "timer-off-outline": 984350, "timer-outline": 984347, "timer-pause": 989918, "timer-pause-outline": 989919, "timer-play": 989920, "timer-play-outline": 989921, "timer-plus": 989922, "timer-plus-outline": 989923, "timer-refresh": 989924, "timer-refresh-outline": 989925, "timer-remove": 989926, "timer-remove-outline": 989927, "timer-sand": 984351, "timer-sand-complete": 989599, "timer-sand-empty": 984749, "timer-sand-full": 984972, "timer-sand-paused": 989600, "timer-settings": 989475, "timer-settings-outline": 989476, "timer-star": 989928, "timer-star-outline": 989929, "timer-stop": 989930, "timer-stop-outline": 989931, "timer-sync": 989932, "timer-sync-outline": 989933, "timetable": 984352, "tire": 989334, "toaster": 987235, "toaster-off": 987575, "toaster-oven": 986323, "toggle-switch": 984353, "toggle-switch-off": 984354, "toggle-switch-off-outline": 985625, "toggle-switch-outline": 985626, "toggle-switch-variant": 989733, "toggle-switch-variant-off": 989734, "toilet": 985515, "toolbox": 985516, "toolbox-outline": 985517, "tools": 987236, "tooltip": 984355, "tooltip-account": 983052, "tooltip-cellphone": 989243, "tooltip-check": 988508, "tooltip-check-outline": 988509, "tooltip-edit": 984356, "tooltip-edit-outline": 987845, "tooltip-image": 984357, "tooltip-image-outline": 986069, "tooltip-minus": 988510, "tooltip-minus-outline": 988511, "tooltip-outline": 984358, "tooltip-plus": 986070, "tooltip-plus-outline": 984359, "tooltip-question": 990138, "tooltip-question-outline": 990139, "tooltip-remove": 988512, "tooltip-remove-outline": 988513, "tooltip-text": 984360, "tooltip-text-outline": 986071, "tooth": 985283, "tooth-outline": 984361, "toothbrush": 987433, "toothbrush-electric": 987436, "toothbrush-paste": 987434, "torch": 988678, "tortoise": 986427, "toslink": 987832, "touch-text-outline": 990304, "tournament": 985518, "tow-truck": 985148, "tower-beach": 984705, "tower-fire": 984706, "town-hall": 989301, "toy-brick": 987784, "toy-brick-marker": 987785, "toy-brick-marker-outline": 987786, "toy-brick-minus": 987787, "toy-brick-minus-outline": 987788, "toy-brick-outline": 987789, "toy-brick-plus": 987790, "toy-brick-plus-outline": 987791, "toy-brick-remove": 987792, "toy-brick-remove-outline": 987793, "toy-brick-search": 987794, "toy-brick-search-outline": 987795, "track-light": 985364, "track-light-off": 989953, "trackpad": 985080, "trackpad-lock": 985395, "tractor": 985234, "tractor-variant": 988356, "trademark": 985720, "traffic-cone": 988028, "traffic-light": 984363, "traffic-light-outline": 989226, "train": 984364, "train-bus": 990407, "train-car": 986072, "train-car-autorack": 989997, "train-car-box": 989998, "train-car-box-full": 989999, "train-car-box-open": 990000, "train-car-caboose": 990001, "train-car-centerbeam": 990002, "train-car-centerbeam-full": 990003, "train-car-container": 990004, "train-car-flatbed": 990005, "train-car-flatbed-car": 990006, "train-car-flatbed-tank": 990007, "train-car-gondola": 990008, "train-car-gondola-full": 990009, "train-car-hopper": 990010, "train-car-hopper-covered": 990011, "train-car-hopper-full": 990012, "train-car-intermodal": 990013, "train-car-passenger": 988979, "train-car-passenger-door": 988980, "train-car-passenger-door-open": 988981, "train-car-passenger-variant": 988982, "train-car-tank": 990014, "train-variant": 985284, "tram": 984365, "tram-side": 987111, "transcribe": 984366, "transcribe-close": 984367, "transfer": 987237, "transfer-down": 986529, "transfer-left": 986530, "transfer-right": 984368, "transfer-up": 986531, "transit-connection": 986428, "transit-connection-horizontal": 988486, "transit-connection-variant": 986429, "transit-detour": 987019, "transit-skip": 988437, "transit-transfer": 984750, "transition": 985365, "transition-masked": 985366, "translate": 984522, "translate-off": 986630, "translate-variant": 990105, "transmission-tower": 986430, "transmission-tower-export": 989484, "transmission-tower-import": 989485, "transmission-tower-off": 989661, "trash-can": 985721, "trash-can-outline": 985722, "tray": 987796, "tray-alert": 987797, "tray-arrow-down": 983328, "tray-arrow-up": 983325, "tray-full": 987798, "tray-minus": 987799, "tray-plus": 987800, "tray-remove": 987801, "treasure-chest": 984870, "treasure-chest-outline": 990327, "tree": 984369, "tree-outline": 986729, "trello": 984370, "trending-down": 984371, "trending-neutral": 984372, "trending-up": 984373, "triangle": 984374, "triangle-down": 990294, "triangle-down-outline": 990295, "triangle-outline": 984375, "triangle-small-down": 989705, "triangle-small-up": 989706, "triangle-wave": 988284, "triforce": 986073, "trophy": 984376, "trophy-award": 984377, "trophy-broken": 986532, "trophy-outline": 984378, "trophy-variant": 984379, "trophy-variant-outline": 984380, "truck": 984381, "truck-alert": 989662, "truck-alert-outline": 989663, "truck-cargo-container": 989400, "truck-check": 986324, "truck-check-outline": 987802, "truck-delivery": 984382, "truck-delivery-outline": 987803, "truck-fast": 984968, "truck-fast-outline": 987804, "truck-flatbed": 989329, "truck-minus": 989614, "truck-minus-outline": 989629, "truck-off-road": 990366, "truck-off-road-off": 990367, "truck-outline": 987805, "truck-plus": 989613, "truck-plus-outline": 989628, "truck-remove": 989615, "truck-remove-outline": 989630, "truck-snowflake": 989606, "truck-trailer": 984871, "trumpet": 987286, "tshirt-crew": 985723, "tshirt-crew-outline": 984383, "tshirt-v": 985724, "tshirt-v-outline": 984384, "tsunami": 989825, "tumble-dryer": 985367, "tumble-dryer-alert": 987578, "tumble-dryer-off": 987579, "tune": 984622, "tune-variant": 988482, "tune-vertical": 984682, "tune-vertical-variant": 988483, "tunnel": 989245, "tunnel-outline": 989246, "turbine": 989826, "turkey": 988955, "turnstile": 986325, "turnstile-outline": 986326, "turtle": 986327, "twitch": 984387, "twitter": 984388, "two-factor-authentication": 985519, "typewriter": 986925, "ubisoft": 986074, "ubuntu": 984392, "ufo": 987332, "ufo-outline": 987333, "ultra-high-definition": 985081, "umbraco": 984393, "umbrella": 984394, "umbrella-beach": 989322, "umbrella-beach-outline": 989323, "umbrella-closed": 985520, "umbrella-closed-outline": 988130, "umbrella-closed-variant": 988129, "umbrella-outline": 984395, "underwear-outline": 990479, "undo": 984396, "undo-variant": 984397, "unfold-less-horizontal": 984398, "unfold-less-vertical": 984928, "unfold-more-horizontal": 984399, "unfold-more-vertical": 984929, "ungroup": 984400, "unicode": 986832, "unicorn": 988610, "unicorn-variant": 988611, "unicycle": 988645, "unity": 984751, "unreal": 985521, "update": 984752, "upload": 984402, "upload-box": 990480, "upload-box-outline": 990481, "upload-circle": 990482, "upload-circle-outline": 990483, "upload-lock": 988019, "upload-lock-outline": 988020, "upload-multiple": 985149, "upload-multiple-outline": 990484, "upload-network": 984822, "upload-network-outline": 986328, "upload-off": 987334, "upload-off-outline": 987335, "upload-outline": 986631, "usb": 984403, "usb-c-port": 990399, "usb-flash-drive": 987806, "usb-flash-drive-outline": 987807, "usb-port": 987632, "vacuum": 989601, "vacuum-outline": 989602, "valve": 987238, "valve-closed": 987239, "valve-open": 987240, "van-passenger": 985082, "van-utility": 985083, "vanish": 985084, "vanish-quarter": 988500, "vanity-light": 987617, "variable": 985831, "variable-box": 987409, "vector-arrange-above": 984404, "vector-arrange-below": 984405, "vector-bezier": 985832, "vector-circle": 984406, "vector-circle-variant": 984407, "vector-combine": 984408, "vector-curve": 984409, "vector-difference": 984410, "vector-difference-ab": 984411, "vector-difference-ba": 984412, "vector-ellipse": 985235, "vector-intersection": 984413, "vector-line": 984414, "vector-link": 987112, "vector-point": 983492, "vector-point-edit": 985576, "vector-point-minus": 990072, "vector-point-plus": 990073, "vector-point-select": 984415, "vector-polygon": 984416, "vector-polygon-variant": 989270, "vector-polyline": 984417, "vector-polyline-edit": 987685, "vector-polyline-minus": 987686, "vector-polyline-plus": 987687, "vector-polyline-remove": 987688, "vector-radius": 984906, "vector-rectangle": 984518, "vector-selection": 984418, "vector-square": 983041, "vector-square-close": 989271, "vector-square-edit": 989401, "vector-square-minus": 989402, "vector-square-open": 989272, "vector-square-plus": 989403, "vector-square-remove": 989404, "vector-triangle": 984419, "vector-union": 984420, "vhs": 985627, "vibrate": 984422, "vibrate-off": 986329, "video": 984423, "video-2d": 989724, "video-3d": 985085, "video-3d-off": 988121, "video-3d-variant": 986833, "video-4k-box": 985150, "video-account": 985369, "video-box": 983293, "video-box-off": 983294, "video-check": 987241, "video-check-outline": 987242, "video-high-definition": 988462, "video-image": 985370, "video-input-antenna": 985151, "video-input-component": 985152, "video-input-hdmi": 985153, "video-input-scart": 987020, "video-input-svideo": 985154, "video-marker": 989609, "video-marker-outline": 989610, "video-minus": 985522, "video-minus-outline": 983738, "video-off": 984424, "video-off-outline": 986075, "video-outline": 986076, "video-plus": 985523, "video-plus-outline": 983507, "video-stabilization": 985371, "video-standard-definition": 990368, "video-switch": 984425, "video-switch-outline": 984976, "video-vintage": 985628, "video-wireless": 986834, "video-wireless-outline": 986835, "view-agenda": 984426, "view-agenda-outline": 987608, "view-array": 984427, "view-array-outline": 988293, "view-carousel": 984428, "view-carousel-outline": 988294, "view-column": 984429, "view-column-outline": 988295, "view-comfy": 986730, "view-comfy-outline": 988296, "view-compact": 986731, "view-compact-outline": 986732, "view-dashboard": 984430, "view-dashboard-edit": 989511, "view-dashboard-edit-outline": 989512, "view-dashboard-outline": 985629, "view-dashboard-variant": 985155, "view-dashboard-variant-outline": 988297, "view-day": 984431, "view-day-outline": 988298, "view-gallery": 989320, "view-gallery-outline": 989321, "view-grid": 984432, "view-grid-compact": 990305, "view-grid-outline": 987609, "view-grid-plus": 987021, "view-grid-plus-outline": 987610, "view-headline": 984433, "view-list": 984434, "view-list-outline": 988299, "view-module": 984435, "view-module-outline": 988300, "view-parallel": 984872, "view-parallel-outline": 988301, "view-quilt": 984436, "view-quilt-outline": 988302, "view-sequential": 984873, "view-sequential-outline": 988303, "view-split-horizontal": 986059, "view-split-vertical": 986060, "view-stream": 984437, "view-stream-outline": 988304, "view-week": 984438, "view-week-outline": 988305, "vimeo": 984439, "violin": 984591, "virtual-reality": 985236, "virus": 988086, "virus-off": 989409, "virus-off-outline": 989410, "virus-outline": 988087, "vlc": 984444, "voicemail": 984445, "volcano": 989827, "volcano-outline": 989828, "volleyball": 985524, "volume-equal": 989968, "volume-high": 984446, "volume-low": 984447, "volume-medium": 984448, "volume-minus": 984926, "volume-mute": 984927, "volume-off": 984449, "volume-plus": 984925, "volume-source": 987424, "volume-variant-off": 986632, "volume-vibrate": 987425, "vote": 985631, "vote-outline": 985632, "vpn": 984450, "vuejs": 985156, "vuetify": 986733, "walk": 984451, "wall": 985086, "wall-fire": 989713, "wall-sconce": 985372, "wall-sconce-flat": 985373, "wall-sconce-flat-outline": 989129, "wall-sconce-flat-variant": 984092, "wall-sconce-flat-variant-outline": 989130, "wall-sconce-outline": 989131, "wall-sconce-round": 984904, "wall-sconce-round-outline": 989132, "wall-sconce-round-variant": 985374, "wall-sconce-round-variant-outline": 989133, "wallet": 984452, "wallet-bifold": 990296, "wallet-bifold-outline": 990297, "wallet-giftcard": 984453, "wallet-membership": 984454, "wallet-outline": 986077, "wallet-plus": 987022, "wallet-plus-outline": 987023, "wallet-travel": 984455, "wallpaper": 986633, "wan": 984456, "wardrobe": 987024, "wardrobe-outline": 987025, "warehouse": 987009, "washing-machine": 984874, "washing-machine-alert": 987580, "washing-machine-off": 987581, "watch": 984457, "watch-export": 984458, "watch-export-variant": 985237, "watch-import": 984459, "watch-import-variant": 985238, "watch-variant": 985239, "watch-vibrate": 984753, "watch-vibrate-off": 986330, "water": 984460, "water-alert": 988418, "water-alert-outline": 988419, "water-boiler": 987026, "water-boiler-alert": 987571, "water-boiler-auto": 990104, "water-boiler-off": 987572, "water-check": 988420, "water-check-outline": 988421, "water-circle": 989190, "water-minus": 988422, "water-minus-outline": 988423, "water-off": 984461, "water-off-outline": 988424, "water-opacity": 989269, "water-outline": 986634, "water-percent": 984462, "water-percent-alert": 988425, "water-plus": 988426, "water-plus-outline": 988427, "water-polo": 987808, "water-pump": 984463, "water-pump-off": 987027, "water-remove": 988428, "water-remove-outline": 988429, "water-sync": 989126, "water-thermometer": 989829, "water-thermometer-outline": 989830, "water-well": 987243, "water-well-outline": 987244, "waterfall": 989257, "watering-can": 988289, "watering-can-outline": 988290, "watermark": 984594, "wave": 986926, "wave-arrow-down": 990384, "wave-arrow-up": 990385, "wave-undercurrent": 990400, "waveform": 988285, "waves": 984973, "waves-arrow-left": 989273, "waves-arrow-right": 989274, "waves-arrow-up": 989275, "waze": 986078, "weather-cloudy": 984464, "weather-cloudy-alert": 986927, "weather-cloudy-arrow-right": 986734, "weather-cloudy-clock": 989430, "weather-dust": 990042, "weather-fog": 984465, "weather-hail": 984466, "weather-hazy": 986928, "weather-hurricane": 985240, "weather-hurricane-outline": 990328, "weather-lightning": 984467, "weather-lightning-rainy": 984702, "weather-moonset": 990485, "weather-moonset-down": 990486, "weather-moonset-up": 990487, "weather-night": 984468, "weather-night-partly-cloudy": 986929, "weather-partly-cloudy": 984469, "weather-partly-lightning": 986930, "weather-partly-rainy": 986931, "weather-partly-snowy": 986932, "weather-partly-snowy-rainy": 986933, "weather-pouring": 984470, "weather-rainy": 984471, "weather-snowy": 984472, "weather-snowy-heavy": 986934, "weather-snowy-rainy": 984703, "weather-sunny": 984473, "weather-sunny-alert": 986935, "weather-sunny-off": 988388, "weather-sunset": 984474, "weather-sunset-down": 984475, "weather-sunset-up": 984476, "weather-tornado": 986936, "weather-windy": 984477, "weather-windy-variant": 984478, "web": 984479, "web-box": 987028, "web-cancel": 989072, "web-check": 984969, "web-clock": 987722, "web-minus": 987296, "web-off": 985742, "web-plus": 983091, "web-refresh": 989073, "web-remove": 984401, "web-sync": 989074, "webcam": 984480, "webcam-off": 988983, "webhook": 984623, "webpack": 984875, "webrtc": 987720, "wechat": 984593, "weight": 984481, "weight-gram": 986431, "weight-kilogram": 984482, "weight-lifter": 987485, "weight-pound": 985525, "whatsapp": 984483, "wheel-barrow": 988402, "wheelchair": 989831, "wheelchair-accessibility": 984484, "whistle": 985526, "whistle-outline": 987836, "white-balance-auto": 984485, "white-balance-incandescent": 984486, "white-balance-iridescent": 984487, "white-balance-sunny": 984488, "widgets": 984876, "widgets-outline": 987989, "wifi": 984489, "wifi-alert": 988853, "wifi-arrow-down": 988854, "wifi-arrow-left": 988855, "wifi-arrow-left-right": 988856, "wifi-arrow-right": 988857, "wifi-arrow-up": 988858, "wifi-arrow-up-down": 988859, "wifi-cancel": 988860, "wifi-check": 988861, "wifi-cog": 988862, "wifi-lock": 988863, "wifi-lock-open": 988864, "wifi-marker": 988865, "wifi-minus": 988866, "wifi-off": 984490, "wifi-plus": 988867, "wifi-refresh": 988868, "wifi-remove": 988869, "wifi-settings": 988870, "wifi-star": 986635, "wifi-strength-1": 985375, "wifi-strength-1-alert": 985376, "wifi-strength-1-lock": 985377, "wifi-strength-1-lock-open": 988875, "wifi-strength-2": 985378, "wifi-strength-2-alert": 985379, "wifi-strength-2-lock": 985380, "wifi-strength-2-lock-open": 988876, "wifi-strength-3": 985381, "wifi-strength-3-alert": 985382, "wifi-strength-3-lock": 985383, "wifi-strength-3-lock-open": 988877, "wifi-strength-4": 985384, "wifi-strength-4-alert": 985385, "wifi-strength-4-lock": 985386, "wifi-strength-4-lock-open": 988878, "wifi-strength-alert-outline": 985387, "wifi-strength-lock-open-outline": 988879, "wifi-strength-lock-outline": 985388, "wifi-strength-off": 985389, "wifi-strength-off-outline": 985390, "wifi-strength-outline": 985391, "wifi-sync": 988871, "wikipedia": 984492, "wind-power": 989832, "wind-power-outline": 989833, "wind-turbine": 986533, "wind-turbine-alert": 989611, "wind-turbine-check": 989612, "window-close": 984493, "window-closed": 984494, "window-closed-variant": 987611, "window-maximize": 984495, "window-minimize": 984496, "window-open": 984497, "window-open-variant": 987612, "window-restore": 984498, "window-shutter": 987420, "window-shutter-alert": 987421, "window-shutter-auto": 990115, "window-shutter-cog": 989834, "window-shutter-open": 987422, "window-shutter-settings": 989835, "windsock": 988666, "wiper": 985833, "wiper-wash": 986534, "wiper-wash-alert": 989407, "wizard-hat": 988279, "wordpress": 984500, "wrap": 984502, "wrap-disabled": 986079, "wrench": 984503, "wrench-check": 990095, "wrench-check-outline": 990096, "wrench-clock": 989603, "wrench-clock-outline": 990099, "wrench-cog": 990097, "wrench-cog-outline": 990098, "wrench-outline": 986080, "xamarin": 985157, "xml": 984512, "xmpp": 985087, "yahoo": 985935, "yeast": 984513, "yin-yang": 984704, "yoga": 987516, "youtube": 984515, "youtube-gaming": 985160, "youtube-studio": 985159, "youtube-subscription": 986432, "youtube-tv": 984136, "yurt": 988438, "z-wave": 985834, "zend": 985835, "zigbee": 986433, "zip-box": 984516, "zip-box-outline": 987130, "zip-disk": 985635, "zodiac-aquarius": 985725, "zodiac-aries": 985726, "zodiac-cancer": 985727, "zodiac-capricorn": 985728, "zodiac-gemini": 985729, "zodiac-leo": 985730, "zodiac-libra": 985731, "zodiac-pisces": 985732, "zodiac-sagittarius": 985733, "zodiac-scorpio": 985734, "zodiac-taurus": 985735, "zodiac-virgo": 985736, "blank": 63116 } ================================================ FILE: packages/material-design-icons/package.json ================================================ { "name": "@react-native-vector-icons/material-design-icons", "version": "12.5.0", "description": "Material Design Icons font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "material-design-icons" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/material-design-icons" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "@mdi/font": "7.4.47" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/material-design-icons/react-native-vector-icons-material-design-icons.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-material-design-icons' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/material-design-icons/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * MaterialDesignIcons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/MaterialDesignIcons.json'; export const MaterialDesignIcons = createIconSet(glyphMap, { postScriptName: 'MaterialDesignIcons', fontFileName: 'MaterialDesignIcons.ttf', fontSource: require('../fonts/MaterialDesignIcons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type MaterialDesignIconsIconName = keyof typeof glyphMap; /** @alias */ export default MaterialDesignIcons; ================================================ FILE: packages/material-design-icons/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * MaterialDesignIcons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/MaterialDesignIcons.json'; export const MaterialDesignIcons = createIconSet(glyphMap, { postScriptName: 'MaterialDesignIcons', fontFileName: 'MaterialDesignIcons.ttf', }); export type MaterialDesignIconsIconName = keyof typeof glyphMap; /** @alias */ export default MaterialDesignIcons; ================================================ FILE: packages/material-design-icons/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/material-design-icons/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/material-icons/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "material-icons", "postScriptName": "MaterialIcons-Regular", "buildSteps": { "preScript": { "script": "mkdir -p fonts\nREF='f7bd4f25f3764883717c09a1fd867f560c9a9581' # Sep 19, 2022 update\ncurl https://raw.githubusercontent.com/google/material-design-icons/$REF/font/MaterialIcons-Regular.codepoints -Ls > MaterialIcons-Regular.codepoints\ncurl https://raw.githubusercontent.com/google/material-design-icons/$REF/font/MaterialIcons-Regular.ttf -Ls > fonts/MaterialIcons.ttf" }, "glyphmap": { "location": "MaterialIcons-Regular.codepoints", "mode": "codepoints", "prefix": ".mdi-", "cleanup": true } }, "versions": [{ "rnvi": "12.0.0", "upstream": "0.0.1" }] } } ================================================ FILE: packages/material-icons/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/material-icons/README.md ================================================ # React Native Vector Icons - Material Icons Material Icons font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/material-icons ``` ## Usage ```jsx import { MaterialIcons } from '@react-native-vector-icons/material-icons'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 0.0.1 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/material-icons/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.material_icons" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsMaterialIcons" codegenJavaPackageName = "com.reactnativevectoricons.material_icons" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-material-icons") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-material-icons/fonts" eachFile { println "(RNVI:material-icons) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/material-icons/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/material-icons/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/material-icons/android/src/main/java/VectorIconsMaterialIconsPackage.kt ================================================ package com.reactnativevectoricons.material_icons import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsMaterialIconsPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/material-icons/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/material-icons/glyphmaps/MaterialIcons.json ================================================ { "123": 60301, "360": 58743, "10k": 59729, "10mp": 59730, "11mp": 59731, "12mp": 59732, "13mp": 59733, "14mp": 59734, "15mp": 59735, "16mp": 59736, "17mp": 59737, "18-up-rating": 63741, "18mp": 59738, "19mp": 59739, "1k": 59740, "1k-plus": 59741, "1x-mobiledata": 61389, "20mp": 59742, "21mp": 59743, "22mp": 59744, "23mp": 59745, "24mp": 59746, "2k": 59747, "2k-plus": 59748, "2mp": 59749, "30fps": 61390, "30fps-select": 61391, "3d-rotation": 59469, "3g-mobiledata": 61392, "3k": 59750, "3k-plus": 59751, "3mp": 59752, "3p": 61393, "4g-mobiledata": 61394, "4g-plus-mobiledata": 61395, "4k": 57458, "4k-plus": 59753, "4mp": 59754, "5g": 61240, "5k": 59755, "5k-plus": 59756, "5mp": 59757, "60fps": 61396, "60fps-select": 61397, "6-ft-apart": 61982, "6k": 59758, "6k-plus": 59759, "6mp": 59760, "7k": 59761, "7k-plus": 59762, "7mp": 59763, "8k": 59764, "8k-plus": 59765, "8mp": 59766, "9k": 59767, "9k-plus": 59768, "9mp": 59769, "abc": 60308, "ac-unit": 60219, "access-alarm": 57744, "access-alarms": 57745, "access-time": 57746, "access-time-filled": 61398, "accessibility": 59470, "accessibility-new": 59692, "accessible": 59668, "accessible-forward": 59700, "account-balance": 59471, "account-balance-wallet": 59472, "account-box": 59473, "account-circle": 59475, "account-tree": 59770, "ad-units": 61241, "adb": 58894, "add": 57669, "add-a-photo": 58425, "add-alarm": 57747, "add-alert": 57347, "add-box": 57670, "add-business": 59177, "add-call": 57576, "add-card": 60294, "add-chart": 59771, "add-circle": 57671, "add-circle-outline": 57672, "add-comment": 57958, "add-home": 63723, "add-home-work": 63725, "add-ic-call": 59772, "add-link": 57720, "add-location": 58727, "add-location-alt": 61242, "add-moderator": 59773, "add-photo-alternate": 58430, "add-reaction": 57811, "add-road": 61243, "add-shopping-cart": 59476, "add-task": 62010, "add-to-drive": 58972, "add-to-home-screen": 57854, "add-to-photos": 58269, "add-to-queue": 57436, "addchart": 61244, "adf-scanner": 60122, "adjust": 58270, "admin-panel-settings": 61245, "adobe": 60054, "ads-click": 59234, "agriculture": 60025, "air": 61400, "airline-seat-flat": 58928, "airline-seat-flat-angled": 58929, "airline-seat-individual-suite": 58930, "airline-seat-legroom-extra": 58931, "airline-seat-legroom-normal": 58932, "airline-seat-legroom-reduced": 58933, "airline-seat-recline-extra": 58934, "airline-seat-recline-normal": 58935, "airline-stops": 59344, "airlines": 59338, "airplane-ticket": 61401, "airplanemode-active": 57749, "airplanemode-inactive": 57748, "airplanemode-off": 57748, "airplanemode-on": 57749, "airplay": 57429, "airport-shuttle": 60220, "alarm": 59477, "alarm-add": 59478, "alarm-off": 59479, "alarm-on": 59480, "album": 57369, "align-horizontal-center": 57359, "align-horizontal-left": 57357, "align-horizontal-right": 57360, "align-vertical-bottom": 57365, "align-vertical-center": 57361, "align-vertical-top": 57356, "all-inbox": 59775, "all-inclusive": 60221, "all-out": 59659, "alt-route": 61828, "alternate-email": 57574, "amp-stories": 59923, "analytics": 61246, "anchor": 61901, "android": 59481, "animation": 59164, "announcement": 59482, "aod": 61402, "apartment": 59968, "api": 61879, "app-blocking": 61247, "app-registration": 61248, "app-settings-alt": 61249, "app-shortcut": 60132, "apple": 60032, "approval": 59778, "apps": 58819, "apps-outage": 59340, "architecture": 59963, "archive": 57673, "area-chart": 59248, "arrow-back": 58820, "arrow-back-ios": 58848, "arrow-back-ios-new": 58090, "arrow-circle-down": 61825, "arrow-circle-left": 60071, "arrow-circle-right": 60074, "arrow-circle-up": 61826, "arrow-downward": 58843, "arrow-drop-down": 58821, "arrow-drop-down-circle": 58822, "arrow-drop-up": 58823, "arrow-forward": 58824, "arrow-forward-ios": 58849, "arrow-left": 58846, "arrow-outward": 63694, "arrow-right": 58847, "arrow-right-alt": 59713, "arrow-upward": 58840, "art-track": 57440, "article": 61250, "aspect-ratio": 59483, "assessment": 59484, "assignment": 59485, "assignment-add": 63560, "assignment-ind": 59486, "assignment-late": 59487, "assignment-return": 59488, "assignment-returned": 59489, "assignment-turned-in": 59490, "assist-walker": 63701, "assistant": 58271, "assistant-direction": 59784, "assistant-navigation": 59785, "assistant-photo": 58272, "assured-workload": 60271, "atm": 58739, "attach-email": 59998, "attach-file": 57894, "attach-money": 57895, "attachment": 58044, "attractions": 59986, "attribution": 61403, "audio-file": 60290, "audiotrack": 58273, "auto-awesome": 58975, "auto-awesome-mosaic": 58976, "auto-awesome-motion": 58977, "auto-delete": 59980, "auto-fix-high": 58979, "auto-fix-normal": 58980, "auto-fix-off": 58981, "auto-graph": 58619, "auto-mode": 60448, "auto-stories": 58982, "autofps-select": 61404, "autorenew": 59491, "av-timer": 57371, "baby-changing-station": 61851, "back-hand": 59236, "backpack": 61852, "backspace": 57674, "backup": 59492, "backup-table": 61251, "badge": 60007, "bakery-dining": 59987, "balance": 60150, "balcony": 58767, "ballot": 57714, "bar-chart": 57963, "barcode-reader": 63580, "batch-prediction": 61685, "bathroom": 61405, "bathtub": 59969, "battery-0-bar": 60380, "battery-1-bar": 60377, "battery-2-bar": 60384, "battery-3-bar": 60381, "battery-4-bar": 60386, "battery-5-bar": 60372, "battery-6-bar": 60370, "battery-alert": 57756, "battery-charging-full": 57763, "battery-full": 57764, "battery-saver": 61406, "battery-std": 57765, "battery-unknown": 57766, "beach-access": 60222, "bed": 61407, "bedroom-baby": 61408, "bedroom-child": 61409, "bedroom-parent": 61410, "bedtime": 61252, "bedtime-off": 60278, "beenhere": 58669, "bento": 61940, "bike-scooter": 61253, "biotech": 59962, "blender": 61411, "blind": 63702, "blinds": 57990, "blinds-closed": 60447, "block": 57675, "block-flipped": 61254, "bloodtype": 61412, "bluetooth": 57767, "bluetooth-audio": 58895, "bluetooth-connected": 57768, "bluetooth-disabled": 57769, "bluetooth-drive": 61413, "bluetooth-searching": 57770, "blur-circular": 58274, "blur-linear": 58275, "blur-off": 58276, "blur-on": 58277, "bolt": 59915, "book": 59493, "book-online": 61975, "bookmark": 59494, "bookmark-add": 58776, "bookmark-added": 58777, "bookmark-border": 59495, "bookmark-outline": 59495, "bookmark-remove": 58778, "bookmarks": 59787, "border-all": 57896, "border-bottom": 57897, "border-clear": 57898, "border-color": 57899, "border-horizontal": 57900, "border-inner": 57901, "border-left": 57902, "border-outer": 57903, "border-right": 57904, "border-style": 57905, "border-top": 57906, "border-vertical": 57907, "boy": 60263, "branding-watermark": 57451, "breakfast-dining": 59988, "brightness-1": 58278, "brightness-2": 58279, "brightness-3": 58280, "brightness-4": 58281, "brightness-5": 58282, "brightness-6": 58283, "brightness-7": 58284, "brightness-auto": 57771, "brightness-high": 57772, "brightness-low": 57773, "brightness-medium": 57774, "broadcast-on-home": 63736, "broadcast-on-personal": 63737, "broken-image": 58285, "browse-gallery": 60369, "browser-not-supported": 61255, "browser-updated": 59343, "brunch-dining": 60019, "brush": 58286, "bubble-chart": 59101, "bug-report": 59496, "build": 59497, "build-circle": 61256, "bungalow": 58769, "burst-mode": 58428, "bus-alert": 59791, "business": 57519, "business-center": 60223, "cabin": 58761, "cable": 61414, "cached": 59498, "cake": 59369, "calculate": 59999, "calendar-month": 60364, "calendar-today": 59701, "calendar-view-day": 59702, "calendar-view-month": 61415, "calendar-view-week": 61416, "call": 57520, "call-end": 57521, "call-made": 57522, "call-merge": 57523, "call-missed": 57524, "call-missed-outgoing": 57572, "call-received": 57525, "call-split": 57526, "call-to-action": 57452, "camera": 58287, "camera-alt": 58288, "camera-enhance": 59644, "camera-front": 58289, "camera-indoor": 61417, "camera-outdoor": 61418, "camera-rear": 58290, "camera-roll": 58291, "cameraswitch": 61419, "campaign": 61257, "cancel": 58825, "cancel-presentation": 57577, "cancel-schedule-send": 59961, "candlestick-chart": 60116, "car-crash": 60402, "car-rental": 59989, "car-repair": 59990, "card-giftcard": 59638, "card-membership": 59639, "card-travel": 59640, "carpenter": 61944, "cases": 59794, "casino": 60224, "cast": 58119, "cast-connected": 58120, "cast-for-education": 61420, "castle": 60081, "catching-pokemon": 58632, "category": 58740, "celebration": 60005, "cell-tower": 60346, "cell-wifi": 57580, "center-focus-strong": 58292, "center-focus-weak": 58293, "chair": 61421, "chair-alt": 61422, "chalet": 58757, "change-circle": 58087, "change-history": 59499, "charging-station": 61853, "chat": 57527, "chat-bubble": 57546, "chat-bubble-outline": 57547, "check": 58826, "check-box": 59444, "check-box-outline-blank": 59445, "check-circle": 59500, "check-circle-outline": 59693, "checklist": 59057, "checklist-rtl": 59059, "checkroom": 61854, "chevron-left": 58827, "chevron-right": 58828, "child-care": 60225, "child-friendly": 60226, "chrome-reader-mode": 59501, "church": 60078, "circle": 61258, "circle-notifications": 59796, "class": 59502, "clean-hands": 61983, "cleaning-services": 61695, "clear": 57676, "clear-all": 57528, "close": 58829, "close-fullscreen": 61903, "closed-caption": 57372, "closed-caption-disabled": 61916, "closed-caption-off": 59798, "cloud": 58045, "cloud-circle": 58046, "cloud-done": 58047, "cloud-download": 58048, "cloud-off": 58049, "cloud-queue": 58050, "cloud-sync": 60250, "cloud-upload": 58051, "cloudy-snowing": 59408, "co2": 59312, "co-present": 60144, "code": 59503, "code-off": 58611, "coffee": 61423, "coffee-maker": 61424, "collections": 58294, "collections-bookmark": 58417, "color-lens": 58295, "colorize": 58296, "comment": 57529, "comment-bank": 59982, "comments-disabled": 59298, "commit": 60149, "commute": 59712, "compare": 58297, "compare-arrows": 59669, "compass-calibration": 58748, "compost": 59233, "compress": 59725, "computer": 58122, "confirmation-num": 58936, "confirmation-number": 58936, "connect-without-contact": 61987, "connected-tv": 59800, "connecting-airports": 59337, "construction": 59964, "contact-emergency": 63697, "contact-mail": 57552, "contact-page": 61998, "contact-phone": 57551, "contact-support": 59724, "contactless": 60017, "contacts": 57530, "content-copy": 57677, "content-cut": 57678, "content-paste": 57679, "content-paste-go": 60046, "content-paste-off": 58616, "content-paste-search": 60059, "contrast": 60215, "control-camera": 57460, "control-point": 58298, "control-point-duplicate": 58299, "conveyor-belt": 63591, "cookie": 60076, "copy-all": 58092, "copyright": 59660, "coronavirus": 61985, "corporate-fare": 61904, "cottage": 58759, "countertops": 61943, "create": 57680, "create-new-folder": 58060, "credit-card": 59504, "credit-card-off": 58612, "credit-score": 61425, "crib": 58760, "crisis-alert": 60393, "crop": 58302, "crop-16-9": 58300, "crop-3-2": 58301, "crop-5-4": 58303, "crop-7-5": 58304, "crop-din": 58305, "crop-free": 58306, "crop-landscape": 58307, "crop-original": 58308, "crop-portrait": 58309, "crop-rotate": 58423, "crop-square": 58310, "cruelty-free": 59289, "css": 60307, "currency-bitcoin": 60357, "currency-exchange": 60272, "currency-franc": 60154, "currency-lira": 60143, "currency-pound": 60145, "currency-ruble": 60140, "currency-rupee": 60151, "currency-yen": 60155, "currency-yuan": 60153, "curtains": 60446, "curtains-closed": 60445, "cyclone": 60373, "dangerous": 59802, "dark-mode": 58652, "dashboard": 59505, "dashboard-customize": 59803, "data-array": 60113, "data-exploration": 59247, "data-object": 60115, "data-saver-off": 61426, "data-saver-on": 61427, "data-thresholding": 60319, "data-usage": 57775, "dataset": 63726, "dataset-linked": 63727, "date-range": 59670, "deblur": 60279, "deck": 59970, "dehaze": 58311, "delete": 59506, "delete-forever": 59691, "delete-outline": 59694, "delete-sweep": 57708, "delivery-dining": 60018, "density-large": 60329, "density-medium": 60318, "density-small": 60328, "departure-board": 58742, "description": 59507, "deselect": 60342, "design-services": 61706, "desk": 63732, "desktop-access-disabled": 59805, "desktop-mac": 58123, "desktop-windows": 58124, "details": 58312, "developer-board": 58125, "developer-board-off": 58623, "developer-mode": 57776, "device-hub": 58165, "device-thermostat": 57855, "device-unknown": 58169, "devices": 57777, "devices-fold": 60382, "devices-other": 58167, "dew-point": 63609, "dialer-sip": 57531, "dialpad": 57532, "diamond": 60117, "difference": 60285, "dining": 61428, "dinner-dining": 59991, "directions": 58670, "directions-bike": 58671, "directions-boat": 58674, "directions-boat-filled": 61429, "directions-bus": 58672, "directions-bus-filled": 61430, "directions-car": 58673, "directions-car-filled": 61431, "directions-ferry": 58674, "directions-off": 61711, "directions-railway": 58676, "directions-railway-filled": 61432, "directions-run": 58726, "directions-subway": 58675, "directions-subway-filled": 61433, "directions-train": 58676, "directions-transit": 58677, "directions-transit-filled": 61434, "directions-walk": 58678, "dirty-lens": 61259, "disabled-by-default": 62000, "disabled-visible": 59246, "disc-full": 58896, "discord": 60012, "discount": 60361, "display-settings": 60311, "diversity-1": 63703, "diversity-2": 63704, "diversity-3": 63705, "dnd-forwardslash": 58897, "dns": 59509, "do-disturb": 61580, "do-disturb-alt": 61581, "do-disturb-off": 61582, "do-disturb-on": 61583, "do-not-disturb": 58898, "do-not-disturb-alt": 58897, "do-not-disturb-off": 58947, "do-not-disturb-on": 58948, "do-not-disturb-on-total-silence": 61435, "do-not-step": 61855, "do-not-touch": 61872, "dock": 58126, "document-scanner": 58874, "domain": 59374, "domain-add": 60258, "domain-disabled": 57583, "domain-verification": 61260, "done": 59510, "done-all": 59511, "done-outline": 59695, "donut-large": 59671, "donut-small": 59672, "door-back": 61436, "door-front": 61437, "door-sliding": 61438, "doorbell": 61439, "double-arrow": 59984, "downhill-skiing": 58633, "download": 61584, "download-done": 61585, "download-for-offline": 61440, "downloading": 61441, "drafts": 57681, "drag-handle": 57949, "drag-indicator": 59717, "draw": 59206, "drive-eta": 58899, "drive-file-move": 58997, "drive-file-move-outline": 59809, "drive-file-move-rtl": 59245, "drive-file-rename-outline": 59810, "drive-folder-upload": 59811, "dry": 61875, "dry-cleaning": 59992, "duo": 59813, "dvr": 57778, "dynamic-feed": 59924, "dynamic-form": 61887, "e-mobiledata": 61442, "earbuds": 61443, "earbuds-battery": 61444, "east": 61919, "eco": 59957, "edgesensor-high": 61445, "edgesensor-low": 61446, "edit": 58313, "edit-attributes": 58744, "edit-calendar": 59202, "edit-document": 63628, "edit-location": 58728, "edit-location-alt": 57797, "edit-note": 59205, "edit-notifications": 58661, "edit-off": 59728, "edit-road": 61261, "edit-square": 63629, "egg": 60108, "egg-alt": 60104, "eject": 59643, "elderly": 61978, "elderly-woman": 60265, "electric-bike": 60187, "electric-bolt": 60444, "electric-car": 60188, "electric-meter": 60443, "electric-moped": 60189, "electric-rickshaw": 60190, "electric-scooter": 60191, "electrical-services": 61698, "elevator": 61856, "email": 57534, "emergency": 57835, "emergency-recording": 60404, "emergency-share": 60406, "emoji-emotions": 59938, "emoji-events": 59939, "emoji-flags": 59930, "emoji-food-beverage": 59931, "emoji-nature": 59932, "emoji-objects": 59940, "emoji-people": 59933, "emoji-symbols": 59934, "emoji-transportation": 59935, "energy-savings-leaf": 60442, "engineering": 59965, "enhance-photo-translate": 59644, "enhanced-encryption": 58943, "equalizer": 57373, "error": 57344, "error-outline": 57345, "escalator": 61857, "escalator-warning": 61868, "euro": 59925, "euro-symbol": 59686, "ev-station": 58733, "event": 59512, "event-available": 58900, "event-busy": 58901, "event-note": 58902, "event-repeat": 60283, "event-seat": 59651, "exit-to-app": 59513, "expand": 59727, "expand-circle-down": 59341, "expand-less": 58830, "expand-more": 58831, "explicit": 57374, "explore": 59514, "explore-off": 59816, "exposure": 58314, "exposure-minus-1": 58315, "exposure-minus-2": 58316, "exposure-neg-1": 58315, "exposure-neg-2": 58316, "exposure-plus-1": 58317, "exposure-plus-2": 58318, "exposure-zero": 58319, "extension": 59515, "extension-off": 58613, "face": 59516, "face-2": 63706, "face-3": 63707, "face-4": 63708, "face-5": 63709, "face-6": 63710, "face-retouching-natural": 61262, "face-retouching-off": 61447, "facebook": 62004, "fact-check": 61637, "factory": 60348, "family-restroom": 61858, "fast-forward": 57375, "fast-rewind": 57376, "fastfood": 58746, "favorite": 59517, "favorite-border": 59518, "favorite-outline": 59518, "fax": 60120, "featured-play-list": 57453, "featured-video": 57454, "feed": 61449, "feedback": 59519, "female": 58768, "fence": 61942, "festival": 60008, "fiber-dvr": 57437, "fiber-manual-record": 57441, "fiber-new": 57438, "fiber-pin": 57450, "fiber-smart-record": 57442, "file-copy": 57715, "file-download": 58052, "file-download-done": 59818, "file-download-off": 58622, "file-open": 60147, "file-present": 59918, "file-upload": 58054, "file-upload-off": 63622, "filter": 58323, "filter-1": 58320, "filter-2": 58321, "filter-3": 58322, "filter-4": 58324, "filter-5": 58325, "filter-6": 58326, "filter-7": 58327, "filter-8": 58328, "filter-9": 58329, "filter-9-plus": 58330, "filter-alt": 61263, "filter-alt-off": 60210, "filter-b-and-w": 58331, "filter-center-focus": 58332, "filter-drama": 58333, "filter-frames": 58334, "filter-hdr": 58335, "filter-list": 57682, "filter-list-alt": 59726, "filter-list-off": 60247, "filter-none": 58336, "filter-tilt-shift": 58338, "filter-vintage": 58339, "find-in-page": 59520, "find-replace": 59521, "fingerprint": 59661, "fire-extinguisher": 61912, "fire-hydrant": 61859, "fire-hydrant-alt": 63729, "fire-truck": 63730, "fireplace": 59971, "first-page": 58844, "fit-screen": 59920, "fitbit": 59435, "fitness-center": 60227, "flag": 57683, "flag-circle": 60152, "flaky": 61264, "flare": 58340, "flash-auto": 58341, "flash-off": 58342, "flash-on": 58343, "flashlight-off": 61450, "flashlight-on": 61451, "flatware": 61452, "flight": 58681, "flight-class": 59339, "flight-land": 59652, "flight-takeoff": 59653, "flip": 58344, "flip-camera-android": 59959, "flip-camera-ios": 59960, "flip-to-back": 59522, "flip-to-front": 59523, "flood": 60390, "flourescent": 61453, "fluorescent": 60465, "flutter-dash": 57355, "fmd-bad": 61454, "fmd-good": 61455, "foggy": 59416, "folder": 58055, "folder-copy": 60349, "folder-delete": 60212, "folder-off": 60291, "folder-open": 58056, "folder-shared": 58057, "folder-special": 58903, "folder-zip": 60204, "follow-the-signs": 61986, "font-download": 57703, "font-download-off": 58617, "food-bank": 61938, "forest": 60057, "fork-left": 60320, "fork-right": 60332, "forklift": 63592, "format-align-center": 57908, "format-align-justify": 57909, "format-align-left": 57910, "format-align-right": 57911, "format-bold": 57912, "format-clear": 57913, "format-color-fill": 57914, "format-color-reset": 57915, "format-color-text": 57916, "format-indent-decrease": 57917, "format-indent-increase": 57918, "format-italic": 57919, "format-line-spacing": 57920, "format-list-bulleted": 57921, "format-list-bulleted-add": 63561, "format-list-numbered": 57922, "format-list-numbered-rtl": 57959, "format-overline": 60261, "format-paint": 57923, "format-quote": 57924, "format-shapes": 57950, "format-size": 57925, "format-strikethrough": 57926, "format-textdirection-l-to-r": 57927, "format-textdirection-r-to-l": 57928, "format-underline": 57929, "format-underlined": 57929, "fort": 60077, "forum": 57535, "forward": 57684, "forward-10": 57430, "forward-30": 57431, "forward-5": 57432, "forward-to-inbox": 61831, "foundation": 61952, "free-breakfast": 60228, "free-cancellation": 59208, "front-hand": 59241, "front-loader": 63593, "fullscreen": 58832, "fullscreen-exit": 58833, "functions": 57930, "g-mobiledata": 61456, "g-translate": 59687, "gamepad": 58127, "games": 57377, "garage": 61457, "gas-meter": 60441, "gavel": 59662, "generating-tokens": 59209, "gesture": 57685, "get-app": 59524, "gif": 59656, "gif-box": 59299, "girl": 60264, "gite": 58763, "goat": 1114109, "golf-course": 60229, "gpp-bad": 61458, "gpp-good": 61459, "gpp-maybe": 61460, "gps-fixed": 57779, "gps-not-fixed": 57780, "gps-off": 57781, "grade": 59525, "gradient": 58345, "grading": 59983, "grain": 58346, "graphic-eq": 57784, "grass": 61957, "grid-3x3": 61461, "grid-4x4": 61462, "grid-goldenratio": 61463, "grid-off": 58347, "grid-on": 58348, "grid-view": 59824, "group": 59375, "group-add": 59376, "group-off": 59207, "group-remove": 59309, "group-work": 59526, "groups": 62003, "groups-2": 63711, "groups-3": 63712, "h-mobiledata": 61464, "h-plus-mobiledata": 61465, "hail": 59825, "handshake": 60363, "handyman": 61707, "hardware": 59993, "hd": 57426, "hdr-auto": 61466, "hdr-auto-select": 61467, "hdr-enhanced-select": 61265, "hdr-off": 58349, "hdr-off-select": 61468, "hdr-on": 58350, "hdr-on-select": 61469, "hdr-plus": 61470, "hdr-strong": 58353, "hdr-weak": 58354, "headphones": 61471, "headphones-battery": 61472, "headset": 58128, "headset-mic": 58129, "headset-off": 58170, "healing": 58355, "health-and-safety": 57813, "hearing": 57379, "hearing-disabled": 61700, "heart-broken": 60098, "heat-pump": 60440, "height": 59926, "help": 59527, "help-center": 61888, "help-outline": 59645, "hevc": 61473, "hexagon": 60217, "hide-image": 61474, "hide-source": 61475, "high-quality": 57380, "highlight": 57951, "highlight-alt": 61266, "highlight-off": 59528, "highlight-remove": 59528, "hiking": 58634, "history": 59529, "history-edu": 59966, "history-toggle-off": 61821, "hive": 60070, "hls": 60298, "hls-off": 60300, "holiday-village": 58762, "home": 59530, "home-filled": 59826, "home-max": 61476, "home-mini": 61477, "home-repair-service": 61696, "home-work": 59913, "horizontal-distribute": 57364, "horizontal-rule": 61704, "horizontal-split": 59719, "hot-tub": 60230, "hotel": 58682, "hotel-class": 59203, "hourglass-bottom": 59996, "hourglass-disabled": 61267, "hourglass-empty": 59531, "hourglass-full": 59532, "hourglass-top": 59995, "house": 59972, "house-siding": 61954, "houseboat": 58756, "how-to-reg": 57716, "how-to-vote": 57717, "html": 60286, "http": 59650, "https": 59533, "hub": 59892, "hvac": 61710, "ice-skating": 58635, "icecream": 60009, "image": 58356, "image-aspect-ratio": 58357, "image-not-supported": 61718, "image-search": 58431, "imagesearch-roller": 59828, "import-contacts": 57568, "import-export": 57539, "important-devices": 59666, "inbox": 57686, "incomplete-circle": 59291, "indeterminate-check-box": 59657, "info": 59534, "info-outline": 59535, "input": 59536, "insert-chart": 57931, "insert-chart-outlined": 57962, "insert-comment": 57932, "insert-drive-file": 57933, "insert-emoticon": 57934, "insert-invitation": 57935, "insert-link": 57936, "insert-page-break": 60106, "insert-photo": 57937, "insights": 61586, "install-desktop": 60273, "install-mobile": 60274, "integration-instructions": 61268, "interests": 59336, "interpreter-mode": 59451, "inventory": 57721, "inventory-2": 57761, "invert-colors": 59537, "invert-colors-off": 57540, "invert-colors-on": 59537, "ios-share": 59064, "iron": 58755, "iso": 58358, "javascript": 60284, "join-full": 60139, "join-inner": 60148, "join-left": 60146, "join-right": 60138, "kayaking": 58636, "kebab-dining": 59458, "key": 59196, "key-off": 60292, "keyboard": 58130, "keyboard-alt": 61480, "keyboard-arrow-down": 58131, "keyboard-arrow-left": 58132, "keyboard-arrow-right": 58133, "keyboard-arrow-up": 58134, "keyboard-backspace": 58135, "keyboard-capslock": 58136, "keyboard-command": 60128, "keyboard-command-key": 60135, "keyboard-control": 58835, "keyboard-control-key": 60134, "keyboard-double-arrow-down": 60112, "keyboard-double-arrow-left": 60099, "keyboard-double-arrow-right": 60105, "keyboard-double-arrow-up": 60111, "keyboard-hide": 58138, "keyboard-option": 60127, "keyboard-option-key": 60136, "keyboard-return": 58139, "keyboard-tab": 58140, "keyboard-voice": 58141, "king-bed": 59973, "kitchen": 60231, "kitesurfing": 58637, "label": 59538, "label-important": 59703, "label-important-outline": 59720, "label-off": 59830, "label-outline": 59539, "lan": 60207, "landscape": 58359, "landslide": 60375, "language": 59540, "laptop": 58142, "laptop-chromebook": 58143, "laptop-mac": 58144, "laptop-windows": 58145, "last-page": 58845, "launch": 59541, "layers": 58683, "layers-clear": 58684, "leaderboard": 61964, "leak-add": 58360, "leak-remove": 58361, "leave-bags-at-home": 61979, "legend-toggle": 61723, "lens": 58362, "lens-blur": 61481, "library-add": 57390, "library-add-check": 59831, "library-books": 57391, "library-music": 57392, "light": 61482, "light-mode": 58648, "lightbulb": 57584, "lightbulb-circle": 60414, "lightbulb-outline": 59663, "line-axis": 60058, "line-style": 59673, "line-weight": 59674, "linear-scale": 57952, "link": 57687, "link-off": 57711, "linked-camera": 58424, "liquor": 60000, "list": 59542, "list-alt": 57582, "live-help": 57542, "live-tv": 58937, "living": 61483, "local-activity": 58687, "local-airport": 58685, "local-atm": 58686, "local-attraction": 58687, "local-bar": 58688, "local-cafe": 58689, "local-car-wash": 58690, "local-convenience-store": 58691, "local-dining": 58710, "local-drink": 58692, "local-fire-department": 61269, "local-florist": 58693, "local-gas-station": 58694, "local-grocery-store": 58695, "local-hospital": 58696, "local-hotel": 58697, "local-laundry-service": 58698, "local-library": 58699, "local-mall": 58700, "local-movies": 58701, "local-offer": 58702, "local-parking": 58703, "local-pharmacy": 58704, "local-phone": 58705, "local-pizza": 58706, "local-play": 58707, "local-police": 61270, "local-post-office": 58708, "local-print-shop": 58709, "local-printshop": 58709, "local-restaurant": 58710, "local-see": 58711, "local-shipping": 58712, "local-taxi": 58713, "location-city": 59377, "location-disabled": 57782, "location-history": 58714, "location-off": 57543, "location-on": 57544, "location-pin": 61915, "location-searching": 57783, "lock": 59543, "lock-clock": 61271, "lock-open": 59544, "lock-outline": 59545, "lock-person": 63731, "lock-reset": 60126, "login": 60023, "logo-dev": 60118, "logout": 59834, "looks": 58364, "looks-3": 58363, "looks-4": 58365, "looks-5": 58366, "looks-6": 58367, "looks-one": 58368, "looks-two": 58369, "loop": 57384, "loupe": 58370, "low-priority": 57709, "loyalty": 59546, "lte-mobiledata": 61484, "lte-plus-mobiledata": 61485, "luggage": 62005, "lunch-dining": 60001, "lyrics": 60427, "macro-off": 63698, "mail": 57688, "mail-lock": 60426, "mail-outline": 57569, "male": 58766, "man": 58603, "man-2": 63713, "man-3": 63714, "man-4": 63715, "manage-accounts": 61486, "manage-history": 60391, "manage-search": 61487, "map": 58715, "maps-home-work": 61488, "maps-ugc": 61272, "margin": 59835, "mark-as-unread": 59836, "mark-chat-read": 61835, "mark-chat-unread": 61833, "mark-email-read": 61836, "mark-email-unread": 61834, "mark-unread-chat-alt": 60317, "markunread": 57689, "markunread-mailbox": 59547, "masks": 61976, "maximize": 59696, "media-bluetooth-off": 61489, "media-bluetooth-on": 61490, "mediation": 61351, "medical-information": 60397, "medical-services": 61705, "medication": 61491, "medication-liquid": 60039, "meeting-room": 60239, "memory": 58146, "menu": 58834, "menu-book": 59929, "menu-open": 59837, "merge": 60312, "merge-type": 57938, "message": 57545, "messenger": 57546, "messenger-outline": 57547, "mic": 57385, "mic-external-off": 61273, "mic-external-on": 61274, "mic-none": 57386, "mic-off": 57387, "microwave": 61956, "military-tech": 59967, "minimize": 59697, "minor-crash": 60401, "miscellaneous-services": 61708, "missed-video-call": 57459, "mms": 58904, "mobile-friendly": 57856, "mobile-off": 57857, "mobile-screen-share": 57575, "mobiledata-off": 61492, "mode": 61591, "mode-comment": 57939, "mode-edit": 57940, "mode-edit-outline": 61493, "mode-fan-off": 60439, "mode-night": 61494, "mode-of-travel": 59342, "mode-standby": 61495, "model-training": 61647, "monetization-on": 57955, "money": 58749, "money-off": 57948, "money-off-csred": 61496, "monitor": 61275, "monitor-heart": 60066, "monitor-weight": 61497, "monochrome-photos": 58371, "mood": 59378, "mood-bad": 59379, "moped": 60200, "more": 58905, "more-horiz": 58835, "more-time": 59997, "more-vert": 58836, "mosque": 60082, "motion-photos-auto": 61498, "motion-photos-off": 59840, "motion-photos-on": 59841, "motion-photos-pause": 61991, "motion-photos-paused": 59842, "motorcycle": 59675, "mouse": 58147, "move-down": 60257, "move-to-inbox": 57704, "move-up": 60260, "movie": 57388, "movie-creation": 58372, "movie-edit": 63552, "movie-filter": 58426, "moving": 58625, "mp": 59843, "multiline-chart": 59103, "multiple-stop": 61881, "multitrack-audio": 57784, "museum": 59958, "music-note": 58373, "music-off": 58432, "music-video": 57443, "my-library-add": 57390, "my-library-books": 57391, "my-library-music": 57392, "my-location": 58716, "nat": 61276, "nature": 58374, "nature-people": 58375, "navigate-before": 58376, "navigate-next": 58377, "navigation": 58717, "near-me": 58729, "near-me-disabled": 61935, "nearby-error": 61499, "nearby-off": 61500, "nest-cam-wired-stand": 60438, "network-cell": 57785, "network-check": 58944, "network-locked": 58906, "network-ping": 60362, "network-wifi": 57786, "network-wifi-1-bar": 60388, "network-wifi-2-bar": 60374, "network-wifi-3-bar": 60385, "new-label": 58889, "new-releases": 57393, "newspaper": 60289, "next-plan": 61277, "next-week": 57706, "nfc": 57787, "night-shelter": 61937, "nightlife": 60002, "nightlight": 61501, "nightlight-round": 61278, "nights-stay": 59974, "no-accounts": 61502, "no-adult-content": 63742, "no-backpack": 62007, "no-cell": 61860, "no-crash": 60400, "no-drinks": 61861, "no-encryption": 58945, "no-encryption-gmailerrorred": 61503, "no-flash": 61862, "no-food": 61863, "no-luggage": 62011, "no-meals": 61910, "no-meals-ouline": 61993, "no-meeting-room": 60238, "no-photography": 61864, "no-sim": 57548, "no-stroller": 61871, "no-transfer": 61909, "noise-aware": 60396, "noise-control-off": 60403, "nordic-walking": 58638, "north": 61920, "north-east": 61921, "north-west": 61922, "not-accessible": 61694, "not-interested": 57395, "not-listed-location": 58741, "not-started": 61649, "note": 57455, "note-add": 59548, "note-alt": 61504, "notes": 57964, "notification-add": 58265, "notification-important": 57348, "notifications": 59380, "notifications-active": 59383, "notifications-none": 59381, "notifications-off": 59382, "notifications-on": 59383, "notifications-paused": 59384, "now-wallpaper": 57788, "now-widgets": 57789, "numbers": 60103, "offline-bolt": 59698, "offline-pin": 59658, "offline-share": 59845, "oil-barrel": 60437, "on-device-training": 60413, "ondemand-video": 58938, "online-prediction": 61675, "opacity": 59676, "open-in-browser": 59549, "open-in-full": 61902, "open-in-new": 59550, "open-in-new-off": 58614, "open-with": 59551, "other-houses": 58764, "outbond": 61992, "outbound": 57802, "outbox": 61279, "outdoor-grill": 59975, "outgoing-mail": 61650, "outlet": 61908, "outlined-flag": 57710, "output": 60350, "padding": 59848, "pages": 59385, "pageview": 59552, "paid": 61505, "palette": 58378, "pallet": 63594, "pan-tool": 59685, "pan-tool-alt": 60345, "panorama": 58379, "panorama-fish-eye": 58380, "panorama-fisheye": 58380, "panorama-horizontal": 58381, "panorama-horizontal-select": 61280, "panorama-photosphere": 59849, "panorama-photosphere-select": 59850, "panorama-vertical": 58382, "panorama-vertical-select": 61281, "panorama-wide-angle": 58383, "panorama-wide-angle-select": 61282, "paragliding": 58639, "park": 60003, "party-mode": 59386, "password": 61506, "pattern": 61507, "pause": 57396, "pause-circle": 57762, "pause-circle-filled": 57397, "pause-circle-outline": 57398, "pause-presentation": 57578, "payment": 59553, "payments": 61283, "paypal": 60045, "pedal-bike": 60201, "pending": 61284, "pending-actions": 61883, "pentagon": 60240, "people": 59387, "people-alt": 59937, "people-outline": 59388, "percent": 60248, "perm-camera-mic": 59554, "perm-contact-cal": 59555, "perm-contact-calendar": 59555, "perm-data-setting": 59556, "perm-device-info": 59557, "perm-device-information": 59557, "perm-identity": 59558, "perm-media": 59559, "perm-phone-msg": 59560, "perm-scan-wifi": 59561, "person": 59389, "person-2": 63716, "person-3": 63717, "person-4": 63718, "person-add": 59390, "person-add-alt": 59981, "person-add-alt-1": 61285, "person-add-disabled": 59851, "person-off": 58640, "person-outline": 59391, "person-pin": 58714, "person-pin-circle": 58730, "person-remove": 61286, "person-remove-alt-1": 61287, "person-search": 61702, "personal-injury": 59098, "personal-video": 58939, "pest-control": 61690, "pest-control-rodent": 61693, "pets": 59677, "phishing": 60119, "phone": 57549, "phone-android": 58148, "phone-bluetooth-speaker": 58907, "phone-callback": 58953, "phone-disabled": 59852, "phone-enabled": 59853, "phone-forwarded": 58908, "phone-in-talk": 58909, "phone-iphone": 58149, "phone-locked": 58910, "phone-missed": 58911, "phone-paused": 58912, "phonelink": 58150, "phonelink-erase": 57563, "phonelink-lock": 57564, "phonelink-off": 58151, "phonelink-ring": 57565, "phonelink-setup": 57566, "photo": 58384, "photo-album": 58385, "photo-camera": 58386, "photo-camera-back": 61288, "photo-camera-front": 61289, "photo-filter": 58427, "photo-library": 58387, "photo-size-select-actual": 58418, "photo-size-select-large": 58419, "photo-size-select-small": 58420, "php": 60303, "piano": 58657, "piano-off": 58656, "picture-as-pdf": 58389, "picture-in-picture": 59562, "picture-in-picture-alt": 59665, "pie-chart": 59076, "pie-chart-outline": 61508, "pie-chart-outlined": 59077, "pin": 61509, "pin-drop": 58718, "pin-end": 59239, "pin-invoke": 59235, "pinch": 60216, "pivot-table-chart": 59854, "pix": 60067, "place": 58719, "plagiarism": 59994, "play-arrow": 57399, "play-circle": 57796, "play-circle-fill": 57400, "play-circle-filled": 57400, "play-circle-outline": 57401, "play-disabled": 61290, "play-for-work": 59654, "play-lesson": 61511, "playlist-add": 57403, "playlist-add-check": 57445, "playlist-add-check-circle": 59366, "playlist-add-circle": 59365, "playlist-play": 57439, "playlist-remove": 60288, "plumbing": 61703, "plus-one": 59392, "podcasts": 61512, "point-of-sale": 61822, "policy": 59927, "poll": 59393, "polyline": 60347, "polymer": 59563, "pool": 60232, "portable-wifi-off": 57550, "portrait": 58390, "post-add": 59936, "power": 58940, "power-input": 58166, "power-off": 58950, "power-settings-new": 59564, "precision-manufacturing": 61513, "pregnant-woman": 59678, "present-to-all": 57567, "preview": 61893, "price-change": 61514, "price-check": 61515, "print": 59565, "print-disabled": 59855, "priority-high": 58949, "privacy-tip": 61660, "private-connectivity": 59204, "production-quantity-limits": 57809, "propane": 60436, "propane-tank": 60435, "psychology": 59978, "psychology-alt": 63722, "public": 59403, "public-off": 61898, "publish": 57941, "published-with-changes": 62002, "punch-clock": 60072, "push-pin": 61709, "qr-code": 61291, "qr-code-2": 57354, "qr-code-scanner": 61958, "query-builder": 59566, "query-stats": 58620, "question-answer": 59567, "question-mark": 60299, "queue": 57404, "queue-music": 57405, "queue-play-next": 57446, "quick-contacts-dialer": 57551, "quick-contacts-mail": 57552, "quickreply": 61292, "quiz": 61516, "quora": 60056, "r-mobiledata": 61517, "radar": 61518, "radio": 57406, "radio-button-checked": 59447, "radio-button-off": 59446, "radio-button-on": 59447, "radio-button-unchecked": 59446, "railway-alert": 59857, "ramen-dining": 60004, "ramp-left": 60316, "ramp-right": 60310, "rate-review": 58720, "raw-off": 61519, "raw-on": 61520, "read-more": 61293, "real-estate-agent": 59194, "rebase-edit": 63558, "receipt": 59568, "receipt-long": 61294, "recent-actors": 57407, "recommend": 59858, "record-voice-over": 59679, "rectangle": 60244, "recycling": 59232, "reddit": 60064, "redeem": 59569, "redo": 57690, "reduce-capacity": 61980, "refresh": 58837, "remember-me": 61521, "remove": 57691, "remove-circle": 57692, "remove-circle-outline": 57693, "remove-done": 59859, "remove-from-queue": 57447, "remove-moderator": 59860, "remove-red-eye": 58391, "remove-road": 60412, "remove-shopping-cart": 59688, "reorder": 59646, "repartition": 63720, "repeat": 57408, "repeat-on": 59862, "repeat-one": 57409, "repeat-one-on": 59863, "replay": 57410, "replay-10": 57433, "replay-30": 57434, "replay-5": 57435, "replay-circle-filled": 59864, "reply": 57694, "reply-all": 57695, "report": 57696, "report-gmailerrorred": 61522, "report-off": 57712, "report-problem": 59570, "request-page": 61996, "request-quote": 61878, "reset-tv": 59865, "restart-alt": 61523, "restaurant": 58732, "restaurant-menu": 58721, "restore": 59571, "restore-from-trash": 59704, "restore-page": 59689, "reviews": 61524, "rice-bowl": 61941, "ring-volume": 57553, "rocket": 60325, "rocket-launch": 60315, "roller-shades": 60434, "roller-shades-closed": 60433, "roller-skating": 60365, "roofing": 61953, "room": 59572, "room-preferences": 61880, "room-service": 60233, "rotate-90-degrees-ccw": 58392, "rotate-90-degrees-cw": 60075, "rotate-left": 58393, "rotate-right": 58394, "roundabout-left": 60313, "roundabout-right": 60323, "rounded-corner": 59680, "route": 60109, "router": 58152, "rowing": 59681, "rss-feed": 57573, "rsvp": 61525, "rtt": 59821, "rule": 61890, "rule-folder": 61897, "run-circle": 61295, "running-with-errors": 58653, "rv-hookup": 58946, "safety-check": 60399, "safety-divider": 57804, "sailing": 58626, "sanitizer": 61981, "satellite": 58722, "satellite-alt": 60218, "save": 57697, "save-alt": 57713, "save-as": 60256, "saved-search": 59921, "savings": 58091, "scale": 60255, "scanner": 58153, "scatter-plot": 57960, "schedule": 59573, "schedule-send": 59914, "schema": 58621, "school": 59404, "science": 59979, "score": 57961, "scoreboard": 60368, "screen-lock-landscape": 57790, "screen-lock-portrait": 57791, "screen-lock-rotation": 57792, "screen-rotation": 57793, "screen-rotation-alt": 60398, "screen-search-desktop": 61296, "screen-share": 57570, "screenshot": 61526, "screenshot-monitor": 60424, "scuba-diving": 60366, "sd": 59869, "sd-card": 58915, "sd-card-alert": 61527, "sd-storage": 57794, "search": 59574, "search-off": 60022, "security": 58154, "security-update": 61528, "security-update-good": 61529, "security-update-warning": 61530, "segment": 59723, "select-all": 57698, "self-improvement": 60024, "sell": 61531, "send": 57699, "send-and-archive": 59916, "send-time-extension": 60123, "send-to-mobile": 61532, "sensor-door": 61877, "sensor-occupied": 60432, "sensor-window": 61876, "sensors": 58654, "sensors-off": 58655, "sentiment-dissatisfied": 59409, "sentiment-neutral": 59410, "sentiment-satisfied": 59411, "sentiment-satisfied-alt": 57581, "sentiment-very-dissatisfied": 59412, "sentiment-very-satisfied": 59413, "set-meal": 61930, "settings": 59576, "settings-accessibility": 61533, "settings-applications": 59577, "settings-backup-restore": 59578, "settings-bluetooth": 59579, "settings-brightness": 59581, "settings-cell": 59580, "settings-display": 59581, "settings-ethernet": 59582, "settings-input-antenna": 59583, "settings-input-component": 59584, "settings-input-composite": 59585, "settings-input-hdmi": 59586, "settings-input-svideo": 59587, "settings-overscan": 59588, "settings-phone": 59589, "settings-power": 59590, "settings-remote": 59591, "settings-suggest": 61534, "settings-system-daydream": 57795, "settings-voice": 59592, "severe-cold": 60371, "shape-line": 63699, "share": 59405, "share-arrival-time": 58660, "share-location": 61535, "shelves": 63598, "shield": 59872, "shield-moon": 60073, "shop": 59593, "shop-2": 57758, "shop-two": 59594, "shopify": 60061, "shopping-bag": 61900, "shopping-basket": 59595, "shopping-cart": 59596, "shopping-cart-checkout": 60296, "short-text": 57953, "shortcut": 61536, "show-chart": 59105, "shower": 61537, "shuffle": 57411, "shuffle-on": 59873, "shutter-speed": 58429, "sick": 61984, "sign-language": 60389, "signal-cellular-0-bar": 61608, "signal-cellular-4-bar": 57800, "signal-cellular-alt": 57858, "signal-cellular-alt-1-bar": 60383, "signal-cellular-alt-2-bar": 60387, "signal-cellular-connected-no-internet-0-bar": 61612, "signal-cellular-connected-no-internet-4-bar": 57805, "signal-cellular-no-sim": 57806, "signal-cellular-nodata": 61538, "signal-cellular-null": 57807, "signal-cellular-off": 57808, "signal-wifi-0-bar": 61616, "signal-wifi-4-bar": 57816, "signal-wifi-4-bar-lock": 57817, "signal-wifi-bad": 61539, "signal-wifi-connected-no-internet-4": 61540, "signal-wifi-off": 57818, "signal-wifi-statusbar-4-bar": 61541, "signal-wifi-statusbar-connected-no-internet-4": 61542, "signal-wifi-statusbar-null": 61543, "signpost": 60305, "sim-card": 58155, "sim-card-alert": 58916, "sim-card-download": 61544, "single-bed": 59976, "sip": 61545, "skateboarding": 58641, "skip-next": 57412, "skip-previous": 57413, "sledding": 58642, "slideshow": 58395, "slow-motion-video": 57448, "smart-button": 61889, "smart-display": 61546, "smart-screen": 61547, "smart-toy": 61548, "smartphone": 58156, "smoke-free": 60234, "smoking-rooms": 60235, "sms": 58917, "sms-failed": 58918, "snapchat": 60014, "snippet-folder": 61895, "snooze": 57414, "snowboarding": 58643, "snowing": 59407, "snowmobile": 58627, "snowshoeing": 58644, "soap": 61874, "social-distance": 57803, "solar-power": 60431, "sort": 57700, "sort-by-alpha": 57427, "sos": 60407, "soup-kitchen": 59347, "source": 61892, "south": 61923, "south-america": 59364, "south-east": 61924, "south-west": 61925, "spa": 60236, "space-bar": 57942, "space-dashboard": 58987, "spatial-audio": 60395, "spatial-audio-off": 60392, "spatial-tracking": 60394, "speaker": 58157, "speaker-group": 58158, "speaker-notes": 59597, "speaker-notes-off": 59690, "speaker-phone": 57554, "speed": 59876, "spellcheck": 59598, "splitscreen": 61549, "spoke": 59815, "sports": 59952, "sports-bar": 61939, "sports-baseball": 59985, "sports-basketball": 59942, "sports-cricket": 59943, "sports-esports": 59944, "sports-football": 59945, "sports-golf": 59946, "sports-gymnastics": 60356, "sports-handball": 59955, "sports-hockey": 59947, "sports-kabaddi": 59956, "sports-martial-arts": 60137, "sports-mma": 59948, "sports-motorsports": 59949, "sports-rugby": 59950, "sports-score": 61550, "sports-soccer": 59951, "sports-tennis": 59954, "sports-volleyball": 59953, "square": 60214, "square-foot": 59977, "ssid-chart": 60262, "stacked-bar-chart": 59878, "stacked-line-chart": 61995, "stadium": 60304, "stairs": 61865, "star": 59448, "star-border": 59450, "star-border-purple500": 61593, "star-half": 59449, "star-outline": 61551, "star-purple500": 61594, "star-rate": 61676, "stars": 59600, "start": 57481, "stay-current-landscape": 57555, "stay-current-portrait": 57556, "stay-primary-landscape": 57557, "stay-primary-portrait": 57558, "sticky-note-2": 61948, "stop": 57415, "stop-circle": 61297, "stop-screen-share": 57571, "storage": 57819, "store": 59601, "store-mall-directory": 58723, "storefront": 59922, "storm": 61552, "straight": 60309, "straighten": 58396, "stream": 59881, "streetview": 58734, "strikethrough-s": 57943, "stroller": 61870, "style": 58397, "subdirectory-arrow-left": 58841, "subdirectory-arrow-right": 58842, "subject": 59602, "subscript": 61713, "subscriptions": 57444, "subtitles": 57416, "subtitles-off": 61298, "subway": 58735, "summarize": 61553, "sunny": 59418, "sunny-snowing": 59417, "superscript": 61714, "supervised-user-circle": 59705, "supervisor-account": 59603, "support": 61299, "support-agent": 61666, "surfing": 58645, "surround-sound": 57417, "swap-calls": 57559, "swap-horiz": 59604, "swap-horizontal-circle": 59699, "swap-vert": 59605, "swap-vert-circle": 59606, "swap-vertical-circle": 59606, "swipe": 59884, "swipe-down": 60243, "swipe-down-alt": 60208, "swipe-left": 60249, "swipe-left-alt": 60211, "swipe-right": 60242, "swipe-right-alt": 60246, "swipe-up": 60206, "swipe-up-alt": 60213, "swipe-vertical": 60241, "switch-access-shortcut": 59361, "switch-access-shortcut-add": 59362, "switch-account": 59885, "switch-camera": 58398, "switch-left": 61905, "switch-right": 61906, "switch-video": 58399, "synagogue": 60080, "sync": 58919, "sync-alt": 59928, "sync-disabled": 58920, "sync-lock": 60142, "sync-problem": 58921, "system-security-update": 61554, "system-security-update-good": 61555, "system-security-update-warning": 61556, "system-update": 58922, "system-update-alt": 59607, "system-update-tv": 59607, "tab": 59608, "tab-unselected": 59609, "table-bar": 60114, "table-chart": 57957, "table-restaurant": 60102, "table-rows": 61697, "table-view": 61886, "tablet": 58159, "tablet-android": 58160, "tablet-mac": 58161, "tag": 59887, "tag-faces": 58400, "takeout-dining": 60020, "tap-and-play": 58923, "tapas": 61929, "task": 61557, "task-alt": 58086, "taxi-alert": 61300, "telegram": 60011, "temple-buddhist": 60083, "temple-hindu": 60079, "terminal": 60302, "terrain": 58724, "text-decrease": 60125, "text-fields": 57954, "text-format": 57701, "text-increase": 60130, "text-rotate-up": 59706, "text-rotate-vertical": 59707, "text-rotation-angledown": 59708, "text-rotation-angleup": 59709, "text-rotation-down": 59710, "text-rotation-none": 59711, "text-snippet": 61894, "textsms": 57560, "texture": 58401, "theater-comedy": 60006, "theaters": 59610, "thermostat": 61558, "thermostat-auto": 61559, "thumb-down": 59611, "thumb-down-alt": 59414, "thumb-down-off-alt": 59890, "thumb-up": 59612, "thumb-up-alt": 59415, "thumb-up-off-alt": 59891, "thumbs-up-down": 59613, "thunderstorm": 60379, "tiktok": 60030, "time-to-leave": 58924, "timelapse": 58402, "timeline": 59682, "timer": 58405, "timer-10": 58403, "timer-10-select": 61562, "timer-3": 58404, "timer-3-select": 61563, "timer-off": 58406, "tips-and-updates": 59290, "tire-repair": 60360, "title": 57956, "toc": 59614, "today": 59615, "toggle-off": 59893, "toggle-on": 59894, "token": 59941, "toll": 59616, "tonality": 58407, "topic": 61896, "tornado": 57753, "touch-app": 59667, "tour": 61301, "toys": 58162, "track-changes": 59617, "traffic": 58725, "train": 58736, "tram": 58737, "transcribe": 63724, "transfer-within-a-station": 58738, "transform": 58408, "transgender": 58765, "transit-enterexit": 58745, "translate": 59618, "travel-explore": 58075, "trending-down": 59619, "trending-flat": 59620, "trending-neutral": 59620, "trending-up": 59621, "trip-origin": 58747, "trolley": 63595, "troubleshoot": 57810, "try": 61564, "tsunami": 60376, "tty": 61866, "tune": 58409, "tungsten": 61565, "turn-left": 60326, "turn-right": 60331, "turn-sharp-left": 60327, "turn-sharp-right": 60330, "turn-slight-left": 60324, "turn-slight-right": 60314, "turned-in": 59622, "turned-in-not": 59623, "tv": 58163, "tv-off": 58951, "two-wheeler": 59897, "type-specimen": 63728, "u-turn-left": 60321, "u-turn-right": 60322, "umbrella": 61869, "unarchive": 57705, "undo": 57702, "unfold-less": 58838, "unfold-less-double": 63695, "unfold-more": 58839, "unfold-more-double": 63696, "unpublished": 62006, "unsubscribe": 57579, "upcoming": 61566, "update": 59683, "update-disabled": 57461, "upgrade": 61691, "upload": 61595, "upload-file": 59900, "usb": 57824, "usb-off": 58618, "vaccines": 57656, "vape-free": 60358, "vaping-rooms": 60367, "verified": 61302, "verified-user": 59624, "vertical-align-bottom": 57944, "vertical-align-center": 57945, "vertical-align-top": 57946, "vertical-distribute": 57462, "vertical-shades": 60430, "vertical-shades-closed": 60429, "vertical-split": 59721, "vibration": 58925, "video-call": 57456, "video-camera-back": 61567, "video-camera-front": 61568, "video-chat": 63648, "video-collection": 57418, "video-file": 60295, "video-label": 57457, "video-library": 57418, "video-settings": 60021, "video-stable": 61569, "videocam": 57419, "videocam-off": 57420, "videogame-asset": 58168, "videogame-asset-off": 58624, "view-agenda": 59625, "view-array": 59626, "view-carousel": 59627, "view-column": 59628, "view-comfortable": 58410, "view-comfy": 58410, "view-comfy-alt": 60275, "view-compact": 58411, "view-compact-alt": 60276, "view-cozy": 60277, "view-day": 59629, "view-headline": 59630, "view-in-ar": 59902, "view-kanban": 60287, "view-list": 59631, "view-module": 59632, "view-quilt": 59633, "view-sidebar": 61716, "view-stream": 59634, "view-timeline": 60293, "view-week": 59635, "vignette": 58421, "villa": 58758, "visibility": 59636, "visibility-off": 59637, "voice-chat": 58926, "voice-over-off": 59722, "voicemail": 57561, "volcano": 60378, "volume-down": 57421, "volume-down-alt": 59292, "volume-mute": 57422, "volume-off": 57423, "volume-up": 57424, "volunteer-activism": 60016, "vpn-key": 57562, "vpn-key-off": 60282, "vpn-lock": 58927, "vrpano": 61570, "wallet": 63743, "wallet-giftcard": 59638, "wallet-membership": 59639, "wallet-travel": 59640, "wallpaper": 57788, "warehouse": 60344, "warning": 57346, "warning-amber": 61571, "wash": 61873, "watch": 58164, "watch-later": 59684, "watch-off": 60131, "water": 61572, "water-damage": 61955, "water-drop": 59288, "waterfall-chart": 59904, "waves": 57718, "waving-hand": 59238, "wb-auto": 58412, "wb-cloudy": 58413, "wb-incandescent": 58414, "wb-iridescent": 58422, "wb-shade": 59905, "wb-sunny": 58416, "wb-twighlight": 59906, "wb-twilight": 57798, "wc": 58941, "web": 57425, "web-asset": 57449, "web-asset-off": 58615, "web-stories": 58773, "webhook": 60306, "wechat": 60033, "weekend": 57707, "west": 61926, "whatshot": 59406, "wheelchair-pickup": 61867, "where-to-vote": 57719, "widgets": 57789, "width-full": 63733, "width-normal": 63734, "width-wide": 63735, "wifi": 58942, "wifi-1-bar": 58570, "wifi-2-bar": 58585, "wifi-calling": 61303, "wifi-calling-3": 61573, "wifi-channel": 60266, "wifi-find": 60209, "wifi-lock": 57825, "wifi-off": 58952, "wifi-password": 60267, "wifi-protected-setup": 61692, "wifi-tethering": 57826, "wifi-tethering-error": 60121, "wifi-tethering-error-rounded": 61574, "wifi-tethering-off": 61575, "wind-power": 60428, "window": 61576, "wine-bar": 61928, "woman": 57662, "woman-2": 63719, "woo-commerce": 60013, "wordpress": 60063, "work": 59641, "work-history": 60425, "work-off": 59714, "work-outline": 59715, "workspace-premium": 59311, "workspaces": 57760, "workspaces-filled": 59917, "workspaces-outline": 59919, "wrap-text": 57947, "wrong-location": 61304, "wysiwyg": 61891, "yard": 61577, "youtube-searched-for": 59642, "zoom-in": 59647, "zoom-in-map": 60205, "zoom-out": 59648, "zoom-out-map": 58731 } ================================================ FILE: packages/material-icons/package.json ================================================ { "name": "@react-native-vector-icons/material-icons", "version": "12.5.0", "description": "Material Icons font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "material-icons" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/material-icons" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/material-icons/react-native-vector-icons-material-icons.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-material-icons' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/material-icons/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * MaterialIcons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/MaterialIcons.json'; export const MaterialIcons = createIconSet(glyphMap, { postScriptName: 'MaterialIcons-Regular', fontFileName: 'MaterialIcons.ttf', fontSource: require('../fonts/MaterialIcons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type MaterialIconsIconName = keyof typeof glyphMap; /** @alias */ export default MaterialIcons; ================================================ FILE: packages/material-icons/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * MaterialIcons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/MaterialIcons.json'; export const MaterialIcons = createIconSet(glyphMap, { postScriptName: 'MaterialIcons-Regular', fontFileName: 'MaterialIcons.ttf', }); export type MaterialIconsIconName = keyof typeof glyphMap; /** @alias */ export default MaterialIcons; ================================================ FILE: packages/material-icons/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/material-icons/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/octicons/.fontcustom-manifest.json ================================================ { "checksum": { "previous": "fd9a60b515041398881b0181628154702913f13d8e3ef4646e83a01b8bc4af1b", "current": "fd9a60b515041398881b0181628154702913f13d8e3ef4646e83a01b8bc4af1b" }, "fonts": [ "Octicons/Octicons.ttf", "Octicons/Octicons.svg", "Octicons/Octicons.woff", "Octicons/Octicons.eot", "Octicons/Octicons.woff2" ], "glyphs": { "accessibility": { "codepoint": 61696, "source": "renamedSVGs/accessibility.svg" }, "accessibility-inset": { "codepoint": 61697, "source": "renamedSVGs/accessibility-inset.svg" }, "agent": { "codepoint": 62027, "source": "renamedSVGs/agent.svg" }, "ai-model": { "codepoint": 62022, "source": "renamedSVGs/ai-model.svg" }, "alert": { "codepoint": 61698, "source": "renamedSVGs/alert.svg" }, "alert-fill": { "codepoint": 61699, "source": "renamedSVGs/alert-fill.svg" }, "apps": { "codepoint": 61700, "source": "renamedSVGs/apps.svg" }, "archive": { "codepoint": 61701, "source": "renamedSVGs/archive.svg" }, "arrow-both": { "codepoint": 61702, "source": "renamedSVGs/arrow-both.svg" }, "arrow-down": { "codepoint": 61703, "source": "renamedSVGs/arrow-down.svg" }, "arrow-down-left": { "codepoint": 61704, "source": "renamedSVGs/arrow-down-left.svg" }, "arrow-down-right": { "codepoint": 61705, "source": "renamedSVGs/arrow-down-right.svg" }, "arrow-left": { "codepoint": 61706, "source": "renamedSVGs/arrow-left.svg" }, "arrow-right": { "codepoint": 61707, "source": "renamedSVGs/arrow-right.svg" }, "arrow-switch": { "codepoint": 61708, "source": "renamedSVGs/arrow-switch.svg" }, "arrow-up": { "codepoint": 61709, "source": "renamedSVGs/arrow-up.svg" }, "arrow-up-left": { "codepoint": 61710, "source": "renamedSVGs/arrow-up-left.svg" }, "arrow-up-right": { "codepoint": 61711, "source": "renamedSVGs/arrow-up-right.svg" }, "beaker": { "codepoint": 61712, "source": "renamedSVGs/beaker.svg" }, "bell": { "codepoint": 61713, "source": "renamedSVGs/bell.svg" }, "bell-fill": { "codepoint": 61714, "source": "renamedSVGs/bell-fill.svg" }, "bell-slash": { "codepoint": 61715, "source": "renamedSVGs/bell-slash.svg" }, "blocked": { "codepoint": 61716, "source": "renamedSVGs/blocked.svg" }, "bold": { "codepoint": 61717, "source": "renamedSVGs/bold.svg" }, "book": { "codepoint": 61718, "source": "renamedSVGs/book.svg" }, "book-locked": { "codepoint": 62036, "source": "renamedSVGs/book-locked.svg" }, "bookmark": { "codepoint": 61719, "source": "renamedSVGs/bookmark.svg" }, "bookmark-filled": { "codepoint": 62017, "source": "renamedSVGs/bookmark-filled.svg" }, "bookmark-slash": { "codepoint": 61720, "source": "renamedSVGs/bookmark-slash.svg" }, "bookmark-slash-fill": { "codepoint": 62018, "source": "renamedSVGs/bookmark-slash-fill.svg" }, "boolean-off": { "codepoint": 62037, "source": "renamedSVGs/boolean-off.svg" }, "boolean-on": { "codepoint": 62038, "source": "renamedSVGs/boolean-on.svg" }, "briefcase": { "codepoint": 61721, "source": "renamedSVGs/briefcase.svg" }, "broadcast": { "codepoint": 61722, "source": "renamedSVGs/broadcast.svg" }, "browser": { "codepoint": 61723, "source": "renamedSVGs/browser.svg" }, "bug": { "codepoint": 61724, "source": "renamedSVGs/bug.svg" }, "cache": { "codepoint": 61725, "source": "renamedSVGs/cache.svg" }, "calendar": { "codepoint": 61726, "source": "renamedSVGs/calendar.svg" }, "check": { "codepoint": 61727, "source": "renamedSVGs/check.svg" }, "check-circle": { "codepoint": 61728, "source": "renamedSVGs/check-circle.svg" }, "check-circle-fill": { "codepoint": 61729, "source": "renamedSVGs/check-circle-fill.svg" }, "checkbox": { "codepoint": 61730, "source": "renamedSVGs/checkbox.svg" }, "checkbox-fill": { "codepoint": 62028, "source": "renamedSVGs/checkbox-fill.svg" }, "checklist": { "codepoint": 61731, "source": "renamedSVGs/checklist.svg" }, "chevron-down": { "codepoint": 61732, "source": "renamedSVGs/chevron-down.svg" }, "chevron-left": { "codepoint": 61733, "source": "renamedSVGs/chevron-left.svg" }, "chevron-right": { "codepoint": 61734, "source": "renamedSVGs/chevron-right.svg" }, "chevron-up": { "codepoint": 61735, "source": "renamedSVGs/chevron-up.svg" }, "circle": { "codepoint": 61736, "source": "renamedSVGs/circle.svg" }, "circle-slash": { "codepoint": 61737, "source": "renamedSVGs/circle-slash.svg" }, "clock": { "codepoint": 61738, "source": "renamedSVGs/clock.svg" }, "clock-fill": { "codepoint": 61739, "source": "renamedSVGs/clock-fill.svg" }, "cloud": { "codepoint": 61740, "source": "renamedSVGs/cloud.svg" }, "cloud-offline": { "codepoint": 61741, "source": "renamedSVGs/cloud-offline.svg" }, "code": { "codepoint": 61742, "source": "renamedSVGs/code.svg" }, "code-of-conduct": { "codepoint": 61743, "source": "renamedSVGs/code-of-conduct.svg" }, "code-review": { "codepoint": 61744, "source": "renamedSVGs/code-review.svg" }, "code-square": { "codepoint": 61745, "source": "renamedSVGs/code-square.svg" }, "codescan": { "codepoint": 61746, "source": "renamedSVGs/codescan.svg" }, "codescan-checkmark": { "codepoint": 61747, "source": "renamedSVGs/codescan-checkmark.svg" }, "codespaces": { "codepoint": 61748, "source": "renamedSVGs/codespaces.svg" }, "columns": { "codepoint": 61749, "source": "renamedSVGs/columns.svg" }, "command-palette": { "codepoint": 61750, "source": "renamedSVGs/command-palette.svg" }, "comment": { "codepoint": 61751, "source": "renamedSVGs/comment.svg" }, "comment-ai": { "codepoint": 62029, "source": "renamedSVGs/comment-ai.svg" }, "comment-discussion": { "codepoint": 61752, "source": "renamedSVGs/comment-discussion.svg" }, "comment-locked": { "codepoint": 62039, "source": "renamedSVGs/comment-locked.svg" }, "compose": { "codepoint": 62040, "source": "renamedSVGs/compose.svg" }, "container": { "codepoint": 61753, "source": "renamedSVGs/container.svg" }, "copilot": { "codepoint": 61754, "source": "renamedSVGs/copilot.svg" }, "copilot-error": { "codepoint": 61755, "source": "renamedSVGs/copilot-error.svg" }, "copilot-warning": { "codepoint": 61756, "source": "renamedSVGs/copilot-warning.svg" }, "copy": { "codepoint": 61757, "source": "renamedSVGs/copy.svg" }, "cpu": { "codepoint": 61758, "source": "renamedSVGs/cpu.svg" }, "credit-card": { "codepoint": 61759, "source": "renamedSVGs/credit-card.svg" }, "cross-reference": { "codepoint": 61760, "source": "renamedSVGs/cross-reference.svg" }, "crosshairs": { "codepoint": 62041, "source": "renamedSVGs/crosshairs.svg" }, "dash": { "codepoint": 61761, "source": "renamedSVGs/dash.svg" }, "database": { "codepoint": 61762, "source": "renamedSVGs/database.svg" }, "dependabot": { "codepoint": 61763, "source": "renamedSVGs/dependabot.svg" }, "desktop-download": { "codepoint": 61764, "source": "renamedSVGs/desktop-download.svg" }, "device-camera": { "codepoint": 61765, "source": "renamedSVGs/device-camera.svg" }, "device-camera-video": { "codepoint": 61766, "source": "renamedSVGs/device-camera-video.svg" }, "device-desktop": { "codepoint": 61767, "source": "renamedSVGs/device-desktop.svg" }, "device-mobile": { "codepoint": 61768, "source": "renamedSVGs/device-mobile.svg" }, "devices": { "codepoint": 61769, "source": "renamedSVGs/devices.svg" }, "diamond": { "codepoint": 61770, "source": "renamedSVGs/diamond.svg" }, "dice": { "codepoint": 62042, "source": "renamedSVGs/dice.svg" }, "diff": { "codepoint": 61771, "source": "renamedSVGs/diff.svg" }, "diff-added": { "codepoint": 61772, "source": "renamedSVGs/diff-added.svg" }, "diff-ignored": { "codepoint": 61773, "source": "renamedSVGs/diff-ignored.svg" }, "diff-modified": { "codepoint": 61774, "source": "renamedSVGs/diff-modified.svg" }, "diff-removed": { "codepoint": 61775, "source": "renamedSVGs/diff-removed.svg" }, "diff-renamed": { "codepoint": 61776, "source": "renamedSVGs/diff-renamed.svg" }, "discussion-closed": { "codepoint": 61777, "source": "renamedSVGs/discussion-closed.svg" }, "discussion-duplicate": { "codepoint": 61778, "source": "renamedSVGs/discussion-duplicate.svg" }, "discussion-outdated": { "codepoint": 61779, "source": "renamedSVGs/discussion-outdated.svg" }, "dot": { "codepoint": 61780, "source": "renamedSVGs/dot.svg" }, "dot-fill": { "codepoint": 61781, "source": "renamedSVGs/dot-fill.svg" }, "download": { "codepoint": 61782, "source": "renamedSVGs/download.svg" }, "duplicate": { "codepoint": 61783, "source": "renamedSVGs/duplicate.svg" }, "ellipsis": { "codepoint": 61784, "source": "renamedSVGs/ellipsis.svg" }, "exclamation": { "codepoint": 62043, "source": "renamedSVGs/exclamation.svg" }, "eye": { "codepoint": 61785, "source": "renamedSVGs/eye.svg" }, "eye-closed": { "codepoint": 61786, "source": "renamedSVGs/eye-closed.svg" }, "feed-discussion": { "codepoint": 61787, "source": "renamedSVGs/feed-discussion.svg" }, "feed-forked": { "codepoint": 61788, "source": "renamedSVGs/feed-forked.svg" }, "feed-heart": { "codepoint": 61789, "source": "renamedSVGs/feed-heart.svg" }, "feed-issue-closed": { "codepoint": 61790, "source": "renamedSVGs/feed-issue-closed.svg" }, "feed-issue-draft": { "codepoint": 61791, "source": "renamedSVGs/feed-issue-draft.svg" }, "feed-issue-open": { "codepoint": 61792, "source": "renamedSVGs/feed-issue-open.svg" }, "feed-issue-reopen": { "codepoint": 61793, "source": "renamedSVGs/feed-issue-reopen.svg" }, "feed-merged": { "codepoint": 61794, "source": "renamedSVGs/feed-merged.svg" }, "feed-person": { "codepoint": 61795, "source": "renamedSVGs/feed-person.svg" }, "feed-plus": { "codepoint": 61796, "source": "renamedSVGs/feed-plus.svg" }, "feed-public": { "codepoint": 61797, "source": "renamedSVGs/feed-public.svg" }, "feed-pull-request-closed": { "codepoint": 61798, "source": "renamedSVGs/feed-pull-request-closed.svg" }, "feed-pull-request-draft": { "codepoint": 61799, "source": "renamedSVGs/feed-pull-request-draft.svg" }, "feed-pull-request-open": { "codepoint": 61800, "source": "renamedSVGs/feed-pull-request-open.svg" }, "feed-repo": { "codepoint": 61801, "source": "renamedSVGs/feed-repo.svg" }, "feed-rocket": { "codepoint": 61802, "source": "renamedSVGs/feed-rocket.svg" }, "feed-star": { "codepoint": 61803, "source": "renamedSVGs/feed-star.svg" }, "feed-tag": { "codepoint": 61804, "source": "renamedSVGs/feed-tag.svg" }, "feed-trophy": { "codepoint": 61805, "source": "renamedSVGs/feed-trophy.svg" }, "file": { "codepoint": 61806, "source": "renamedSVGs/file.svg" }, "file-added": { "codepoint": 61807, "source": "renamedSVGs/file-added.svg" }, "file-badge": { "codepoint": 61808, "source": "renamedSVGs/file-badge.svg" }, "file-binary": { "codepoint": 61809, "source": "renamedSVGs/file-binary.svg" }, "file-check": { "codepoint": 62044, "source": "renamedSVGs/file-check.svg" }, "file-code": { "codepoint": 61810, "source": "renamedSVGs/file-code.svg" }, "file-diff": { "codepoint": 61811, "source": "renamedSVGs/file-diff.svg" }, "file-directory": { "codepoint": 61812, "source": "renamedSVGs/file-directory.svg" }, "file-directory-fill": { "codepoint": 61813, "source": "renamedSVGs/file-directory-fill.svg" }, "file-directory-open-fill": { "codepoint": 61814, "source": "renamedSVGs/file-directory-open-fill.svg" }, "file-directory-symlink": { "codepoint": 61815, "source": "renamedSVGs/file-directory-symlink.svg" }, "file-media": { "codepoint": 62019, "source": "renamedSVGs/file-media.svg" }, "file-moved": { "codepoint": 61816, "source": "renamedSVGs/file-moved.svg" }, "file-removed": { "codepoint": 61817, "source": "renamedSVGs/file-removed.svg" }, "file-submodule": { "codepoint": 61818, "source": "renamedSVGs/file-submodule.svg" }, "file-symlink-file": { "codepoint": 61819, "source": "renamedSVGs/file-symlink-file.svg" }, "file-zip": { "codepoint": 61820, "source": "renamedSVGs/file-zip.svg" }, "filter": { "codepoint": 61821, "source": "renamedSVGs/filter.svg" }, "filter-remove": { "codepoint": 61822, "source": "renamedSVGs/filter-remove.svg" }, "fiscal-host": { "codepoint": 61823, "source": "renamedSVGs/fiscal-host.svg" }, "flame": { "codepoint": 61824, "source": "renamedSVGs/flame.svg" }, "flowchart": { "codepoint": 62045, "source": "renamedSVGs/flowchart.svg" }, "focus-center": { "codepoint": 62046, "source": "renamedSVGs/focus-center.svg" }, "fold": { "codepoint": 61825, "source": "renamedSVGs/fold.svg" }, "fold-down": { "codepoint": 61826, "source": "renamedSVGs/fold-down.svg" }, "fold-up": { "codepoint": 61827, "source": "renamedSVGs/fold-up.svg" }, "gear": { "codepoint": 61828, "source": "renamedSVGs/gear.svg" }, "gift": { "codepoint": 61829, "source": "renamedSVGs/gift.svg" }, "git-branch": { "codepoint": 61830, "source": "renamedSVGs/git-branch.svg" }, "git-branch-check": { "codepoint": 62047, "source": "renamedSVGs/git-branch-check.svg" }, "git-commit": { "codepoint": 61831, "source": "renamedSVGs/git-commit.svg" }, "git-compare": { "codepoint": 61832, "source": "renamedSVGs/git-compare.svg" }, "git-merge": { "codepoint": 61833, "source": "renamedSVGs/git-merge.svg" }, "git-merge-queue": { "codepoint": 61834, "source": "renamedSVGs/git-merge-queue.svg" }, "git-pull-request": { "codepoint": 61835, "source": "renamedSVGs/git-pull-request.svg" }, "git-pull-request-closed": { "codepoint": 61836, "source": "renamedSVGs/git-pull-request-closed.svg" }, "git-pull-request-draft": { "codepoint": 61837, "source": "renamedSVGs/git-pull-request-draft.svg" }, "git-pull-request-locked": { "codepoint": 62048, "source": "renamedSVGs/git-pull-request-locked.svg" }, "globe": { "codepoint": 61838, "source": "renamedSVGs/globe.svg" }, "goal": { "codepoint": 61839, "source": "renamedSVGs/goal.svg" }, "grabber": { "codepoint": 61840, "source": "renamedSVGs/grabber.svg" }, "graph": { "codepoint": 61841, "source": "renamedSVGs/graph.svg" }, "graph-bar-horizontal": { "codepoint": 62049, "source": "renamedSVGs/graph-bar-horizontal.svg" }, "graph-bar-vertical": { "codepoint": 62050, "source": "renamedSVGs/graph-bar-vertical.svg" }, "hash": { "codepoint": 61842, "source": "renamedSVGs/hash.svg" }, "heading": { "codepoint": 61843, "source": "renamedSVGs/heading.svg" }, "heart": { "codepoint": 61844, "source": "renamedSVGs/heart.svg" }, "heart-fill": { "codepoint": 61845, "source": "renamedSVGs/heart-fill.svg" }, "history": { "codepoint": 61846, "source": "renamedSVGs/history.svg" }, "home": { "codepoint": 61847, "source": "renamedSVGs/home.svg" }, "home-fill": { "codepoint": 62020, "source": "renamedSVGs/home-fill.svg" }, "horizontal-rule": { "codepoint": 61848, "source": "renamedSVGs/horizontal-rule.svg" }, "hourglass": { "codepoint": 61849, "source": "renamedSVGs/hourglass.svg" }, "hubot": { "codepoint": 61850, "source": "renamedSVGs/hubot.svg" }, "id-badge": { "codepoint": 61851, "source": "renamedSVGs/id-badge.svg" }, "image": { "codepoint": 61852, "source": "renamedSVGs/image.svg" }, "inbox": { "codepoint": 61853, "source": "renamedSVGs/inbox.svg" }, "inbox-fill": { "codepoint": 62051, "source": "renamedSVGs/inbox-fill.svg" }, "infinity": { "codepoint": 61854, "source": "renamedSVGs/infinity.svg" }, "info": { "codepoint": 61855, "source": "renamedSVGs/info.svg" }, "issue-closed": { "codepoint": 61856, "source": "renamedSVGs/issue-closed.svg" }, "issue-draft": { "codepoint": 61857, "source": "renamedSVGs/issue-draft.svg" }, "issue-locked": { "codepoint": 62052, "source": "renamedSVGs/issue-locked.svg" }, "issue-opened": { "codepoint": 61858, "source": "renamedSVGs/issue-opened.svg" }, "issue-reopened": { "codepoint": 61859, "source": "renamedSVGs/issue-reopened.svg" }, "issue-tracked-by": { "codepoint": 61860, "source": "renamedSVGs/issue-tracked-by.svg" }, "issue-tracks": { "codepoint": 61861, "source": "renamedSVGs/issue-tracks.svg" }, "italic": { "codepoint": 61862, "source": "renamedSVGs/italic.svg" }, "iterations": { "codepoint": 61863, "source": "renamedSVGs/iterations.svg" }, "kebab-horizontal": { "codepoint": 61864, "source": "renamedSVGs/kebab-horizontal.svg" }, "key": { "codepoint": 61865, "source": "renamedSVGs/key.svg" }, "key-asterisk": { "codepoint": 61866, "source": "renamedSVGs/key-asterisk.svg" }, "law": { "codepoint": 61867, "source": "renamedSVGs/law.svg" }, "light-bulb": { "codepoint": 61868, "source": "renamedSVGs/light-bulb.svg" }, "link": { "codepoint": 61869, "source": "renamedSVGs/link.svg" }, "link-external": { "codepoint": 61870, "source": "renamedSVGs/link-external.svg" }, "list-ordered": { "codepoint": 61871, "source": "renamedSVGs/list-ordered.svg" }, "list-unordered": { "codepoint": 61872, "source": "renamedSVGs/list-unordered.svg" }, "location": { "codepoint": 61873, "source": "renamedSVGs/location.svg" }, "lock": { "codepoint": 61874, "source": "renamedSVGs/lock.svg" }, "log": { "codepoint": 61875, "source": "renamedSVGs/log.svg" }, "logo-gist": { "codepoint": 61876, "source": "renamedSVGs/logo-gist.svg" }, "logo-github": { "codepoint": 61877, "source": "renamedSVGs/logo-github.svg" }, "loop": { "codepoint": 62030, "source": "renamedSVGs/loop.svg" }, "mail": { "codepoint": 61878, "source": "renamedSVGs/mail.svg" }, "mark-github": { "codepoint": 61879, "source": "renamedSVGs/mark-github.svg" }, "markdown": { "codepoint": 61880, "source": "renamedSVGs/markdown.svg" }, "maximize": { "codepoint": 62031, "source": "renamedSVGs/maximize.svg" }, "mcp": { "codepoint": 62032, "source": "renamedSVGs/mcp.svg" }, "megaphone": { "codepoint": 61881, "source": "renamedSVGs/megaphone.svg" }, "mention": { "codepoint": 61882, "source": "renamedSVGs/mention.svg" }, "meter": { "codepoint": 61883, "source": "renamedSVGs/meter.svg" }, "milestone": { "codepoint": 61884, "source": "renamedSVGs/milestone.svg" }, "minimize": { "codepoint": 62033, "source": "renamedSVGs/minimize.svg" }, "mirror": { "codepoint": 61885, "source": "renamedSVGs/mirror.svg" }, "moon": { "codepoint": 61886, "source": "renamedSVGs/moon.svg" }, "mortar-board": { "codepoint": 61887, "source": "renamedSVGs/mortar-board.svg" }, "move-to-bottom": { "codepoint": 61888, "source": "renamedSVGs/move-to-bottom.svg" }, "move-to-end": { "codepoint": 61889, "source": "renamedSVGs/move-to-end.svg" }, "move-to-start": { "codepoint": 61890, "source": "renamedSVGs/move-to-start.svg" }, "move-to-top": { "codepoint": 61891, "source": "renamedSVGs/move-to-top.svg" }, "multi-select": { "codepoint": 61892, "source": "renamedSVGs/multi-select.svg" }, "mute": { "codepoint": 61893, "source": "renamedSVGs/mute.svg" }, "no-entry": { "codepoint": 61894, "source": "renamedSVGs/no-entry.svg" }, "node": { "codepoint": 62053, "source": "renamedSVGs/node.svg" }, "north-star": { "codepoint": 61895, "source": "renamedSVGs/north-star.svg" }, "note": { "codepoint": 61896, "source": "renamedSVGs/note.svg" }, "number": { "codepoint": 61897, "source": "renamedSVGs/number.svg" }, "organization": { "codepoint": 61898, "source": "renamedSVGs/organization.svg" }, "package": { "codepoint": 61899, "source": "renamedSVGs/package.svg" }, "package-dependencies": { "codepoint": 61900, "source": "renamedSVGs/package-dependencies.svg" }, "package-dependents": { "codepoint": 61901, "source": "renamedSVGs/package-dependents.svg" }, "paintbrush": { "codepoint": 61902, "source": "renamedSVGs/paintbrush.svg" }, "paper-airplane": { "codepoint": 61903, "source": "renamedSVGs/paper-airplane.svg" }, "paperclip": { "codepoint": 61904, "source": "renamedSVGs/paperclip.svg" }, "passkey-fill": { "codepoint": 61905, "source": "renamedSVGs/passkey-fill.svg" }, "paste": { "codepoint": 61906, "source": "renamedSVGs/paste.svg" }, "pause": { "codepoint": 62025, "source": "renamedSVGs/pause.svg" }, "pencil": { "codepoint": 61907, "source": "renamedSVGs/pencil.svg" }, "pencil-ai": { "codepoint": 62054, "source": "renamedSVGs/pencil-ai.svg" }, "people": { "codepoint": 61908, "source": "renamedSVGs/people.svg" }, "person": { "codepoint": 61909, "source": "renamedSVGs/person.svg" }, "person-add": { "codepoint": 61910, "source": "renamedSVGs/person-add.svg" }, "person-fill": { "codepoint": 61911, "source": "renamedSVGs/person-fill.svg" }, "pin": { "codepoint": 61912, "source": "renamedSVGs/pin.svg" }, "pin-slash": { "codepoint": 61913, "source": "renamedSVGs/pin-slash.svg" }, "pivot-column": { "codepoint": 61914, "source": "renamedSVGs/pivot-column.svg" }, "play": { "codepoint": 61915, "source": "renamedSVGs/play.svg" }, "plug": { "codepoint": 61916, "source": "renamedSVGs/plug.svg" }, "plus": { "codepoint": 61917, "source": "renamedSVGs/plus.svg" }, "plus-circle": { "codepoint": 61918, "source": "renamedSVGs/plus-circle.svg" }, "project": { "codepoint": 61919, "source": "renamedSVGs/project.svg" }, "project-roadmap": { "codepoint": 61920, "source": "renamedSVGs/project-roadmap.svg" }, "project-symlink": { "codepoint": 61921, "source": "renamedSVGs/project-symlink.svg" }, "project-template": { "codepoint": 61922, "source": "renamedSVGs/project-template.svg" }, "pulse": { "codepoint": 61923, "source": "renamedSVGs/pulse.svg" }, "question": { "codepoint": 61924, "source": "renamedSVGs/question.svg" }, "quote": { "codepoint": 61925, "source": "renamedSVGs/quote.svg" }, "read": { "codepoint": 61926, "source": "renamedSVGs/read.svg" }, "redo": { "codepoint": 61927, "source": "renamedSVGs/redo.svg" }, "rel-file-path": { "codepoint": 61928, "source": "renamedSVGs/rel-file-path.svg" }, "reply": { "codepoint": 61929, "source": "renamedSVGs/reply.svg" }, "repo": { "codepoint": 61930, "source": "renamedSVGs/repo.svg" }, "repo-clone": { "codepoint": 61931, "source": "renamedSVGs/repo-clone.svg" }, "repo-deleted": { "codepoint": 61932, "source": "renamedSVGs/repo-deleted.svg" }, "repo-forked": { "codepoint": 61933, "source": "renamedSVGs/repo-forked.svg" }, "repo-locked": { "codepoint": 61934, "source": "renamedSVGs/repo-locked.svg" }, "repo-pull": { "codepoint": 61935, "source": "renamedSVGs/repo-pull.svg" }, "repo-push": { "codepoint": 61936, "source": "renamedSVGs/repo-push.svg" }, "repo-template": { "codepoint": 61937, "source": "renamedSVGs/repo-template.svg" }, "report": { "codepoint": 61938, "source": "renamedSVGs/report.svg" }, "rocket": { "codepoint": 61939, "source": "renamedSVGs/rocket.svg" }, "rows": { "codepoint": 61940, "source": "renamedSVGs/rows.svg" }, "rss": { "codepoint": 61941, "source": "renamedSVGs/rss.svg" }, "ruby": { "codepoint": 61942, "source": "renamedSVGs/ruby.svg" }, "screen-full": { "codepoint": 61943, "source": "renamedSVGs/screen-full.svg" }, "screen-normal": { "codepoint": 61944, "source": "renamedSVGs/screen-normal.svg" }, "search": { "codepoint": 61945, "source": "renamedSVGs/search.svg" }, "server": { "codepoint": 61946, "source": "renamedSVGs/server.svg" }, "share": { "codepoint": 61947, "source": "renamedSVGs/share.svg" }, "share-android": { "codepoint": 61948, "source": "renamedSVGs/share-android.svg" }, "shield": { "codepoint": 61949, "source": "renamedSVGs/shield.svg" }, "shield-check": { "codepoint": 61950, "source": "renamedSVGs/shield-check.svg" }, "shield-lock": { "codepoint": 61951, "source": "renamedSVGs/shield-lock.svg" }, "shield-slash": { "codepoint": 61952, "source": "renamedSVGs/shield-slash.svg" }, "shield-x": { "codepoint": 61953, "source": "renamedSVGs/shield-x.svg" }, "sidebar-collapse": { "codepoint": 61954, "source": "renamedSVGs/sidebar-collapse.svg" }, "sidebar-expand": { "codepoint": 61955, "source": "renamedSVGs/sidebar-expand.svg" }, "sign-in": { "codepoint": 61956, "source": "renamedSVGs/sign-in.svg" }, "sign-out": { "codepoint": 61957, "source": "renamedSVGs/sign-out.svg" }, "single-select": { "codepoint": 61958, "source": "renamedSVGs/single-select.svg" }, "skip": { "codepoint": 61959, "source": "renamedSVGs/skip.svg" }, "skip-fill": { "codepoint": 61960, "source": "renamedSVGs/skip-fill.svg" }, "sliders": { "codepoint": 61961, "source": "renamedSVGs/sliders.svg" }, "smiley": { "codepoint": 61962, "source": "renamedSVGs/smiley.svg" }, "smiley-frown": { "codepoint": 62055, "source": "renamedSVGs/smiley-frown.svg" }, "smiley-frustrated": { "codepoint": 62056, "source": "renamedSVGs/smiley-frustrated.svg" }, "smiley-grin": { "codepoint": 62057, "source": "renamedSVGs/smiley-grin.svg" }, "smiley-neutral": { "codepoint": 62058, "source": "renamedSVGs/smiley-neutral.svg" }, "sort-asc": { "codepoint": 61963, "source": "renamedSVGs/sort-asc.svg" }, "sort-desc": { "codepoint": 61964, "source": "renamedSVGs/sort-desc.svg" }, "space": { "codepoint": 62034, "source": "renamedSVGs/space.svg" }, "spacing-large": { "codepoint": 62059, "source": "renamedSVGs/spacing-large.svg" }, "spacing-medium": { "codepoint": 62060, "source": "renamedSVGs/spacing-medium.svg" }, "spacing-small": { "codepoint": 62061, "source": "renamedSVGs/spacing-small.svg" }, "sparkle": { "codepoint": 62026, "source": "renamedSVGs/sparkle.svg" }, "sparkle-fill": { "codepoint": 61965, "source": "renamedSVGs/sparkle-fill.svg" }, "sparkles-fill": { "codepoint": 62023, "source": "renamedSVGs/sparkles-fill.svg" }, "split-view": { "codepoint": 62062, "source": "renamedSVGs/split-view.svg" }, "sponsor-tiers": { "codepoint": 61966, "source": "renamedSVGs/sponsor-tiers.svg" }, "square": { "codepoint": 61967, "source": "renamedSVGs/square.svg" }, "square-circle": { "codepoint": 62024, "source": "renamedSVGs/square-circle.svg" }, "square-fill": { "codepoint": 61968, "source": "renamedSVGs/square-fill.svg" }, "squirrel": { "codepoint": 61969, "source": "renamedSVGs/squirrel.svg" }, "stack": { "codepoint": 61970, "source": "renamedSVGs/stack.svg" }, "star": { "codepoint": 61971, "source": "renamedSVGs/star.svg" }, "star-fill": { "codepoint": 61972, "source": "renamedSVGs/star-fill.svg" }, "stop": { "codepoint": 61973, "source": "renamedSVGs/stop.svg" }, "stopwatch": { "codepoint": 61974, "source": "renamedSVGs/stopwatch.svg" }, "strikethrough": { "codepoint": 61975, "source": "renamedSVGs/strikethrough.svg" }, "sun": { "codepoint": 61976, "source": "renamedSVGs/sun.svg" }, "sync": { "codepoint": 61977, "source": "renamedSVGs/sync.svg" }, "tab": { "codepoint": 62021, "source": "renamedSVGs/tab.svg" }, "tab-external": { "codepoint": 61978, "source": "renamedSVGs/tab-external.svg" }, "table": { "codepoint": 61979, "source": "renamedSVGs/table.svg" }, "tag": { "codepoint": 61980, "source": "renamedSVGs/tag.svg" }, "tasklist": { "codepoint": 61981, "source": "renamedSVGs/tasklist.svg" }, "telescope": { "codepoint": 61982, "source": "renamedSVGs/telescope.svg" }, "telescope-fill": { "codepoint": 61983, "source": "renamedSVGs/telescope-fill.svg" }, "terminal": { "codepoint": 61984, "source": "renamedSVGs/terminal.svg" }, "three-bars": { "codepoint": 61985, "source": "renamedSVGs/three-bars.svg" }, "thumbsdown": { "codepoint": 61986, "source": "renamedSVGs/thumbsdown.svg" }, "thumbsup": { "codepoint": 61987, "source": "renamedSVGs/thumbsup.svg" }, "tools": { "codepoint": 61988, "source": "renamedSVGs/tools.svg" }, "tracked-by-closed-completed": { "codepoint": 61989, "source": "renamedSVGs/tracked-by-closed-completed.svg" }, "tracked-by-closed-not-planned": { "codepoint": 61990, "source": "renamedSVGs/tracked-by-closed-not-planned.svg" }, "trash": { "codepoint": 61991, "source": "renamedSVGs/trash.svg" }, "triangle-down": { "codepoint": 61992, "source": "renamedSVGs/triangle-down.svg" }, "triangle-left": { "codepoint": 61993, "source": "renamedSVGs/triangle-left.svg" }, "triangle-right": { "codepoint": 61994, "source": "renamedSVGs/triangle-right.svg" }, "triangle-up": { "codepoint": 61995, "source": "renamedSVGs/triangle-up.svg" }, "trophy": { "codepoint": 61996, "source": "renamedSVGs/trophy.svg" }, "typography": { "codepoint": 61997, "source": "renamedSVGs/typography.svg" }, "undo": { "codepoint": 61998, "source": "renamedSVGs/undo.svg" }, "unfold": { "codepoint": 61999, "source": "renamedSVGs/unfold.svg" }, "unlink": { "codepoint": 62000, "source": "renamedSVGs/unlink.svg" }, "unlock": { "codepoint": 62001, "source": "renamedSVGs/unlock.svg" }, "unmute": { "codepoint": 62002, "source": "renamedSVGs/unmute.svg" }, "unread": { "codepoint": 62003, "source": "renamedSVGs/unread.svg" }, "unverified": { "codepoint": 62004, "source": "renamedSVGs/unverified.svg" }, "unwrap": { "codepoint": 62063, "source": "renamedSVGs/unwrap.svg" }, "upload": { "codepoint": 62005, "source": "renamedSVGs/upload.svg" }, "verified": { "codepoint": 62006, "source": "renamedSVGs/verified.svg" }, "versions": { "codepoint": 62007, "source": "renamedSVGs/versions.svg" }, "video": { "codepoint": 62008, "source": "renamedSVGs/video.svg" }, "vscode": { "codepoint": 62035, "source": "renamedSVGs/vscode.svg" }, "webhook": { "codepoint": 62009, "source": "renamedSVGs/webhook.svg" }, "workflow": { "codepoint": 62010, "source": "renamedSVGs/workflow.svg" }, "wrap": { "codepoint": 62064, "source": "renamedSVGs/wrap.svg" }, "x": { "codepoint": 62011, "source": "renamedSVGs/x.svg" }, "x-circle": { "codepoint": 62012, "source": "renamedSVGs/x-circle.svg" }, "x-circle-fill": { "codepoint": 62013, "source": "renamedSVGs/x-circle-fill.svg" }, "zap": { "codepoint": 62014, "source": "renamedSVGs/zap.svg" }, "zoom-in": { "codepoint": 62015, "source": "renamedSVGs/zoom-in.svg" }, "zoom-out": { "codepoint": 62016, "source": "renamedSVGs/zoom-out.svg" } }, "options": { "autowidth": false, "config": false, "copyright": "", "css3": false, "css_selector": ".icon-{{glyph}}", "debug": false, "font_ascent": 448, "font_descent": 64, "font_design_size": 16, "font_em": 512, "font_name": "Octicons", "force": true, "input": { "templates": "renamedSVGs", "vectors": "renamedSVGs" }, "no_hash": true, "output": { "css": "Octicons", "fonts": "Octicons", "preview": "Octicons" }, "preprocessor_path": null, "quiet": false, "templates": [ "css" ] }, "templates": [ "Octicons/Octicons.css" ] } ================================================ FILE: packages/octicons/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "octicons", "upstreamFont": "@primer/octicons", "buildSteps": { "renameSVGs": { "location": "../../node_modules/@primer/octicons/build/svg", "keepPostfix": "-16" }, "fontCustom": { "location": "renamedSVGs", "cleanup": true }, "glyphmap": { "mode": "css", "cleanup": true } }, "versions": [ { "rnvi": "12.0.0", "upstream": "19.15.0" }, { "rnvi": "12.0.1", "upstream": "19.15.3" }, { "rnvi": "20.4.1", "upstream": "19.22.0" } ] } } ================================================ FILE: packages/octicons/CHANGELOG.md ================================================ ## 20.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 20.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 20.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🩹 Fixes - upgrade Octicons 19.22.0 ([#1876](https://github.com/oblador/react-native-vector-icons/pull/1876)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 20.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 20.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🩹 Fixes - upgrade octicons to 19.19.0 ([#1853](https://github.com/oblador/react-native-vector-icons/pull/1853)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 20.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 20.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 20.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🩹 Fixes - upgrade Octicons to 19.15.3 ([#1795](https://github.com/oblador/react-native-vector-icons/pull/1795)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 20.0.3 (2025-06-15) ### 🩹 Fixes - upgrade Octicons to 19.15.2 ([#1777](https://github.com/oblador/react-native-vector-icons/pull/1777)) ### ❤️ Thank You - John Ferlito @johnf ## 20.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 20.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 20.0.0 (2025-05-04) ### 🚀 Features - ⚠️ **octicons:** dummy commit to bump version ([d8335a4f](https://github.com/oblador/react-native-vector-icons/commit/d8335a4f)) ### ⚠️ Breaking Changes - ⚠️ **octicons:** dummy commit to bump version ([d8335a4f](https://github.com/oblador/react-native-vector-icons/commit/d8335a4f)) ### ❤️ Thank You - John Ferlito @johnf ## 19.12.0-alpha.38 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) - new release of Font Awesome 6 ([53ccb584](https://github.com/oblador/react-native-vector-icons/commit/53ccb584)) - **icon-explorer:** switch to react-native-owl from detox ([132bdc48](https://github.com/oblador/react-native-vector-icons/commit/132bdc48)) - aliginging with latest create-react-native-library (WIP) ([917be325](https://github.com/oblador/react-native-vector-icons/commit/917be325)) - improve new arch support ([#1652](https://github.com/oblador/react-native-vector-icons/pull/1652)) - dynamic font loading on native platforms ([#1645](https://github.com/oblador/react-native-vector-icons/pull/1645)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) - add types for older builders ([d853cfbf](https://github.com/oblador/react-native-vector-icons/commit/d853cfbf)) - new octoicons ([69ddd74d](https://github.com/oblador/react-native-vector-icons/commit/69ddd74d)) - update node modules ([e5d01106](https://github.com/oblador/react-native-vector-icons/commit/e5d01106)) - stop extra infex.js"" files being created and breaking windows ([b36d40f9](https://github.com/oblador/react-native-vector-icons/commit/b36d40f9)) - update node modules ([34e7e255](https://github.com/oblador/react-native-vector-icons/commit/34e7e255)) - remove type checks from workspace packages ([8f67a866](https://github.com/oblador/react-native-vector-icons/commit/8f67a866)) - make all the font name types work ([7939826e](https://github.com/oblador/react-native-vector-icons/commit/7939826e)) - remove unneeded dep ([b8420691](https://github.com/oblador/react-native-vector-icons/commit/b8420691)) - generated ([325984eb](https://github.com/oblador/react-native-vector-icons/commit/325984eb)) - reneable ios tests ([1e5223bc](https://github.com/oblador/react-native-vector-icons/commit/1e5223bc)) - generated ([d9669835](https://github.com/oblador/react-native-vector-icons/commit/d9669835)) - andorid <0.74 ([e6936a48](https://github.com/oblador/react-native-vector-icons/commit/e6936a48)) - debug simctl ([6a76d1bb](https://github.com/oblador/react-native-vector-icons/commit/6a76d1bb)) - debug simctl ([986dba0d](https://github.com/oblador/react-native-vector-icons/commit/986dba0d)) - debug simctl ([7986ac06](https://github.com/oblador/react-native-vector-icons/commit/7986ac06)) - debug simctl ([6753540d](https://github.com/oblador/react-native-vector-icons/commit/6753540d)) - debug simctl ([1ba240b9](https://github.com/oblador/react-native-vector-icons/commit/1ba240b9)) - debug simctl ([881e0c34](https://github.com/oblador/react-native-vector-icons/commit/881e0c34)) - debug simctl ([548e8599](https://github.com/oblador/react-native-vector-icons/commit/548e8599)) - debug simctl ([f07267c4](https://github.com/oblador/react-native-vector-icons/commit/f07267c4)) - debug simctl ([a2f37fa6](https://github.com/oblador/react-native-vector-icons/commit/a2f37fa6)) - ebug iphone ([2cefc0a0](https://github.com/oblador/react-native-vector-icons/commit/2cefc0a0)) - update node modules ([1951239e](https://github.com/oblador/react-native-vector-icons/commit/1951239e)) - remove example ([9af552e3](https://github.com/oblador/react-native-vector-icons/commit/9af552e3)) - align with latest create-react-native-library ([7a9fceab](https://github.com/oblador/react-native-vector-icons/commit/7a9fceab)) - use different baseline for new and old arch ([b977cf72](https://github.com/oblador/react-native-vector-icons/commit/b977cf72)) - tes ios old arch ([d2db581a](https://github.com/oblador/react-native-vector-icons/commit/d2db581a)) - osx is dumb ([3f558aec](https://github.com/oblador/react-native-vector-icons/commit/3f558aec)) - monorepo owl issues ([520d373b](https://github.com/oblador/react-native-vector-icons/commit/520d373b)) - update owl ([43ec5ed8](https://github.com/oblador/react-native-vector-icons/commit/43ec5ed8)) - ios build ([48a55977](https://github.com/oblador/react-native-vector-icons/commit/48a55977)) - switch to new arch capable temo package of react-native-owl ([03f961ca](https://github.com/oblador/react-native-vector-icons/commit/03f961ca)) - stop caching SDK ([129ade27](https://github.com/oblador/react-native-vector-icons/commit/129ade27)) - re-enable android tests ([82b5b8a2](https://github.com/oblador/react-native-vector-icons/commit/82b5b8a2)) - **icon-explorer:** fix sdk cache ([936abf36](https://github.com/oblador/react-native-vector-icons/commit/936abf36)) - **icon-explorer:** wait for emulator to boot ([d91290dc](https://github.com/oblador/react-native-vector-icons/commit/d91290dc)) - **icon-explorer:** wait for emulator to boot ([35e5f00f](https://github.com/oblador/react-native-vector-icons/commit/35e5f00f)) - **icon-explorer:** disable immersive mode pop up ([e5d359d3](https://github.com/oblador/react-native-vector-icons/commit/e5d359d3)) - **icon-explorer:** improve SDK cache ([b0dcf1ef](https://github.com/oblador/react-native-vector-icons/commit/b0dcf1ef)) - tests ([7bfdd812](https://github.com/oblador/react-native-vector-icons/commit/7bfdd812)) - tests ([a556f5ef](https://github.com/oblador/react-native-vector-icons/commit/a556f5ef)) - tests ([48ca31c9](https://github.com/oblador/react-native-vector-icons/commit/48ca31c9)) - tests ([6dd9c741](https://github.com/oblador/react-native-vector-icons/commit/6dd9c741)) - tests ([343efeb5](https://github.com/oblador/react-native-vector-icons/commit/343efeb5)) - tests ([5a5ebb6f](https://github.com/oblador/react-native-vector-icons/commit/5a5ebb6f)) - tests ([1f81fe17](https://github.com/oblador/react-native-vector-icons/commit/1f81fe17)) - tests ([4a76c99d](https://github.com/oblador/react-native-vector-icons/commit/4a76c99d)) - tests ([2084c022](https://github.com/oblador/react-native-vector-icons/commit/2084c022)) - tests ([aef612ae](https://github.com/oblador/react-native-vector-icons/commit/aef612ae)) - tests ([96d9649b](https://github.com/oblador/react-native-vector-icons/commit/96d9649b)) - tests ([6a56de45](https://github.com/oblador/react-native-vector-icons/commit/6a56de45)) - tests ([9548596d](https://github.com/oblador/react-native-vector-icons/commit/9548596d)) - tests ([754edc3a](https://github.com/oblador/react-native-vector-icons/commit/754edc3a)) - tests ([7e12bbfc](https://github.com/oblador/react-native-vector-icons/commit/7e12bbfc)) - tests ([0304e3b7](https://github.com/oblador/react-native-vector-icons/commit/0304e3b7)) - tests ([5920f39c](https://github.com/oblador/react-native-vector-icons/commit/5920f39c)) - tests ([f4f3af69](https://github.com/oblador/react-native-vector-icons/commit/f4f3af69)) - tests ([22b038ff](https://github.com/oblador/react-native-vector-icons/commit/22b038ff)) - tests ([f88cf0d2](https://github.com/oblador/react-native-vector-icons/commit/f88cf0d2)) - avd ([87d0cad2](https://github.com/oblador/react-native-vector-icons/commit/87d0cad2)) - junit ([aba00c0f](https://github.com/oblador/react-native-vector-icons/commit/aba00c0f)) - simplify sdk ([7a603f33](https://github.com/oblador/react-native-vector-icons/commit/7a603f33)) - include hidden files in upload ([ad0fce24](https://github.com/oblador/react-native-vector-icons/commit/ad0fce24)) - ove pod install to workflow ([56117ca2](https://github.com/oblador/react-native-vector-icons/commit/56117ca2)) - debug upload ([70af996d](https://github.com/oblador/react-native-vector-icons/commit/70af996d)) - turn off jest report ([05f37ad9](https://github.com/oblador/react-native-vector-icons/commit/05f37ad9)) - report path ([5bdf9f34](https://github.com/oblador/react-native-vector-icons/commit/5bdf9f34)) - wrong test report glob ([b88482ee](https://github.com/oblador/react-native-vector-icons/commit/b88482ee)) - update knip config ([59732790](https://github.com/oblador/react-native-vector-icons/commit/59732790)) - linting ([5a1c0ff2](https://github.com/oblador/react-native-vector-icons/commit/5a1c0ff2)) - flesh out tests ([254e11ed](https://github.com/oblador/react-native-vector-icons/commit/254e11ed)) - android test build ([5eb72f9e](https://github.com/oblador/react-native-vector-icons/commit/5eb72f9e)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf - Vojtech Novak @vonovak ================================================ FILE: packages/octicons/README.md ================================================ # React Native Vector Icons - Octicons Octicons font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/octicons ``` ## Usage ```jsx import { Octicons } from '@react-native-vector-icons/octicons'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 19.15.0 | | > 12.0.1 | 19.15.3 | | > 20.4.1 | 19.22.0 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/octicons/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.octicons" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsOcticons" codegenJavaPackageName = "com.reactnativevectoricons.octicons" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-octicons") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-octicons/fonts" eachFile { println "(RNVI:octicons) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/octicons/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/octicons/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/octicons/android/src/main/java/VectorIconsOcticonsPackage.kt ================================================ package com.reactnativevectoricons.octicons import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsOcticonsPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/octicons/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/octicons/glyphmaps/Octicons.json ================================================ { "accessibility": 61696, "accessibility-inset": 61697, "agent": 62027, "ai-model": 62022, "alert": 61698, "alert-fill": 61699, "apps": 61700, "archive": 61701, "arrow-both": 61702, "arrow-down": 61703, "arrow-down-left": 61704, "arrow-down-right": 61705, "arrow-left": 61706, "arrow-right": 61707, "arrow-switch": 61708, "arrow-up": 61709, "arrow-up-left": 61710, "arrow-up-right": 61711, "beaker": 61712, "bell": 61713, "bell-fill": 61714, "bell-slash": 61715, "blocked": 61716, "bold": 61717, "book": 61718, "book-locked": 62036, "bookmark": 61719, "bookmark-filled": 62017, "bookmark-slash": 61720, "bookmark-slash-fill": 62018, "boolean-off": 62037, "boolean-on": 62038, "briefcase": 61721, "broadcast": 61722, "browser": 61723, "bug": 61724, "cache": 61725, "calendar": 61726, "check": 61727, "check-circle": 61728, "check-circle-fill": 61729, "checkbox": 61730, "checkbox-fill": 62028, "checklist": 61731, "chevron-down": 61732, "chevron-left": 61733, "chevron-right": 61734, "chevron-up": 61735, "circle": 61736, "circle-slash": 61737, "clock": 61738, "clock-fill": 61739, "cloud": 61740, "cloud-offline": 61741, "code": 61742, "code-of-conduct": 61743, "code-review": 61744, "code-square": 61745, "codescan": 61746, "codescan-checkmark": 61747, "codespaces": 61748, "columns": 61749, "command-palette": 61750, "comment": 61751, "comment-ai": 62029, "comment-discussion": 61752, "comment-locked": 62039, "compose": 62040, "container": 61753, "copilot": 61754, "copilot-error": 61755, "copilot-warning": 61756, "copy": 61757, "cpu": 61758, "credit-card": 61759, "cross-reference": 61760, "crosshairs": 62041, "dash": 61761, "database": 61762, "dependabot": 61763, "desktop-download": 61764, "device-camera": 61765, "device-camera-video": 61766, "device-desktop": 61767, "device-mobile": 61768, "devices": 61769, "diamond": 61770, "dice": 62042, "diff": 61771, "diff-added": 61772, "diff-ignored": 61773, "diff-modified": 61774, "diff-removed": 61775, "diff-renamed": 61776, "discussion-closed": 61777, "discussion-duplicate": 61778, "discussion-outdated": 61779, "dot": 61780, "dot-fill": 61781, "download": 61782, "duplicate": 61783, "ellipsis": 61784, "exclamation": 62043, "eye": 61785, "eye-closed": 61786, "feed-discussion": 61787, "feed-forked": 61788, "feed-heart": 61789, "feed-issue-closed": 61790, "feed-issue-draft": 61791, "feed-issue-open": 61792, "feed-issue-reopen": 61793, "feed-merged": 61794, "feed-person": 61795, "feed-plus": 61796, "feed-public": 61797, "feed-pull-request-closed": 61798, "feed-pull-request-draft": 61799, "feed-pull-request-open": 61800, "feed-repo": 61801, "feed-rocket": 61802, "feed-star": 61803, "feed-tag": 61804, "feed-trophy": 61805, "file": 61806, "file-added": 61807, "file-badge": 61808, "file-binary": 61809, "file-check": 62044, "file-code": 61810, "file-diff": 61811, "file-directory": 61812, "file-directory-fill": 61813, "file-directory-open-fill": 61814, "file-directory-symlink": 61815, "file-media": 62019, "file-moved": 61816, "file-removed": 61817, "file-submodule": 61818, "file-symlink-file": 61819, "file-zip": 61820, "filter": 61821, "filter-remove": 61822, "fiscal-host": 61823, "flame": 61824, "flowchart": 62045, "focus-center": 62046, "fold": 61825, "fold-down": 61826, "fold-up": 61827, "gear": 61828, "gift": 61829, "git-branch": 61830, "git-branch-check": 62047, "git-commit": 61831, "git-compare": 61832, "git-merge": 61833, "git-merge-queue": 61834, "git-pull-request": 61835, "git-pull-request-closed": 61836, "git-pull-request-draft": 61837, "git-pull-request-locked": 62048, "globe": 61838, "goal": 61839, "grabber": 61840, "graph": 61841, "graph-bar-horizontal": 62049, "graph-bar-vertical": 62050, "hash": 61842, "heading": 61843, "heart": 61844, "heart-fill": 61845, "history": 61846, "home": 61847, "home-fill": 62020, "horizontal-rule": 61848, "hourglass": 61849, "hubot": 61850, "id-badge": 61851, "image": 61852, "inbox": 61853, "inbox-fill": 62051, "infinity": 61854, "info": 61855, "issue-closed": 61856, "issue-draft": 61857, "issue-locked": 62052, "issue-opened": 61858, "issue-reopened": 61859, "issue-tracked-by": 61860, "issue-tracks": 61861, "italic": 61862, "iterations": 61863, "kebab-horizontal": 61864, "key": 61865, "key-asterisk": 61866, "law": 61867, "light-bulb": 61868, "link": 61869, "link-external": 61870, "list-ordered": 61871, "list-unordered": 61872, "location": 61873, "lock": 61874, "log": 61875, "logo-gist": 61876, "logo-github": 61877, "loop": 62030, "mail": 61878, "mark-github": 61879, "markdown": 61880, "maximize": 62031, "mcp": 62032, "megaphone": 61881, "mention": 61882, "meter": 61883, "milestone": 61884, "minimize": 62033, "mirror": 61885, "moon": 61886, "mortar-board": 61887, "move-to-bottom": 61888, "move-to-end": 61889, "move-to-start": 61890, "move-to-top": 61891, "multi-select": 61892, "mute": 61893, "no-entry": 61894, "node": 62053, "north-star": 61895, "note": 61896, "number": 61897, "organization": 61898, "package": 61899, "package-dependencies": 61900, "package-dependents": 61901, "paintbrush": 61902, "paper-airplane": 61903, "paperclip": 61904, "passkey-fill": 61905, "paste": 61906, "pause": 62025, "pencil": 61907, "pencil-ai": 62054, "people": 61908, "person": 61909, "person-add": 61910, "person-fill": 61911, "pin": 61912, "pin-slash": 61913, "pivot-column": 61914, "play": 61915, "plug": 61916, "plus": 61917, "plus-circle": 61918, "project": 61919, "project-roadmap": 61920, "project-symlink": 61921, "project-template": 61922, "pulse": 61923, "question": 61924, "quote": 61925, "read": 61926, "redo": 61927, "rel-file-path": 61928, "reply": 61929, "repo": 61930, "repo-clone": 61931, "repo-deleted": 61932, "repo-forked": 61933, "repo-locked": 61934, "repo-pull": 61935, "repo-push": 61936, "repo-template": 61937, "report": 61938, "rocket": 61939, "rows": 61940, "rss": 61941, "ruby": 61942, "screen-full": 61943, "screen-normal": 61944, "search": 61945, "server": 61946, "share": 61947, "share-android": 61948, "shield": 61949, "shield-check": 61950, "shield-lock": 61951, "shield-slash": 61952, "shield-x": 61953, "sidebar-collapse": 61954, "sidebar-expand": 61955, "sign-in": 61956, "sign-out": 61957, "single-select": 61958, "skip": 61959, "skip-fill": 61960, "sliders": 61961, "smiley": 61962, "smiley-frown": 62055, "smiley-frustrated": 62056, "smiley-grin": 62057, "smiley-neutral": 62058, "sort-asc": 61963, "sort-desc": 61964, "space": 62034, "spacing-large": 62059, "spacing-medium": 62060, "spacing-small": 62061, "sparkle": 62026, "sparkle-fill": 61965, "sparkles-fill": 62023, "split-view": 62062, "sponsor-tiers": 61966, "square": 61967, "square-circle": 62024, "square-fill": 61968, "squirrel": 61969, "stack": 61970, "star": 61971, "star-fill": 61972, "stop": 61973, "stopwatch": 61974, "strikethrough": 61975, "sun": 61976, "sync": 61977, "tab": 62021, "tab-external": 61978, "table": 61979, "tag": 61980, "tasklist": 61981, "telescope": 61982, "telescope-fill": 61983, "terminal": 61984, "three-bars": 61985, "thumbsdown": 61986, "thumbsup": 61987, "tools": 61988, "tracked-by-closed-completed": 61989, "tracked-by-closed-not-planned": 61990, "trash": 61991, "triangle-down": 61992, "triangle-left": 61993, "triangle-right": 61994, "triangle-up": 61995, "trophy": 61996, "typography": 61997, "undo": 61998, "unfold": 61999, "unlink": 62000, "unlock": 62001, "unmute": 62002, "unread": 62003, "unverified": 62004, "unwrap": 62063, "upload": 62005, "verified": 62006, "versions": 62007, "video": 62008, "vscode": 62035, "webhook": 62009, "workflow": 62010, "wrap": 62064, "x": 62011, "x-circle": 62012, "x-circle-fill": 62013, "zap": 62014, "zoom-in": 62015, "zoom-out": 62016 } ================================================ FILE: packages/octicons/package.json ================================================ { "name": "@react-native-vector-icons/octicons", "version": "20.5.0", "description": "Octicons font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "octicons" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/octicons" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "@primer/octicons": "19.22.0" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/octicons/react-native-vector-icons-octicons.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-octicons' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/octicons/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Octicons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Octicons.json'; export const Octicons = createIconSet(glyphMap, { postScriptName: 'Octicons', fontFileName: 'Octicons.ttf', fontSource: require('../fonts/Octicons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type OcticonsIconName = keyof typeof glyphMap; /** @alias */ export default Octicons; ================================================ FILE: packages/octicons/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Octicons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Octicons.json'; export const Octicons = createIconSet(glyphMap, { postScriptName: 'Octicons', fontFileName: 'Octicons.ttf', }); export type OcticonsIconName = keyof typeof glyphMap; /** @alias */ export default Octicons; ================================================ FILE: packages/octicons/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/octicons/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/simple-line-icons/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "simple-line-icons", "postScriptName": "simple-line-icons", "upstreamFont": "simple-line-icons", "buildSteps": { "glyphmap": { "location": "../../node_modules/simple-line-icons/css/simple-line-icons.css", "mode": "css" }, "copyFont": { "location": "../../node_modules/simple-line-icons/fonts/Simple-Line-Icons.ttf" } }, "versions": [ { "rnvi": "12.0.0", "upstream": "2.5.5" } ] } } ================================================ FILE: packages/simple-line-icons/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/simple-line-icons/README.md ================================================ # React Native Vector Icons - Simple Line Icons Simple Line Icons font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/simple-line-icons ``` ## Usage ```jsx import { SimpleLineIcons } from '@react-native-vector-icons/simple-line-icons'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 2.5.5 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/simple-line-icons/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.simple_line_icons" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsSimpleLineIcons" codegenJavaPackageName = "com.reactnativevectoricons.simple_line_icons" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-simple-line-icons") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-simple-line-icons/fonts" eachFile { println "(RNVI:simple-line-icons) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/simple-line-icons/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/simple-line-icons/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/simple-line-icons/android/src/main/java/VectorIconsSimpleLineIconsPackage.kt ================================================ package com.reactnativevectoricons.simple_line_icons import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsSimpleLineIconsPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/simple-line-icons/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/simple-line-icons/glyphmaps/SimpleLineIcons.json ================================================ { "user": 57349, "people": 57345, "user-female": 57344, "user-follow": 57346, "user-following": 57347, "user-unfollow": 57348, "login": 57446, "logout": 57445, "emotsmile": 57377, "phone": 58880, "call-end": 57416, "call-in": 57415, "call-out": 57414, "map": 57395, "location-pin": 57494, "direction": 57410, "directions": 57409, "compass": 57413, "layers": 57396, "menu": 58881, "list": 57447, "options-vertical": 58882, "options": 58883, "arrow-down": 58884, "arrow-left": 58885, "arrow-right": 58886, "arrow-up": 58887, "arrow-up-circle": 57464, "arrow-left-circle": 57466, "arrow-right-circle": 57465, "arrow-down-circle": 57467, "check": 57472, "clock": 57473, "plus": 57493, "minus": 58901, "close": 57474, "event": 58905, "exclamation": 58903, "organization": 58902, "trophy": 57350, "screen-smartphone": 57360, "screen-desktop": 57361, "plane": 57362, "notebook": 57363, "mustache": 57364, "mouse": 57365, "magnet": 57366, "energy": 57376, "disc": 57378, "cursor": 57454, "cursor-move": 57379, "crop": 57380, "chemistry": 57382, "speedometer": 57351, "shield": 57358, "screen-tablet": 57359, "magic-wand": 57367, "hourglass": 57368, "graduation": 57369, "ghost": 57370, "game-controller": 57371, "fire": 57372, "eyeglass": 57373, "envelope-open": 57374, "envelope-letter": 57375, "bell": 57383, "badge": 57384, "anchor": 57385, "wallet": 57386, "vector": 57387, "speech": 57388, "puzzle": 57389, "printer": 57390, "present": 57391, "playlist": 57392, "pin": 57393, "picture": 57394, "handbag": 57397, "globe-alt": 57398, "globe": 57399, "folder-alt": 57401, "folder": 57481, "film": 57402, "feed": 57403, "drop": 57406, "drawer": 57407, "docs": 57408, "doc": 57477, "diamond": 57411, "cup": 57412, "calculator": 57417, "bubbles": 57418, "briefcase": 57419, "book-open": 57420, "basket-loaded": 57421, "basket": 57422, "bag": 57423, "action-undo": 57424, "action-redo": 57425, "wrench": 57426, "umbrella": 57427, "trash": 57428, "tag": 57429, "support": 57430, "frame": 57400, "size-fullscreen": 57431, "size-actual": 57432, "shuffle": 57433, "share-alt": 57434, "share": 57435, "rocket": 57436, "question": 57437, "pie-chart": 57438, "pencil": 57439, "note": 57440, "loop": 57444, "home": 57449, "grid": 57450, "graph": 57451, "microphone": 57443, "music-tone-alt": 57441, "music-tone": 57442, "earphones-alt": 57404, "earphones": 57405, "equalizer": 57452, "like": 57448, "dislike": 57453, "control-start": 57455, "control-rewind": 57456, "control-play": 57457, "control-pause": 57458, "control-forward": 57459, "control-end": 57460, "volume-1": 57503, "volume-2": 57504, "volume-off": 57505, "calendar": 57461, "bulb": 57462, "chart": 57463, "ban": 57468, "bubble": 57469, "camrecorder": 57470, "camera": 57471, "cloud-download": 57475, "cloud-upload": 57476, "envelope": 57478, "eye": 57479, "flag": 57480, "heart": 57482, "info": 57483, "key": 57484, "link": 57485, "lock": 57486, "lock-open": 57487, "magnifier": 57488, "magnifier-add": 57489, "magnifier-remove": 57490, "paper-clip": 57491, "paper-plane": 57492, "power": 57495, "refresh": 57496, "reload": 57497, "settings": 57498, "star": 57499, "symbol-female": 57500, "symbol-male": 57501, "target": 57502, "credit-card": 57381, "paypal": 58888, "social-tumblr": 57354, "social-twitter": 57353, "social-facebook": 57355, "social-instagram": 58889, "social-linkedin": 58890, "social-pinterest": 58891, "social-github": 58892, "social-google": 58893, "social-reddit": 58894, "social-skype": 58895, "social-dribbble": 57357, "social-behance": 58896, "social-foursqare": 58897, "social-soundcloud": 58898, "social-spotify": 58899, "social-stumbleupon": 58900, "social-youtube": 57352, "social-dropbox": 57356, "social-vkontakte": 58904, "social-steam": 58912 } ================================================ FILE: packages/simple-line-icons/package.json ================================================ { "name": "@react-native-vector-icons/simple-line-icons", "version": "12.5.0", "description": "Simple Line Icons font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "simple-line-icons" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/simple-line-icons" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "simple-line-icons": "2.5.5" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/simple-line-icons/react-native-vector-icons-simple-line-icons.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-simple-line-icons' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/simple-line-icons/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * SimpleLineIcons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/SimpleLineIcons.json'; export const SimpleLineIcons = createIconSet(glyphMap, { postScriptName: 'simple-line-icons', fontFileName: 'SimpleLineIcons.ttf', fontSource: require('../fonts/SimpleLineIcons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type SimpleLineIconsIconName = keyof typeof glyphMap; /** @alias */ export default SimpleLineIcons; ================================================ FILE: packages/simple-line-icons/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * SimpleLineIcons icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/SimpleLineIcons.json'; export const SimpleLineIcons = createIconSet(glyphMap, { postScriptName: 'simple-line-icons', fontFileName: 'SimpleLineIcons.ttf', }); export type SimpleLineIconsIconName = keyof typeof glyphMap; /** @alias */ export default SimpleLineIcons; ================================================ FILE: packages/simple-line-icons/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/simple-line-icons/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: packages/zocial/.yo-rc.json ================================================ { "generator-react-native-vector-icons": { "packageName": "zocial", "postScriptName": "zocial", "upstreamFont": "css-social-buttons", "buildSteps": { "glyphmap": { "location": "../../node_modules/css-social-buttons/css/zocial.css", "mode": "css", "prefix": ".zocial." }, "copyFont": { "location": "../../node_modules/css-social-buttons/css/zocial.ttf" } }, "versions": [ { "rnvi": "12.0.0", "upstream": "1.1.1" } ] } } ================================================ FILE: packages/zocial/CHANGELOG.md ================================================ ## 12.5.0 (2026-03-20) ### 🚀 Features - expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880)) ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.4.3 (2026-03-17) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.2 ## 12.4.2 (2026-03-10) ### 🚀 Features - **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.1 ### ❤️ Thank You - John Ferlito @johnf ## 12.4.1 (2026-02-25) ### 🩹 Fixes - add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861)) ### ❤️ Thank You - Phecda Su ## 12.4.0 (2025-11-01) ### 🚀 Features - upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.4.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.3.0 (2025-08-03) ### 🚀 Features - export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.3.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.2.0 (2025-07-20) ### 🚀 Features - add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.2.0 ### ❤️ Thank You - Vojtech Novak @vonovak ## 12.1.0 (2025-07-12) ### 🚀 Features - export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.1.0 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.2 (2025-06-15) ### 🩹 Fixes - new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.2 ### ❤️ Thank You - John Ferlito @johnf ## 12.0.1 (2025-06-15) ### 🩹 Fixes - try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745)) - remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767)) - convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765)) - updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c)) - **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742)) ### 🧱 Updated Dependencies - Updated @react-native-vector-icons/common to 12.0.1 ### ❤️ Thank You - Alexander Kucheryavenko @Red1tum - John Ferlito @johnf - Md. Jayed Hasan @JayedHasan232 # 12.0.0 (2025-05-04) ### 🚀 Features - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) - add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702)) ### 🩹 Fixes - upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691)) - upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690)) - mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99)) ### ⚠️ Breaking Changes - ⚠️ make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711)) ### ❤️ Thank You - Chanphirom Sok @chanphiromsok - John Ferlito @johnf ================================================ FILE: packages/zocial/README.md ================================================ # React Native Vector Icons - Zocial Zocial font for React Native Vector Icons See the [React Native Vector Icons README](../../README.md) for more details. ## Installation ```sh npm install @react-native-vector-icons/zocial ``` ## Usage ```jsx import { Zocial } from '@react-native-vector-icons/zocial'; // ... ``` ## Versions Prior to version 12, the version of this font package tracked the upstream version. The table below tracks which font version is included in each package version. | RNVI version | Upstream version | | ------------ | ---------------- | | > 12.0.0 | 1.1.1 | ## Contributing See the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License MIT ================================================ FILE: packages/zocial/android/build.gradle ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost def isNewArchitectureEnabled() { return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" } def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } apply plugin: "com.android.library" apply plugin: "kotlin-android" if (isNewArchitectureEnabled()) { apply plugin: "com.facebook.react" } def supportsNamespace() { def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') def major = parsed[0].toInteger() def minor = parsed[1].toInteger() // Namespace support was added in 7.3.0 return (major == 7 && minor >= 3) || major >= 8 } android { if (supportsNamespace()) { namespace "com.reactnativevectoricons.zocial" sourceSets { main { manifest.srcFile "src/main/AndroidManifestNew.xml" } } } compileSdkVersion safeExtGet('compileSdkVersion', 31) defaultConfig { targetSdkVersion safeExtGet('targetSdkVersion', 31) minSdkVersion safeExtGet('minSdkVersion', 24) } } dependencies { implementation "com.facebook.react:react-native:+" } if (isNewArchitectureEnabled()) { react { jsRootDir = file("../src/") libraryName = "VectorIconsZocial" codegenJavaPackageName = "com.reactnativevectoricons.zocial" } } android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI-zocial") task copyFonts(type: Copy) { from "../fonts" include "*.ttf" into "${buildDir}/intermediates/RNVI-zocial/fonts" eachFile { println "(RNVI:zocial) Copying font ${it.file}" } } preBuild.dependsOn(copyFonts) ================================================ FILE: packages/zocial/android/src/main/AndroidManifest.xml ================================================ ================================================ FILE: packages/zocial/android/src/main/AndroidManifestNew.xml ================================================ ================================================ FILE: packages/zocial/android/src/main/java/VectorIconsZocialPackage.kt ================================================ package com.reactnativevectoricons.zocial import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.module.model.ReactModuleInfoProvider class VectorIconsZocialPackage : TurboReactPackage() { override fun getModule( name: String, reactContext: ReactApplicationContext, ): NativeModule? = null override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = ReactModuleInfoProvider { mapOf() } } ================================================ FILE: packages/zocial/babel.config.js ================================================ // NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates // If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost module.exports = { presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]], }; ================================================ FILE: packages/zocial/glyphmaps/Zocial.json ================================================ { "acrobat": 61696, "amazon": 61697, "android": 61698, "angellist": 61699, "aol": 61700, "appnet": 61701, "appstore": 61702, "bitbucket": 61703, "bitcoin": 61704, "blogger": 61705, "buffer": 61706, "cal": 61707, "call": 61708, "cart": 61709, "chrome": 61710, "cloudapp": 61711, "creativecommons": 61712, "delicious": 61713, "digg": 61714, "disqus": 61715, "dribbble": 61716, "dropbox": 61717, "drupal": 61718, "dwolla": 61720, "email": 61721, "eventasaurus": 61722, "eventbrite": 61723, "eventful": 61724, "evernote": 61725, "facebook": 61726, "fivehundredpx": 61727, "flattr": 61728, "flickr": 61729, "forrst": 61730, "foursquare": 61731, "github": 61732, "gmail": 61733, "google": 61734, "googleplay": 61735, "googleplus": 61736, "gowalla": 61737, "grooveshark": 61738, "guest": 61739, "html5": 61740, "ie": 61741, "instagram": 61742, "instapaper": 61743, "intensedebate": 61744, "itunes": 61745, "klout": 61746, "lanyrd": 61747, "lastfm": 61748, "lego": 61749, "linkedin": 61750, "lkdto": 61751, "logmein": 61752, "macstore": 61753, "meetup": 61754, "myspace": 61755, "ninetyninedesigns": 61756, "openid": 61757, "opentable": 61758, "paypal": 61759, "persona": 61796, "pinboard": 61760, "pinterest": 61761, "plancast": 61762, "plurk": 61763, "pocket": 61764, "podcast": 61765, "posterous": 61766, "print": 61767, "quora": 61768, "reddit": 61769, "rss": 61770, "scribd": 61771, "skype": 61772, "smashing": 61773, "songkick": 61774, "soundcloud": 61775, "spotify": 61776, "stackoverflow": 61777, "statusnet": 61778, "steam": 61779, "stripe": 61780, "stumbleupon": 61781, "tumblr": 61782, "twitter": 61783, "viadeo": 61784, "vimeo": 61785, "vk": 61786, "weibo": 61787, "wikipedia": 61788, "windows": 61789, "wordpress": 61790, "xing": 61791, "yahoo": 61792, "ycombinator": 61793, "yelp": 61794, "youtube": 61795 } ================================================ FILE: packages/zocial/package.json ================================================ { "name": "@react-native-vector-icons/zocial", "version": "12.5.0", "description": "Zocial font for react native vector icons", "source": "./src/index.ts", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/commonjs/src/index.d.ts", "exports": { ".": { "import": { "types": "./lib/typescript/module/src/index.d.ts", "default": "./lib/module/index.js" }, "require": { "types": "./lib/typescript/commonjs/src/index.d.ts", "default": "./lib/commonjs/index.js" } }, "./static": { "import": { "types": "./lib/typescript/module/src/static.d.ts", "default": "./lib/module/static.js" }, "require": { "types": "./lib/typescript/commonjs/src/static.d.ts", "default": "./lib/commonjs/static.js" } }, "./glyphmaps/*.json": "./glyphmaps/*.json", "./fonts/*.ttf": "./fonts/*.ttf" }, "files": [ "src", "lib", "glyphmaps", "fonts", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "clean": "del-cli android/build ios/build lib", "prepare": "bob build && ../../scripts/fix-glyphmaps.mjs", "watch": "onchange 'src/**' --initial -- pnpm run prepare" }, "keywords": [ "react-native", "ios", "android", "osx", "windows", "macos", "react-component", "react-native-component", "react", "mobile", "ui", "icon", "icons", "vector", "retina", "font", "react-native-vector-icons-icon", "zocial" ], "repository": { "type": "git", "url": "https://github.com/oblador/react-native-vector-icons.git", "directory": "packages/zocial" }, "author": { "name": "Joel Arvidsson", "email": "joel@oblador.se" }, "license": "MIT", "bugs": { "url": "https://github.com/oblador/react-native-vector-icons/issues" }, "homepage": "https://github.com/oblador/react-native-vector-icons", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "dependencies": { "@react-native-vector-icons/common": "workspace:^" }, "devDependencies": { "@types/react": "^19.1.0", "del-cli": "^6.0.0", "onchange": "^7.1.0", "react-native-builder-bob": "^0.35.2", "typescript": "^5.7.2", "css-social-buttons": "1.1.1" }, "peerDependencies": { "react": "*", "react-native": "*" }, "engines": { "node": ">= 18.0.0" }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "commonjs", { "esm": true } ], [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json", "esm": true } ] ] }, "create-react-native-library": { "type": "library", "version": "0.41.2" } } ================================================ FILE: packages/zocial/react-native-vector-icons-zocial.podspec ================================================ # NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates # If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'react-native-vector-icons-zocial' s.version = package['version'] s.summary = package['description'] s.homepage = package['homepage'] s.license = package['license'] s.authors = package['author'] s.platforms = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' } s.source = { git: package['repository']['url'], tag: "v#{s.version}" } s.resources = 'fonts/*.ttf' end ================================================ FILE: packages/zocial/src/index.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Zocial icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Zocial.json'; export const Zocial = createIconSet(glyphMap, { postScriptName: 'zocial', fontFileName: 'Zocial.ttf', fontSource: require('../fonts/Zocial.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require }); export type ZocialIconName = keyof typeof glyphMap; /** @alias */ export default Zocial; ================================================ FILE: packages/zocial/src/static.ts ================================================ 'use client'; /** * This is a generated file. If you modify it manually, your changes will be lost! * This file was generated from packages/generator-react-native-vector-icons/src/app/templates * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost * * Zocial icon set component. * Usage: */ import { createIconSet } from '@react-native-vector-icons/common'; import glyphMap from '../glyphmaps/Zocial.json'; export const Zocial = createIconSet(glyphMap, { postScriptName: 'zocial', fontFileName: 'Zocial.ttf', }); export type ZocialIconName = keyof typeof glyphMap; /** @alias */ export default Zocial; ================================================ FILE: packages/zocial/tsconfig.build.json ================================================ { "extends": "./tsconfig", "exclude": ["example", "lib"] } ================================================ FILE: packages/zocial/tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": ["ESNext"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } } ================================================ FILE: pnpm-workspace.yaml ================================================ packages: - packages/* ================================================ FILE: scripts/check-npm-publish-status.sh ================================================ #!/usr/bin/env bash set -euo pipefail GREEN='\033[0;32m' RED='\033[0;31m' YELLOW='\033[0;33m' BOLD='\033[1m' RESET='\033[0m' published=0 not_published=0 skipped_private=0 not_published_packages=() for pkg_json in packages/*/package.json; do private=$(jq -r '.private // false' "$pkg_json") name=$(jq -r '.name' "$pkg_json") version=$(jq -r '.version' "$pkg_json") if [ "$private" = "true" ]; then echo -e "${YELLOW}SKIP (private):${RESET} $name" skipped_private=$((skipped_private + 1)) continue fi echo -n "Checking $name@$version ... " if npm view "$name@$version" version >/dev/null 2>&1; then echo -e "${GREEN}published${RESET}" published=$((published + 1)) else echo -e "${RED}NOT PUBLISHED${RESET}" not_published=$((not_published + 1)) not_published_packages+=("$name@$version") fi done echo "" echo -e "${BOLD}=== Summary ===${RESET}" echo -e "${GREEN}Published:${RESET} $published" echo -e "${RED}Not published:${RESET} $not_published" echo -e "${YELLOW}Skipped (private):${RESET} $skipped_private" if [ ${#not_published_packages[@]} -gt 0 ]; then echo "" echo -e "${RED}Not published:${RESET}" for pkg in "${not_published_packages[@]}"; do echo -e " - ${RED}$pkg${RESET}" done fi ================================================ FILE: scripts/fix-glyphmaps.mjs ================================================ #!/usr/bin/env node /* eslint-disable no-restricted-syntax, no-continue */ // builder-bob doesn't support including something from the top level, so we need to fix the paths import { existsSync, readFileSync, writeFileSync } from 'node:fs'; const files = [ ['lib/commonjs', 'js', '../..'], ['lib/module', 'js', '../..'], ['lib/typescript/commonjs/src', 'd.ts', '../../../..'], ['lib/typescript/module/src', 'd.ts', '../../../..'], ]; for (const name of ['index', 'static']) { for (const [dir, ext, prefix] of files) { const file = `${dir}/${name}.${ext}`; if (!existsSync(file)) continue; let content = readFileSync(file, 'utf8'); content = content.replace(/\.\.\/glyphmaps/g, `${prefix}/glyphmaps`); content = content.replace(/\.\.\/fonts/g, `${prefix}/fonts`); writeFileSync(file, content); } } ================================================ FILE: scripts/generate-fonts.sh ================================================ #!/bin/bash set -e cd packages if [ $# -gt 0 ]; then PACKAGES=("$@") else PACKAGES=(./*) fi for package in "${PACKAGES[@]}"; do if [ ! -f "$package/.yo-rc.json" ]; then continue fi echo echo "######################" echo "Building $package" echo "######################" echo cd "$package" if [ -n "$DIFF" ]; then mkdir -p "diffenator/$package" mkdir -p "/tmp/$package/before" cp fonts/*.ttf "/tmp/$package/before" fi CURRENT_VERSION=$([ -f package.json ] && jq -r '.version' package.json || echo "0.0.1") rm -rf ./* git restore CHANGELOG.md &>/dev/null || true if [ "$(jq -r '."generator-react-native-vector-icons".customReadme' .yo-rc.json)" == "true" ]; then git restore README.md >/dev/null || true fi if [ "$(jq -r '."generator-react-native-vector-icons".customSrc' .yo-rc.json)" == "true" ]; then git restore src >/dev/null || true fi if ! yo react-native-vector-icons --force --skip-install --current-version="$CURRENT_VERSION"; then echo echo "⚠️ Skipping $package (generator failed)" echo cd - continue fi if [ -n "$DIFF" ]; then mkdir -p "/tmp/$package/after" cp fonts/*.ttf "/tmp/$package/after" for font in "/tmp/$package/before/"*.ttf; do fontname=$(basename "$font") mkdir -p "diffenator/$package/$fontname" diffenator3 --no-tables --no-kerns --no-words --html --output "../../diffenator/$package/$fontname" "/tmp/$package/before/$fontname" "/tmp/$package/after/$fontname" open "../../diffenator/$package/$fontname/diffenator.html" done fi cd - done cd - pnpm install ================================================ FILE: scripts/setup-npm-trust.sh ================================================ #!/usr/bin/env bash set -euo pipefail REPO="oblador/react-native-vector-icons" WORKFLOW_FILE="deploy.yaml" already_configured=0 newly_configured=0 failed=0 skipped_private=0 failed_packages=() for pkg_json in packages/*/package.json; do private=$(jq -r '.private // false' "$pkg_json") name=$(jq -r '.name' "$pkg_json") if [ "$private" = "true" ]; then echo "SKIP (private): $name" skipped_private=$((skipped_private + 1)) continue fi echo -n "Checking $name ... " trust_output=$(npm trust list --json "$name" 2>/dev/null || true) if echo "$trust_output" | jq -e 'select(.type == "github")' >/dev/null 2>&1; then echo "already configured" already_configured=$((already_configured + 1)) continue fi echo -n "configuring ... " if npm trust github "$name" --file "$WORKFLOW_FILE" --repo "$REPO" --yes 2>&1; then echo "done" newly_configured=$((newly_configured + 1)) else echo "FAILED" failed=$((failed + 1)) failed_packages+=("$name") fi sleep 2 done echo "" echo "=== Summary ===" echo "Already configured: $already_configured" echo "Newly configured: $newly_configured" echo "Skipped (private): $skipped_private" echo "Failed: $failed" if [ ${#failed_packages[@]} -gt 0 ]; then echo "" echo "Failed packages:" for pkg in "${failed_packages[@]}"; do echo " - $pkg" done fi ================================================ FILE: tsconfig.json ================================================ { "compilerOptions": { "rootDir": ".", "paths": { "react-native-vector-icons": [ "./src/index" ] }, "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "lib": [ "ESNext" ], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noImplicitUseStrict": false, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "ESNext", "verbatimModuleSyntax": true } }