diff --git a/Assets/Fonts/bootstrap/LICENSE b/Assets/Fonts/bootstrap/LICENSE deleted file mode 100644 index 7048e17..0000000 --- a/Assets/Fonts/bootstrap/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2019-2024 The Bootstrap Authors - -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. \ No newline at end of file diff --git a/Assets/Fonts/bootstrap/bootstrap-icons.woff2 b/Assets/Fonts/bootstrap/bootstrap-icons.woff2 deleted file mode 100644 index 4d8c490..0000000 Binary files a/Assets/Fonts/bootstrap/bootstrap-icons.woff2 and /dev/null differ diff --git a/Assets/Fonts/tabler/tabler-icons.woff2 b/Assets/Fonts/tabler/tabler-icons.woff2 new file mode 100644 index 0000000..a58679f Binary files /dev/null and b/Assets/Fonts/tabler/tabler-icons.woff2 differ diff --git a/Commons/Icons.qml b/Commons/Icons.qml index 0f45b7b..354d963 100644 --- a/Commons/Icons.qml +++ b/Commons/Icons.qml @@ -11,19 +11,28 @@ Singleton { // Expose the font family name for easy access readonly property string fontFamily: fontLoader.name - readonly property string defaultIcon: Bootstrap.defaultIcon + readonly property string defaultIcon: TablerIcons.defaultIcon + readonly property var icons: TablerIcons.icons + readonly property var aliases: TablerIcons.aliases + readonly property string fontPath: "/Assets/Fonts/tabler/tabler-icons.woff2" Component.onCompleted: { Logger.log("Icons", "Service started") } function get(iconName) { - return Bootstrap.icons[iconName] + // Check in aliases first + if (aliases[iconName] !== undefined) { + iconName = aliases[iconName] + } + + // Find the appropriate codepoint + return icons[iconName] } FontLoader { id: fontLoader - source: Quickshell.shellDir + "/Assets/Fonts/bootstrap/bootstrap-icons.woff2" + source: Quickshell.shellDir + fontPath } // Monitor font loading status @@ -31,9 +40,9 @@ Singleton { target: fontLoader function onStatusChanged() { if (fontLoader.status === FontLoader.Ready) { - Logger.log("Bootstrap", "Font loaded successfully:", fontFamily) + Logger.log("Icons", "Font loaded successfully:", fontFamily) } else if (fontLoader.status === FontLoader.Error) { - Logger.error("Bootstrap", "Font failed to load") + Logger.error("Icons", "Font failed to load") } } } diff --git a/Commons/IconsSets/Bootstrap.qml b/Commons/IconsSets/Bootstrap.qml index bcce765..23f51b8 100644 --- a/Commons/IconsSets/Bootstrap.qml +++ b/Commons/IconsSets/Bootstrap.qml @@ -9,7 +9,33 @@ Singleton { readonly property string defaultIcon: "balloon" readonly property var aliases: { - "close": "x-lg" + "close": "x-lg", + "settings": "gear", + "add": "plus-lg", + "media-pause": "pause", + "media-play": "play", + "media-prev": "skip-start", + "media-next": "skip-end", + "refresh": "arrow-repeat", + "cpu-usage": "speedometer2", + "cpu-temperature": "fire", + "memory": "cpu", + "performance": "speedometer2", + "balanced": "yin-yang", + "powersaver": "leaf", + "download-speed": "cloud-arrow-down", + "upload-speed": "cloud-arrow-up", + "storage": "hdd", + "bluetooth": "bluetooth", + "ethernet": "ethernet", + "keyboard": "keyboard", + "power": "power", + "keep-awake": "cup", + "nightlight": "moon-stars", + "camera-video": "camera-video", + "chevron-left": "chevron-left", + "chevron-right": "chevron-right", + "dark-mode": "transparency" } readonly property var icons: { diff --git a/Commons/IconsSets/Tabler.qml b/Commons/IconsSets/Tabler.qml deleted file mode 100644 index cf191b8..0000000 --- a/Commons/IconsSets/Tabler.qml +++ /dev/null @@ -1,4904 +0,0 @@ -pragma Singleton - -import QtQuick -import Quickshell - -Singleton { - id: root - - readonly property string defaultIcon: "balloon" - - readonly property var icons: { - "12-hours": "\ufc53", - "123": "\uf554", - "24-hours": "\uf5e7", - "2fa": "\ueca0", - "360": "\uf62f", - "360-view": "\uf566", - "3d-cube-sphere": "\uecd7", - "3d-cube-sphere-off": "\uf3b5", - "3d-rotate": "\uf020", - "a-b": "\uec36", - "a-b-2": "\uf25f", - "a-b-off": "\uf0a6", - "abacus": "\uf05c", - "abacus-off": "\uf3b6", - "abc": "\uf567", - "access-point": "\ued1b", - "access-point-off": "\ued1a", - "accessible": "\ueba9", - "accessible-off": "\uf0a7", - "accessible-off-filled": "\uf6ea", - "activity": "\ued23", - "activity-heartbeat": "\uf0db", - "ad": "\uea02", - "ad-2": "\uef1f", - "ad-circle": "\uf79e", - "ad-circle-filled": "\uf7d3", - "ad-circle-off": "\uf79d", - "ad-filled": "\uf6eb", - "ad-off": "\uf3b7", - "address-book": "\uf021", - "address-book-off": "\uf3b8", - "adjustments": "\uea03", - "adjustments-alt": "\uec37", - "adjustments-bolt": "\uf7fb", - "adjustments-cancel": "\uf7fc", - "adjustments-check": "\uf7fd", - "adjustments-code": "\uf7fe", - "adjustments-cog": "\uf7ff", - "adjustments-dollar": "\uf800", - "adjustments-down": "\uf801", - "adjustments-exclamation": "\uf802", - "adjustments-filled": "\uf6ec", - "adjustments-heart": "\uf803", - "adjustments-horizontal": "\uec38", - "adjustments-minus": "\uf804", - "adjustments-off": "\uf0a8", - "adjustments-pause": "\uf805", - "adjustments-pin": "\uf806", - "adjustments-plus": "\uf807", - "adjustments-question": "\uf808", - "adjustments-search": "\uf809", - "adjustments-share": "\uf80a", - "adjustments-star": "\uf80b", - "adjustments-up": "\uf80c", - "adjustments-x": "\uf80d", - "aerial-lift": "\uedfe", - "affiliate": "\uedff", - "affiliate-filled": "\uf6ed", - "air-balloon": "\uf4a6", - "air-conditioning": "\uf3a2", - "air-conditioning-disabled": "\uf542", - "air-traffic-control": "\ufb01", - "alarm": "\uea04", - "alarm-average": "\ufc9e", - "alarm-filled": "\uf709", - "alarm-minus": "\uf630", - "alarm-minus-filled": "\uf70a", - "alarm-off": "\uf0a9", - "alarm-plus": "\uf631", - "alarm-plus-filled": "\uf70b", - "alarm-snooze": "\uf632", - "alarm-snooze-filled": "\uf70c", - "album": "\uf022", - "album-off": "\uf3b9", - "alert-circle": "\uea05", - "alert-circle-filled": "\uf6ee", - "alert-circle-off": "\ufc65", - "alert-hexagon": "\uf80e", - "alert-hexagon-filled": "\ufa34", - "alert-hexagon-off": "\ufc66", - "alert-octagon": "\uecc6", - "alert-octagon-filled": "\uf6ef", - "alert-small": "\uf80f", - "alert-small-off": "\ufc67", - "alert-square": "\uf811", - "alert-square-filled": "\ufa35", - "alert-square-rounded": "\uf810", - "alert-square-rounded-filled": "\ufa36", - "alert-square-rounded-off": "\ufc68", - "alert-triangle": "\uea06", - "alert-triangle-filled": "\uf6f0", - "alert-triangle-off": "\ufc69", - "alien": "\uebde", - "alien-filled": "\uf70d", - "align-box-bottom-center": "\uf530", - "align-box-bottom-center-filled": "\uf70e", - "align-box-bottom-left": "\uf531", - "align-box-bottom-left-filled": "\uf70f", - "align-box-bottom-right": "\uf532", - "align-box-bottom-right-filled": "\uf710", - "align-box-center-bottom": "\ufacb", - "align-box-center-middle": "\uf79f", - "align-box-center-middle-filled": "\uf7d4", - "align-box-center-stretch": "\ufacc", - "align-box-center-top": "\ufacd", - "align-box-left-bottom": "\uf533", - "align-box-left-bottom-filled": "\uf711", - "align-box-left-middle": "\uf534", - "align-box-left-middle-filled": "\uf712", - "align-box-left-stretch": "\uface", - "align-box-left-top": "\uf535", - "align-box-left-top-filled": "\uf713", - "align-box-right-bottom": "\uf536", - "align-box-right-bottom-filled": "\uf714", - "align-box-right-middle": "\uf537", - "align-box-right-middle-filled": "\uf7d5", - "align-box-right-stretch": "\ufacf", - "align-box-right-top": "\uf538", - "align-box-right-top-filled": "\uf715", - "align-box-top-center": "\uf539", - "align-box-top-center-filled": "\uf716", - "align-box-top-left": "\uf53a", - "align-box-top-left-filled": "\uf717", - "align-box-top-right": "\uf53b", - "align-box-top-right-filled": "\uf718", - "align-center": "\uea07", - "align-justified": "\uea08", - "align-left": "\uea09", - "align-right": "\uea0a", - "alpha": "\uf543", - "alphabet-cyrillic": "\uf1df", - "alphabet-greek": "\uf1e0", - "alphabet-latin": "\uf1e1", - "alt": "\ufc54", - "ambulance": "\uebf5", - "ampersand": "\uf229", - "analyze": "\uf3a3", - "analyze-filled": "\uf719", - "analyze-off": "\uf3ba", - "anchor": "\ueb76", - "anchor-off": "\uf0f7", - "angle": "\uef20", - "ankh": "\uf1cd", - "antenna": "\uf094", - "antenna-bars-1": "\uecc7", - "antenna-bars-2": "\uecc8", - "antenna-bars-3": "\uecc9", - "antenna-bars-4": "\uecca", - "antenna-bars-5": "\ueccb", - "antenna-bars-off": "\uf0aa", - "antenna-off": "\uf3bb", - "aperture": "\ueb58", - "aperture-off": "\uf3bc", - "api": "\ueffd", - "api-app": "\ueffc", - "api-app-off": "\uf0ab", - "api-off": "\uf0f8", - "app-window": "\uefe6", - "app-window-filled": "\uf71a", - "apple": "\uef21", - "apps": "\uebb6", - "apps-filled": "\uf6f1", - "apps-off": "\uf0ac", - "archery-arrow": "\ufc55", - "archive": "\uea0b", - "archive-filled": "\ufa82", - "archive-off": "\uf0ad", - "armchair": "\uef9e", - "armchair-2": "\uefe7", - "armchair-2-off": "\uf3bd", - "armchair-off": "\uf3be", - "arrow-autofit-content": "\uef31", - "arrow-autofit-content-filled": "\uf6f2", - "arrow-autofit-down": "\uef32", - "arrow-autofit-height": "\uef33", - "arrow-autofit-left": "\uef34", - "arrow-autofit-right": "\uef35", - "arrow-autofit-up": "\uef36", - "arrow-autofit-width": "\uef37", - "arrow-back": "\uea0c", - "arrow-back-up": "\ueb77", - "arrow-back-up-double": "\uf9ec", - "arrow-badge-down": "\uf60b", - "arrow-badge-down-filled": "\uf7d6", - "arrow-badge-left": "\uf60c", - "arrow-badge-left-filled": "\uf7d7", - "arrow-badge-right": "\uf60d", - "arrow-badge-right-filled": "\uf7d8", - "arrow-badge-up": "\uf60e", - "arrow-badge-up-filled": "\uf7d9", - "arrow-bar-both": "\ufadd", - "arrow-bar-down": "\uea0d", - "arrow-bar-left": "\uea0e", - "arrow-bar-right": "\uea0f", - "arrow-bar-to-down": "\uec88", - "arrow-bar-to-left": "\uec89", - "arrow-bar-to-right": "\uec8a", - "arrow-bar-to-up": "\uec8b", - "arrow-bar-up": "\uea10", - "arrow-bear-left": "\uf045", - "arrow-bear-left-2": "\uf044", - "arrow-bear-right": "\uf047", - "arrow-bear-right-2": "\uf046", - "arrow-big-down": "\uedda", - "arrow-big-down-filled": "\uf6c6", - "arrow-big-down-line": "\uefe8", - "arrow-big-down-line-filled": "\uf6c7", - "arrow-big-down-lines": "\uefe9", - "arrow-big-down-lines-filled": "\uf6c8", - "arrow-big-left": "\ueddb", - "arrow-big-left-filled": "\uf6c9", - "arrow-big-left-line": "\uefea", - "arrow-big-left-line-filled": "\uf6ca", - "arrow-big-left-lines": "\uefeb", - "arrow-big-left-lines-filled": "\uf6cb", - "arrow-big-right": "\ueddc", - "arrow-big-right-filled": "\uf6cc", - "arrow-big-right-line": "\uefec", - "arrow-big-right-line-filled": "\uf6cd", - "arrow-big-right-lines": "\uefed", - "arrow-big-right-lines-filled": "\uf6ce", - "arrow-big-up": "\ueddd", - "arrow-big-up-filled": "\uf6cf", - "arrow-big-up-line": "\uefee", - "arrow-big-up-line-filled": "\uf6d0", - "arrow-big-up-lines": "\uefef", - "arrow-big-up-lines-filled": "\uf6d1", - "arrow-bounce": "\uf3a4", - "arrow-capsule": "\ufade", - "arrow-curve-left": "\uf048", - "arrow-curve-right": "\uf049", - "arrow-down": "\uea16", - "arrow-down-bar": "\ued98", - "arrow-down-circle": "\uea11", - "arrow-down-from-arc": "\ufd86", - "arrow-down-left": "\uea13", - "arrow-down-left-circle": "\uea12", - "arrow-down-rhombus": "\uf61d", - "arrow-down-right": "\uea15", - "arrow-down-right-circle": "\uea14", - "arrow-down-square": "\ued9a", - "arrow-down-tail": "\ued9b", - "arrow-down-to-arc": "\ufd87", - "arrow-elbow-left": "\uf9ed", - "arrow-elbow-right": "\uf9ee", - "arrow-fork": "\uf04a", - "arrow-forward": "\uea17", - "arrow-forward-up": "\ueb78", - "arrow-forward-up-double": "\uf9ef", - "arrow-guide": "\uf22a", - "arrow-iteration": "\uf578", - "arrow-left": "\uea19", - "arrow-left-bar": "\ued9c", - "arrow-left-circle": "\uea18", - "arrow-left-from-arc": "\ufd88", - "arrow-left-rhombus": "\uf61e", - "arrow-left-right": "\uf04b", - "arrow-left-square": "\ued9d", - "arrow-left-tail": "\ued9e", - "arrow-left-to-arc": "\ufd89", - "arrow-loop-left": "\ued9f", - "arrow-loop-left-2": "\uf04c", - "arrow-loop-right": "\ueda0", - "arrow-loop-right-2": "\uf04d", - "arrow-merge": "\uf04e", - "arrow-merge-alt-left": "\ufc9f", - "arrow-merge-alt-right": "\ufca0", - "arrow-merge-both": "\uf23b", - "arrow-merge-left": "\uf23c", - "arrow-merge-right": "\uf23d", - "arrow-move-down": "\uf2ba", - "arrow-move-left": "\uf2bb", - "arrow-move-right": "\uf2bc", - "arrow-move-up": "\uf2bd", - "arrow-narrow-down": "\uea1a", - "arrow-narrow-left": "\uea1b", - "arrow-narrow-right": "\uea1c", - "arrow-narrow-up": "\uea1d", - "arrow-ramp-left": "\ued3c", - "arrow-ramp-left-2": "\uf04f", - "arrow-ramp-left-3": "\uf050", - "arrow-ramp-right": "\ued3d", - "arrow-ramp-right-2": "\uf051", - "arrow-ramp-right-3": "\uf052", - "arrow-right": "\uea1f", - "arrow-right-bar": "\ueda1", - "arrow-right-circle": "\uea1e", - "arrow-right-from-arc": "\ufd8a", - "arrow-right-rhombus": "\uf61f", - "arrow-right-square": "\ueda2", - "arrow-right-tail": "\ueda3", - "arrow-right-to-arc": "\ufd8b", - "arrow-rotary-first-left": "\uf053", - "arrow-rotary-first-right": "\uf054", - "arrow-rotary-last-left": "\uf055", - "arrow-rotary-last-right": "\uf056", - "arrow-rotary-left": "\uf057", - "arrow-rotary-right": "\uf058", - "arrow-rotary-straight": "\uf059", - "arrow-roundabout-left": "\uf22b", - "arrow-roundabout-right": "\uf22c", - "arrow-sharp-turn-left": "\uf05a", - "arrow-sharp-turn-right": "\uf05b", - "arrow-up": "\uea25", - "arrow-up-bar": "\ueda4", - "arrow-up-circle": "\uea20", - "arrow-up-from-arc": "\ufd8c", - "arrow-up-left": "\uea22", - "arrow-up-left-circle": "\uea21", - "arrow-up-rhombus": "\uf620", - "arrow-up-right": "\uea24", - "arrow-up-right-circle": "\uea23", - "arrow-up-square": "\ueda6", - "arrow-up-tail": "\ueda7", - "arrow-up-to-arc": "\ufd8d", - "arrow-wave-left-down": "\ueda8", - "arrow-wave-left-up": "\ueda9", - "arrow-wave-right-down": "\uedaa", - "arrow-wave-right-up": "\uedab", - "arrow-zig-zag": "\uf4a7", - "arrows-cross": "\ueffe", - "arrows-diagonal": "\uea27", - "arrows-diagonal-2": "\uea26", - "arrows-diagonal-minimize": "\uef39", - "arrows-diagonal-minimize-2": "\uef38", - "arrows-diff": "\uf296", - "arrows-double-ne-sw": "\uedde", - "arrows-double-nw-se": "\ueddf", - "arrows-double-se-nw": "\uede0", - "arrows-double-sw-ne": "\uede1", - "arrows-down": "\uedad", - "arrows-down-up": "\uedac", - "arrows-exchange": "\uf1f4", - "arrows-exchange-2": "\uf1f3", - "arrows-horizontal": "\ueb59", - "arrows-join": "\uedaf", - "arrows-join-2": "\uedae", - "arrows-left": "\uedb1", - "arrows-left-down": "\uee00", - "arrows-left-right": "\uedb0", - "arrows-maximize": "\uea28", - "arrows-minimize": "\uea29", - "arrows-move": "\uf22f", - "arrows-move-horizontal": "\uf22d", - "arrows-move-vertical": "\uf22e", - "arrows-random": "\uf095", - "arrows-right": "\uedb3", - "arrows-right-down": "\uee01", - "arrows-right-left": "\uedb2", - "arrows-shuffle": "\uf000", - "arrows-shuffle-2": "\uefff", - "arrows-sort": "\ueb5a", - "arrows-split": "\uedb5", - "arrows-split-2": "\uedb4", - "arrows-transfer-down": "\uf2cc", - "arrows-transfer-up": "\uf2cd", - "arrows-up": "\uedb7", - "arrows-up-down": "\uedb6", - "arrows-up-left": "\uee02", - "arrows-up-right": "\uee03", - "arrows-vertical": "\ueb5b", - "artboard": "\uea2a", - "artboard-filled": "\ufa83", - "artboard-off": "\uf0ae", - "article": "\uf1e2", - "article-filled-filled": "\uf7da", - "article-off": "\uf3bf", - "aspect-ratio": "\ued30", - "aspect-ratio-filled": "\uf7db", - "aspect-ratio-off": "\uf0af", - "assembly": "\uf24d", - "assembly-off": "\uf3c0", - "asset": "\uf1ce", - "asterisk": "\uefd5", - "asterisk-simple": "\uefd4", - "at": "\uea2b", - "at-off": "\uf0b0", - "atom": "\ueb79", - "atom-2": "\uebdf", - "atom-2-filled": "\uf71b", - "atom-off": "\uf0f9", - "augmented-reality": "\uf023", - "augmented-reality-2": "\uf37e", - "augmented-reality-off": "\uf3c1", - "automatic-gearbox": "\ufc89", - "avocado": "\ufd8e", - "award": "\uea2c", - "award-filled": "\uf71c", - "award-off": "\uf0fa", - "axe": "\uef9f", - "axis-x": "\uef45", - "axis-y": "\uef46", - "baby-bottle": "\uf5d2", - "baby-carriage": "\uf05d", - "background": "\ufd2c", - "backhoe": "\ued86", - "backpack": "\uef47", - "backpack-off": "\uf3c2", - "backslash": "\ufab9", - "backspace": "\uea2d", - "backspace-filled": "\uf7dc", - "badge": "\uefc2", - "badge-3d": "\uf555", - "badge-4k": "\uf556", - "badge-8k": "\uf557", - "badge-ad": "\uf558", - "badge-ad-off": "\ufd8f", - "badge-ar": "\uf559", - "badge-cc": "\uf55a", - "badge-filled": "\uf667", - "badge-hd": "\uf55b", - "badge-off": "\uf0fb", - "badge-sd": "\uf55c", - "badge-tm": "\uf55d", - "badge-vo": "\uf55e", - "badge-vr": "\uf55f", - "badge-wc": "\uf560", - "badges": "\uefc3", - "badges-filled": "\uf7dd", - "badges-off": "\uf0fc", - "baguette": "\uf3a5", - "ball-american-football": "\uee04", - "ball-american-football-off": "\uf3c3", - "ball-baseball": "\uefa0", - "ball-basketball": "\uec28", - "ball-bowling": "\uec29", - "ball-football": "\uee06", - "ball-football-off": "\uee05", - "ball-tennis": "\uec2a", - "ball-volleyball": "\uec2b", - "balloon": "\uef3a", - "balloon-filled": "\ufa84", - "balloon-off": "\uf0fd", - "ballpen": "\uf06e", - "ballpen-filled": "\ufa85", - "ballpen-off": "\uf0b1", - "ban": "\uea2e", - "bandage": "\ueb7a", - "bandage-filled": "\uf7de", - "bandage-off": "\uf3c4", - "barbell": "\ueff0", - "barbell-off": "\uf0b2", - "barcode": "\uebc6", - "barcode-off": "\uf0b3", - "barrel": "\uf0b4", - "barrel-off": "\uf0fe", - "barrier-block": "\uf00e", - "barrier-block-off": "\uf0b5", - "baseline": "\uf024", - "baseline-density-large": "\uf9f0", - "baseline-density-medium": "\uf9f1", - "baseline-density-small": "\uf9f2", - "basket": "\uebe1", - "basket-bolt": "\ufb43", - "basket-cancel": "\ufb44", - "basket-check": "\ufb45", - "basket-code": "\ufb46", - "basket-cog": "\ufb47", - "basket-discount": "\ufb48", - "basket-dollar": "\ufb49", - "basket-down": "\ufb4a", - "basket-exclamation": "\ufb4b", - "basket-filled": "\uf7df", - "basket-heart": "\ufb4c", - "basket-minus": "\ufb4d", - "basket-off": "\uf0b6", - "basket-pause": "\ufb4e", - "basket-pin": "\ufb4f", - "basket-plus": "\ufb50", - "basket-question": "\ufb51", - "basket-search": "\ufb52", - "basket-share": "\ufb53", - "basket-star": "\ufb54", - "basket-up": "\ufb55", - "basket-x": "\ufb56", - "bat": "\uf284", - "bath": "\uef48", - "bath-filled": "\uf71d", - "bath-off": "\uf0ff", - "battery": "\uea34", - "battery-1": "\uea2f", - "battery-1-filled": "\uf71e", - "battery-2": "\uea30", - "battery-2-filled": "\uf71f", - "battery-3": "\uea31", - "battery-3-filled": "\uf720", - "battery-4": "\uea32", - "battery-4-filled": "\uf721", - "battery-automotive": "\uee07", - "battery-charging": "\uea33", - "battery-charging-2": "\uef3b", - "battery-eco": "\uef3c", - "battery-filled": "\uf668", - "battery-off": "\ued1c", - "beach": "\uef3d", - "beach-off": "\uf0b7", - "bed": "\ueb5c", - "bed-filled": "\uf7e0", - "bed-flat": "\ufca1", - "bed-off": "\uf100", - "beer": "\uefa1", - "beer-filled": "\uf7e1", - "beer-off": "\uf101", - "bell": "\uea35", - "bell-bolt": "\uf812", - "bell-cancel": "\uf813", - "bell-check": "\uf814", - "bell-code": "\uf815", - "bell-cog": "\uf816", - "bell-dollar": "\uf817", - "bell-down": "\uf818", - "bell-exclamation": "\uf819", - "bell-filled": "\uf669", - "bell-heart": "\uf81a", - "bell-minus": "\uede2", - "bell-minus-filled": "\uf722", - "bell-off": "\uece9", - "bell-pause": "\uf81b", - "bell-pin": "\uf81c", - "bell-plus": "\uede3", - "bell-plus-filled": "\uf723", - "bell-question": "\uf81d", - "bell-ringing": "\ued07", - "bell-ringing-2": "\uede4", - "bell-ringing-2-filled": "\uf724", - "bell-ringing-filled": "\uf725", - "bell-school": "\uf05e", - "bell-search": "\uf81e", - "bell-share": "\uf81f", - "bell-star": "\uf820", - "bell-up": "\uf821", - "bell-x": "\uede5", - "bell-x-filled": "\uf726", - "bell-z": "\ueff1", - "bell-z-filled": "\uf727", - "beta": "\uf544", - "bible": "\uefc4", - "bike": "\uea36", - "bike-off": "\uf0b8", - "binary": "\uee08", - "binary-off": "\uf3c5", - "binary-tree": "\uf5d4", - "binary-tree-2": "\uf5d3", - "biohazard": "\uecb8", - "biohazard-off": "\uf0b9", - "blade": "\uf4bd", - "blade-filled": "\uf7e2", - "bleach": "\uf2f3", - "bleach-chlorine": "\uf2f0", - "bleach-no-chlorine": "\uf2f1", - "bleach-off": "\uf2f2", - "blender": "\ufca2", - "blockquote": "\uee09", - "bluetooth": "\uea37", - "bluetooth-connected": "\uecea", - "bluetooth-off": "\ueceb", - "bluetooth-x": "\uf081", - "blur": "\uef8c", - "blur-off": "\uf3c6", - "bmp": "\uf3a6", - "body-scan": "\ufca3", - "bold": "\ueb7b", - "bold-off": "\uf0ba", - "bolt": "\uea38", - "bolt-off": "\uecec", - "bomb": "\uf59c", - "bomb-filled": "\ufa86", - "bone": "\uedb8", - "bone-off": "\uf0bb", - "bong": "\uf3a7", - "bong-off": "\uf3c7", - "book": "\uea39", - "book-2": "\uefc5", - "book-download": "\uf070", - "book-filled": "\ufa87", - "book-off": "\uf0bc", - "book-upload": "\uf071", - "bookmark": "\uea3a", - "bookmark-ai": "\ufc8a", - "bookmark-edit": "\ufa5e", - "bookmark-filled": "\ufa88", - "bookmark-minus": "\ufa5f", - "bookmark-off": "\ueced", - "bookmark-plus": "\ufa60", - "bookmark-question": "\ufa61", - "bookmarks": "\ued08", - "bookmarks-filled": "\ufb1f", - "bookmarks-off": "\uf0bd", - "books": "\ueff2", - "books-off": "\uf0be", - "border-all": "\uea3b", - "border-bottom": "\uea3c", - "border-corner-ios": "\ufd98", - "border-corner-pill": "\ufd62", - "border-corner-rounded": "\ufd63", - "border-corner-square": "\ufd64", - "border-corners": "\uf7a0", - "border-horizontal": "\uea3d", - "border-inner": "\uea3e", - "border-left": "\uea3f", - "border-none": "\uea40", - "border-outer": "\uea41", - "border-radius": "\ueb7c", - "border-right": "\uea42", - "border-sides": "\uf7a1", - "border-style": "\uee0a", - "border-style-2": "\uef22", - "border-top": "\uea43", - "border-vertical": "\uea44", - "bottle": "\uef0b", - "bottle-filled": "\ufa89", - "bottle-off": "\uf3c8", - "bounce-left": "\uf59d", - "bounce-left-filled": "\ufb20", - "bounce-right": "\uf59e", - "bounce-right-filled": "\ufb21", - "bow": "\uf096", - "bowl": "\uf4fa", - "bowl-chopsticks": "\ufd90", - "bowl-filled": "\ufb22", - "bowl-spoon": "\ufd91", - "box": "\uea45", - "box-align-bottom": "\uf2a8", - "box-align-bottom-filled": "\ufa8a", - "box-align-bottom-left": "\uf2ce", - "box-align-bottom-left-filled": "\ufa8b", - "box-align-bottom-right": "\uf2cf", - "box-align-bottom-right-filled": "\ufa8c", - "box-align-left": "\uf2a9", - "box-align-left-filled": "\ufa8d", - "box-align-right": "\uf2aa", - "box-align-right-filled": "\ufa8e", - "box-align-top": "\uf2ab", - "box-align-top-filled": "\ufa8f", - "box-align-top-left": "\uf2d0", - "box-align-top-left-filled": "\ufa90", - "box-align-top-right": "\uf2d1", - "box-align-top-right-filled": "\ufa91", - "box-margin": "\uee0b", - "box-model": "\uee0c", - "box-model-2": "\uef23", - "box-model-2-off": "\uf3c9", - "box-model-off": "\uf3ca", - "box-multiple": "\uee17", - "box-multiple-0": "\uee0d", - "box-multiple-1": "\uee0e", - "box-multiple-2": "\uee0f", - "box-multiple-3": "\uee10", - "box-multiple-4": "\uee11", - "box-multiple-5": "\uee12", - "box-multiple-6": "\uee13", - "box-multiple-7": "\uee14", - "box-multiple-8": "\uee15", - "box-multiple-9": "\uee16", - "box-off": "\uf102", - "box-padding": "\uee18", - "box-seam": "\uf561", - "braces": "\uebcc", - "braces-off": "\uf0bf", - "brackets": "\uebcd", - "brackets-angle": "\ufcb2", - "brackets-angle-off": "\ufcb1", - "brackets-contain": "\uf1e5", - "brackets-contain-end": "\uf1e3", - "brackets-contain-start": "\uf1e4", - "brackets-off": "\uf0c0", - "braille": "\uf545", - "brain": "\uf59f", - "brand-4chan": "\uf494", - "brand-abstract": "\uf495", - "brand-adobe": "\uf0dc", - "brand-adonis-js": "\uf496", - "brand-airbnb": "\ued68", - "brand-airtable": "\uef6a", - "brand-algolia": "\uf390", - "brand-alipay": "\uf7a2", - "brand-alpine-js": "\uf324", - "brand-amazon": "\uf230", - "brand-amd": "\uf653", - "brand-amigo": "\uf5f9", - "brand-among-us": "\uf205", - "brand-android": "\uec16", - "brand-angular": "\uef6b", - "brand-ansible": "\ufa70", - "brand-ao3": "\uf5e8", - "brand-appgallery": "\uf231", - "brand-apple": "\uec17", - "brand-apple-arcade": "\ued69", - "brand-apple-filled": "\ufd74", - "brand-apple-podcast": "\uf1e6", - "brand-appstore": "\ued24", - "brand-asana": "\uedc5", - "brand-auth0": "\ufcb3", - "brand-aws": "\ufa4c", - "brand-azure": "\ufa4d", - "brand-backbone": "\uf325", - "brand-badoo": "\uf206", - "brand-baidu": "\uf5e9", - "brand-bandcamp": "\uf207", - "brand-bandlab": "\uf5fa", - "brand-beats": "\uf208", - "brand-behance": "\uec6e", - "brand-bilibili": "\uf6d2", - "brand-binance": "\uf5a0", - "brand-bing": "\uedc6", - "brand-bitbucket": "\uedc7", - "brand-blackberry": "\uf568", - "brand-blender": "\uf326", - "brand-blogger": "\uf35a", - "brand-bluesky": "\ufd75", - "brand-booking": "\uedc8", - "brand-bootstrap": "\uef3e", - "brand-bulma": "\uf327", - "brand-bumble": "\uf5fb", - "brand-bunpo": "\uf4cf", - "brand-c-sharp": "\uf003", - "brand-cake": "\uf7a3", - "brand-cakephp": "\uf7af", - "brand-campaignmonitor": "\uf328", - "brand-carbon": "\uf348", - "brand-cashapp": "\uf391", - "brand-chrome": "\uec18", - "brand-cinema-4d": "\ufa71", - "brand-citymapper": "\uf5fc", - "brand-cloudflare": "\ufa4e", - "brand-codecov": "\uf329", - "brand-codepen": "\uec6f", - "brand-codesandbox": "\ued6a", - "brand-cohost": "\uf5d5", - "brand-coinbase": "\uf209", - "brand-comedy-central": "\uf217", - "brand-coreos": "\uf5fd", - "brand-couchdb": "\uf60f", - "brand-couchsurfing": "\uf392", - "brand-cpp": "\uf5fe", - "brand-craft": "\ufa72", - "brand-crunchbase": "\uf7e3", - "brand-css3": "\ued6b", - "brand-ctemplar": "\uf4d0", - "brand-cucumber": "\uef6c", - "brand-cupra": "\uf4d1", - "brand-cypress": "\uf333", - "brand-d3": "\uf24e", - "brand-databricks": "\ufc41", - "brand-days-counter": "\uf4d2", - "brand-dcos": "\uf32a", - "brand-debian": "\uef57", - "brand-deezer": "\uf78b", - "brand-deliveroo": "\uf4d3", - "brand-deno": "\uf24f", - "brand-denodo": "\uf610", - "brand-deviantart": "\uecfb", - "brand-digg": "\ufa73", - "brand-dingtalk": "\uf5ea", - "brand-discord": "\uece3", - "brand-discord-filled": "\uf7e4", - "brand-disney": "\uf20a", - "brand-disqus": "\uedc9", - "brand-django": "\uf349", - "brand-docker": "\uedca", - "brand-doctrine": "\uef6d", - "brand-dolby-digital": "\uf4d4", - "brand-douban": "\uf5ff", - "brand-dribbble": "\uec19", - "brand-dribbble-filled": "\uf7e5", - "brand-drops": "\uf4d5", - "brand-drupal": "\uf393", - "brand-edge": "\uecfc", - "brand-elastic": "\uf611", - "brand-electronic-arts": "\ufa74", - "brand-ember": "\uf497", - "brand-envato": "\uf394", - "brand-etsy": "\uf654", - "brand-evernote": "\uf600", - "brand-facebook": "\uec1a", - "brand-facebook-filled": "\uf7e6", - "brand-feedly": "\ufa75", - "brand-figma": "\uec93", - "brand-filezilla": "\ufa76", - "brand-finder": "\uf218", - "brand-firebase": "\uef6e", - "brand-firefox": "\uecfd", - "brand-fiverr": "\uf7a4", - "brand-flickr": "\uecfe", - "brand-flightradar24": "\uf4d6", - "brand-flipboard": "\uf20b", - "brand-flutter": "\uf395", - "brand-fortnite": "\uf260", - "brand-foursquare": "\uecff", - "brand-framer": "\uec1b", - "brand-framer-motion": "\uf78c", - "brand-funimation": "\uf655", - "brand-gatsby": "\uf396", - "brand-git": "\uef6f", - "brand-github": "\uec1c", - "brand-github-copilot": "\uf4a8", - "brand-github-filled": "\uf7e7", - "brand-gitlab": "\uec1d", - "brand-gmail": "\uefa2", - "brand-golang": "\uf78d", - "brand-google": "\uec1f", - "brand-google-analytics": "\uedcb", - "brand-google-big-query": "\uf612", - "brand-google-drive": "\uec1e", - "brand-google-filled": "\ufd1a", - "brand-google-fit": "\uf297", - "brand-google-home": "\uf601", - "brand-google-maps": "\ufa4f", - "brand-google-one": "\uf232", - "brand-google-photos": "\uf20c", - "brand-google-play": "\ued25", - "brand-google-podcasts": "\uf656", - "brand-grammarly": "\uf32b", - "brand-graphql": "\uf32c", - "brand-gravatar": "\uedcc", - "brand-grindr": "\uf20d", - "brand-guardian": "\uf4fb", - "brand-gumroad": "\uf5d6", - "brand-hbo": "\uf657", - "brand-headlessui": "\uf32d", - "brand-hexo": "\ufa50", - "brand-hipchat": "\uedcd", - "brand-html5": "\ued6c", - "brand-inertia": "\uf34a", - "brand-instagram": "\uec20", - "brand-intercom": "\uf1cf", - "brand-itch": "\ufa22", - "brand-javascript": "\uef0c", - "brand-juejin": "\uf7b0", - "brand-kako-talk": "\ufd2d", - "brand-kbin": "\ufad0", - "brand-kick": "\ufa23", - "brand-kickstarter": "\uedce", - "brand-kotlin": "\ued6d", - "brand-laravel": "\uf34b", - "brand-lastfm": "\uf001", - "brand-leetcode": "\ufa51", - "brand-letterboxd": "\ufa24", - "brand-line": "\uf7e8", - "brand-linkedin": "\uec8c", - "brand-linktree": "\uf1e7", - "brand-linqpad": "\uf562", - "brand-livewire": "\ufd76", - "brand-loom": "\uef70", - "brand-mailgun": "\uf32e", - "brand-mantine": "\uf32f", - "brand-mastercard": "\uef49", - "brand-mastodon": "\uf250", - "brand-matrix": "\uf5eb", - "brand-mcdonalds": "\uf251", - "brand-medium": "\uec70", - "brand-meetup": "\ufc6a", - "brand-mercedes": "\uf072", - "brand-messenger": "\uec71", - "brand-meta": "\uefb0", - "brand-minecraft": "\ufaef", - "brand-miniprogram": "\uf602", - "brand-mixpanel": "\uf397", - "brand-monday": "\uf219", - "brand-mongodb": "\uf613", - "brand-my-oppo": "\uf4d7", - "brand-mysql": "\uf614", - "brand-national-geographic": "\uf603", - "brand-nem": "\uf5a1", - "brand-netbeans": "\uef71", - "brand-netease-music": "\uf604", - "brand-netflix": "\uedcf", - "brand-nexo": "\uf5a2", - "brand-nextcloud": "\uf4d8", - "brand-nextjs": "\uf0dd", - "brand-nodejs": "\ufae0", - "brand-nord-vpn": "\uf37f", - "brand-notion": "\uef7b", - "brand-npm": "\uf569", - "brand-nuxt": "\uf0de", - "brand-nytimes": "\uef8d", - "brand-oauth": "\ufa52", - "brand-office": "\uf398", - "brand-ok-ru": "\uf399", - "brand-onedrive": "\uf5d7", - "brand-onlyfans": "\uf605", - "brand-open-source": "\uedd0", - "brand-openai": "\uf78e", - "brand-openvpn": "\uf39a", - "brand-opera": "\uec21", - "brand-pagekit": "\uedd1", - "brand-parsinta": "\ufc42", - "brand-patreon": "\uedd2", - "brand-patreon-filled": "\ufcff", - "brand-paypal": "\uec22", - "brand-paypal-filled": "\uf7e9", - "brand-paypay": "\uf5ec", - "brand-peanut": "\uf39b", - "brand-pepsi": "\uf261", - "brand-php": "\uef72", - "brand-picsart": "\uf4d9", - "brand-pinterest": "\uec8d", - "brand-planetscale": "\uf78f", - "brand-pnpm": "\ufd77", - "brand-pocket": "\ued00", - "brand-polymer": "\uf498", - "brand-powershell": "\uf5ed", - "brand-printables": "\ufd1b", - "brand-prisma": "\uf499", - "brand-producthunt": "\uedd3", - "brand-pushbullet": "\uf330", - "brand-pushover": "\uf20e", - "brand-python": "\ued01", - "brand-qq": "\uf606", - "brand-radix-ui": "\uf790", - "brand-react": "\uf34c", - "brand-react-native": "\uef73", - "brand-reason": "\uf49a", - "brand-reddit": "\uec8e", - "brand-redhat": "\uf331", - "brand-redux": "\uf3a8", - "brand-revolut": "\uf4da", - "brand-rumble": "\ufad1", - "brand-rust": "\ufa53", - "brand-safari": "\uec23", - "brand-samsungpass": "\uf4db", - "brand-sass": "\uedd4", - "brand-sentry": "\uedd5", - "brand-sharik": "\uf4dc", - "brand-shazam": "\uedd6", - "brand-shopee": "\uf252", - "brand-sketch": "\uec24", - "brand-skype": "\ued02", - "brand-slack": "\uec72", - "brand-snapchat": "\uec25", - "brand-snapseed": "\uf253", - "brand-snowflake": "\uf615", - "brand-socket-io": "\uf49b", - "brand-solidjs": "\uf5ee", - "brand-soundcloud": "\ued6e", - "brand-spacehey": "\uf4fc", - "brand-speedtest": "\ufa77", - "brand-spotify": "\ued03", - "brand-stackoverflow": "\uef58", - "brand-stackshare": "\uf607", - "brand-steam": "\ued6f", - "brand-stocktwits": "\ufd78", - "brand-storj": "\ufa54", - "brand-storybook": "\uf332", - "brand-storytel": "\uf608", - "brand-strava": "\uf254", - "brand-stripe": "\uedd7", - "brand-sublime-text": "\uef74", - "brand-sugarizer": "\uf7a5", - "brand-supabase": "\uf6d3", - "brand-superhuman": "\uf50c", - "brand-supernova": "\uf49c", - "brand-surfshark": "\uf255", - "brand-svelte": "\uf0df", - "brand-swift": "\ufa55", - "brand-symfony": "\uf616", - "brand-tabler": "\uec8f", - "brand-tailwind": "\ueca1", - "brand-taobao": "\uf5ef", - "brand-teams": "\ufadf", - "brand-ted": "\uf658", - "brand-telegram": "\uec26", - "brand-terraform": "\ufa56", - "brand-tether": "\uf5a3", - "brand-thingiverse": "\ufd1c", - "brand-threads": "\ufb02", - "brand-threejs": "\uf5f0", - "brand-tidal": "\ued70", - "brand-tiktok": "\uec73", - "brand-tiktok-filled": "\uf7ea", - "brand-tinder": "\ued71", - "brand-topbuzz": "\uf50d", - "brand-torchain": "\uf5a4", - "brand-toyota": "\uf262", - "brand-trello": "\uf39d", - "brand-tripadvisor": "\uf002", - "brand-tumblr": "\ued04", - "brand-twilio": "\uf617", - "brand-twitch": "\ued05", - "brand-twitter": "\uec27", - "brand-twitter-filled": "\uf7eb", - "brand-typescript": "\uf5f1", - "brand-uber": "\uef75", - "brand-ubuntu": "\uef59", - "brand-unity": "\uf49d", - "brand-unsplash": "\uedd8", - "brand-upwork": "\uf39e", - "brand-valorant": "\uf39f", - "brand-vercel": "\uef24", - "brand-vimeo": "\ued06", - "brand-vinted": "\uf20f", - "brand-visa": "\uf380", - "brand-visual-studio": "\uef76", - "brand-vite": "\uf5f2", - "brand-vivaldi": "\uf210", - "brand-vk": "\ued72", - "brand-vlc": "\ufa78", - "brand-volkswagen": "\uf50e", - "brand-vsco": "\uf334", - "brand-vscode": "\uf3a0", - "brand-vue": "\uf0e0", - "brand-walmart": "\uf211", - "brand-waze": "\uf5d8", - "brand-webflow": "\uf2d2", - "brand-wechat": "\uf5f3", - "brand-weibo": "\uf609", - "brand-whatsapp": "\uec74", - "brand-wikipedia": "\ufa79", - "brand-windows": "\uecd8", - "brand-windy": "\uf4dd", - "brand-wish": "\uf212", - "brand-wix": "\uf3a1", - "brand-wordpress": "\uf2d3", - "brand-x": "\ufc0f", - "brand-x-filled": "\ufc21", - "brand-xamarin": "\ufa7a", - "brand-xbox": "\uf298", - "brand-xdeep": "\ufc10", - "brand-xing": "\uf21a", - "brand-yahoo": "\ued73", - "brand-yandex": "\ufae1", - "brand-yarn": "\ufd79", - "brand-yatse": "\uf213", - "brand-ycombinator": "\uedd9", - "brand-youtube": "\uec90", - "brand-youtube-filled": "\ufc22", - "brand-youtube-kids": "\uf214", - "brand-zalando": "\uf49e", - "brand-zapier": "\uf49f", - "brand-zeit": "\uf335", - "brand-zhihu": "\uf60a", - "brand-zoom": "\uf215", - "brand-zulip": "\uf4de", - "brand-zwift": "\uf216", - "bread": "\uefa3", - "bread-off": "\uf3cb", - "briefcase": "\uea46", - "briefcase-2": "\ufb03", - "briefcase-filled": "\ufd00", - "briefcase-off": "\uf3cc", - "brightness": "\ueb7f", - "brightness-2": "\uee19", - "brightness-auto": "\ufd99", - "brightness-down": "\ueb7d", - "brightness-down-filled": "\ufb23", - "brightness-half": "\uee1a", - "brightness-off": "\uf3cd", - "brightness-up": "\ueb7e", - "brightness-up-filled": "\ufb24", - "broadcast": "\uf1e9", - "broadcast-off": "\uf1e8", - "browser": "\uebb7", - "browser-check": "\uefd6", - "browser-off": "\uf0c1", - "browser-plus": "\uefd7", - "browser-x": "\uefd8", - "brush": "\uebb8", - "brush-off": "\uf0c2", - "bucket": "\uea47", - "bucket-droplet": "\uf56a", - "bucket-off": "\uf103", - "bug": "\uea48", - "bug-filled": "\ufd01", - "bug-off": "\uf0c3", - "building": "\uea4f", - "building-arch": "\uea49", - "building-bank": "\uebe2", - "building-bridge": "\uea4b", - "building-bridge-2": "\uea4a", - "building-broadcast-tower": "\uf4be", - "building-carousel": "\ued87", - "building-castle": "\ued88", - "building-church": "\uea4c", - "building-circus": "\uf4bf", - "building-community": "\uebf6", - "building-cottage": "\uee1b", - "building-estate": "\uf5a5", - "building-factory": "\uee1c", - "building-factory-2": "\uf082", - "building-fortress": "\ued89", - "building-hospital": "\uea4d", - "building-lighthouse": "\ued8a", - "building-monument": "\ued26", - "building-mosque": "\ufa57", - "building-pavilion": "\uebf7", - "building-skyscraper": "\uec39", - "building-stadium": "\uf641", - "building-store": "\uea4e", - "building-tunnel": "\uf5a6", - "building-warehouse": "\uebe3", - "building-wind-turbine": "\uf4c0", - "bulb": "\uea51", - "bulb-filled": "\uf66a", - "bulb-off": "\uea50", - "bulldozer": "\uee1d", - "burger": "\ufcb4", - "bus": "\uebe4", - "bus-off": "\uf3ce", - "bus-stop": "\uf2d4", - "businessplan": "\uee1e", - "butterfly": "\uefd9", - "cactus": "\uf21b", - "cactus-filled": "\ufb25", - "cactus-off": "\uf3cf", - "cake": "\uf00f", - "cake-off": "\uf104", - "calculator": "\ueb80", - "calculator-filled": "\ufb26", - "calculator-off": "\uf0c4", - "calendar": "\uea53", - "calendar-bolt": "\uf822", - "calendar-cancel": "\uf823", - "calendar-check": "\uf824", - "calendar-clock": "\ufd2e", - "calendar-code": "\uf825", - "calendar-cog": "\uf826", - "calendar-dollar": "\uf827", - "calendar-dot": "\ufd3e", - "calendar-down": "\uf828", - "calendar-due": "\uf621", - "calendar-event": "\uea52", - "calendar-exclamation": "\uf829", - "calendar-filled": "\ufb27", - "calendar-heart": "\uf82a", - "calendar-minus": "\uebb9", - "calendar-month": "\ufd2f", - "calendar-off": "\uee1f", - "calendar-pause": "\uf82b", - "calendar-pin": "\uf82c", - "calendar-plus": "\uebba", - "calendar-question": "\uf82d", - "calendar-repeat": "\ufad2", - "calendar-sad": "\ufd1d", - "calendar-search": "\uf82e", - "calendar-share": "\uf82f", - "calendar-smile": "\ufd1e", - "calendar-star": "\uf830", - "calendar-stats": "\uee20", - "calendar-time": "\uee21", - "calendar-up": "\uf831", - "calendar-user": "\ufd1f", - "calendar-week": "\ufd30", - "calendar-x": "\uf832", - "camera": "\uea54", - "camera-bolt": "\uf833", - "camera-cancel": "\uf834", - "camera-check": "\uf835", - "camera-code": "\uf836", - "camera-cog": "\uf837", - "camera-dollar": "\uf838", - "camera-down": "\uf839", - "camera-exclamation": "\uf83a", - "camera-filled": "\ufa37", - "camera-heart": "\uf83b", - "camera-minus": "\uec3a", - "camera-off": "\uecee", - "camera-pause": "\uf83c", - "camera-pin": "\uf83d", - "camera-plus": "\uec3b", - "camera-question": "\uf83e", - "camera-rotate": "\uee22", - "camera-search": "\uf83f", - "camera-selfie": "\uee23", - "camera-share": "\uf840", - "camera-star": "\uf841", - "camera-up": "\uf842", - "camera-x": "\uf843", - "camper": "\ufa25", - "campfire": "\uf5a7", - "campfire-filled": "\ufb28", - "candle": "\uefc6", - "candle-filled": "\ufc23", - "candy": "\uef0d", - "candy-off": "\uf0c5", - "cane": "\uf50f", - "cannabis": "\uf4c1", - "capsule": "\ufae3", - "capsule-filled": "\ufc24", - "capsule-horizontal": "\ufae2", - "capsule-horizontal-filled": "\ufc25", - "capture": "\uec3c", - "capture-filled": "\ufb29", - "capture-off": "\uf0c6", - "car": "\uebbb", - "car-crane": "\uef25", - "car-crash": "\uefa4", - "car-garage": "\ufc77", - "car-off": "\uf0c7", - "car-suv": "\ufc8b", - "car-turbine": "\uf4fd", - "caravan": "\uec7c", - "cardboards": "\ued74", - "cardboards-off": "\uf0c8", - "cards": "\uf510", - "cards-filled": "\ufc26", - "caret-down": "\ueb5d", - "caret-down-filled": "\ufb2a", - "caret-left": "\ueb5e", - "caret-left-filled": "\ufb2b", - "caret-left-right": "\ufc43", - "caret-left-right-filled": "\ufd02", - "caret-right": "\ueb5f", - "caret-right-filled": "\ufb2c", - "caret-up": "\ueb60", - "caret-up-down": "\ufc44", - "caret-up-down-filled": "\ufd03", - "caret-up-filled": "\ufb2d", - "carousel-horizontal": "\uf659", - "carousel-horizontal-filled": "\ufa92", - "carousel-vertical": "\uf65a", - "carousel-vertical-filled": "\ufa93", - "carrot": "\uf21c", - "carrot-off": "\uf3d0", - "cash": "\uea55", - "cash-banknote": "\uee25", - "cash-banknote-off": "\uee24", - "cash-off": "\uf105", - "cast": "\uea56", - "cast-off": "\uf0c9", - "cat": "\uf65b", - "category": "\uf1f6", - "category-2": "\uf1f5", - "category-filled": "\ufb2e", - "category-minus": "\ufd20", - "category-plus": "\ufd21", - "ce": "\ued75", - "ce-off": "\uf0ca", - "cell": "\uf05f", - "cell-signal-1": "\uf083", - "cell-signal-2": "\uf084", - "cell-signal-3": "\uf085", - "cell-signal-4": "\uf086", - "cell-signal-5": "\uf087", - "cell-signal-off": "\uf088", - "certificate": "\ued76", - "certificate-2": "\uf073", - "certificate-2-off": "\uf0cb", - "certificate-off": "\uf0cc", - "chair-director": "\uf2d5", - "chalkboard": "\uf34d", - "chalkboard-off": "\uf3d1", - "charging-pile": "\uee26", - "chart-arcs": "\uee28", - "chart-arcs-3": "\uee27", - "chart-area": "\uea58", - "chart-area-filled": "\uf66b", - "chart-area-line": "\uea57", - "chart-area-line-filled": "\uf66c", - "chart-arrows": "\uee2a", - "chart-arrows-vertical": "\uee29", - "chart-bar": "\uea59", - "chart-bar-off": "\uf3d2", - "chart-bubble": "\uec75", - "chart-bubble-filled": "\uf66d", - "chart-candle": "\uea5a", - "chart-candle-filled": "\uf66e", - "chart-circles": "\uee2b", - "chart-donut": "\uea5b", - "chart-donut-2": "\uee2c", - "chart-donut-3": "\uee2d", - "chart-donut-4": "\uee2e", - "chart-donut-filled": "\uf66f", - "chart-dots": "\uee2f", - "chart-dots-2": "\uf097", - "chart-dots-3": "\uf098", - "chart-dots-filled": "\ufd04", - "chart-grid-dots": "\uf4c2", - "chart-grid-dots-filled": "\ufd05", - "chart-histogram": "\uf65c", - "chart-infographic": "\uee30", - "chart-line": "\uea5c", - "chart-pie": "\uea5d", - "chart-pie-2": "\uee31", - "chart-pie-3": "\uee32", - "chart-pie-4": "\uee33", - "chart-pie-filled": "\uf670", - "chart-pie-off": "\uf3d3", - "chart-ppf": "\uf618", - "chart-radar": "\ued77", - "chart-sankey": "\uf619", - "chart-scatter": "\ufd93", - "chart-scatter-3d": "\ufd92", - "chart-treemap": "\uf381", - "check": "\uea5e", - "checkbox": "\ueba6", - "checklist": "\uf074", - "checks": "\uebaa", - "checkup-list": "\uef5a", - "cheese": "\uef26", - "chef-hat": "\uf21d", - "chef-hat-off": "\uf3d4", - "cherry": "\uf511", - "cherry-filled": "\uf728", - "chess": "\uf382", - "chess-bishop": "\uf56b", - "chess-bishop-filled": "\uf729", - "chess-filled": "\uf72a", - "chess-king": "\uf56c", - "chess-king-filled": "\uf72b", - "chess-knight": "\uf56d", - "chess-knight-filled": "\uf72c", - "chess-queen": "\uf56e", - "chess-queen-filled": "\uf72d", - "chess-rook": "\uf56f", - "chess-rook-filled": "\uf72e", - "chevron-compact-down": "\ufaf0", - "chevron-compact-left": "\ufaf1", - "chevron-compact-right": "\ufaf2", - "chevron-compact-up": "\ufaf3", - "chevron-down": "\uea5f", - "chevron-down-left": "\ued09", - "chevron-down-right": "\ued0a", - "chevron-left": "\uea60", - "chevron-left-pipe": "\ufae4", - "chevron-right": "\uea61", - "chevron-right-pipe": "\ufae5", - "chevron-up": "\uea62", - "chevron-up-left": "\ued0b", - "chevron-up-right": "\ued0c", - "chevrons-down": "\uea63", - "chevrons-down-left": "\ued0d", - "chevrons-down-right": "\ued0e", - "chevrons-left": "\uea64", - "chevrons-right": "\uea65", - "chevrons-up": "\uea66", - "chevrons-up-left": "\ued0f", - "chevrons-up-right": "\ued10", - "chisel": "\uf383", - "christmas-ball": "\ufd31", - "christmas-tree": "\ued78", - "christmas-tree-off": "\uf3d5", - "circle": "\uea6b", - "circle-0-filled": "\uf72f", - "circle-1-filled": "\uf730", - "circle-2-filled": "\uf731", - "circle-3-filled": "\uf732", - "circle-4-filled": "\uf733", - "circle-5-filled": "\uf734", - "circle-6-filled": "\uf735", - "circle-7-filled": "\uf736", - "circle-8-filled": "\uf737", - "circle-9-filled": "\uf738", - "circle-arrow-down": "\uf6f9", - "circle-arrow-down-filled": "\uf6f4", - "circle-arrow-down-left": "\uf6f6", - "circle-arrow-down-left-filled": "\uf6f5", - "circle-arrow-down-right": "\uf6f8", - "circle-arrow-down-right-filled": "\uf6f7", - "circle-arrow-left": "\uf6fb", - "circle-arrow-left-filled": "\uf6fa", - "circle-arrow-right": "\uf6fd", - "circle-arrow-right-filled": "\uf6fc", - "circle-arrow-up": "\uf703", - "circle-arrow-up-filled": "\uf6fe", - "circle-arrow-up-left": "\uf700", - "circle-arrow-up-left-filled": "\uf6ff", - "circle-arrow-up-right": "\uf702", - "circle-arrow-up-right-filled": "\uf701", - "circle-caret-down": "\uf4a9", - "circle-caret-left": "\uf4aa", - "circle-caret-right": "\uf4ab", - "circle-caret-up": "\uf4ac", - "circle-check": "\uea67", - "circle-check-filled": "\uf704", - "circle-chevron-down": "\uf622", - "circle-chevron-left": "\uf623", - "circle-chevron-right": "\uf624", - "circle-chevron-up": "\uf625", - "circle-chevrons-down": "\uf642", - "circle-chevrons-left": "\uf643", - "circle-chevrons-right": "\uf644", - "circle-chevrons-up": "\uf645", - "circle-dashed": "\ued27", - "circle-dashed-number-0": "\ufc6b", - "circle-dashed-number-1": "\ufc6c", - "circle-dashed-number-2": "\ufc6d", - "circle-dashed-number-3": "\ufc6e", - "circle-dashed-number-4": "\ufc6f", - "circle-dashed-number-5": "\ufc70", - "circle-dashed-number-6": "\ufc71", - "circle-dashed-number-7": "\ufc72", - "circle-dashed-number-8": "\ufc73", - "circle-dashed-number-9": "\ufc74", - "circle-dashed-percentage": "\ufd7a", - "circle-dashed-x": "\ufc75", - "circle-dot": "\uefb1", - "circle-dot-filled": "\uf705", - "circle-dotted": "\ued28", - "circle-filled": "\uf671", - "circle-half": "\uee3f", - "circle-half-2": "\ueff3", - "circle-half-vertical": "\uee3e", - "circle-key": "\uf633", - "circle-key-filled": "\uf706", - "circle-letter-a": "\uf441", - "circle-letter-b": "\uf442", - "circle-letter-c": "\uf443", - "circle-letter-d": "\uf444", - "circle-letter-e": "\uf445", - "circle-letter-f": "\uf446", - "circle-letter-g": "\uf447", - "circle-letter-h": "\uf448", - "circle-letter-i": "\uf449", - "circle-letter-j": "\uf44a", - "circle-letter-k": "\uf44b", - "circle-letter-l": "\uf44c", - "circle-letter-m": "\uf44d", - "circle-letter-n": "\uf44e", - "circle-letter-o": "\uf44f", - "circle-letter-p": "\uf450", - "circle-letter-q": "\uf451", - "circle-letter-r": "\uf452", - "circle-letter-s": "\uf453", - "circle-letter-t": "\uf454", - "circle-letter-u": "\uf455", - "circle-letter-v": "\uf4ad", - "circle-letter-w": "\uf456", - "circle-letter-x": "\uf4ae", - "circle-letter-y": "\uf457", - "circle-letter-z": "\uf458", - "circle-minus": "\uea68", - "circle-minus-2": "\ufc8c", - "circle-number-0": "\uee34", - "circle-number-1": "\uee35", - "circle-number-2": "\uee36", - "circle-number-3": "\uee37", - "circle-number-4": "\uee38", - "circle-number-5": "\uee39", - "circle-number-6": "\uee3a", - "circle-number-7": "\uee3b", - "circle-number-8": "\uee3c", - "circle-number-9": "\uee3d", - "circle-off": "\uee40", - "circle-percentage": "\ufd7b", - "circle-plus": "\uea69", - "circle-plus-2": "\ufc8d", - "circle-rectangle": "\uf010", - "circle-rectangle-off": "\uf0cd", - "circle-square": "\uece4", - "circle-triangle": "\uf011", - "circle-x": "\uea6a", - "circle-x-filled": "\uf739", - "circles": "\uece5", - "circles-filled": "\uf672", - "circles-relation": "\uf4c3", - "circuit-ammeter": "\uf271", - "circuit-battery": "\uf272", - "circuit-bulb": "\uf273", - "circuit-capacitor": "\uf275", - "circuit-capacitor-polarized": "\uf274", - "circuit-cell": "\uf277", - "circuit-cell-plus": "\uf276", - "circuit-changeover": "\uf278", - "circuit-diode": "\uf27a", - "circuit-diode-zener": "\uf279", - "circuit-ground": "\uf27c", - "circuit-ground-digital": "\uf27b", - "circuit-inductor": "\uf27d", - "circuit-motor": "\uf27e", - "circuit-pushbutton": "\uf27f", - "circuit-resistor": "\uf280", - "circuit-switch-closed": "\uf281", - "circuit-switch-open": "\uf282", - "circuit-voltmeter": "\uf283", - "clear-all": "\uee41", - "clear-formatting": "\uebe5", - "click": "\uebbc", - "clipboard": "\uea6f", - "clipboard-check": "\uea6c", - "clipboard-copy": "\uf299", - "clipboard-data": "\uf563", - "clipboard-heart": "\uf34e", - "clipboard-list": "\uea6d", - "clipboard-off": "\uf0ce", - "clipboard-plus": "\uefb2", - "clipboard-smile": "\ufd9a", - "clipboard-text": "\uf089", - "clipboard-typography": "\uf34f", - "clipboard-x": "\uea6e", - "clock": "\uea70", - "clock-12": "\ufc56", - "clock-2": "\uf099", - "clock-24": "\ufc57", - "clock-bolt": "\uf844", - "clock-cancel": "\uf546", - "clock-check": "\uf7c1", - "clock-code": "\uf845", - "clock-cog": "\uf7c2", - "clock-dollar": "\uf846", - "clock-down": "\uf7c3", - "clock-edit": "\uf547", - "clock-exclamation": "\uf847", - "clock-filled": "\uf73a", - "clock-heart": "\uf7c4", - "clock-hour-1": "\uf313", - "clock-hour-10": "\uf314", - "clock-hour-11": "\uf315", - "clock-hour-12": "\uf316", - "clock-hour-2": "\uf317", - "clock-hour-3": "\uf318", - "clock-hour-4": "\uf319", - "clock-hour-5": "\uf31a", - "clock-hour-6": "\uf31b", - "clock-hour-7": "\uf31c", - "clock-hour-8": "\uf31d", - "clock-hour-9": "\uf31e", - "clock-minus": "\uf848", - "clock-off": "\uf0cf", - "clock-pause": "\uf548", - "clock-pin": "\uf849", - "clock-play": "\uf549", - "clock-plus": "\uf7c5", - "clock-question": "\uf7c6", - "clock-record": "\uf54a", - "clock-search": "\uf7c7", - "clock-share": "\uf84a", - "clock-shield": "\uf7c8", - "clock-star": "\uf7c9", - "clock-stop": "\uf54b", - "clock-up": "\uf7ca", - "clock-x": "\uf7cb", - "clothes-rack": "\uf285", - "clothes-rack-off": "\uf3d6", - "cloud": "\uea76", - "cloud-bolt": "\uf84b", - "cloud-cancel": "\uf84c", - "cloud-check": "\uf84d", - "cloud-code": "\uf84e", - "cloud-cog": "\uf84f", - "cloud-computing": "\uf1d0", - "cloud-data-connection": "\uf1d1", - "cloud-dollar": "\uf850", - "cloud-down": "\uf851", - "cloud-download": "\uea71", - "cloud-exclamation": "\uf852", - "cloud-filled": "\uf673", - "cloud-fog": "\uecd9", - "cloud-heart": "\uf853", - "cloud-lock": "\uefdb", - "cloud-lock-open": "\uefda", - "cloud-minus": "\uf854", - "cloud-network": "\ufc78", - "cloud-off": "\ued3e", - "cloud-pause": "\uf855", - "cloud-pin": "\uf856", - "cloud-plus": "\uf857", - "cloud-question": "\uf858", - "cloud-rain": "\uea72", - "cloud-search": "\uf859", - "cloud-share": "\uf85a", - "cloud-snow": "\uea73", - "cloud-star": "\uf85b", - "cloud-storm": "\uea74", - "cloud-up": "\uf85c", - "cloud-upload": "\uea75", - "cloud-x": "\uf85d", - "clover": "\uf1ea", - "clover-2": "\uf21e", - "clubs": "\ueff4", - "clubs-filled": "\uf674", - "code": "\uea77", - "code-asterix": "\uf312", - "code-circle": "\uf4ff", - "code-circle-2": "\uf4fe", - "code-dots": "\uf61a", - "code-minus": "\uee42", - "code-off": "\uf0d0", - "code-plus": "\uee43", - "coffee": "\uef0e", - "coffee-off": "\uf106", - "coffin": "\uf579", - "coin": "\ueb82", - "coin-bitcoin": "\uf2be", - "coin-bitcoin-filled": "\ufd06", - "coin-euro": "\uf2bf", - "coin-euro-filled": "\ufd07", - "coin-filled": "\ufd08", - "coin-monero": "\uf4a0", - "coin-monero-filled": "\ufd09", - "coin-off": "\uf0d1", - "coin-pound": "\uf2c0", - "coin-pound-filled": "\ufd0a", - "coin-rupee": "\uf2c1", - "coin-rupee-filled": "\ufd0b", - "coin-taka": "\ufd0d", - "coin-taka-filled": "\ufd0c", - "coin-yen": "\uf2c2", - "coin-yen-filled": "\ufd0e", - "coin-yuan": "\uf2c3", - "coin-yuan-filled": "\ufd0f", - "coins": "\uf65d", - "color-filter": "\uf5a8", - "color-picker": "\uebe6", - "color-picker-off": "\uf0d2", - "color-swatch": "\ueb61", - "color-swatch-off": "\uf0d3", - "column-insert-left": "\uee44", - "column-insert-right": "\uee45", - "column-remove": "\ufaf4", - "columns": "\ueb83", - "columns-1": "\uf6d4", - "columns-2": "\uf6d5", - "columns-3": "\uf6d6", - "columns-off": "\uf0d4", - "comet": "\uec76", - "command": "\uea78", - "command-off": "\uf3d7", - "compass": "\uea79", - "compass-filled": "\ufd10", - "compass-off": "\uf0d5", - "components": "\uefa5", - "components-off": "\uf0d6", - "cone": "\uefdd", - "cone-2": "\uefdc", - "cone-off": "\uf3d8", - "cone-plus": "\ufa94", - "confetti": "\uee46", - "confetti-off": "\uf3d9", - "confucius": "\uf58a", - "container": "\uee47", - "container-off": "\uf107", - "contrast": "\uec4e", - "contrast-2": "\uefc7", - "contrast-2-off": "\uf3da", - "contrast-off": "\uf3db", - "cooker": "\uf57a", - "cookie": "\uef0f", - "cookie-man": "\uf4c4", - "cookie-off": "\uf0d7", - "copy": "\uea7a", - "copy-check": "\ufd3f", - "copy-minus": "\ufd40", - "copy-off": "\uf0d8", - "copy-plus": "\ufd41", - "copy-x": "\ufd42", - "copyleft": "\uec3d", - "copyleft-filled": "\uf73b", - "copyleft-off": "\uf0d9", - "copyright": "\uea7b", - "copyright-filled": "\uf73c", - "copyright-off": "\uf0da", - "corner-down-left": "\uea7c", - "corner-down-left-double": "\uee48", - "corner-down-right": "\uea7d", - "corner-down-right-double": "\uee49", - "corner-left-down": "\uea7e", - "corner-left-down-double": "\uee4a", - "corner-left-up": "\uea7f", - "corner-left-up-double": "\uee4b", - "corner-right-down": "\uea80", - "corner-right-down-double": "\uee4c", - "corner-right-up": "\uea81", - "corner-right-up-double": "\uee4d", - "corner-up-left": "\uea82", - "corner-up-left-double": "\uee4e", - "corner-up-right": "\uea83", - "corner-up-right-double": "\uee4f", - "cpu": "\uef8e", - "cpu-2": "\uf075", - "cpu-off": "\uf108", - "crane": "\uef27", - "crane-off": "\uf109", - "creative-commons": "\uefb3", - "creative-commons-by": "\uf21f", - "creative-commons-nc": "\uf220", - "creative-commons-nd": "\uf221", - "creative-commons-off": "\uf10a", - "creative-commons-sa": "\uf222", - "creative-commons-zero": "\uf223", - "credit-card": "\uea84", - "credit-card-filled": "\ufd11", - "credit-card-off": "\ued11", - "credit-card-pay": "\ufd32", - "credit-card-refund": "\ufd33", - "cricket": "\uf09a", - "crop": "\uea85", - "crop-1-1": "\ufd50", - "crop-16-9": "\ufd51", - "crop-3-2": "\ufd52", - "crop-5-4": "\ufd53", - "crop-7-5": "\ufd54", - "crop-landscape": "\ufd55", - "crop-portrait": "\ufd56", - "cross": "\uef8f", - "cross-filled": "\uf675", - "cross-off": "\uf10b", - "crosshair": "\uec3e", - "crown": "\ued12", - "crown-off": "\uee50", - "crutches": "\uef5b", - "crutches-off": "\uf10c", - "crystal-ball": "\uf57b", - "csv": "\uf791", - "cube": "\ufa97", - "cube-off": "\ufa95", - "cube-plus": "\ufa96", - "cube-send": "\uf61b", - "cube-unfolded": "\uf61c", - "cup": "\uef28", - "cup-off": "\uf10d", - "curling": "\uefc8", - "curly-loop": "\uecda", - "currency": "\uefa6", - "currency-afghani": "\uf65e", - "currency-bahraini": "\uee51", - "currency-baht": "\uf08a", - "currency-bitcoin": "\uebab", - "currency-cent": "\uee53", - "currency-dinar": "\uee54", - "currency-dirham": "\uee55", - "currency-dogecoin": "\uef4b", - "currency-dollar": "\ueb84", - "currency-dollar-australian": "\uee56", - "currency-dollar-brunei": "\uf36c", - "currency-dollar-canadian": "\uee57", - "currency-dollar-guyanese": "\uf36d", - "currency-dollar-off": "\uf3dc", - "currency-dollar-singapore": "\uee58", - "currency-dollar-zimbabwean": "\uf36e", - "currency-dong": "\uf36f", - "currency-dram": "\uf370", - "currency-ethereum": "\uee59", - "currency-euro": "\ueb85", - "currency-euro-off": "\uf3dd", - "currency-florin": "\ufaf5", - "currency-forint": "\uee5a", - "currency-frank": "\uee5b", - "currency-guarani": "\uf371", - "currency-hryvnia": "\uf372", - "currency-iranian-rial": "\ufa58", - "currency-kip": "\uf373", - "currency-krone-czech": "\uee5c", - "currency-krone-danish": "\uee5d", - "currency-krone-swedish": "\uee5e", - "currency-lari": "\uf374", - "currency-leu": "\uee5f", - "currency-lira": "\uee60", - "currency-litecoin": "\uee61", - "currency-lyd": "\uf375", - "currency-manat": "\uf376", - "currency-monero": "\uf377", - "currency-naira": "\uee62", - "currency-nano": "\uf7a6", - "currency-off": "\uf3de", - "currency-paanga": "\uf378", - "currency-peso": "\uf65f", - "currency-pound": "\uebac", - "currency-pound-off": "\uf3df", - "currency-quetzal": "\uf379", - "currency-real": "\uee63", - "currency-renminbi": "\uee64", - "currency-ripple": "\uee65", - "currency-riyal": "\uee66", - "currency-rubel": "\uee67", - "currency-rufiyaa": "\uf37a", - "currency-rupee": "\uebad", - "currency-rupee-nepalese": "\uf37b", - "currency-shekel": "\uee68", - "currency-solana": "\uf4a1", - "currency-som": "\uf37c", - "currency-taka": "\uee69", - "currency-tenge": "\uf37d", - "currency-tugrik": "\uee6a", - "currency-won": "\uee6b", - "currency-xrp": "\ufd34", - "currency-yen": "\uebae", - "currency-yen-off": "\uf3e0", - "currency-yuan": "\uf29a", - "currency-zloty": "\uee6c", - "current-location": "\uecef", - "current-location-off": "\uf3e1", - "cursor-off": "\uf10e", - "cursor-text": "\uee6d", - "cut": "\uea86", - "cylinder": "\uf54c", - "cylinder-off": "\uf54d", - "cylinder-plus": "\uf54e", - "dashboard": "\uea87", - "dashboard-filled": "\uf73d", - "dashboard-off": "\uf10f", - "database": "\uea88", - "database-cog": "\uf61d", - "database-dollar": "\uf61e", - "database-edit": "\uf61f", - "database-exclamation": "\uf620", - "database-export": "\uf00a", - "database-heart": "\uf621", - "database-import": "\uf00b", - "database-leak": "\uf622", - "database-minus": "\uf623", - "database-off": "\uf110", - "database-plus": "\uf624", - "database-search": "\uf625", - "database-share": "\uf626", - "database-star": "\uf627", - "database-x": "\uf628", - "deer": "\uf4c5", - "delta": "\uf53c", - "dental": "\uf025", - "dental-broken": "\uf286", - "dental-off": "\uf111", - "deselect": "\uf9f3", - "desk": "\uef5c", - "details": "\uf1eb", - "details-off": "\uf3e2", - "device-airpods": "\uf0e1", - "device-airpods-case": "\uf4c6", - "device-airtag": "\uf4c7", - "device-analytics": "\uee6e", - "device-audio-tape": "\uf4c8", - "device-camera-phone": "\uf233", - "device-cctv": "\uee6f", - "device-cctv-off": "\uf3e3", - "device-computer-camera": "\uee70", - "device-computer-camera-off": "\uee71", - "device-desktop": "\uea89", - "device-desktop-analytics": "\uee72", - "device-desktop-bolt": "\uf85e", - "device-desktop-cancel": "\uf85f", - "device-desktop-check": "\uf860", - "device-desktop-code": "\uee73", - "device-desktop-cog": "\uee74", - "device-desktop-dollar": "\uf861", - "device-desktop-down": "\uf862", - "device-desktop-exclamation": "\uf863", - "device-desktop-heart": "\uf864", - "device-desktop-minus": "\uf865", - "device-desktop-off": "\uee75", - "device-desktop-pause": "\uf866", - "device-desktop-pin": "\uf867", - "device-desktop-plus": "\uf868", - "device-desktop-question": "\uf869", - "device-desktop-search": "\uf86a", - "device-desktop-share": "\uf86b", - "device-desktop-star": "\uf86c", - "device-desktop-up": "\uf86d", - "device-desktop-x": "\uf86e", - "device-floppy": "\uee76", - "device-gamepad": "\ueb62", - "device-gamepad-2": "\uf1d2", - "device-gamepad-3": "\uf50f", - "device-heart-monitor": "\uf060", - "device-heart-monitor-filled": "\uf73e", - "device-imac": "\uf7a7", - "device-imac-bolt": "\uf86f", - "device-imac-cancel": "\uf870", - "device-imac-check": "\uf871", - "device-imac-code": "\uf872", - "device-imac-cog": "\uf873", - "device-imac-dollar": "\uf874", - "device-imac-down": "\uf875", - "device-imac-exclamation": "\uf876", - "device-imac-heart": "\uf877", - "device-imac-minus": "\uf878", - "device-imac-off": "\uf3e4", - "device-imac-pause": "\uf879", - "device-imac-pin": "\uf87a", - "device-imac-plus": "\uf87b", - "device-imac-question": "\uf87c", - "device-imac-search": "\uf87d", - "device-imac-share": "\uf87e", - "device-imac-star": "\uf87f", - "device-imac-up": "\uf880", - "device-imac-x": "\uf881", - "device-ipad": "\uf7a8", - "device-ipad-bolt": "\uf882", - "device-ipad-cancel": "\uf883", - "device-ipad-check": "\uf884", - "device-ipad-code": "\uf885", - "device-ipad-cog": "\uf886", - "device-ipad-dollar": "\uf887", - "device-ipad-down": "\uf888", - "device-ipad-exclamation": "\uf889", - "device-ipad-heart": "\uf88a", - "device-ipad-horizontal": "\uf233", - "device-ipad-horizontal-bolt": "\uf88b", - "device-ipad-horizontal-cancel": "\uf88c", - "device-ipad-horizontal-check": "\uf88d", - "device-ipad-horizontal-code": "\uf88e", - "device-ipad-horizontal-cog": "\uf88f", - "device-ipad-horizontal-dollar": "\uf890", - "device-ipad-horizontal-down": "\uf891", - "device-ipad-horizontal-exclamation": "\uf892", - "device-ipad-horizontal-heart": "\uf893", - "device-ipad-horizontal-minus": "\uf894", - "device-ipad-horizontal-off": "\uf3e5", - "device-ipad-horizontal-pause": "\uf895", - "device-ipad-horizontal-pin": "\uf896", - "device-ipad-horizontal-plus": "\uf897", - "device-ipad-horizontal-question": "\uf898", - "device-ipad-horizontal-search": "\uf899", - "device-ipad-horizontal-share": "\uf89a", - "device-ipad-horizontal-star": "\uf89b", - "device-ipad-horizontal-up": "\uf89c", - "device-ipad-horizontal-x": "\uf89d", - "device-ipad-minus": "\uf89e", - "device-ipad-off": "\uf3e6", - "device-ipad-pause": "\uf89f", - "device-ipad-pin": "\uf8a0", - "device-ipad-plus": "\uf8a1", - "device-ipad-question": "\uf8a2", - "device-ipad-search": "\uf8a3", - "device-ipad-share": "\uf8a4", - "device-ipad-star": "\uf8a5", - "device-ipad-up": "\uf8a6", - "device-ipad-x": "\uf8a7", - "device-laptop": "\ueb63", - "device-laptop-off": "\uf112", - "device-mobile": "\uea8a", - "device-mobile-bolt": "\uf8a8", - "device-mobile-cancel": "\uf8a9", - "device-mobile-charging": "\uf224", - "device-mobile-check": "\uf8aa", - "device-mobile-code": "\uf8ab", - "device-mobile-cog": "\uf8ac", - "device-mobile-dollar": "\uf8ad", - "device-mobile-down": "\uf8ae", - "device-mobile-exclamation": "\uf8af", - "device-mobile-filled": "\uf676", - "device-mobile-heart": "\uf8b0", - "device-mobile-message": "\uee77", - "device-mobile-minus": "\uf8b1", - "device-mobile-off": "\uf112", - "device-mobile-pause": "\uf8b2", - "device-mobile-pin": "\uf8b3", - "device-mobile-plus": "\uf8b4", - "device-mobile-question": "\uf8b5", - "device-mobile-rotated": "\uecdb", - "device-mobile-search": "\uf8b6", - "device-mobile-share": "\uf8b7", - "device-mobile-star": "\uf8b8", - "device-mobile-up": "\uf8b9", - "device-mobile-vibration": "\ueb86", - "device-mobile-x": "\uf8ba", - "device-nintendo": "\uf026", - "device-nintendo-off": "\uf114", - "device-remote": "\uf792", - "device-sd-card": "\uf7ec", - "device-sim": "\uf4b0", - "device-sim-1": "\uf4c9", - "device-sim-2": "\uf4ca", - "device-sim-3": "\uf4cb", - "device-speaker": "\uea8b", - "device-speaker-off": "\uf115", - "device-tablet": "\uea8c", - "device-tablet-bolt": "\uf8bb", - "device-tablet-cancel": "\uf8bc", - "device-tablet-check": "\uf8bd", - "device-tablet-code": "\uf8be", - "device-tablet-cog": "\uf8bf", - "device-tablet-dollar": "\uf8c0", - "device-tablet-down": "\uf8c1", - "device-tablet-exclamation": "\uf8c2", - "device-tablet-filled": "\uf677", - "device-tablet-heart": "\uf8c3", - "device-tablet-minus": "\uf8c4", - "device-tablet-off": "\uf116", - "device-tablet-pause": "\uf8c5", - "device-tablet-pin": "\uf8c6", - "device-tablet-plus": "\uf8c7", - "device-tablet-question": "\uf8c8", - "device-tablet-search": "\uf8c9", - "device-tablet-share": "\uf8ca", - "device-tablet-star": "\uf8cb", - "device-tablet-up": "\uf8cc", - "device-tablet-x": "\uf8cd", - "device-tv": "\uea8d", - "device-tv-off": "\uf117", - "device-tv-old": "\uf1d3", - "device-usb": "\uf4cc", - "device-vision-pro": "\ufbc5", - "device-watch": "\uebf8", - "device-watch-bolt": "\uf8ce", - "device-watch-cancel": "\uf8cf", - "device-watch-check": "\uf8d0", - "device-watch-code": "\uf8d1", - "device-watch-cog": "\uf8d2", - "device-watch-dollar": "\uf8d3", - "device-watch-down": "\uf8d4", - "device-watch-exclamation": "\uf8d5", - "device-watch-heart": "\uf8d6", - "device-watch-minus": "\uf8d7", - "device-watch-off": "\uf3e7", - "device-watch-pause": "\uf8d8", - "device-watch-pin": "\uf8d9", - "device-watch-plus": "\uf8da", - "device-watch-question": "\uf8db", - "device-watch-search": "\uf8dc", - "device-watch-share": "\uf8dd", - "device-watch-star": "\uf8de", - "device-watch-stats": "\uee78", - "device-watch-stats-2": "\uef77", - "device-watch-up": "\uf8df", - "device-watch-x": "\uf8e0", - "devices": "\uea8e", - "devices-2": "\uebf9", - "devices-bolt": "\uf8e1", - "devices-cancel": "\uf8e2", - "devices-check": "\uf8e3", - "devices-code": "\uf8e4", - "devices-cog": "\uf8e5", - "devices-dollar": "\uf8e6", - "devices-down": "\uf8e7", - "devices-exclamation": "\uf8e8", - "devices-heart": "\uf8e9", - "devices-minus": "\uf8ea", - "devices-off": "\uf118", - "devices-pause": "\uf8eb", - "devices-pc": "\uee79", - "devices-pc-off": "\uf119", - "devices-pin": "\uf8ec", - "devices-plus": "\uf8ed", - "devices-question": "\uf8ee", - "devices-search": "\uf8ef", - "devices-share": "\uf8f0", - "devices-star": "\uf8f1", - "devices-up": "\uf8f2", - "devices-x": "\uf8f3", - "dialpad": "\uf067", - "dialpad-filled": "\uf678", - "dialpad-off": "\uf11a", - "diamond": "\ueb87", - "diamond-filled": "\uf679", - "diamond-off": "\uf11b", - "diamonds": "\ueff5", - "diamonds-filled": "\uf67a", - "dice": "\ueb64", - "dice-1": "\uf08b", - "dice-1-filled": "\uf73f", - "dice-2": "\uf08c", - "dice-2-filled": "\uf740", - "dice-3": "\uf08d", - "dice-3-filled": "\uf741", - "dice-4": "\uf08e", - "dice-4-filled": "\uf742", - "dice-5": "\uf08f", - "dice-5-filled": "\uf743", - "dice-6": "\uf090", - "dice-6-filled": "\uf744", - "dice-filled": "\uf67b", - "dimensions": "\uee7a", - "direction": "\uebfa", - "direction-horizontal": "\uebfb", - "direction-sign": "\uf1ec", - "direction-sign-filled": "\uf745", - "direction-sign-off": "\uf3e8", - "directions": "\uea8f", - "directions-off": "\uf11c", - "disabled": "\uea90", - "disabled-2": "\uf1d4", - "disabled-off": "\uf11d", - "disc": "\uea91", - "disc-golf": "\uf385", - "disc-off": "\uf11e", - "discount": "\uebfc", - "discount-2": "\uee7b", - "discount-2-off": "\uf3e9", - "discount-check": "\uf1f7", - "discount-check-filled": "\uf746", - "discount-off": "\uf11f", - "divide": "\ued5c", - "dna": "\uee7c", - "dna-2": "\uee7d", - "dna-2-off": "\uf3ea", - "dna-off": "\uf3eb", - "dog": "\uf660", - "dog-bowl": "\uf4cd", - "door": "\uef5d", - "door-enter": "\uef5e", - "door-exit": "\uef5f", - "door-off": "\uf120", - "dots": "\uea95", - "dots-circle-horizontal": "\uee7e", - "dots-diagonal": "\uee7f", - "dots-diagonal-2": "\uee80", - "dots-vertical": "\uea96", - "download": "\uea97", - "download-off": "\uf121", - "drag-drop": "\uef29", - "drag-drop-2": "\uef2a", - "drone": "\ued29", - "drone-off": "\uf122", - "drop-circle": "\uefc9", - "droplet": "\uea98", - "droplet-bolt": "\uf8f4", - "droplet-cancel": "\uf8f5", - "droplet-check": "\uf8f6", - "droplet-code": "\uf8f7", - "droplet-cog": "\uf8f8", - "droplet-dollar": "\uf8f9", - "droplet-down": "\uf8fa", - "droplet-exclamation": "\uf8fb", - "droplet-filled": "\uf67c", - "droplet-filled-2": "\uee81", - "droplet-half": "\uee82", - "droplet-half-2": "\uee83", - "droplet-half-filled": "\uf67d", - "droplet-heart": "\uf8fc", - "droplet-minus": "\uf8fd", - "droplet-off": "\ued2a", - "droplet-pause": "\uf8fe", - "droplet-pin": "\uf8ff", - "droplet-plus": "\uf900", - "droplet-question": "\uf901", - "droplet-search": "\uf902", - "droplet-share": "\uf903", - "droplet-star": "\uf904", - "droplet-up": "\uf905", - "droplet-x": "\uf906", - "dual-screen": "\uf7ed", - "dumbbell": "\uf050", - "ear": "\uebfd", - "ear-off": "\uf123", - "ear-scan": "\ufad3", - "east": "\uf1d5", - "edit": "\uea99", - "edit-circle": "\uee84", - "edit-circle-off": "\uf124", - "edit-off": "\uf125", - "egg": "\uebfe", - "egg-cracked": "\uf2ce", - "egg-filled": "\uf67e", - "egg-fried": "\uf386", - "egg-off": "\uf126", - "elevator": "\uefca", - "elevator-off": "\uf3ec", - "emergency-bed": "\uef60", - "empathize": "\uf29b", - "empathize-off": "\uf3ed", - "emphasis": "\uebff", - "engine": "\uee85", - "engine-off": "\uf127", - "equal": "\uee86", - "equal-double": "\uf4ce", - "equal-not": "\uee87", - "eraser": "\ueb65", - "eraser-off": "\uf128", - "error-404": "\uf027", - "error-404-off": "\uf129", - "exchange": "\uebe7", - "exchange-off": "\uf12a", - "exclamation-circle": "\uf634", - "exclamation-mark": "\uefcb", - "exclamation-mark-off": "\uf12b", - "explicit": "\uf4cf", - "explicit-off": "\uf4d0", - "exposure": "\uee88", - "exposure-0": "\uf1d6", - "exposure-minus-1": "\uf1d7", - "exposure-minus-2": "\uf1d8", - "exposure-off": "\uf3ee", - "exposure-plus-1": "\uf1d9", - "exposure-plus-2": "\uf1da", - "external-link": "\uea9a", - "external-link-off": "\uf12c", - "eye": "\uea9c", - "eye-bolt": "\uf907", - "eye-cancel": "\uf908", - "eye-check": "\uf909", - "eye-closed": "\ued2b", - "eye-code": "\uf90a", - "eye-cog": "\uf90b", - "eye-dollar": "\uf90c", - "eye-down": "\uf90d", - "eye-edit": "\uf7a9", - "eye-exclamation": "\uf90e", - "eye-filled": "\uf67f", - "eye-heart": "\uf90f", - "eye-minus": "\uf910", - "eye-off": "\uecf0", - "eye-pause": "\uf911", - "eye-pin": "\uf912", - "eye-plus": "\uf913", - "eye-question": "\uf914", - "eye-search": "\uf915", - "eye-share": "\uf916", - "eye-star": "\uf917", - "eye-table": "\uef78", - "eye-up": "\uf918", - "eye-x": "\uf919", - "eyeglass": "\uf51a", - "eyeglass-2": "\uf510", - "eyeglass-off": "\uf511", - "face-id": "\uea9d", - "face-id-error": "\uef79", - "face-mask": "\uefcc", - "face-mask-off": "\uf12d", - "fall": "\uecbf", - "feather": "\uee89", - "feather-off": "\uf12e", - "fence": "\uef2b", - "fence-off": "\uf12f", - "ferris-wheel": "\ued87", - "fidget-spinner": "\uf051", - "file": "\ueaa4", - "file-3d": "\uf061", - "file-alert": "\uedde", - "file-analytics": "\ueddf", - "file-arrow-left": "\uede0", - "file-arrow-right": "\uede1", - "file-barcode": "\uf00c", - "file-broken": "\uf287", - "file-certificate": "\ued31", - "file-chart": "\ued2c", - "file-check": "\uea9e", - "file-code": "\uebec", - "file-code-2": "\uede2", - "file-cv": "\uf028", - "file-database": "\uf029", - "file-delta": "\uf53d", - "file-description": "\uf02a", - "file-diff": "\uecf1", - "file-digit": "\uef7a", - "file-dislike": "\ued2d", - "file-dollar": "\ueff6", - "file-dots": "\uedf0", - "file-download": "\uea9f", - "file-euro": "\ueff7", - "file-export": "\uedf1", - "file-filled": "\uf680", - "file-function": "\uf530", - "file-horizontal": "\uebe8", - "file-import": "\uedf2", - "file-info": "\uedec", - "file-invoice": "\ueb67", - "file-lambda": "\uf531", - "file-like": "\ued2e", - "file-minus": "\ueaa0", - "file-music": "\ueaa1", - "file-off": "\ued2f", - "file-orientation": "\uf02b", - "file-pencil": "\uf02c", - "file-percent": "\ueff8", - "file-phone": "\uecf2", - "file-plus": "\ueaa2", - "file-power": "\uf02d", - "file-report": "\ueded", - "file-rss": "\uf02e", - "file-scissors": "\uf02f", - "file-search": "\ued5d", - "file-settings": "\uf030", - "file-shredder": "\ueaa3", - "file-signal": "\uf031", - "file-spreadsheet": "\uf032", - "file-stack": "\uf52f", - "file-star": "\uf033", - "file-symlink": "\ued34", - "file-text": "\ueaa5", - "file-text-ai": "\ufc8e", - "file-time": "\uf034", - "file-typography": "\uf035", - "file-unknown": "\uf036", - "file-upload": "\ueaa6", - "file-vector": "\uf037", - "file-x": "\ueaa7", - "file-x-filled": "\uf681", - "file-zip": "\ued35", - "files": "\uee8a", - "files-off": "\uf130", - "filter": "\ueaa8", - "filter-bolt": "\uf91a", - "filter-cancel": "\uf91b", - "filter-check": "\uf91c", - "filter-code": "\uf91d", - "filter-cog": "\uf91e", - "filter-dollar": "\uf91f", - "filter-down": "\uf920", - "filter-edit": "\uf921", - "filter-exclamation": "\uf922", - "filter-filled": "\uf682", - "filter-heart": "\uf923", - "filter-minus": "\uf924", - "filter-off": "\ued36", - "filter-pause": "\uf925", - "filter-pin": "\uf926", - "filter-plus": "\uf927", - "filter-question": "\uf928", - "filter-search": "\uf929", - "filter-share": "\uf92a", - "filter-star": "\uf92b", - "filter-up": "\uf92c", - "filter-x": "\uf92d", - "filters": "\ued13", - "fingerprint": "\uecf3", - "fingerprint-off": "\uf131", - "fingerprint-scan": "\uf635", - "fire-extinguisher": "\uf7aa", - "fire-hydrant": "\uf3a9", - "fire-hydrant-off": "\uf3ef", - "firetruck": "\uebe9", - "first-aid-kit": "\uef2c", - "first-aid-kit-off": "\uf132", - "fish": "\uef2d", - "fish-bone": "\uf287", - "fish-christianity": "\uf58b", - "fish-hook": "\uf1f8", - "fish-hook-off": "\uf3f0", - "fish-off": "\uf133", - "flag": "\ueaa9", - "flag-2": "\uee8b", - "flag-2-filled": "\uf707", - "flag-2-off": "\uf134", - "flag-3": "\uee8c", - "flag-3-filled": "\uf708", - "flag-bolt": "\uf92e", - "flag-cancel": "\uf92f", - "flag-check": "\uf930", - "flag-code": "\uf931", - "flag-cog": "\uf932", - "flag-dollar": "\uf933", - "flag-down": "\uf934", - "flag-exclamation": "\uf935", - "flag-filled": "\uf683", - "flag-heart": "\uf936", - "flag-minus": "\uf937", - "flag-off": "\uf135", - "flag-pause": "\uf938", - "flag-pin": "\uf939", - "flag-plus": "\uf93a", - "flag-question": "\uf93b", - "flag-search": "\uf93c", - "flag-share": "\uf93d", - "flag-star": "\uf93e", - "flag-up": "\uf93f", - "flag-x": "\uf940", - "flame": "\uec2c", - "flame-off": "\uf136", - "flare": "\uee8d", - "flask": "\uebea", - "flask-2": "\ueff9", - "flask-2-off": "\uf137", - "flask-off": "\uf138", - "flip-flops": "\uf564", - "flip-horizontal": "\ueaa0", - "flip-vertical": "\ueaab", - "float-center": "\uf1db", - "float-left": "\uf1dc", - "float-none": "\uf1dd", - "float-right": "\uf1de", - "flower": "\uecf4", - "flower-off": "\uf139", - "focus": "\ueb68", - "focus-2": "\uebd0", - "focus-auto": "\uf794", - "focus-centered": "\uf02a", - "fold": "\ued37", - "fold-down": "\ued38", - "fold-up": "\ued39", - "folder": "\ueaac", - "folder-bolt": "\uf941", - "folder-cancel": "\uf942", - "folder-check": "\uf943", - "folder-code": "\uf944", - "folder-cog": "\uf945", - "folder-dollar": "\uf946", - "folder-down": "\uf947", - "folder-exclamation": "\uf948", - "folder-filled": "\uf684", - "folder-heart": "\uf949", - "folder-minus": "\ueaad", - "folder-off": "\ued3a", - "folder-open": "\uf94a", - "folder-pause": "\uf94b", - "folder-pin": "\uf94c", - "folder-plus": "\ueaae", - "folder-question": "\uf94d", - "folder-search": "\uf94e", - "folder-share": "\uf94f", - "folder-star": "\uf950", - "folder-symlink": "\uf951", - "folder-up": "\uf952", - "folder-x": "\ueaaf", - "folders": "\ueab0", - "folders-off": "\uf13a", - "forbid": "\uebd1", - "forbid-2": "\uebd2", - "forbid-2-filled": "\uf748", - "forbid-filled": "\uf685", - "forklift": "\uebe5", - "forms": "\uee8e", - "fountain": "\uf09b", - "fountain-filled": "\uf749", - "fountain-off": "\uf13b", - "frame": "\ueab1", - "frame-off": "\uf13c", - "free-rights": "\ueffa", - "freeze-column": "\uf9f4", - "freeze-row": "\uf9f5", - "freeze-row-column": "\uf9f6", - "fridge": "\uf1f9", - "fridge-off": "\uf3f1", - "friends": "\ueab2", - "friends-off": "\uf13d", - "frustum": "\ufab0", - "frustum-off": "\ufaaa", - "frustum-plus": "\ufaab", - "function": "\uf225", - "function-filled": "\uf686", - "function-off": "\uf13e", - "galaxy": "\uecf5", - "garden-cart": "\uf23e", - "garden-cart-off": "\uf3f2", - "gas-station": "\uef2e", - "gas-station-off": "\uf13f", - "gauge": "\ueab3", - "gauge-filled": "\uf687", - "gauge-off": "\uf140", - "gavel": "\uef7b", - "gender-agender": "\uf0e2", - "gender-androgyne": "\uf0e3", - "gender-bigender": "\uf0e4", - "gender-demiboy": "\uf0e5", - "gender-demigirl": "\uf0e6", - "gender-epicene": "\uf0e7", - "gender-female": "\uf0e8", - "gender-femme": "\uf0e9", - "gender-genderfluid": "\uf0ea", - "gender-genderless": "\uf0eb", - "gender-genderqueer": "\uf0ec", - "gender-hermaphrodite": "\uf0ed", - "gender-intergender": "\uf0ee", - "gender-male": "\uf0ef", - "gender-neutrois": "\uf0f0", - "gender-pangender": "\uf0f1", - "gender-third": "\uf0f2", - "gender-transgender": "\uf0f3", - "gender-travestic": "\uf0f4", - "geometry": "\uee8f", - "ghost": "\ueb69", - "ghost-2": "\uf27c", - "ghost-2-filled": "\uf74a", - "ghost-3": "\uf7b1", - "ghost-filled": "\uf688", - "ghost-off": "\uf141", - "gif": "\uf257", - "gift": "\ueb6a", - "gift-card": "\uf3aa", - "gift-card-filled": "\uf74b", - "gift-filled": "\uf689", - "gift-off": "\uf142", - "git-branch": "\ueab4", - "git-branch-deleted": "\uf57c", - "git-cherry-pick": "\uf57d", - "git-commit": "\ueab5", - "git-compare": "\ueab6", - "git-fork": "\ueb6b", - "git-merge": "\ueab7", - "git-pull-request": "\ueab8", - "git-pull-request-closed": "\uef7c", - "git-pull-request-draft": "\uefcd", - "git-pull-request-draft-off": "\uf143", - "gizmo": "\uf02b", - "glass": "\ueab9", - "glass-champagne": "\uf79c", - "glass-cocktail": "\uf356", - "glass-full": "\uf144", - "glass-full-filled": "\uf74c", - "glass-off": "\uf145", - "globe": "\ueaba", - "globe-filled": "\uf68a", - "globe-off": "\uf146", - "go-game": "\uf512", - "golf": "\ued14", - "golf-filled": "\uf74d", - "golf-off": "\uf147", - "gps": "\ued7a", - "gps-filled": "\uf68b", - "gradienter": "\uf3ab", - "grain": "\uee90", - "graph": "\uf288", - "graph-filled": "\uf68c", - "graph-off": "\uf148", - "grave": "\uf580", - "grave-2": "\uf57f", - "grid-3x3": "\uf7d0", - "grid-4x4": "\uf7d1", - "grid-dots": "\ueabb", - "grid-goldenratio": "\uf7d2", - "grid-pattern": "\uebc1", - "grid-scan": "\uf7ab", - "grill": "\uefa7", - "grill-fork": "\uf35b", - "grill-off": "\uf149", - "grill-spatula": "\uf35c", - "grip-horizontal": "\uec00", - "grip-vertical": "\uec01", - "growth": "\uee91", - "guitar-pick": "\uf4cf", - "guitar-pick-filled": "\uf74e", - "gymnastics": "\uef61", - "h-1": "\uf1a6", - "h-2": "\uf1a7", - "h-3": "\uf1a8", - "h-4": "\uf1a9", - "h-5": "\uf1aa", - "h-6": "\uf1ab", - "hammer": "\uef7d", - "hammer-off": "\uf14a", - "hand-click": "\uef4c", - "hand-finger": "\uee92", - "hand-finger-off": "\uf14b", - "hand-grab": "\uf091", - "hand-little-finger": "\uee93", - "hand-love-you": "\uf56c", - "hand-middle-finger": "\uec02", - "hand-move": "\uef4d", - "hand-off": "\ued3b", - "hand-ring-finger": "\uee94", - "hand-rock": "\uee95", - "hand-sanitizer": "\uf5f4", - "hand-stop": "\uec03", - "hand-three-fingers": "\uee96", - "hand-two-fingers": "\uee97", - "hanger": "\uf00d", - "hanger-2": "\uf09c", - "hanger-off": "\uf14c", - "hard-hat": "\uf869", - "hash": "\ueabc", - "haze": "\uefce", - "haze-moon": "\uf75b", - "hdr": "\uf514", - "heading": "\uee98", - "heading-off": "\uf14d", - "headphones": "\ueabd", - "headphones-filled": "\uf68d", - "headphones-off": "\ued15", - "headset": "\uf4d1", - "health-recognition": "\uf1fa", - "heart": "\ueabe", - "heart-bolt": "\uf953", - "heart-broken": "\uecf6", - "heart-cancel": "\uf954", - "heart-check": "\uf955", - "heart-code": "\uf956", - "heart-cog": "\uf957", - "heart-discount": "\uf958", - "heart-dollar": "\uf959", - "heart-down": "\uf95a", - "heart-exclamation": "\uf95b", - "heart-filled": "\uf68e", - "heart-handshake": "\uf0f5", - "heart-minus": "\ueabf", - "heart-off": "\uecf7", - "heart-pause": "\uf95c", - "heart-pin": "\uf95d", - "heart-plus": "\ueac0", - "heart-question": "\uf95e", - "heart-rate-monitor": "\uef62", - "heart-search": "\uf95f", - "heart-share": "\uf960", - "heart-star": "\uf961", - "heart-up": "\uf962", - "heart-x": "\uf963", - "heartbeat": "\uef97", - "hearts": "\uf387", - "hearts-filled": "\uf68f", - "hearts-off": "\uf3f3", - "helicopter": "\ued7b", - "helicopter-landing": "\ued7c", - "helmet": "\uefcf", - "helmet-off": "\uf14e", - "help": "\ueac1", - "help-circle": "\uf91a", - "help-circle-filled": "\uf74f", - "help-hexagon": "\uf7ac", - "help-hexagon-filled": "\uf750", - "help-octagon": "\uf7ad", - "help-octagon-filled": "\uf751", - "help-off": "\uf14f", - "help-small": "\uf91b", - "help-square": "\uf91c", - "help-square-filled": "\uf752", - "help-square-rounded": "\uf91d", - "help-square-rounded-filled": "\uf753", - "help-triangle": "\uf91e", - "help-triangle-filled": "\uf754", - "hemisphere": "\ufaac", - "hemisphere-off": "\ufaad", - "hemisphere-plus": "\ufaae", - "hexagon": "\uec04", - "hexagon-0-filled": "\uf755", - "hexagon-1-filled": "\uf756", - "hexagon-2-filled": "\uf757", - "hexagon-3-filled": "\uf758", - "hexagon-3d": "\uf4d2", - "hexagon-4-filled": "\uf759", - "hexagon-5-filled": "\uf75a", - "hexagon-6-filled": "\uf75b", - "hexagon-7-filled": "\uf75c", - "hexagon-8-filled": "\uf75d", - "hexagon-9-filled": "\uf75e", - "hexagon-filled": "\uf690", - "hexagon-letter-a": "\uf463", - "hexagon-letter-b": "\uf464", - "hexagon-letter-c": "\uf465", - "hexagon-letter-d": "\uf466", - "hexagon-letter-e": "\uf467", - "hexagon-letter-f": "\uf468", - "hexagon-letter-g": "\uf469", - "hexagon-letter-h": "\uf46a", - "hexagon-letter-i": "\uf46b", - "hexagon-letter-j": "\uf46c", - "hexagon-letter-k": "\uf46d", - "hexagon-letter-l": "\uf46e", - "hexagon-letter-m": "\uf46f", - "hexagon-letter-n": "\uf470", - "hexagon-letter-o": "\uf471", - "hexagon-letter-p": "\uf472", - "hexagon-letter-q": "\uf473", - "hexagon-letter-r": "\uf474", - "hexagon-letter-s": "\uf475", - "hexagon-letter-t": "\uf476", - "hexagon-letter-u": "\uf477", - "hexagon-letter-v": "\uf4b1", - "hexagon-letter-w": "\uf478", - "hexagon-letter-x": "\uf4b2", - "hexagon-letter-y": "\uf479", - "hexagon-letter-z": "\uf47a", - "hexagon-minus": "\ufc7e", - "hexagon-minus-2": "\ufc79", - "hexagon-number-0": "\uf459", - "hexagon-number-1": "\uf45a", - "hexagon-number-2": "\uf45b", - "hexagon-number-3": "\uf45c", - "hexagon-number-4": "\uf45d", - "hexagon-number-5": "\uf45e", - "hexagon-number-6": "\uf45f", - "hexagon-number-7": "\uf460", - "hexagon-number-8": "\uf461", - "hexagon-number-9": "\uf462", - "hexagon-off": "\uee99", - "hexagon-plus": "\ufc7a", - "hexagon-plus-2": "\ufc7f", - "hexagons": "\uf09d", - "hexagons-off": "\uf150", - "hierarchy": "\uee9a", - "hierarchy-2": "\uef90", - "hierarchy-3": "\uf289", - "hierarchy-off": "\uf151", - "highlight": "\uef3f", - "highlight-off": "\uf152", - "history": "\ueac2", - "history-off": "\uf153", - "history-toggle": "\uf1fb", - "home": "\ueac3", - "home-2": "\uf02c", - "home-bolt": "\uf964", - "home-cancel": "\uf965", - "home-check": "\uf966", - "home-cog": "\uf967", - "home-dollar": "\uf968", - "home-dot": "\uf969", - "home-down": "\uf96a", - "home-eco": "\uf4a2", - "home-edit": "\uf96b", - "home-exclamation": "\uf96c", - "home-filled": "\uf691", - "home-hand": "\uf504", - "home-heart": "\uf96d", - "home-infinity": "\uf96e", - "home-link": "\uf96f", - "home-minus": "\uf970", - "home-move": "\uf971", - "home-off": "\uf154", - "home-plus": "\uf972", - "home-question": "\uf973", - "home-ribbon": "\uf974", - "home-search": "\uf975", - "home-share": "\uf976", - "home-shield": "\uf977", - "home-signal": "\uf978", - "home-star": "\uf979", - "home-stats": "\uf97a", - "home-up": "\uf97b", - "home-x": "\uf97c", - "horse": "\uf513", - "horse-toy": "\uf4d3", - "horseshoe": "\uf4a3", - "hospital": "\uf0f6", - "hotel-service": "\uef80", - "hourglass": "\uef63", - "hourglass-empty": "\uf4a4", - "hourglass-filled": "\uf692", - "hourglass-high": "\uf4a5", - "hourglass-low": "\uf4a6", - "hourglass-off": "\uf155", - "html": "\uf7b2", - "http-connect": "\uf5ab", - "http-delete": "\uf5ac", - "http-get": "\uf5ad", - "http-head": "\uf5ae", - "http-options": "\uf5af", - "http-patch": "\uf5b0", - "http-post": "\uf5b1", - "http-put": "\uf5b2", - "http-que": "\uf5b3", - "http-trace": "\uf5b4", - "ice-cream": "\uef64", - "ice-cream-2": "\uef4e", - "ice-cream-off": "\uf156", - "ice-skating": "\uefd0", - "icons": "\uf1d7", - "icons-off": "\uf3f4", - "id": "\ueac4", - "id-badge": "\ueff1", - "id-badge-2": "\uef81", - "id-badge-off": "\uf157", - "id-off": "\uf158", - "inbox": "\ueac5", - "inbox-off": "\uf159", - "indent-decrease": "\ueb6c", - "indent-increase": "\ueb6d", - "infinity": "\ueb6e", - "infinity-off": "\uf15a", - "info-circle": "\ueac6", - "info-circle-filled": "\uf693", - "info-hexagon": "\uf7ae", - "info-hexagon-filled": "\uf75f", - "info-octagon": "\uf7af", - "info-octagon-filled": "\uf760", - "info-small": "\uf91f", - "info-square": "\uf920", - "info-square-filled": "\uf761", - "info-square-rounded": "\uf91f", - "info-square-rounded-filled": "\uf762", - "info-triangle": "\uf922", - "info-triangle-filled": "\uf763", - "inner-shadow-bottom": "\uf520", - "inner-shadow-bottom-filled": "\uf764", - "inner-shadow-bottom-left": "\uf521", - "inner-shadow-bottom-left-filled": "\uf765", - "inner-shadow-bottom-right": "\uf522", - "inner-shadow-bottom-right-filled": "\uf766", - "inner-shadow-left": "\uf523", - "inner-shadow-left-filled": "\uf767", - "inner-shadow-right": "\uf524", - "inner-shadow-right-filled": "\uf768", - "inner-shadow-top": "\uf525", - "inner-shadow-top-filled": "\uf769", - "inner-shadow-top-left": "\uf526", - "inner-shadow-top-left-filled": "\uf76a", - "inner-shadow-top-right": "\uf527", - "inner-shadow-top-right-filled": "\uf76b", - "input-ai": "\ufc8f", - "input-check": "\uf624", - "input-search": "\uf2c5", - "input-x": "\uf625", - "ironing": "\uf2f4", - "ironing-1": "\uf2f5", - "ironing-2": "\uf2f6", - "ironing-3": "\uf2f7", - "ironing-off": "\uf3f5", - "ironing-steam": "\uf2f8", - "ironing-steam-off": "\uf3f6", - "irregular-polyhedron": "\uf628", - "irregular-polyhedron-off": "\uf62a", - "irregular-polyhedron-plus": "\uf629", - "italic": "\ueb6f", - "jacket": "\uf661", - "jetpack": "\uf581", - "jewish-star": "\uf3ac", - "jewish-star-filled": "\uf76c", - "join-bevel": "\uf529", - "join-round": "\uf52a", - "join-straight": "\uf52b", - "jpg": "\uf3ad", - "json": "\uf626", - "jump-rope": "\ued84", - "karate": "\ued14", - "kayak": "\uf4d4", - "kerning": "\uf598", - "key": "\ueac7", - "key-filled": "\uf694", - "key-off": "\uf15b", - "keyboard": "\uebd3", - "keyboard-hide": "\uec05", - "keyboard-off": "\uf15c", - "keyboard-show": "\uec06", - "keyframe": "\uf626", - "keyframe-align-center": "\uf62b", - "keyframe-align-horizontal": "\uf62c", - "keyframe-align-vertical": "\uf62d", - "keyframes": "\uf62e", - "ladder": "\uefe1", - "ladder-off": "\uf15d", - "lambda": "\uf627", - "lamp": "\uefab", - "lamp-2": "\uef65", - "lamp-off": "\uf15e", - "language": "\uefd1", - "language-hiragana": "\uef7e", - "language-katakana": "\uef7f", - "language-off": "\uf15f", - "lasso": "\uefac", - "lasso-off": "\uf160", - "lasso-polygon": "\uf5b5", - "lawn-mower": "\uf4b3", - "layers-difference": "\ueac8", - "layers-intersect": "\ueac9", - "layers-intersect-2": "\ueff9", - "layers-linked": "\uefd2", - "layers-off": "\uf161", - "layers-subtract": "\ueaca", - "layers-union": "\ueacb", - "layout": "\ueacc", - "layout-2": "\ueacd", - "layout-align-bottom": "\uf2ac", - "layout-align-center": "\uf2ad", - "layout-align-left": "\uf2ae", - "layout-align-middle": "\uf2af", - "layout-align-right": "\uf2b0", - "layout-align-top": "\uf2b1", - "layout-board": "\uf3ae", - "layout-board-split": "\uf3af", - "layout-bottombar": "\uf226", - "layout-bottombar-collapse": "\uf3b0", - "layout-bottombar-expand": "\uf3b1", - "layout-bottombar-filled": "\uf72f", - "layout-bottombar-inactive": "\uf3b2", - "layout-cards": "\uf227", - "layout-collage": "\uf389", - "layout-columns": "\uf228", - "layout-dashboard": "\uf229", - "layout-distribute-horizontal": "\uf2b2", - "layout-distribute-vertical": "\uf2b3", - "layout-filled": "\uf695", - "layout-grid": "\uf22a", - "layout-grid-add": "\uf22b", - "layout-grid-remove": "\uf3b3", - "layout-kanban": "\uf22c", - "layout-list": "\uf22d", - "layout-navbar": "\uf22e", - "layout-navbar-collapse": "\uf3b4", - "layout-navbar-expand": "\uf3b5", - "layout-navbar-filled": "\uf770", - "layout-navbar-inactive": "\uf3b6", - "layout-off": "\uf162", - "layout-rows": "\uf22f", - "layout-sidebar": "\uf230", - "layout-sidebar-filled": "\uf771", - "layout-sidebar-inactive": "\uf3b7", - "layout-sidebar-left-collapse": "\uf3b8", - "layout-sidebar-left-expand": "\uf3b9", - "layout-sidebar-right": "\uf231", - "layout-sidebar-right-collapse": "\uf3ba", - "layout-sidebar-right-expand": "\uf3bb", - "layout-sidebar-right-filled": "\uf772", - "layout-sidebar-right-inactive": "\uf3bc", - "leaf": "\ued7d", - "leaf-off": "\uf163", - "lego": "\uebd4", - "lego-off": "\uf164", - "lemon": "\uf35d", - "lemon-2": "\uf35e", - "letter-a": "\uec08", - "letter-a-small": "\uf532", - "letter-b": "\uec09", - "letter-b-small": "\uf533", - "letter-c": "\uec0a", - "letter-c-small": "\uf534", - "letter-case": "\ueea1", - "letter-case-lower": "\ueea0", - "letter-case-toggle": "\ueea2", - "letter-case-upper": "\ueea3", - "letter-d": "\uec0b", - "letter-d-small": "\uf535", - "letter-e": "\uec0c", - "letter-e-small": "\uf536", - "letter-f": "\uec0d", - "letter-f-small": "\uf537", - "letter-g": "\uec0e", - "letter-g-small": "\uf538", - "letter-h": "\uec0f", - "letter-h-small": "\uf539", - "letter-i": "\uec10", - "letter-i-small": "\uf53a", - "letter-j": "\uec11", - "letter-j-small": "\uf53b", - "letter-k": "\uec12", - "letter-k-small": "\uf53c", - "letter-l": "\uec13", - "letter-l-small": "\uf53d", - "letter-m": "\uec14", - "letter-m-small": "\uf53e", - "letter-n": "\uec15", - "letter-n-small": "\uf53f", - "letter-o": "\uec16", - "letter-o-small": "\uf540", - "letter-p": "\uec17", - "letter-p-small": "\uf541", - "letter-q": "\uec18", - "letter-q-small": "\uf542", - "letter-r": "\uec19", - "letter-r-small": "\uf543", - "letter-s": "\uec1a", - "letter-s-small": "\uf544", - "letter-spacing": "\uf599", - "letter-t": "\uec1b", - "letter-t-small": "\uf545", - "letter-u": "\uec1c", - "letter-u-small": "\uf546", - "letter-v": "\uec1d", - "letter-v-small": "\uf4b4", - "letter-w": "\uec1e", - "letter-w-small": "\uf547", - "letter-x": "\uec1f", - "letter-x-small": "\uf4b5", - "letter-y": "\uec20", - "letter-y-small": "\uf548", - "letter-z": "\uec21", - "letter-z-small": "\uf549", - "license": "\ueace", - "license-off": "\uf165", - "lifebuoy": "\ueacf", - "lifebuoy-off": "\uf166", - "lighter": "\uf4d5", - "line": "\ueea4", - "line-dashed": "\ueea5", - "line-dotted": "\ueea6", - "line-height": "\ueb70", - "line-scan": "\uf7b0", - "link": "\uead0", - "link-off": "\uf167", - "list": "\ueb71", - "list-check": "\uf0f7", - "list-details": "\uf0f8", - "list-letters": "\uf0a2", - "list-numbers": "\uf0a3", - "list-search": "\uf0a4", - "list-tree": "\uf0a5", - "live-photo": "\uf516", - "live-photo-off": "\uf168", - "live-view": "\uf517", - "loader": "\ueca2", - "loader-2": "\uf226", - "loader-3": "\uf227", - "loader-quarter": "\uf169", - "location": "\uead1", - "location-bolt": "\uf97d", - "location-broken": "\uf97e", - "location-cancel": "\uf97f", - "location-check": "\uf980", - "location-code": "\uf981", - "location-cog": "\uf982", - "location-discount": "\uf983", - "location-dollar": "\uf984", - "location-down": "\uf985", - "location-exclamation": "\uf986", - "location-filled": "\uf696", - "location-heart": "\uf987", - "location-minus": "\uf988", - "location-off": "\uecf8", - "location-pause": "\uf989", - "location-pin": "\uf98a", - "location-plus": "\uf98b", - "location-question": "\uf98c", - "location-search": "\uf98d", - "location-share": "\uf98e", - "location-star": "\uf98f", - "location-up": "\uf990", - "location-x": "\uf991", - "lock": "\uead2", - "lock-access": "\ued16", - "lock-access-off": "\uf169", - "lock-bolt": "\uf992", - "lock-cancel": "\uf993", - "lock-check": "\uf994", - "lock-code": "\uf995", - "lock-cog": "\uf996", - "lock-dollar": "\uf997", - "lock-down": "\uf998", - "lock-exclamation": "\uf999", - "lock-filled": "\uf697", - "lock-heart": "\uf99a", - "lock-minus": "\uf99b", - "lock-off": "\ued17", - "lock-open": "\uead3", - "lock-open-2": "\uefd3", - "lock-open-off": "\uf16a", - "lock-pause": "\uf99c", - "lock-pin": "\uf99d", - "lock-plus": "\uf99e", - "lock-question": "\uf99f", - "lock-search": "\uf9a0", - "lock-share": "\uf9a1", - "lock-square": "\uef82", - "lock-square-rounded": "\uef83", - "lock-square-rounded-filled": "\uf698", - "lock-star": "\uf9a2", - "lock-up": "\uf9a3", - "lock-x": "\uf9a4", - "logic-and": "\uf568", - "logic-buffer": "\uf569", - "logic-nand": "\uf56a", - "logic-nor": "\uf56b", - "logic-not": "\uf56c", - "logic-or": "\uf56d", - "logic-xnor": "\uf56e", - "logic-xor": "\uf56f", - "login": "\ueba8", - "login-2": "\uf05c", - "logout": "\ueba9", - "logout-2": "\uf05d", - "lollipop": "\uf35f", - "lollipop-off": "\uf16b", - "luggage": "\uf0f9", - "luggage-off": "\uf16c", - "lungs": "\ued7e", - "lungs-filled": "\uf773", - "lungs-off": "\uf16d", - "macro": "\ueea7", - "macro-filled": "\uf774", - "macro-off": "\uf16e", - "magnet": "\uead4", - "magnet-filled": "\uf699", - "magnet-off": "\uf16f", - "mail": "\uead5", - "mail-ai": "\ufc90", - "mail-bolt": "\uf9a5", - "mail-cancel": "\uf9a6", - "mail-check": "\uf9a7", - "mail-code": "\uf9a8", - "mail-cog": "\uf9a9", - "mail-dollar": "\uf9aa", - "mail-down": "\uf9ab", - "mail-exclamation": "\uf9ac", - "mail-fast": "\uf069", - "mail-filled": "\uf69a", - "mail-forward": "\ueeb0", - "mail-heart": "\uf9ad", - "mail-minus": "\uf9ae", - "mail-off": "\uf170", - "mail-opened": "\uead6", - "mail-opened-filled": "\uf69b", - "mail-pause": "\uf9af", - "mail-pin": "\uf9b0", - "mail-plus": "\uf9b1", - "mail-question": "\uf9b2", - "mail-search": "\uf9b3", - "mail-share": "\uf9b4", - "mail-star": "\uf9b5", - "mail-up": "\uf9b6", - "mail-x": "\uf9b7", - "mailbox": "\ueea8", - "mailbox-off": "\uf171", - "man": "\uead7", - "man-filled": "\uf69c", - "manual-gearbox": "\uf063", - "map": "\uead8", - "map-2": "\uef98", - "map-bolt": "\uf9b8", - "map-cancel": "\uf9b9", - "map-check": "\uf9ba", - "map-code": "\uf9bb", - "map-cog": "\uf9bc", - "map-dollar": "\uf9bd", - "map-down": "\uf9be", - "map-east": "\uf9bf", - "map-exclamation": "\uf9c0", - "map-filled": "\uf69d", - "map-heart": "\uf9c1", - "map-minus": "\uf9c2", - "map-north": "\uf9c3", - "map-off": "\uecf9", - "map-pause": "\uf9c4", - "map-pin": "\uead9", - "map-pin-2": "\uf206", - "map-pin-bolt": "\uf9c5", - "map-pin-cancel": "\uf9c6", - "map-pin-check": "\uf9c7", - "map-pin-code": "\uf9c8", - "map-pin-cog": "\uf9c9", - "map-pin-dollar": "\uf9ca", - "map-pin-down": "\uf9cb", - "map-pin-exclamation": "\uf9cc", - "map-pin-filled": "\uf69e", - "map-pin-heart": "\uf9cd", - "map-pin-minus": "\uf9ce", - "map-pin-off": "\uecfa", - "map-pin-pause": "\uf9cf", - "map-pin-pin": "\uf9d0", - "map-pin-plus": "\uf9d1", - "map-pin-question": "\uf9d2", - "map-pin-search": "\uf9d3", - "map-pin-share": "\uf9d4", - "map-pin-star": "\uf9d5", - "map-pin-up": "\uf9d6", - "map-pin-x": "\uf9d7", - "map-pins": "\ued18", - "map-plus": "\uf9d8", - "map-question": "\uf9d9", - "map-route": "\uf517", - "map-search": "\uf9da", - "map-share": "\uf9db", - "map-south": "\uf9dc", - "map-star": "\uf9dd", - "map-up": "\uf9de", - "map-west": "\uf9df", - "map-x": "\uf9e0", - "markdown": "\uec0b", - "markdown-off": "\uf172", - "marquee": "\uec77", - "marquee-2": "\uf510", - "marquee-off": "\uf173", - "mars": "\uec0c", - "mask": "\ueeb1", - "mask-off": "\uecfb", - "masks-theater": "\uefd4", - "masks-theater-off": "\uf174", - "massage": "\ueeb2", - "matchstick": "\uf4ac", - "math": "\ueb72", - "math-1-divide-2": "\uf4ad", - "math-1-divide-3": "\uf4ae", - "math-avg": "\uf4af", - "math-ctg": "\uf4db", - "math-equal-greater": "\uf4dc", - "math-equal-lower": "\uf4dd", - "math-function": "\ueeb3", - "math-function-off": "\uf175", - "math-function-y": "\uf4de", - "math-greater": "\uf4df", - "math-integral": "\uf4e0", - "math-integral-x": "\uf4e1", - "math-lower": "\uf4e2", - "math-max": "\uf4e3", - "math-min": "\uf4e4", - "math-not": "\uf4e5", - "math-off": "\uf176", - "math-pi": "\uf4e6", - "math-pi-divide-2": "\uf4e7", - "math-symbols": "\ueeb4", - "math-x-divide-2": "\uf4e8", - "math-x-divide-y": "\uf4e9", - "math-x-divide-y-2": "\uf4ea", - "math-x-minus-x": "\uf4eb", - "math-x-minus-y": "\uf4ec", - "math-x-plus-x": "\uf4ed", - "math-x-plus-y": "\uf4ee", - "math-xy": "\uf4ef", - "math-y-minus-y": "\uf4f0", - "math-y-plus-y": "\uf4f1", - "maximize": "\ueada", - "maximize-off": "\uf177", - "meat": "\uf96b", - "medal": "\uecfc", - "medal-2": "\ueeb5", - "medical-cross": "\uef2f", - "medical-cross-circle": "\uf5d9", - "medical-cross-filled": "\uf69f", - "medical-cross-off": "\uf178", - "medicine": "\uef66", - "medicine-syrup": "\uef30", - "meeple": "\uf514", - "menorah": "\uf58c", - "menu": "\ueadb", - "menu-2": "\uec0d", - "menu-deep": "\uf1fc", - "menu-order": "\uf5b6", - "message": "\ueadc", - "message-2": "\ueedd", - "message-2-bolt": "\uf9e1", - "message-2-cancel": "\uf9e2", - "message-2-check": "\uf9e3", - "message-2-code": "\uf9e4", - "message-2-cog": "\uf9e5", - "message-2-dollar": "\uf9e6", - "message-2-down": "\uf9e7", - "message-2-exclamation": "\uf9e8", - "message-2-filled": "\uf6a0", - "message-2-heart": "\uf9e9", - "message-2-minus": "\uf9ea", - "message-2-off": "\uecfe", - "message-2-pause": "\uf9eb", - "message-2-pin": "\uf9ec", - "message-2-plus": "\uf9ed", - "message-2-question": "\uf9ee", - "message-2-search": "\uf9ef", - "message-2-share": "\uf9f0", - "message-2-star": "\uf9f1", - "message-2-up": "\uf9f2", - "message-2-x": "\uf9f3", - "message-bolt": "\uf9f4", - "message-cancel": "\uf9f5", - "message-chatbot": "\uf38a", - "message-check": "\uf9f6", - "message-circle": "\ueadd", - "message-circle-2": "\ueede", - "message-circle-2-filled": "\uf6a1", - "message-circle-bolt": "\uf9f7", - "message-circle-cancel": "\uf9f8", - "message-circle-check": "\uf9f9", - "message-circle-code": "\uf9fa", - "message-circle-cog": "\uf9fb", - "message-circle-dollar": "\uf9fc", - "message-circle-down": "\uf9fd", - "message-circle-exclamation": "\uf9fe", - "message-circle-filled": "\uf6a2", - "message-circle-heart": "\uf9ff", - "message-circle-minus": "\ufa00", - "message-circle-off": "\uecff", - "message-circle-pause": "\ufa01", - "message-circle-pin": "\ufa02", - "message-circle-plus": "\ufa03", - "message-circle-question": "\ufa04", - "message-circle-search": "\ufa05", - "message-circle-share": "\ufa06", - "message-circle-star": "\ufa07", - "message-circle-up": "\ufa08", - "message-circle-x": "\ufa09", - "message-code": "\ufa0a", - "message-cog": "\ufa0b", - "message-dollar": "\ufa0c", - "message-dots": "\ueadf", - "message-down": "\ufa0d", - "message-exclamation": "\ufa0e", - "message-filled": "\uf6a3", - "message-forward": "\uf28a", - "message-heart": "\ufa0f", - "message-language": "\uefd5", - "message-minus": "\ufa10", - "message-off": "\ued00", - "message-pause": "\ufa11", - "message-pin": "\ufa12", - "message-plus": "\ufa13", - "message-question": "\ufa14", - "message-reply": "\uf28b", - "message-report": "\ueeb6", - "message-search": "\ufa15", - "message-share": "\ufa16", - "message-star": "\ufa17", - "message-up": "\ufa18", - "message-x": "\ufa19", - "messages": "\ueae0", - "messages-off": "\ued01", - "meteor": "\uf1fd", - "meteor-off": "\uf179", - "meter-cube": "\uf5da", - "meter-square": "\uf5db", - "metronome": "\uf36a", - "michelin-bib-gourmand": "\uf50b", - "michelin-star": "\uf50c", - "michelin-star-green": "\uf50d", - "mickey": "\uf2c6", - "mickey-filled": "\uf6a4", - "microphone": "\ueae1", - "microphone-2": "\uf1fe", - "microphone-2-off": "\uf17a", - "microphone-filled": "\uf6a5", - "microphone-off": "\ued02", - "microscope": "\uef67", - "microscope-off": "\uf17b", - "microwave": "\uf248", - "microwave-off": "\uf17c", - "military-award": "\uf079", - "military-rank": "\uefad", - "milk": "\uef31", - "milk-off": "\uf17d", - "milkshake": "\uf4c8", - "minimize": "\ueae2", - "minimize-off": "\uf17e", - "minus": "\ueae3", - "minus-vertical": "\uf272", - "mist": "\uec0e", - "mist-off": "\uf17f", - "mobiledata": "\uf9f7", - "mobiledata-off": "\uf180", - "moneybag": "\uf506", - "monkeybar": "\uf515", - "mood-angus": "\uf2e8", - "mood-annoyed": "\uf2e9", - "mood-annoyed-2": "\uf2ea", - "mood-boy": "\ued3f", - "mood-check": "\uf7cc", - "mood-cog": "\uf7cd", - "mood-confuzed": "\ueae4", - "mood-confuzed-filled": "\uf6a6", - "mood-crazy-happy": "\ued79", - "mood-cry": "\uecbd", - "mood-dollar": "\uf7ce", - "mood-edit": "\uf7cf", - "mood-empty": "\ueeb7", - "mood-empty-filled": "\uf6a7", - "mood-happy": "\ueae5", - "mood-happy-filled": "\uf6a8", - "mood-heart": "\uf7d0", - "mood-kid": "\ued40", - "mood-kid-filled": "\uf775", - "mood-look-down": "\uf2eb", - "mood-look-left": "\uf2ec", - "mood-look-right": "\uf2ed", - "mood-look-up": "\uf2ee", - "mood-minus": "\uf7d1", - "mood-neutral": "\ueae6", - "mood-neutral-filled": "\uf6a9", - "mood-off": "\uf181", - "mood-pin": "\uf7d2", - "mood-plus": "\uf7d3", - "mood-sad": "\ueae7", - "mood-sad-2": "\uef84", - "mood-sad-dizzy": "\uf2ef", - "mood-sad-filled": "\uf6aa", - "mood-sad-squint": "\uf2f0", - "mood-search": "\uf7d4", - "mood-share": "\uf7d5", - "mood-sick": "\uf2f1", - "mood-silence": "\uf2f2", - "mood-sing": "\uf2c7", - "mood-smile": "\ueae8", - "mood-smile-beam": "\uf2c8", - "mood-smile-dizzy": "\uf2c9", - "mood-smile-filled": "\uf6ab", - "mood-suprised": "\ueae9", - "mood-tongue": "\uf2ca", - "mood-tongue-wink": "\uf2cb", - "mood-tongue-wink-2": "\uf2cc", - "mood-unamused": "\uf2cd", - "mood-wink": "\uf2ce", - "mood-wink-2": "\uf2cf", - "mood-wrrr": "\uf2d0", - "mood-x": "\uf7d6", - "mood-xd": "\uf2d1", - "moon": "\ueaea", - "moon-2": "\uec78", - "moon-filled": "\uf6ac", - "moon-off": "\uf182", - "moon-stars": "\uec79", - "moped": "\uecd0", - "motorbike": "\uef17", - "mountain": "\uef32", - "mountain-off": "\uf183", - "mouse": "\ueaeb", - "mouse-2": "\uf1ff", - "mouse-2-filled": "\uf776", - "mouse-filled": "\uf6ad", - "mouse-off": "\uf184", - "moustache": "\uf4f2", - "movie": "\ueaec", - "movie-off": "\uf185", - "mug": "\ueaed", - "mug-off": "\uf186", - "multiplier-0-5x": "\uf4b6", - "multiplier-1-5x": "\uf4b7", - "multiplier-1x": "\uf4b8", - "multiplier-2x": "\uf4b9", - "mushroom": "\uef33", - "mushroom-filled": "\uf6ae", - "mushroom-off": "\uf187", - "music": "\ueaee", - "music-off": "\uf188", - "navigation": "\ueaef", - "navigation-bolt": "\ufa1a", - "navigation-cancel": "\ufa1b", - "navigation-check": "\ufa1c", - "navigation-code": "\ufa1d", - "navigation-cog": "\ufa1e", - "navigation-discount": "\ufa1f", - "navigation-dollar": "\ufa20", - "navigation-down": "\ufa21", - "navigation-east": "\uf2d2", - "navigation-exclamation": "\ufa22", - "navigation-filled": "\uf6af", - "navigation-heart": "\ufa23", - "navigation-minus": "\ufa24", - "navigation-north": "\uf2d3", - "navigation-off": "\ued03", - "navigation-pause": "\ufa25", - "navigation-pin": "\ufa26", - "navigation-plus": "\ufa27", - "navigation-question": "\ufa28", - "navigation-search": "\ufa29", - "navigation-share": "\ufa2a", - "navigation-south": "\uf2d4", - "navigation-star": "\ufa2b", - "navigation-top": "\uf2d5", - "navigation-up": "\ufa2c", - "navigation-west": "\uf2d6", - "navigation-x": "\ufa2d", - "needle": "\uf508", - "needle-thread": "\uf509", - "network": "\uf09e", - "network-off": "\uf189", - "new-section": "\ueeb8", - "news": "\ueaef", - "news-off": "\uf18a", - "nfc": "\uebc7", - "nfc-off": "\uf18b", - "no-copyright": "\uefae", - "no-creative-commons": "\uefaf", - "no-derivatives": "\uefb0", - "north-star": "\uf2d7", - "note": "\ueaf0", - "note-off": "\uf18c", - "notebook": "\uebd5", - "notebook-off": "\uf18d", - "notes": "\ueaf1", - "notes-off": "\uf18e", - "notification": "\ueaf2", - "notification-off": "\ued04", - "number": "\ueeb9", - "number-0": "\uf1d8", - "number-0-small": "\uf54a", - "number-1": "\uf1d9", - "number-1-small": "\uf54b", - "number-10-small": "\uf54c", - "number-11-small": "\uf54d", - "number-12-small": "\uf54e", - "number-13-small": "\uf54f", - "number-14-small": "\uf550", - "number-15-small": "\uf551", - "number-16-small": "\uf552", - "number-17-small": "\uf553", - "number-18-small": "\uf554", - "number-19-small": "\uf555", - "number-2": "\uf1da", - "number-2-small": "\uf556", - "number-20-small": "\uf557", - "number-21-small": "\uf558", - "number-22-small": "\uf559", - "number-23-small": "\uf55a", - "number-24-small": "\uf55b", - "number-25-small": "\uf55c", - "number-26-small": "\uf55d", - "number-27-small": "\uf55e", - "number-28-small": "\uf55f", - "number-29-small": "\uf560", - "number-3": "\uf1db", - "number-3-small": "\uf561", - "number-30-small": "\uf562", - "number-31-small": "\uf563", - "number-32-small": "\uf564", - "number-33-small": "\uf565", - "number-34-small": "\uf566", - "number-35-small": "\uf567", - "number-36-small": "\uf568", - "number-37-small": "\uf569", - "number-38-small": "\uf56a", - "number-39-small": "\uf56b", - "number-4": "\uf1dc", - "number-4-small": "\uf56c", - "number-40-small": "\uf56d", - "number-41-small": "\uf56e", - "number-42-small": "\uf56f", - "number-43-small": "\uf570", - "number-44-small": "\uf571", - "number-45-small": "\uf572", - "number-46-small": "\uf573", - "number-47-small": "\uf574", - "number-48-small": "\uf575", - "number-49-small": "\uf576", - "number-5": "\uf1dd", - "number-5-small": "\uf577", - "number-50-small": "\uf578", - "number-51-small": "\uf579", - "number-52-small": "\uf57a", - "number-53-small": "\uf57b", - "number-54-small": "\uf57c", - "number-55-small": "\uf57d", - "number-56-small": "\uf57e", - "number-57-small": "\uf57f", - "number-58-small": "\uf580", - "number-59-small": "\uf581", - "number-6": "\uf1de", - "number-6-small": "\uf582", - "number-60-small": "\uf583", - "number-61-small": "\uf584", - "number-62-small": "\uf585", - "number-63-small": "\uf586", - "number-64-small": "\uf587", - "number-65-small": "\uf588", - "number-66-small": "\uf589", - "number-67-small": "\uf58a", - "number-68-small": "\uf58b", - "number-69-small": "\uf58c", - "number-7": "\uf1df", - "number-7-small": "\uf58d", - "number-70-small": "\uf58e", - "number-71-small": "\uf58f", - "number-72-small": "\uf590", - "number-73-small": "\uf591", - "number-74-small": "\uf592", - "number-75-small": "\uf593", - "number-76-small": "\uf594", - "number-77-small": "\uf595", - "number-78-small": "\uf596", - "number-79-small": "\uf597", - "number-8": "\uf1e0", - "number-8-small": "\uf598", - "number-80-small": "\uf599", - "number-81-small": "\uf59a", - "number-82-small": "\uf59b", - "number-83-small": "\uf59c", - "number-84-small": "\uf59d", - "number-85-small": "\uf59e", - "number-86-small": "\uf59f", - "number-87-small": "\uf5a0", - "number-88-small": "\uf5a1", - "number-89-small": "\uf5a2", - "number-9": "\uf1e1", - "number-9-small": "\uf5a3", - "number-90-small": "\uf5a4", - "number-91-small": "\uf5a5", - "number-92-small": "\uf5a6", - "number-93-small": "\uf5a7", - "number-94-small": "\uf5a8", - "number-95-small": "\uf5a9", - "number-96-small": "\uf5aa", - "number-97-small": "\uf5ab", - "number-98-small": "\uf5ac", - "number-99-small": "\uf5ad", - "numbers": "\uf015", - "nurse": "\uf7b3", - "nut": "\uf35f", - "octagon": "\uec0f", - "octagon-filled": "\uf6b0", - "octagon-minus": "\ufca4", - "octagon-minus-2": "\ufc7b", - "octagon-off": "\ueeba", - "octagon-plus": "\ufca5", - "octagon-plus-2": "\ufc7c", - "old": "\ueaf3", - "olympics": "\ueeba", - "olympics-off": "\uf18f", - "om": "\uf58d", - "omega": "\uf012", - "outbound": "\uf249", - "outlet": "\uebe7", - "oval": "\uf02d", - "oval-filled": "\uf6b1", - "oval-vertical": "\uf02e", - "oval-vertical-filled": "\uf6b2", - "overline": "\ueebb", - "package": "\ueaf4", - "package-export": "\uf07a", - "package-import": "\uf07b", - "package-off": "\uf190", - "packages": "\uf2d8", - "pacman": "\uebc2", - "page-break": "\uebc3", - "paint": "\ueaf5", - "paint-filled": "\uf6b3", - "paint-off": "\uf191", - "palette": "\ueaf6", - "palette-off": "\uf192", - "panorama-horizontal": "\ued41", - "panorama-horizontal-off": "\uf193", - "panorama-vertical": "\ued42", - "panorama-vertical-off": "\uf194", - "paper-bag": "\uf02f", - "paper-bag-off": "\uf195", - "paperclip": "\ueaf7", - "parachute": "\ued7f", - "parachute-off": "\uf196", - "parentheses": "\uebc4", - "parentheses-off": "\uf197", - "parking": "\ueaf8", - "parking-circle": "\uf2d9", - "parking-off": "\uf198", - "password": "\uf4ba", - "password-fingerprint": "\uf4bb", - "password-mobile-phone": "\uf4bc", - "password-user": "\uf4bd", - "paw": "\uefd7", - "paw-filled": "\uf6b4", - "paw-off": "\uf199", - "paywall": "\uf5dc", - "pdf": "\uf7b4", - "peace": "\uecbe", - "pencil": "\ueaf9", - "pencil-bolt": "\ufa2e", - "pencil-cancel": "\ufa2f", - "pencil-check": "\ufa30", - "pencil-code": "\ufa31", - "pencil-cog": "\ufa32", - "pencil-discount": "\ufa33", - "pencil-dollar": "\ufa34", - "pencil-down": "\ufa35", - "pencil-exclamation": "\ufa36", - "pencil-filled": "\uf6b5", - "pencil-heart": "\ufa37", - "pencil-minus": "\uf1eb", - "pencil-off": "\uf19a", - "pencil-pause": "\ufa38", - "pencil-pin": "\ufa39", - "pencil-plus": "\uf1ec", - "pencil-question": "\ufa3a", - "pencil-search": "\ufa3b", - "pencil-share": "\ufa3c", - "pencil-star": "\ufa3d", - "pencil-up": "\ufa3e", - "pencil-x": "\ufa3f", - "pennant": "\ued05", - "pennant-2": "\uf065", - "pennant-2-filled": "\uf777", - "pennant-filled": "\uf778", - "pennant-off": "\uf19b", - "pentagon": "\uebc8", - "pentagon-filled": "\uf6b6", - "pentagon-minus": "\ufc80", - "pentagon-number-0": "\uf4be", - "pentagon-number-1": "\uf4bf", - "pentagon-number-2": "\uf4c0", - "pentagon-number-3": "\uf4c1", - "pentagon-number-4": "\uf4c2", - "pentagon-number-5": "\uf4c3", - "pentagon-number-6": "\uf4c4", - "pentagon-number-7": "\uf4c5", - "pentagon-number-8": "\uf4c6", - "pentagon-number-9": "\uf4c7", - "pentagon-off": "\uf19c", - "pentagon-plus": "\ufc81", - "pepper": "\uef19", - "pepper-off": "\uf19d", - "percentage": "\uebc9", - "percentage-0": "\uf582", - "percentage-10": "\uf583", - "percentage-100": "\uf58e", - "percentage-20": "\uf584", - "percentage-25": "\uf585", - "percentage-30": "\uf586", - "percentage-40": "\uf587", - "percentage-50": "\uf588", - "percentage-60": "\uf589", - "percentage-70": "\uf58a", - "percentage-75": "\uf58b", - "percentage-80": "\uf58c", - "percentage-90": "\uf58d", - "perfume": "\uf4c8", - "perspective": "\ueebf", - "perspective-off": "\uf19e", - "phone": "\ueafa", - "phone-call": "\ueafb", - "phone-calling": "\uec7a", - "phone-check": "\uec0a", - "phone-filled": "\uf6b7", - "phone-incoming": "\ueafc", - "phone-off": "\uecfd", - "phone-outgoing": "\ueafd", - "phone-pause": "\uec0b", - "phone-plus": "\uec0c", - "phone-x": "\uec0d", - "photo": "\ueafe", - "photo-ai": "\ufc91", - "photo-bolt": "\ufa40", - "photo-cancel": "\ufa41", - "photo-check": "\ufa42", - "photo-circle": "\uec23", - "photo-circle-minus": "\ufa43", - "photo-circle-plus": "\ufa44", - "photo-code": "\ufa45", - "photo-cog": "\ufa46", - "photo-dollar": "\ufa47", - "photo-down": "\ufa48", - "photo-edit": "\uf020", - "photo-exclamation": "\ufa49", - "photo-filled": "\uf6b8", - "photo-heart": "\ufa4a", - "photo-hexagon": "\uf021", - "photo-minus": "\ufa4b", - "photo-off": "\uecff", - "photo-pause": "\ufa4c", - "photo-pentagon": "\uf022", - "photo-pin": "\ufa4d", - "photo-plus": "\ufa4e", - "photo-question": "\ufa4f", - "photo-scan": "\uf516", - "photo-search": "\ufa50", - "photo-sensor": "\uf024", - "photo-sensor-2": "\uf023", - "photo-sensor-3": "\uf025", - "photo-share": "\ufa51", - "photo-shield": "\uf250", - "photo-square-rounded": "\uf025", - "photo-star": "\ufa52", - "photo-up": "\ufa53", - "photo-video": "\uf251", - "photo-x": "\ufa54", - "physics": "\uec0e", - "piano": "\ued19", - "pick": "\ueb73", - "picture-in-picture": "\ued1a", - "picture-in-picture-off": "\ued1b", - "picture-in-picture-on": "\ued1c", - "picture-in-picture-top": "\ueff8", - "pie": "\uef86", - "pie-chart": "\ued1d", - "pie-chart-filled": "\uf6b9", - "pig": "\uef1a", - "pig-money": "\uf38b", - "pig-off": "\uf19f", - "pilcrow": "\uf5f5", - "pill": "\uec10", - "pill-off": "\uf1a0", - "pills": "\uef68", - "pin": "\uec11", - "pin-filled": "\uf6ba", - "pin-invoke": "\uf1a1", - "pinned": "\ued05", - "pinned-filled": "\uf6bb", - "pinned-off": "\ued06", - "pizza": "\uedbd", - "pizza-off": "\uf1a2", - "placeholder": "\uf626", - "plane": "\ueb99", - "plane-arrival": "\uebe8", - "plane-departure": "\uebe9", - "plane-inflight": "\uef87", - "plane-off": "\uf1a3", - "plane-tilt": "\uf1ed", - "planet": "\uec12", - "planet-off": "\uf1a4", - "plant": "\ued80", - "plant-2": "\ued81", - "plant-2-off": "\uf1a5", - "plant-off": "\uf1a6", - "plate": "\uf4c9", - "play": "\ued08", - "play-card": "\ued83", - "play-card-off": "\uf1a7", - "playlist": "\uebc0", - "playlist-add": "\uf008", - "playlist-off": "\uf1a8", - "playlist-x": "\uf009", - "playstation-circle": "\uf2da", - "playstation-square": "\uf2db", - "playstation-triangle": "\uf2dc", - "playstation-x": "\uf2dd", - "plug": "\uebd6", - "plug-connected": "\uf00a", - "plug-connected-x": "\uf0fa", - "plug-off": "\uf1a9", - "plug-x": "\uf0fb", - "plus": "\ueb0b", - "plus-equal": "\uf7d7", - "plus-minus": "\uf7d8", - "png": "\uf3b0", - "podium": "\uf1d8", - "podium-off": "\uf1aa", - "point": "\ueb0c", - "point-filled": "\uf6bc", - "point-off": "\uf1ab", - "pointer": "\uf265", - "pointer-bolt": "\ufa55", - "pointer-cancel": "\ufa56", - "pointer-check": "\ufa57", - "pointer-code": "\ufa58", - "pointer-cog": "\ufa59", - "pointer-dollar": "\ufa5a", - "pointer-down": "\ufa5b", - "pointer-exclamation": "\ufa5c", - "pointer-filled": "\uf6bd", - "pointer-heart": "\ufa5d", - "pointer-minus": "\ufa5e", - "pointer-off": "\uf1ac", - "pointer-pause": "\ufa5f", - "pointer-pin": "\ufa60", - "pointer-plus": "\ufa61", - "pointer-question": "\ufa62", - "pointer-search": "\ufa63", - "pointer-share": "\ufa64", - "pointer-star": "\ufa65", - "pointer-up": "\ufa66", - "pointer-x": "\ufa67", - "pokeball": "\uf30f", - "pokeball-off": "\uf1ad", - "poker-chip": "\uf515", - "polaroid": "\uebc1", - "polaroid-filled": "\uf6be", - "polygon": "\uebc5", - "polygon-off": "\uf1ae", - "poo": "\uf258", - "pool": "\ued84", - "pool-off": "\uf1af", - "power": "\ueb0d", - "pray": "\uebc6", - "premium-rights": "\uefb1", - "prescription": "\uef69", - "presentation": "\uf1ee", - "presentation-analytics": "\uf269", - "presentation-off": "\uf1b0", - "printer": "\ueb0e", - "printer-off": "\uf1b1", - "prism": "\ufab1", - "prism-light": "\ufab2", - "prism-off": "\ufab3", - "prism-plus": "\ufab4", - "prison": "\uef88", - "progress": "\uf00c", - "progress-alert": "\uf00d", - "progress-bolt": "\ufa68", - "progress-check": "\uf00e", - "progress-down": "\uf00f", - "progress-help": "\uf010", - "progress-x": "\uf011", - "prompt": "\ueb0f", - "propeller": "\uf1b2", - "propeller-off": "\uf1b3", - "protocol": "\uf3b1", - "pumpkin-scary": "\uf587", - "puzzle": "\ueb10", - "puzzle-2": "\uef89", - "puzzle-filled": "\uf6bf", - "puzzle-off": "\uf1b4", - "pyramid": "\uebc7", - "pyramid-off": "\uf1b5", - "pyramid-plus": "\ufab5", - "qrcode": "\ueb11", - "qrcode-off": "\uf1b6", - "question-mark": "\uec13", - "quote": "\uefb2", - "quote-off": "\uf1b7", - "quotes": "\uf4ca", - "radar": "\uf017", - "radar-2": "\uf016", - "radar-off": "\uf1b8", - "radio": "\uef8a", - "radio-off": "\uf1b9", - "radioactive": "\uecbf", - "radioactive-filled": "\uf760", - "radioactive-off": "\uf1ba", - "radius-bottom-left": "\ueec0", - "radius-bottom-right": "\ueec1", - "radius-top-left": "\ueec2", - "radius-top-right": "\ueec3", - "rainbow": "\ued85", - "rainbow-off": "\uf1bb", - "rating-12-plus": "\uf266", - "rating-14-plus": "\uf267", - "rating-16-plus": "\uf268", - "rating-18-plus": "\uf269", - "rating-21-plus": "\uf26a", - "razor": "\uf4bc", - "razor-electric": "\uf4bd", - "receipt": "\uedfc", - "receipt-2": "\uef90", - "receipt-bitcoin": "\uf260", - "receipt-dollar": "\uf261", - "receipt-euro": "\uf262", - "receipt-off": "\uf1bc", - "receipt-pound": "\uf263", - "receipt-refund": "\uf0ac", - "receipt-rupee": "\uf264", - "receipt-tax": "\uedfd", - "receipt-yen": "\uf265", - "receipt-yuan": "\uf266", - "recharging": "\uf057", - "record-mail": "\uf058", - "record-mail-off": "\uf1bd", - "rectangle": "\ued07", - "rectangle-filled": "\uf6c0", - "rectangle-rounded-bottom": "\uf59a", - "rectangle-rounded-top": "\uf59b", - "rectangle-vertical": "\uf018", - "rectangle-vertical-filled": "\uf6c1", - "recycle": "\ueb9a", - "recycle-off": "\uf1be", - "refresh": "\ueb12", - "refresh-alert": "\uf19c", - "refresh-dot": "\uefb8", - "refresh-off": "\uf1bf", - "regex": "\uf31f", - "regex-off": "\uf1c0", - "registered": "\ueb13", - "relation-many-to-many": "\ued1e", - "relation-one-to-many": "\ued1f", - "relation-one-to-one": "\ued20", - "reload": "\uf079", - "repeat": "\ueb72", - "repeat-off": "\uf1c1", - "repeat-once": "\uf1c2", - "replace": "\uebc8", - "replace-filled": "\uf779", - "replace-off": "\uf1c3", - "report": "\ueecc", - "report-analytics": "\uf26b", - "report-medical": "\uf26c", - "report-money": "\uf26d", - "report-off": "\uf1c4", - "report-search": "\uf26e", - "reserved-line": "\uf9f8", - "resize": "\ueec4", - "restore": "\uf6a8", - "rewind-backward-10": "\uf59c", - "rewind-backward-15": "\uf59d", - "rewind-backward-20": "\uf59e", - "rewind-backward-30": "\uf59f", - "rewind-backward-40": "\uf5a0", - "rewind-backward-50": "\uf5a1", - "rewind-backward-60": "\uf5a2", - "rewind-forward-10": "\uf5a3", - "rewind-forward-15": "\uf5a4", - "rewind-forward-20": "\uf5a5", - "rewind-forward-30": "\uf5a6", - "rewind-forward-40": "\uf5a7", - "rewind-forward-50": "\uf5a8", - "rewind-forward-60": "\uf5a9", - "ribbon-health": "\uf5aa", - "rings": "\uf645", - "ripple": "\ued86", - "ripple-off": "\uf1c5", - "road": "\uec14", - "road-off": "\uf1c6", - "road-sign": "\uecfb", - "robot": "\ueecd", - "robot-face": "\uf8d6", - "robot-off": "\uf1c7", - "rocket": "\uec15", - "rocket-off": "\uf1c8", - "roller-skating": "\uefd8", - "rollercoaster": "\uf0ad", - "rollercoaster-off": "\uf1c9", - "rosette": "\uf599", - "rosette-discount": "\uf5ab", - "rosette-discount-check": "\uf5ac", - "rosette-discount-check-off": "\uf1ca", - "rosette-discount-off": "\uf1cb", - "rosette-filled": "\uf77a", - "rosette-number-0": "\uf5ad", - "rosette-number-1": "\uf5ae", - "rosette-number-2": "\uf5af", - "rosette-number-3": "\uf5b0", - "rosette-number-4": "\uf5b1", - "rosette-number-5": "\uf5b2", - "rosette-number-6": "\uf5b3", - "rosette-number-7": "\uf5b4", - "rosette-number-8": "\uf5b5", - "rosette-number-9": "\uf5b6", - "rotate": "\ueb16", - "rotate-2": "\uebb1", - "rotate-3d": "\uf020", - "rotate-clockwise": "\ueb17", - "rotate-clockwise-2": "\uf021", - "rotate-dot": "\uf022", - "rotate-rectangle": "\uec16", - "route": "\ueb18", - "route-2": "\uf23a", - "route-alt-left": "\uf23b", - "route-alt-right": "\uf23c", - "route-off": "\uf1cc", - "route-scan": "\uf517", - "route-x": "\uf23d", - "route-x-2": "\uf23e", - "router": "\ueb19", - "router-off": "\uf1cd", - "row-insert-bottom": "\ueec5", - "row-insert-top": "\ueec6", - "row-remove": "\ufaf6", - "rss": "\ueb1a", - "rubber-stamp": "\uf5b7", - "rubber-stamp-off": "\uf1ce", - "ruler": "\ueb1b", - "ruler-2": "\ueec7", - "ruler-2-off": "\uf1cf", - "ruler-3": "\uf290", - "ruler-measure": "\uf291", - "ruler-off": "\uf1d0", - "run": "\uec17", - "rv-truck": "\uf240", - "s-turn-down": "\uf516", - "s-turn-left": "\uf517", - "s-turn-right": "\uf518", - "s-turn-up": "\uf519", - "sailboat": "\uec18", - "sailboat-2": "\uefd9", - "sailboat-off": "\uf1d1", - "salad": "\uf50a", - "salt": "\uef1b", - "sandbox": "\ueec8", - "satellite": "\ueec9", - "satellite-off": "\uf1d2", - "sausage": "\uf96c", - "scale": "\uebc9", - "scale-off": "\uf1d3", - "scale-outline": "\uef8b", - "scale-outline-off": "\uf1d4", - "scan": "\ueeca", - "scan-eye": "\uf628", - "scan-position": "\uf629", - "scanner": "\uf259", - "scarecrow": "\uf51a", - "schema": "\uf200", - "schema-off": "\uf1d5", - "school": "\uecec", - "school-bell": "\uf62a", - "school-off": "\uf1d6", - "scissors": "\ueb1c", - "scissors-off": "\uf1d7", - "scooter": "\uec19", - "scooter-electric": "\uecc1", - "screen-share": "\ued09", - "screen-share-off": "\ued0a", - "screenshot": "\uf201", - "scribble": "\uf0ae", - "scribble-off": "\uf1d8", - "script": "\uf2de", - "script-minus": "\uf2df", - "script-plus": "\uf2e0", - "script-x": "\uf2e1", - "scuba-diving": "\uf51b", - "scuba-diving-other": "\uf099", - "sdk": "\uf3b2", - "search": "\ueb1d", - "search-off": "\uf1d9", - "section": "\ueecb", - "section-filled": "\uf77b", - "section-sign": "\uf019", - "seeding": "\uf4cb", - "seeding-off": "\uf1da", - "select": "\uec1a", - "select-all": "\uf7ee", - "selector": "\ueb1e", - "send": "\ueb1f", - "send-2": "\uf2e2", - "send-off": "\uf1db", - "seo": "\uf26f", - "separator": "\ued0b", - "separator-horizontal": "\ued0c", - "separator-vertical": "\ued0d", - "server": "\ueb20", - "server-2": "\uf07c", - "server-bolt": "\ufa69", - "server-cog": "\uf1ef", - "server-off": "\uf1dc", - "servicemark": "\uec1b", - "settings": "\ueb21", - "settings-2": "\uf07d", - "settings-automation": "\uef8c", - "settings-bolt": "\ufa6a", - "settings-cancel": "\ufa6b", - "settings-check": "\ufa6c", - "settings-code": "\uf07e", - "settings-cog": "\ufa6d", - "settings-dollar": "\ufa6e", - "settings-down": "\ufa6f", - "settings-exclamation": "\ufa70", - "settings-filled": "\uf6c2", - "settings-heart": "\ufa71", - "settings-minus": "\ufa72", - "settings-off": "\ued0e", - "settings-pause": "\ufa73", - "settings-pin": "\ufa74", - "settings-plus": "\ufa75", - "settings-question": "\ufa76", - "settings-search": "\ufa77", - "settings-share": "\ufa78", - "settings-star": "\ufa79", - "settings-up": "\ufa7a", - "settings-x": "\ufa7b", - "shadow": "\ueec1", - "shadow-off": "\uf1dd", - "shape": "\ueb22", - "shape-2": "\ueecb", - "shape-3": "\uf023", - "shape-off": "\uf1de", - "share": "\ueb23", - "share-2": "\uf07f", - "share-3": "\uf080", - "share-off": "\uf1df", - "shield": "\ueb24", - "shield-bolt": "\ufa7c", - "shield-cancel": "\ufa7d", - "shield-check": "\ueb25", - "shield-check-filled": "\uf761", - "shield-checkered": "\uef8d", - "shield-checkered-filled": "\uf762", - "shield-chevron": "\uef8e", - "shield-code": "\ufa7e", - "shield-cog": "\ufa7f", - "shield-dollar": "\ufa80", - "shield-down": "\ufa81", - "shield-exclamation": "\ufa82", - "shield-filled": "\uf6c3", - "shield-half": "\uf358", - "shield-half-filled": "\uf359", - "shield-heart": "\ufa83", - "shield-lock": "\ued0f", - "shield-lock-filled": "\uf763", - "shield-minus": "\ufa84", - "shield-off": "\uecf0", - "shield-pause": "\ufa85", - "shield-pin": "\ufa86", - "shield-plus": "\ufa87", - "shield-question": "\ufa88", - "shield-search": "\ufa89", - "shield-share": "\ufa8a", - "shield-star": "\ufa8b", - "shield-up": "\ufa8c", - "shield-x": "\ueb26", - "ship": "\uec7b", - "ship-off": "\uf1e0", - "shirt": "\uec0c", - "shirt-filled": "\uf6c4", - "shirt-off": "\uf1e1", - "shirt-sport": "\uf26e", - "shoe": "\uefc9", - "shoe-off": "\uf1e2", - "shopping-bag": "\uf5f6", - "shopping-cart": "\ueb27", - "shopping-cart-bolt": "\ufa8d", - "shopping-cart-cancel": "\ufa8e", - "shopping-cart-check": "\ufa8f", - "shopping-cart-code": "\ufa90", - "shopping-cart-cog": "\ufa91", - "shopping-cart-copy": "\uf1f0", - "shopping-cart-discount": "\uf35a", - "shopping-cart-dollar": "\ufa92", - "shopping-cart-down": "\ufa93", - "shopping-cart-exclamation": "\ufa94", - "shopping-cart-filled": "\uf6c5", - "shopping-cart-heart": "\ufa95", - "shopping-cart-minus": "\uf35b", - "shopping-cart-off": "\ued10", - "shopping-cart-pause": "\ufa96", - "shopping-cart-pin": "\ufa97", - "shopping-cart-plus": "\uf35c", - "shopping-cart-question": "\ufa98", - "shopping-cart-search": "\ufa99", - "shopping-cart-share": "\ufa9a", - "shopping-cart-star": "\ufa9b", - "shopping-cart-up": "\ufa9c", - "shopping-cart-x": "\uf35d", - "shortcut": "\uf1f1", - "shovel": "\uf2e3", - "shovel-pitchforks": "\uf2e4", - "shredder": "\uecd1", - "sign-left": "\uf06b", - "sign-left-filled": "\uf764", - "sign-right": "\uf06c", - "sign-right-filled": "\uf765", - "signal-2g": "\uf79f", - "signal-3g": "\uf7a0", - "signal-4g": "\uf7a1", - "signal-4g-plus": "\uf7a2", - "signal-5g": "\uf7a3", - "signal-6g": "\uf9f9", - "signal-e": "\uf7a4", - "signal-g": "\uf7a5", - "signal-h": "\uf7a6", - "signal-h-plus": "\uf7a7", - "signal-lte": "\uf7a8", - "signature": "\uefc4", - "signature-off": "\uf1e3", - "sitemap": "\ueb28", - "sitemap-off": "\uf1e4", - "skateboard": "\uecc2", - "skateboard-off": "\uf1e5", - "skateboarding": "\uec1d", - "ski-jumping": "\uecc3", - "skill-badges": "\uf2e5", - "skull": "\uf292", - "slash": "\uecc4", - "slashes": "\uf588", - "sleigh": "\uf1f2", - "slice": "\uebcb", - "slideshow": "\uebc0", - "smart-home": "\uecf1", - "smart-home-off": "\uf1e6", - "smoking": "\uecb9", - "smoking-no": "\uecba", - "snowflake": "\ued0b", - "snowflake-off": "\uf1e7", - "snowman": "\uf26f", - "soccer-field": "\ued88", - "social": "\ued0c", - "social-off": "\uf1e8", - "sock": "\uecc5", - "sofa": "\uf4da", - "sofa-off": "\uf1e9", - "solar-electricity": "\uf7b5", - "solar-panel": "\uf7b6", - "solar-panel-2": "\uf7b7", - "sort-0-9": "\uf54c", - "sort-9-0": "\uf54d", - "sort-a-z": "\uf54e", - "sort-ascending": "\ueb29", - "sort-ascending-2": "\ueec9", - "sort-ascending-letters": "\ueeca", - "sort-ascending-numbers": "\ueecb", - "sort-ascending-shapes": "\ueecc", - "sort-ascending-small-big": "\uef8f", - "sort-descending": "\ueb2a", - "sort-descending-2": "\ueece", - "sort-descending-letters": "\ueecf", - "sort-descending-numbers": "\ueed0", - "sort-descending-shapes": "\ueed1", - "sort-descending-small-big": "\uf09d", - "sort-z-a": "\uf54f", - "sos": "\uf24a", - "soup": "\uef35", - "soup-filled": "\uf766", - "soup-off": "\uf1ea", - "source-code": "\uf4a0", - "space": "\uec1e", - "space-off": "\uf1eb", - "spacing-horizontal": "\uef90", - "spacing-vertical": "\uef91", - "spade": "\ueff9", - "spade-filled": "\uf6c6", - "sparkles": "\uf6d7", - "speakerphone": "\ued12", - "speedboat": "\ued13", - "sphere": "\ufab6", - "sphere-filled": "\uf767", - "sphere-off": "\ufab7", - "sphere-plus": "\ufab8", - "spider": "\uf293", - "spiral": "\uf294", - "spiral-off": "\uf1ec", - "sport-billard": "\uecd2", - "spray": "\uf50e", - "spy": "\uf227", - "spy-off": "\uf1ed", - "sql": "\uf7b8", - "square": "\ueb2c", - "square-arrow-down": "\uf63a", - "square-arrow-left": "\uf63b", - "square-arrow-right": "\uf63c", - "square-arrow-up": "\uf63d", - "square-asterisk": "\uf01a", - "square-check": "\ueb2b", - "square-check-filled": "\uf768", - "square-chevron-down": "\uf627", - "square-chevron-left": "\uf628", - "square-chevron-right": "\uf629", - "square-chevron-up": "\uf62a", - "square-chevrons-down": "\uf646", - "square-chevrons-left": "\uf647", - "square-chevrons-right": "\uf648", - "square-chevrons-up": "\uf649", - "square-dot": "\ued11", - "square-f0": "\uf526", - "square-f0-filled": "\uf769", - "square-f1": "\uf527", - "square-f1-filled": "\uf76a", - "square-f2": "\uf528", - "square-f2-filled": "\uf76b", - "square-f3": "\uf529", - "square-f3-filled": "\uf76c", - "square-f4": "\uf52a", - "square-f4-filled": "\uf76d", - "square-f5": "\uf52b", - "square-f5-filled": "\uf76e", - "square-f6": "\uf52c", - "square-f6-filled": "\uf76f", - "square-f7": "\uf52d", - "square-f7-filled": "\uf770", - "square-f8": "\uf52e", - "square-f8-filled": "\uf771", - "square-f9": "\uf52f", - "square-f9-filled": "\uf772", - "square-filled": "\uf6c7", - "square-forbid": "\ued12", - "square-forbid-2": "\ued13", - "square-half": "\ueffe", - "square-key": "\uf641", - "square-letter-a": "\uf47b", - "square-letter-b": "\uf47c", - "square-letter-c": "\uf47d", - "square-letter-d": "\uf47e", - "square-letter-e": "\uf47f", - "square-letter-f": "\uf480", - "square-letter-g": "\uf481", - "square-letter-h": "\uf482", - "square-letter-i": "\uf483", - "square-letter-j": "\uf484", - "square-letter-k": "\uf485", - "square-letter-l": "\uf486", - "square-letter-m": "\uf487", - "square-letter-n": "\uf488", - "square-letter-o": "\uf489", - "square-letter-p": "\uf48a", - "square-letter-q": "\uf48b", - "square-letter-r": "\uf48c", - "square-letter-s": "\uf48d", - "square-letter-t": "\uf48e", - "square-letter-u": "\uf48f", - "square-letter-v": "\uf4b6", - "square-letter-w": "\uf490", - "square-letter-x": "\uf4b7", - "square-letter-y": "\uf491", - "square-letter-z": "\uf492", - "square-minus": "\uf63e", - "square-number-0": "\uef01", - "square-number-1": "\uef02", - "square-number-2": "\uef03", - "square-number-3": "\uef04", - "square-number-4": "\uef05", - "square-number-5": "\uef06", - "square-number-6": "\uef07", - "square-number-7": "\uef08", - "square-number-8": "\uef09", - "square-number-9": "\uef0a", - "square-off": "\ueed2", - "square-percentage": "\uf7dc", - "square-plus": "\uf63f", - "square-root": "\uef92", - "square-root-2": "\uf295", - "square-rotated": "\uec1f", - "square-rotated-filled": "\uf6c8", - "square-rotated-forbid": "\uf01b", - "square-rotated-forbid-2": "\uf01c", - "square-rotated-off": "\uf1ee", - "square-rounded": "\ueb2d", - "square-rounded-arrow-down": "\uf634", - "square-rounded-arrow-down-filled": "\uf773", - "square-rounded-arrow-left": "\uf635", - "square-rounded-arrow-left-filled": "\uf774", - "square-rounded-arrow-right": "\uf636", - "square-rounded-arrow-right-filled": "\uf775", - "square-rounded-arrow-up": "\uf637", - "square-rounded-arrow-up-filled": "\uf776", - "square-rounded-check": "\uf635", - "square-rounded-check-filled": "\uf777", - "square-rounded-chevron-down": "\uf62b", - "square-rounded-chevron-down-filled": "\uf778", - "square-rounded-chevron-left": "\uf62c", - "square-rounded-chevron-left-filled": "\uf779", - "square-rounded-chevron-right": "\uf62d", - "square-rounded-chevron-right-filled": "\uf77a", - "square-rounded-chevron-up": "\uf62e", - "square-rounded-chevron-up-filled": "\uf77b", - "square-rounded-chevrons-down": "\uf64a", - "square-rounded-chevrons-down-filled": "\uf77c", - "square-rounded-chevrons-left": "\uf64b", - "square-rounded-chevrons-left-filled": "\uf77d", - "square-rounded-chevrons-right": "\uf64c", - "square-rounded-chevrons-right-filled": "\uf77e", - "square-rounded-chevrons-up": "\uf64d", - "square-rounded-chevrons-up-filled": "\uf77f", - "square-rounded-filled": "\uf6c9", - "square-rounded-letter-a": "\uf5b8", - "square-rounded-letter-b": "\uf5b9", - "square-rounded-letter-c": "\uf5ba", - "square-rounded-letter-d": "\uf5bb", - "square-rounded-letter-e": "\uf5bc", - "square-rounded-letter-f": "\uf5bd", - "square-rounded-letter-g": "\uf5be", - "square-rounded-letter-h": "\uf5bf", - "square-rounded-letter-i": "\uf5c0", - "square-rounded-letter-j": "\uf5c1", - "square-rounded-letter-k": "\uf5c2", - "square-rounded-letter-l": "\uf5c3", - "square-rounded-letter-m": "\uf5c4", - "square-rounded-letter-n": "\uf5c5", - "square-rounded-letter-o": "\uf5c6", - "square-rounded-letter-p": "\uf5c7", - "square-rounded-letter-q": "\uf5c8", - "square-rounded-letter-r": "\uf5c9", - "square-rounded-letter-s": "\uf5ca", - "square-rounded-letter-t": "\uf5cb", - "square-rounded-letter-u": "\uf5cc", - "square-rounded-letter-v": "\uf5cd", - "square-rounded-letter-w": "\uf5ce", - "square-rounded-letter-x": "\uf5cf", - "square-rounded-letter-y": "\uf5d0", - "square-rounded-letter-z": "\uf5d1", - "square-rounded-minus": "\uf2a4", - "square-rounded-minus-filled": "\uf780", - "square-rounded-number-0": "\uf5dd", - "square-rounded-number-0-filled": "\uf781", - "square-rounded-number-1": "\uf5de", - "square-rounded-number-1-filled": "\uf782", - "square-rounded-number-2": "\uf5df", - "square-rounded-number-2-filled": "\uf783", - "square-rounded-number-3": "\uf5e0", - "square-rounded-number-3-filled": "\uf784", - "square-rounded-number-4": "\uf5e1", - "square-rounded-number-4-filled": "\uf785", - "square-rounded-number-5": "\uf5e2", - "square-rounded-number-5-filled": "\uf786", - "square-rounded-number-6": "\uf5e3", - "square-rounded-number-6-filled": "\uf787", - "square-rounded-number-7": "\uf5e4", - "square-rounded-number-7-filled": "\uf788", - "square-rounded-number-8": "\uf5e5", - "square-rounded-number-8-filled": "\uf789", - "square-rounded-number-9": "\uf5e6", - "square-rounded-number-9-filled": "\uf78a", - "square-rounded-percentage": "\uf7dd", - "square-rounded-plus": "\uf2a5", - "square-rounded-plus-filled": "\uf78b", - "square-rounded-x": "\uf2a6", - "square-rounded-x-filled": "\uf78c", - "square-toggle": "\uecd3", - "square-toggle-horizontal": "\uecd4", - "square-x": "\uf640", - "square-x-filled": "\uf78d", - "squares-diagonal": "\uf64e", - "squares-filled": "\uf78e", - "stack": "\ueb2e", - "stack-2": "\uef93", - "stack-2-filled": "\uf78f", - "stack-3": "\uf07f", - "stack-filled": "\uf790", - "stack-pop": "\uf230", - "stack-push": "\uf231", - "stairs": "\ueca3", - "stairs-down": "\ueca4", - "stairs-up": "\ueca5", - "star": "\ueb2f", - "star-filled": "\uf6ca", - "star-half": "\ued14", - "star-half-filled": "\uf6cb", - "star-off": "\ued15", - "stars": "\ued16", - "stars-filled": "\uf6cc", - "stars-off": "\uf1ef", - "status-change": "\uf3b5", - "steam": "\uf260", - "steering-wheel": "\uec7c", - "steering-wheel-off": "\uf1f0", - "step-into": "\ued17", - "step-out": "\ued18", - "stethoscope": "\uedbe", - "stethoscope-off": "\uf1f1", - "sticker": "\uec1c", - "sticker-2": "\uf232", - "storm": "\uf24b", - "storm-off": "\uf1f2", - "stretching": "\uf2e6", - "stretching-2": "\uf2e7", - "strikethrough": "\ueb74", - "submarine": "\ued89", - "subscript": "\uef93", - "subtask": "\uec7d", - "sum": "\ueb30", - "sum-off": "\uf1f3", - "sun": "\ueb31", - "sun-filled": "\uf6cd", - "sun-high": "\uf233", - "sun-low": "\uf234", - "sun-moon": "\uf4a1", - "sun-off": "\ued19", - "sun-wind": "\uf233", - "sunglasses": "\uf235", - "sunrise": "\ued1a", - "sunset": "\ued1b", - "sunset-2": "\uf1f4", - "superscript": "\uef94", - "svg": "\uf25a", - "swimming": "\uec92", - "swipe": "\uf2e8", - "swipe-down": "\uf2e9", - "swipe-left": "\uf2ea", - "swipe-right": "\uf2eb", - "swipe-up": "\uf2ec", - "switch": "\ueb32", - "switch-2": "\uecd5", - "switch-3": "\uecd6", - "switch-horizontal": "\ueb33", - "switch-vertical": "\ueb34", - "sword": "\uf030", - "sword-off": "\uf1f5", - "swords": "\uf132", - "table": "\ueb35", - "table-alias": "\uf25b", - "table-column": "\uf25c", - "table-down": "\uf25d", - "table-export": "\uf25e", - "table-filled": "\uf6ce", - "table-heart": "\uf25f", - "table-import": "\uf260", - "table-minus": "\uf261", - "table-off": "\ued1c", - "table-options": "\uf4a2", - "table-plus": "\uf262", - "table-row": "\uf263", - "table-share": "\uf264", - "table-shortcut": "\uf265", - "tag": "\ueb36", - "tag-filled": "\uf6cf", - "tag-minus": "\uf7de", - "tag-off": "\uecf2", - "tag-plus": "\uf7df", - "tag-starred": "\uf7e0", - "tags": "\uef3e", - "tags-filled": "\uf6d0", - "tags-off": "\uf1f6", - "tallymark-1": "\uec20", - "tallymark-2": "\uec21", - "tallymark-3": "\uec22", - "tallymark-4": "\uec23", - "tank": "\ued8a", - "target": "\ueb37", - "target-arrow": "\uf51c", - "target-off": "\uf1f7", - "tax": "\uf4c2", - "taxi": "\uec24", - "tea": "\uf4c3", - "tea-2": "\uf4c4", - "teach": "\uef1c", - "teapot": "\uf4c5", - "telescope": "\ueb38", - "telescope-off": "\uf1f8", - "temperature": "\ueb39", - "temperature-celsius": "\uef0b", - "temperature-fahrenheit": "\uef0c", - "temperature-minus": "\uebbe", - "temperature-off": "\uf1f9", - "temperature-plus": "\uebbf", - "temperature-snow": "\uf266", - "temperature-sun": "\uf267", - "template": "\uf4a3", - "template-off": "\uf1fa", - "tent": "\ueeca", - "tent-off": "\uf1fb", - "terminal": "\ueb3a", - "terminal-2": "\uef0d", - "test-pipe": "\uf0af", - "test-pipe-2": "\uf264", - "test-pipe-off": "\uf1fc", - "tex": "\uf4a4", - "text-caption": "\uf4a5", - "text-color": "\uf2ed", - "text-decrease": "\uecd7", - "text-direction-ltr": "\ueec6", - "text-direction-rtl": "\ueec7", - "text-grammar": "\uf59a", - "text-increase": "\uecd8", - "text-orientation": "\uf2ee", - "text-plus": "\uf2ef", - "text-recognition": "\uf204", - "text-resize": "\uf2f0", - "text-size": "\uf2f1", - "text-spellcheck": "\uf2f2", - "text-wrap": "\ueb3b", - "text-wrap-disabled": "\uf1fd", - "texture": "\uf51d", - "theater": "\uf79b", - "thermometer": "\uef0e", - "thumb-down": "\ueb3c", - "thumb-down-filled": "\uf6d1", - "thumb-down-off": "\uf1fe", - "thumb-up": "\ueb3d", - "thumb-up-filled": "\uf6d2", - "thumb-up-off": "\uf1ff", - "tic-tac": "\uf51e", - "ticket": "\ueb3e", - "ticket-off": "\uf200", - "tie": "\uf4a6", - "tilde": "\uf4a7", - "tilt-shift": "\uebf2", - "tilt-shift-off": "\uf201", - "timeline": "\uf031", - "timeline-event": "\uf553", - "timeline-event-exclamation": "\uf554", - "timeline-event-minus": "\uf555", - "timeline-event-plus": "\uf556", - "timeline-event-text": "\uf557", - "timeline-event-x": "\uf558", - "tir": "\uebf3", - "toggle-left": "\ueb3f", - "toggle-left-filled": "\uf6d3", - "toggle-right": "\ueb40", - "toggle-right-filled": "\uf6d4", - "toilet-paper": "\uf4a8", - "toilet-paper-off": "\uf202", - "toml": "\uf791", - "tool": "\ueb41", - "tools": "\ueb42", - "tools-kitchen": "\ued1d", - "tools-kitchen-2": "\uf1c4", - "tools-kitchen-2-off": "\uf203", - "tools-kitchen-3": "\uf4a9", - "tools-kitchen-off": "\uf204", - "tools-off": "\uf205", - "tooltip": "\uef0f", - "topologybus": "\uf32a", - "topologycomplex": "\uf32b", - "topologyfullhierarchy": "\uf32c", - "topologyring": "\uf32d", - "topologyring2": "\uf32e", - "topologyring3": "\uf32f", - "topologystar": "\uf330", - "topologystar2": "\uf331", - "topologystar3": "\uf332", - "topologystarring": "\uf333", - "topologystarring2": "\uf334", - "topologystarring3": "\uf335", - "tornado": "\uf206", - "tournament": "\ueca6", - "tower": "\uef1d", - "tower-off": "\uf207", - "track": "\uef1e", - "tractor": "\ueca7", - "trademark": "\uec25", - "traffic-cone": "\uf208", - "traffic-cone-off": "\uf209", - "traffic-lights": "\ued1e", - "traffic-lights-off": "\uf20a", - "train": "\ueb43", - "train-off": "\uf20b", - "transaction-bitcoin": "\uf2f3", - "transaction-dollar": "\uf2f4", - "transaction-euro": "\uf2f5", - "transaction-pound": "\uf2f6", - "transaction-rupee": "\uf2f7", - "transaction-yen": "\uf2f8", - "transaction-yuan": "\uf2f9", - "transfer": "\uf036", - "transfer-in": "\uf035", - "transfer-out": "\uf036", - "transfer-vertical": "\uf037", - "transform": "\uf38c", - "transform-filled": "\uf6d5", - "transform-point": "\uf50f", - "transform-point-bottom-left": "\uf3b6", - "transform-point-bottom-right": "\uf3b7", - "transform-point-top-left": "\uf3b8", - "transform-point-top-right": "\uf3b9", - "transition-bottom": "\uf2fd", - "transition-left": "\uf2fe", - "transition-right": "\uf2ff", - "transition-top": "\uf300", - "trash": "\ueb44", - "trash-filled": "\uf6d6", - "trash-off": "\ued1f", - "trash-x": "\uf1c8", - "trash-x-filled": "\uf792", - "treadmill": "\ufa98", - "tree": "\uef1f", - "trees": "\uf020", - "trekking": "\uf5f7", - "trending-down": "\ueb45", - "trending-down-2": "\uedc3", - "trending-down-3": "\uf200", - "trending-up": "\ueb46", - "trending-up-2": "\uedc4", - "trending-up-3": "\uf201", - "triangle": "\ueb47", - "triangle-filled": "\uf6d7", - "triangle-inverted": "\uf01d", - "triangle-inverted-filled": "\uf6d8", - "triangle-minus": "\ufc82", - "triangle-minus-2": "\ufc7d", - "triangle-off": "\ued20", - "triangle-plus": "\ufc83", - "triangle-plus-2": "\ufc7e", - "triangle-square-circle": "\uece6", - "triangles": "\uf0a1", - "trident": "\ueca8", - "trolley": "\uf4aa", - "trophy": "\ueb48", - "trophy-filled": "\uf6d9", - "trophy-off": "\uf20c", - "truck": "\ueb49", - "truck-delivery": "\uec26", - "truck-loading": "\uf1c9", - "truck-off": "\uf20d", - "truck-return": "\uf20e", - "txt": "\uf4ab", - "typeface": "\uf2fa", - "typography": "\uebc9", - "typography-off": "\uf20f", - "u-turn-left": "\uf23f", - "u-turn-right": "\uf240", - "umbrella": "\uebca", - "umbrella-closed": "\uf7b9", - "umbrella-filled": "\uf6da", - "umbrella-off": "\uf210", - "underline": "\ueb75", - "unlink": "\ueb4a", - "upload": "\ueb4b", - "urgent": "\uef1f", - "usb": "\uf00b", - "user": "\ueb4c", - "user-bolt": "\ufa99", - "user-cancel": "\ufa9a", - "user-check": "\ueb4d", - "user-circle": "\ueb4e", - "user-code": "\ufa9b", - "user-cog": "\ufa9c", - "user-dollar": "\ufa9d", - "user-down": "\ufa9e", - "user-edit": "\uf7ba", - "user-exclamation": "\ueb4f", - "user-filled": "\uf6db", - "user-heart": "\ufa9f", - "user-minus": "\ueb50", - "user-off": "\uecf3", - "user-pause": "\ufaa0", - "user-pin": "\ufaa1", - "user-plus": "\ueb51", - "user-question": "\ufaa2", - "user-search": "\uef94", - "user-share": "\ufaa3", - "user-shield": "\ufaa4", - "user-star": "\ufaa5", - "user-up": "\ufaa6", - "user-x": "\ueb52", - "users": "\ueb53", - "users-group": "\uf7bb", - "users-minus": "\uf7bc", - "users-plus": "\uf7bd", - "uv-index": "\uf512", - "ux-circle": "\uf369", - "vaccine": "\uf2fb", - "vaccine-bottle": "\uf513", - "vaccine-bottle-off": "\uf211", - "vaccine-off": "\uf212", - "vacuum-cleaner": "\uf5f8", - "variable": "\uf038", - "variable-minus": "\uf39a", - "variable-off": "\uf213", - "variable-plus": "\uf39b", - "vector": "\ueeca", - "vector-beizer": "\uef72", - "vector-beizer-2": "\uf1ca", - "vector-beizer-arc": "\uf4ac", - "vector-beizer-circle": "\uf4ad", - "vector-off": "\uf214", - "vector-spline": "\uf565", - "vector-triangle": "\uf1cb", - "vector-triangle-off": "\uf215", - "venus": "\uec27", - "versions": "\ued21", - "versions-filled": "\uf6dc", - "versions-off": "\uf216", - "video": "\ued22", - "video-filled": "\uf6dd", - "video-minus": "\uf4ae", - "video-off": "\uf217", - "video-plus": "\uf4af", - "view-360": "\ued23", - "view-360-arrow": "\uf5a9", - "view-360-number": "\uf2fc", - "view-360-off": "\uf218", - "viewfinder": "\ueb54", - "viewfinder-off": "\uf219", - "viewport-narrow": "\uef73", - "viewport-wide": "\uef74", - "vinyl": "\uf029", - "vip": "\uf3b7", - "vip-off": "\uf21a", - "virus": "\ued85", - "virus-off": "\uf21b", - "virus-search": "\uf21c", - "vocabulary": "\uef75", - "vocabulary-off": "\uf21d", - "volcano": "\uf79c", - "volume": "\ueb55", - "volume-2": "\ueb56", - "volume-3": "\ueb57", - "volume-off": "\uf21e", - "vs": "\uf39c", - "walk": "\ueca9", - "wall": "\uef1e", - "wall-off": "\uf21f", - "wallet": "\ueb58", - "wallet-off": "\uf220", - "wallpaper": "\uef56", - "wallpaper-off": "\uf221", - "wand": "\uebcb", - "wand-off": "\uf222", - "wash": "\uf311", - "wash-dry": "\uf312", - "wash-dry-1": "\uf313", - "wash-dry-2": "\uf314", - "wash-dry-3": "\uf315", - "wash-dry-a": "\uf316", - "wash-dry-dip": "\uf317", - "wash-dry-f": "\uf318", - "wash-dry-flat": "\uf319", - "wash-dry-hang": "\uf31a", - "wash-dry-off": "\uf223", - "wash-dry-p": "\uf31b", - "wash-dry-shade": "\uf31c", - "wash-dry-w": "\uf31d", - "wash-dryclean": "\uf31e", - "wash-dryclean-off": "\uf224", - "wash-eco": "\uf259", - "wash-gentle": "\uf31f", - "wash-hand": "\uf320", - "wash-machine": "\uf321", - "wash-off": "\uf225", - "wash-press": "\uf322", - "wash-temperature-1": "\uf323", - "wash-temperature-2": "\uf324", - "wash-temperature-3": "\uf325", - "wash-temperature-4": "\uf326", - "wash-temperature-5": "\uf327", - "wash-temperature-6": "\uf328", - "wash-tumble-dry": "\uf329", - "wash-tumble-off": "\uf226", - "waterpolo": "\uf32a", - "wave-saw-tool": "\uecd0", - "wave-sine": "\uecd1", - "wave-square": "\uecd2", - "waves": "\uecd3", - "webhook": "\uf227", - "webhook-off": "\uf228", - "weight": "\uf580", - "wheel": "\uf2fd", - "wheelchair": "\uf1cc", - "wheelchair-off": "\uf229", - "whirl": "\uf51f", - "wifi": "\ueb59", - "wifi-0": "\uf25a", - "wifi-1": "\uf25b", - "wifi-2": "\uf25c", - "wifi-off": "\uecf4", - "wind": "\uec2d", - "wind-off": "\uf22a", - "windmill": "\uecda", - "windmill-filled": "\uf6de", - "windmill-off": "\uf22b", - "window": "\uef95", - "window-maximize": "\uf22c", - "window-minimize": "\uf22d", - "window-off": "\uf22e", - "windsock": "\uf4b0", - "wiper": "\uecae", - "wiper-wash": "\uecaf", - "woman": "\ueb5a", - "woman-filled": "\uf6df", - "wood": "\uf359", - "world": "\ueb5b", - "world-bolt": "\ufaa7", - "world-cancel": "\ufaa8", - "world-check": "\ufaa9", - "world-code": "\ufaaa", - "world-cog": "\ufaab", - "world-dollar": "\ufaac", - "world-down": "\ufaad", - "world-download": "\uf38d", - "world-exclamation": "\ufaae", - "world-filled": "\uf6e0", - "world-heart": "\ufaaf", - "world-latitude": "\uf38e", - "world-longitude": "\uf38f", - "world-minus": "\ufab0", - "world-off": "\uf22f", - "world-pause": "\ufab1", - "world-pin": "\uf38f", - "world-plus": "\ufab2", - "world-question": "\ufab3", - "world-search": "\ufab4", - "world-share": "\ufab5", - "world-star": "\ufab6", - "world-up": "\ufab7", - "world-upload": "\uf38f", - "world-www": "\uf38f", - "world-x": "\ufab8", - "wrecking-ball": "\uf593", - "writing": "\uf039", - "writing-off": "\uf230", - "writing-sign": "\uf231", - "writing-sign-off": "\uf232", - "x": "\ueb5c", - "xbox-a": "\uf2de", - "xbox-b": "\uf2df", - "xbox-x": "\uf2e0", - "xbox-y": "\uf2e1", - "xd": "\uf233", - "xxx": "\uf2fe", - "yin-yang": "\uec2e", - "yin-yang-filled": "\uf6e1", - "yoga": "\uf2ff", - "zeppelin": "\uf4b1", - "zeppelin-off": "\uf234", - "zip": "\uf2fb", - "zodiac-aquarius": "\uec2f", - "zodiac-aries": "\uec30", - "zodiac-cancer": "\uec31", - "zodiac-capricorn": "\uec32", - "zodiac-gemini": "\uec33", - "zodiac-leo": "\uec34", - "zodiac-libra": "\uec35", - "zodiac-pisces": "\uec36", - "zodiac-sagittarius": "\uec37", - "zodiac-scorpio": "\uec38", - "zodiac-taurus": "\uec39", - "zodiac-virgo": "\uec3a", - "zoom-cancel": "\ufab9", - "zoom-check": "\uf1cc", - "zoom-code": "\ufaba", - "zoom-exclamation": "\ufabb", - "zoom-filled": "\uf6e2", - "zoom-in": "\ueb5d", - "zoom-in-area": "\uf580", - "zoom-in-filled": "\uf6e3", - "zoom-money": "\uf0b0", - "zoom-out": "\ueb5e", - "zoom-out-area": "\uf581", - "zoom-out-filled": "\uf6e4", - "zoom-pan": "\uf582", - "zoom-question": "\ufabc", - "zoom-replace": "\uf235", - "zoom-reset": "\uf236", - "zzz": "\uf237", - "zzz-off": "\uf238" - } -} diff --git a/Commons/IconsSets/TablerIcons.qml b/Commons/IconsSets/TablerIcons.qml new file mode 100644 index 0000000..94d477d --- /dev/null +++ b/Commons/IconsSets/TablerIcons.qml @@ -0,0 +1,6072 @@ +pragma Singleton + +import QtQuick +import Quickshell + +Singleton { + id: root + + readonly property string defaultIcon: "skull" + + readonly property var aliases: { + "close": "x", + "settings": "settings", + "add": "plus", + "media-pause": "player-pause", + "media-play": "player-play", + "media-prev": "player-track-prev", + "media-next": "player-track-next", + "refresh": "refresh", + "cpu-usage": "brand-speedtest", + "cpu-temperature": "flame", + "memory": "cpu", + "performance": "brand-speedtest", + "balanced": "brand-speedtest", + "powersaver": "leaf", + "download-speed": "download", + "upload-speed": "upload", + "storage": "device-floppy", + "bluetooth": "bluetooth", + "ethernet": "network", + "keyboard": "keyboard", + "power": "power", + "lock": "lock", + "wifi-0": "wifi-0", + "wifi-1": "wifi-1", + "wifi-2": "wifi-2", + "wifi-off": "wifi-off", + "wifi": "wifi", + "nightlight-on": "moon", + "nightlight-off": "moon-off", + "keep-awake-on": "mug", + "keep-awake-off": "mug-off", + "panel": "layout-sidebar-right-inactive", + "dark-mode": "contrast", + "camera-video": "video", + "chevron-left": "chevron-left", + "chevron-right": "chevron-right", + "chevron-up": "chevron-up", + "chevron-down": "chevron-down", + "settings-general": "box", + "settings-bar": "line-dashed", + "settings-launcher": "rocket", + "settings-audio": "device-speaker", + "settings-display": "device-desktop", + "settings-network": "antenna", + "settings-brightness": "brightness-up", + "settings-weather": "cloud-rain", + "settings-color-scheme": "palette", + "settings-wallpaper": "paint", + "settings-wallpaper-selector": "library-photo", + "settings-screen-recorder": "video", + "settings-hooks": "link", + "settings-about": "info-square-rounded", + + // TODO BRIGHTNESS + // TODO BT DEVICES + } + + readonly property var icons: { + "123": "\uf554", + "360": "\uf62f", + "12-hours": "\ufc53", + "24-hours": "\uf5e7", + "2fa": "\ueca0", + "360-view": "\uf566", + "3d-cube-sphere": "\uecd7", + "3d-cube-sphere-off": "\uf3b5", + "3d-rotate": "\uf020", + "a-b": "\uec36", + "a-b-2": "\uf25f", + "a-b-off": "\uf0a6", + "abacus": "\uf05c", + "abacus-off": "\uf3b6", + "abc": "\uf567", + "access-point": "\ued1b", + "access-point-off": "\ued1a", + "accessible": "\ueba9", + "accessible-filled": "\uf6ea", + "accessible-off": "\uf0a7", + "activity": "\ued23", + "activity-heartbeat": "\uf0db", + "ad": "\uea02", + "ad-2": "\uef1f", + "ad-circle": "\uf79e", + "ad-circle-filled": "\uf7d3", + "ad-circle-off": "\uf79d", + "ad-filled": "\uf6eb", + "ad-off": "\uf3b7", + "address-book": "\uf021", + "address-book-off": "\uf3b8", + "adjustments": "\uea03", + "adjustments-alt": "\uec37", + "adjustments-bolt": "\uf7fb", + "adjustments-cancel": "\uf7fc", + "adjustments-check": "\uf7fd", + "adjustments-code": "\uf7fe", + "adjustments-cog": "\uf7ff", + "adjustments-dollar": "\uf800", + "adjustments-down": "\uf801", + "adjustments-exclamation": "\uf802", + "adjustments-filled": "\uf6ec", + "adjustments-heart": "\uf803", + "adjustments-horizontal": "\uec38", + "adjustments-minus": "\uf804", + "adjustments-off": "\uf0a8", + "adjustments-pause": "\uf805", + "adjustments-pin": "\uf806", + "adjustments-plus": "\uf807", + "adjustments-question": "\uf808", + "adjustments-search": "\uf809", + "adjustments-share": "\uf80a", + "adjustments-spark": "\uffbe", + "adjustments-star": "\uf80b", + "adjustments-up": "\uf80c", + "adjustments-x": "\uf80d", + "aerial-lift": "\uedfe", + "aerial-lift-filled": "\u10101", + "affiliate": "\uedff", + "affiliate-filled": "\uf6ed", + "ai": "\ufee7", + "air-balloon": "\uf4a6", + "air-balloon-filled": "\u10100", + "air-conditioning": "\uf3a2", + "air-conditioning-disabled": "\uf542", + "air-traffic-control": "\ufb01", + "alarm": "\uea04", + "alarm-average": "\ufc9e", + "alarm-filled": "\uf709", + "alarm-minus": "\uf630", + "alarm-minus-filled": "\uf70a", + "alarm-off": "\uf0a9", + "alarm-plus": "\uf631", + "alarm-plus-filled": "\uf70b", + "alarm-smoke": "\u100b6", + "alarm-snooze": "\uf632", + "alarm-snooze-filled": "\uf70c", + "album": "\uf022", + "album-off": "\uf3b9", + "alert-circle": "\uea05", + "alert-circle-filled": "\uf6ee", + "alert-circle-off": "\ufc65", + "alert-hexagon": "\uf80e", + "alert-hexagon-filled": "\ufa34", + "alert-hexagon-off": "\ufc66", + "alert-octagon": "\uecc6", + "alert-octagon-filled": "\uf6ef", + "alert-small": "\uf80f", + "alert-small-off": "\ufc67", + "alert-square": "\uf811", + "alert-square-filled": "\ufa35", + "alert-square-rounded": "\uf810", + "alert-square-rounded-filled": "\ufa36", + "alert-square-rounded-off": "\ufc68", + "alert-triangle": "\uea06", + "alert-triangle-filled": "\uf6f0", + "alert-triangle-off": "\ufc69", + "alien": "\uebde", + "alien-filled": "\uf70d", + "align-box-bottom-center": "\uf530", + "align-box-bottom-center-filled": "\uf70e", + "align-box-bottom-left": "\uf531", + "align-box-bottom-left-filled": "\uf70f", + "align-box-bottom-right": "\uf532", + "align-box-bottom-right-filled": "\uf710", + "align-box-center-bottom": "\ufacb", + "align-box-center-middle": "\uf79f", + "align-box-center-middle-filled": "\uf7d4", + "align-box-center-stretch": "\ufacc", + "align-box-center-top": "\ufacd", + "align-box-left-bottom": "\uf533", + "align-box-left-bottom-filled": "\uf711", + "align-box-left-middle": "\uf534", + "align-box-left-middle-filled": "\uf712", + "align-box-left-stretch": "\uface", + "align-box-left-top": "\uf535", + "align-box-left-top-filled": "\uf713", + "align-box-right-bottom": "\uf536", + "align-box-right-bottom-filled": "\uf714", + "align-box-right-middle": "\uf537", + "align-box-right-middle-filled": "\uf7d5", + "align-box-right-stretch": "\ufacf", + "align-box-right-top": "\uf538", + "align-box-right-top-filled": "\uf715", + "align-box-top-center": "\uf539", + "align-box-top-center-filled": "\uf716", + "align-box-top-left": "\uf53a", + "align-box-top-left-filled": "\uf717", + "align-box-top-right": "\uf53b", + "align-box-top-right-filled": "\uf718", + "align-center": "\uea07", + "align-justified": "\uea08", + "align-left": "\uea09", + "align-left-2": "\uff00", + "align-right": "\uea0a", + "align-right-2": "\ufeff", + "alpha": "\uf543", + "alphabet-arabic": "\uff2f", + "alphabet-bangla": "\uff2e", + "alphabet-cyrillic": "\uf1df", + "alphabet-greek": "\uf1e0", + "alphabet-hebrew": "\uff2d", + "alphabet-korean": "\uff2c", + "alphabet-latin": "\uf1e1", + "alphabet-thai": "\uff2b", + "alt": "\ufc54", + "ambulance": "\uebf5", + "ampersand": "\uf229", + "analyze": "\uf3a3", + "analyze-filled": "\uf719", + "analyze-off": "\uf3ba", + "anchor": "\ueb76", + "anchor-off": "\uf0f7", + "angle": "\uef20", + "ankh": "\uf1cd", + "antenna": "\uf094", + "antenna-bars-1": "\uecc7", + "antenna-bars-2": "\uecc8", + "antenna-bars-3": "\uecc9", + "antenna-bars-4": "\uecca", + "antenna-bars-5": "\ueccb", + "antenna-bars-off": "\uf0aa", + "antenna-off": "\uf3bb", + "aperture": "\ueb58", + "aperture-off": "\uf3bc", + "api": "\ueffd", + "api-app": "\ueffc", + "api-app-off": "\uf0ab", + "api-off": "\uf0f8", + "app-window": "\uefe6", + "app-window-filled": "\uf71a", + "apple": "\uef21", + "apple-filled": "\u10017", + "apps": "\uebb6", + "apps-filled": "\uf6f1", + "apps-off": "\uf0ac", + "archery-arrow": "\ufc55", + "archive": "\uea0b", + "archive-filled": "\ufa82", + "archive-off": "\uf0ad", + "armchair": "\uef9e", + "armchair-2": "\uefe7", + "armchair-2-off": "\uf3bd", + "armchair-off": "\uf3be", + "arrow-autofit-content": "\uef31", + "arrow-autofit-content-filled": "\uf6f2", + "arrow-autofit-down": "\uef32", + "arrow-autofit-down-filled": "\u10113", + "arrow-autofit-height": "\uef33", + "arrow-autofit-height-filled": "\u10112", + "arrow-autofit-left": "\uef34", + "arrow-autofit-left-filled": "\u10111", + "arrow-autofit-right": "\uef35", + "arrow-autofit-right-filled": "\u10110", + "arrow-autofit-up": "\uef36", + "arrow-autofit-up-filled": "\u1010f", + "arrow-autofit-width": "\uef37", + "arrow-autofit-width-filled": "\u1010e", + "arrow-back": "\uea0c", + "arrow-back-up": "\ueb77", + "arrow-back-up-double": "\uf9ec", + "arrow-badge-down": "\uf60b", + "arrow-badge-down-filled": "\uf7d6", + "arrow-badge-left": "\uf60c", + "arrow-badge-left-filled": "\uf7d7", + "arrow-badge-right": "\uf60d", + "arrow-badge-right-filled": "\uf7d8", + "arrow-badge-up": "\uf60e", + "arrow-badge-up-filled": "\uf7d9", + "arrow-bar-both": "\ufadd", + "arrow-bar-down": "\uea0d", + "arrow-bar-left": "\uea0e", + "arrow-bar-right": "\uea0f", + "arrow-bar-to-down": "\uec88", + "arrow-bar-to-down-dashed": "\u10164", + "arrow-bar-to-left": "\uec89", + "arrow-bar-to-left-dashed": "\u10163", + "arrow-bar-to-right": "\uec8a", + "arrow-bar-to-right-dashed": "\u10162", + "arrow-bar-to-up": "\uec8b", + "arrow-bar-to-up-dashed": "\u10161", + "arrow-bar-up": "\uea10", + "arrow-bear-left": "\uf045", + "arrow-bear-left-2": "\uf044", + "arrow-bear-right": "\uf047", + "arrow-bear-right-2": "\uf046", + "arrow-big-down": "\uedda", + "arrow-big-down-filled": "\uf6c6", + "arrow-big-down-line": "\uefe8", + "arrow-big-down-line-filled": "\uf6c7", + "arrow-big-down-lines": "\uefe9", + "arrow-big-down-lines-filled": "\uf6c8", + "arrow-big-left": "\ueddb", + "arrow-big-left-filled": "\uf6c9", + "arrow-big-left-line": "\uefea", + "arrow-big-left-line-filled": "\uf6ca", + "arrow-big-left-lines": "\uefeb", + "arrow-big-left-lines-filled": "\uf6cb", + "arrow-big-right": "\ueddc", + "arrow-big-right-filled": "\uf6cc", + "arrow-big-right-line": "\uefec", + "arrow-big-right-line-filled": "\uf6cd", + "arrow-big-right-lines": "\uefed", + "arrow-big-right-lines-filled": "\uf6ce", + "arrow-big-up": "\ueddd", + "arrow-big-up-filled": "\uf6cf", + "arrow-big-up-line": "\uefee", + "arrow-big-up-line-filled": "\uf6d0", + "arrow-big-up-lines": "\uefef", + "arrow-big-up-lines-filled": "\uf6d1", + "arrow-bounce": "\uf3a4", + "arrow-capsule": "\ufade", + "arrow-curve-left": "\uf048", + "arrow-curve-right": "\uf049", + "arrow-down": "\uea16", + "arrow-down-bar": "\ued98", + "arrow-down-circle": "\uea11", + "arrow-down-circle-filled": "\u1003b", + "arrow-down-dashed": "\u1006a", + "arrow-down-from-arc": "\ufd86", + "arrow-down-left": "\uea13", + "arrow-down-left-circle": "\uea12", + "arrow-down-rhombus": "\uf61d", + "arrow-down-rhombus-filled": "\u1003a", + "arrow-down-right": "\uea15", + "arrow-down-right-circle": "\uea14", + "arrow-down-square": "\ued9a", + "arrow-down-square-filled": "\u10039", + "arrow-down-tail": "\ued9b", + "arrow-down-to-arc": "\ufd87", + "arrow-elbow-left": "\uf9ed", + "arrow-elbow-right": "\uf9ee", + "arrow-fork": "\uf04a", + "arrow-forward": "\uea17", + "arrow-forward-up": "\ueb78", + "arrow-forward-up-double": "\uf9ef", + "arrow-guide": "\uf22a", + "arrow-guide-filled": "\u10038", + "arrow-iteration": "\uf578", + "arrow-left": "\uea19", + "arrow-left-bar": "\ued9c", + "arrow-left-circle": "\uea18", + "arrow-left-circle-filled": "\u10037", + "arrow-left-dashed": "\u10069", + "arrow-left-from-arc": "\ufd88", + "arrow-left-rhombus": "\uf61e", + "arrow-left-rhombus-filled": "\u10036", + "arrow-left-right": "\uf04b", + "arrow-left-square": "\ued9d", + "arrow-left-square-filled": "\u10035", + "arrow-left-tail": "\ued9e", + "arrow-left-to-arc": "\ufd89", + "arrow-loop-left": "\ued9f", + "arrow-loop-left-2": "\uf04c", + "arrow-loop-right": "\ueda0", + "arrow-loop-right-2": "\uf04d", + "arrow-merge": "\uf04e", + "arrow-merge-alt-left": "\ufc9f", + "arrow-merge-alt-right": "\ufca0", + "arrow-merge-both": "\uf23b", + "arrow-merge-left": "\uf23c", + "arrow-merge-right": "\uf23d", + "arrow-move-down": "\uf2ba", + "arrow-move-down-filled": "\u10034", + "arrow-move-left": "\uf2bb", + "arrow-move-left-filled": "\u10033", + "arrow-move-right": "\uf2bc", + "arrow-move-right-filled": "\u10032", + "arrow-move-up": "\uf2bd", + "arrow-move-up-filled": "\u10031", + "arrow-narrow-down": "\uea1a", + "arrow-narrow-down-dashed": "\u10068", + "arrow-narrow-left": "\uea1b", + "arrow-narrow-left-dashed": "\u10067", + "arrow-narrow-right": "\uea1c", + "arrow-narrow-right-dashed": "\u10066", + "arrow-narrow-up": "\uea1d", + "arrow-narrow-up-dashed": "\u10065", + "arrow-ramp-left": "\ued3c", + "arrow-ramp-left-2": "\uf04f", + "arrow-ramp-left-3": "\uf050", + "arrow-ramp-right": "\ued3d", + "arrow-ramp-right-2": "\uf051", + "arrow-ramp-right-3": "\uf052", + "arrow-right": "\uea1f", + "arrow-right-bar": "\ueda1", + "arrow-right-circle": "\uea1e", + "arrow-right-circle-filled": "\u10030", + "arrow-right-dashed": "\u10064", + "arrow-right-from-arc": "\ufd8a", + "arrow-right-rhombus": "\uf61f", + "arrow-right-rhombus-filled": "\u1002f", + "arrow-right-square": "\ueda2", + "arrow-right-square-filled": "\u1002e", + "arrow-right-tail": "\ueda3", + "arrow-right-to-arc": "\ufd8b", + "arrow-rotary-first-left": "\uf053", + "arrow-rotary-first-right": "\uf054", + "arrow-rotary-last-left": "\uf055", + "arrow-rotary-last-right": "\uf056", + "arrow-rotary-left": "\uf057", + "arrow-rotary-right": "\uf058", + "arrow-rotary-straight": "\uf059", + "arrow-roundabout-left": "\uf22b", + "arrow-roundabout-right": "\uf22c", + "arrow-sharp-turn-left": "\uf05a", + "arrow-sharp-turn-right": "\uf05b", + "arrow-up": "\uea25", + "arrow-up-bar": "\ueda4", + "arrow-up-circle": "\uea20", + "arrow-up-circle-filled": "\u1002d", + "arrow-up-dashed": "\u10063", + "arrow-up-from-arc": "\ufd8c", + "arrow-up-left": "\uea22", + "arrow-up-left-circle": "\uea21", + "arrow-up-rhombus": "\uf620", + "arrow-up-rhombus-filled": "\u1002c", + "arrow-up-right": "\uea24", + "arrow-up-right-circle": "\uea23", + "arrow-up-square": "\ueda6", + "arrow-up-square-filled": "\u1002b", + "arrow-up-tail": "\ueda7", + "arrow-up-to-arc": "\ufd8d", + "arrow-wave-left-down": "\ueda8", + "arrow-wave-left-up": "\ueda9", + "arrow-wave-right-down": "\uedaa", + "arrow-wave-right-up": "\uedab", + "arrow-zig-zag": "\uf4a7", + "arrows-cross": "\ueffe", + "arrows-diagonal": "\uea27", + "arrows-diagonal-2": "\uea26", + "arrows-diagonal-minimize": "\uef39", + "arrows-diagonal-minimize-2": "\uef38", + "arrows-diff": "\uf296", + "arrows-double-ne-sw": "\uedde", + "arrows-double-nw-se": "\ueddf", + "arrows-double-se-nw": "\uede0", + "arrows-double-sw-ne": "\uede1", + "arrows-down": "\uedad", + "arrows-down-up": "\uedac", + "arrows-exchange": "\uf1f4", + "arrows-exchange-2": "\uf1f3", + "arrows-horizontal": "\ueb59", + "arrows-join": "\uedaf", + "arrows-join-2": "\uedae", + "arrows-left": "\uedb1", + "arrows-left-down": "\uee00", + "arrows-left-right": "\uedb0", + "arrows-maximize": "\uea28", + "arrows-minimize": "\uea29", + "arrows-move": "\uf22f", + "arrows-move-horizontal": "\uf22d", + "arrows-move-vertical": "\uf22e", + "arrows-random": "\uf095", + "arrows-right": "\uedb3", + "arrows-right-down": "\uee01", + "arrows-right-left": "\uedb2", + "arrows-shuffle": "\uf000", + "arrows-shuffle-2": "\uefff", + "arrows-sort": "\ueb5a", + "arrows-split": "\uedb5", + "arrows-split-2": "\uedb4", + "arrows-transfer-down": "\uf2cc", + "arrows-transfer-up": "\uf2cd", + "arrows-transfer-up-down": "\uffac", + "arrows-up": "\uedb7", + "arrows-up-down": "\uedb6", + "arrows-up-left": "\uee02", + "arrows-up-right": "\uee03", + "arrows-vertical": "\ueb5b", + "artboard": "\uea2a", + "artboard-filled": "\ufa83", + "artboard-off": "\uf0ae", + "article": "\uf1e2", + "article-filled": "\uf7da", + "article-off": "\uf3bf", + "aspect-ratio": "\ued30", + "aspect-ratio-filled": "\uf7db", + "aspect-ratio-off": "\uf0af", + "assembly": "\uf24d", + "assembly-filled": "\ufe9e", + "assembly-off": "\uf3c0", + "asset": "\uf1ce", + "asset-filled": "\ufe9d", + "asterisk": "\uefd5", + "asterisk-simple": "\uefd4", + "at": "\uea2b", + "at-off": "\uf0b0", + "atom": "\ueb79", + "atom-2": "\uebdf", + "atom-2-filled": "\uf71b", + "atom-off": "\uf0f9", + "augmented-reality": "\uf023", + "augmented-reality-2": "\uf37e", + "augmented-reality-off": "\uf3c1", + "auth-2fa": "\ueca0", + "automatic-gearbox": "\ufc89", + "automatic-gearbox-filled": "\u1002a", + "automation": "\ufef8", + "avocado": "\ufd8e", + "award": "\uea2c", + "award-filled": "\uf71c", + "award-off": "\uf0fa", + "axe": "\uef9f", + "axis-x": "\uef45", + "axis-y": "\uef46", + "baby-bottle": "\uf5d2", + "baby-carriage": "\uf05d", + "baby-carriage-filled": "\ufe9c", + "background": "\ufd2c", + "backhoe": "\ued86", + "backpack": "\uef47", + "backpack-off": "\uf3c2", + "backslash": "\ufab9", + "backspace": "\uea2d", + "backspace-filled": "\uf7dc", + "badge": "\uefc2", + "badge-2k": "\u100b5", + "badge-3d": "\uf555", + "badge-3d-filled": "\ufe9b", + "badge-3k": "\u100b4", + "badge-4k": "\uf556", + "badge-4k-filled": "\ufe9a", + "badge-5k": "\u100b3", + "badge-8k": "\uf557", + "badge-8k-filled": "\ufe99", + "badge-ad": "\uf558", + "badge-ad-filled": "\ufe98", + "badge-ad-off": "\ufd8f", + "badge-ar": "\uf559", + "badge-ar-filled": "\ufe97", + "badge-cc": "\uf55a", + "badge-cc-filled": "\ufe96", + "badge-filled": "\uf667", + "badge-hd": "\uf55b", + "badge-hd-filled": "\ufe95", + "badge-off": "\uf0fb", + "badge-sd": "\uf55c", + "badge-sd-filled": "\ufe94", + "badge-tm": "\uf55d", + "badge-tm-filled": "\ufe93", + "badge-vo": "\uf55e", + "badge-vo-filled": "\ufe92", + "badge-vr": "\uf55f", + "badge-vr-filled": "\ufe91", + "badge-wc": "\uf560", + "badge-wc-filled": "\ufe90", + "badges": "\uefc3", + "badges-filled": "\uf7dd", + "badges-off": "\uf0fc", + "baguette": "\uf3a5", + "ball-american-football": "\uee04", + "ball-american-football-off": "\uf3c3", + "ball-baseball": "\uefa0", + "ball-basketball": "\uec28", + "ball-bowling": "\uec29", + "ball-football": "\uee06", + "ball-football-off": "\uee05", + "ball-tennis": "\uec2a", + "ball-volleyball": "\uec2b", + "balloon": "\uef3a", + "balloon-filled": "\ufa84", + "balloon-off": "\uf0fd", + "ballpen": "\uf06e", + "ballpen-filled": "\ufa85", + "ballpen-off": "\uf0b1", + "ban": "\uea2e", + "bandage": "\ueb7a", + "bandage-filled": "\uf7de", + "bandage-off": "\uf3c4", + "barbell": "\ueff0", + "barbell-filled": "\ufe8f", + "barbell-off": "\uf0b2", + "barcode": "\uebc6", + "barcode-off": "\uf0b3", + "barrel": "\uf0b4", + "barrel-off": "\uf0fe", + "barrier-block": "\uf00e", + "barrier-block-filled": "\ufe8e", + "barrier-block-off": "\uf0b5", + "baseline": "\uf024", + "baseline-density-large": "\uf9f0", + "baseline-density-medium": "\uf9f1", + "baseline-density-small": "\uf9f2", + "basket": "\uebe1", + "basket-bolt": "\ufb43", + "basket-cancel": "\ufb44", + "basket-check": "\ufb45", + "basket-code": "\ufb46", + "basket-cog": "\ufb47", + "basket-discount": "\ufb48", + "basket-dollar": "\ufb49", + "basket-down": "\ufb4a", + "basket-exclamation": "\ufb4b", + "basket-filled": "\uf7df", + "basket-heart": "\ufb4c", + "basket-minus": "\ufb4d", + "basket-off": "\uf0b6", + "basket-pause": "\ufb4e", + "basket-pin": "\ufb4f", + "basket-plus": "\ufb50", + "basket-question": "\ufb51", + "basket-search": "\ufb52", + "basket-share": "\ufb53", + "basket-star": "\ufb54", + "basket-up": "\ufb55", + "basket-x": "\ufb56", + "bat": "\uf284", + "bath": "\uef48", + "bath-filled": "\uf71d", + "bath-off": "\uf0ff", + "battery": "\uea34", + "battery-1": "\uea2f", + "battery-1-filled": "\uf71e", + "battery-2": "\uea30", + "battery-2-filled": "\uf71f", + "battery-3": "\uea31", + "battery-3-filled": "\uf720", + "battery-4": "\uea32", + "battery-4-filled": "\uf721", + "battery-automotive": "\uee07", + "battery-automotive-filled": "\u10029", + "battery-charging": "\uea33", + "battery-charging-2": "\uef3b", + "battery-eco": "\uef3c", + "battery-exclamation": "\uff1d", + "battery-filled": "\uf668", + "battery-off": "\ued1c", + "battery-spark": "\uffbd", + "battery-vertical": "\uff13", + "battery-vertical-1": "\uff1c", + "battery-vertical-1-filled": "\u10028", + "battery-vertical-2": "\uff1b", + "battery-vertical-2-filled": "\u10027", + "battery-vertical-3": "\uff1a", + "battery-vertical-3-filled": "\u10026", + "battery-vertical-4": "\uff19", + "battery-vertical-4-filled": "\u10025", + "battery-vertical-charging": "\uff17", + "battery-vertical-charging-2": "\uff18", + "battery-vertical-eco": "\uff16", + "battery-vertical-exclamation": "\uff15", + "battery-vertical-filled": "\u10024", + "battery-vertical-off": "\uff14", + "beach": "\uef3d", + "beach-off": "\uf0b7", + "bed": "\ueb5c", + "bed-filled": "\uf7e0", + "bed-flat": "\ufca1", + "bed-flat-filled": "\ufe8d", + "bed-off": "\uf100", + "beer": "\uefa1", + "beer-filled": "\uf7e1", + "beer-off": "\uf101", + "bell": "\uea35", + "bell-bolt": "\uf812", + "bell-cancel": "\uf813", + "bell-check": "\uf814", + "bell-code": "\uf815", + "bell-cog": "\uf816", + "bell-dollar": "\uf817", + "bell-down": "\uf818", + "bell-exclamation": "\uf819", + "bell-filled": "\uf669", + "bell-heart": "\uf81a", + "bell-minus": "\uede2", + "bell-minus-filled": "\uf722", + "bell-off": "\uece9", + "bell-pause": "\uf81b", + "bell-pin": "\uf81c", + "bell-plus": "\uede3", + "bell-plus-filled": "\uf723", + "bell-question": "\uf81d", + "bell-ringing": "\ued07", + "bell-ringing-2": "\uede4", + "bell-ringing-2-filled": "\uf724", + "bell-ringing-filled": "\uf725", + "bell-school": "\uf05e", + "bell-search": "\uf81e", + "bell-share": "\uf81f", + "bell-star": "\uf820", + "bell-up": "\uf821", + "bell-x": "\uede5", + "bell-x-filled": "\uf726", + "bell-z": "\ueff1", + "bell-z-filled": "\uf727", + "beta": "\uf544", + "bible": "\uefc4", + "bike": "\uea36", + "bike-filled": "\u10023", + "bike-off": "\uf0b8", + "binary": "\uee08", + "binary-off": "\uf3c5", + "binary-tree": "\uf5d4", + "binary-tree-2": "\uf5d3", + "binary-tree-2-filled": "\uff65", + "binary-tree-filled": "\uff64", + "binoculars": "\ufefe", + "binoculars-filled": "\uff0b", + "biohazard": "\uecb8", + "biohazard-filled": "\ufe8c", + "biohazard-off": "\uf0b9", + "blade": "\uf4bd", + "blade-filled": "\uf7e2", + "bleach": "\uf2f3", + "bleach-chlorine": "\uf2f0", + "bleach-no-chlorine": "\uf2f1", + "bleach-off": "\uf2f2", + "blend-mode": "\ufeb0", + "blender": "\ufca2", + "blender-filled": "\u10022", + "blob": "\ufeaf", + "blob-filled": "\ufeb1", + "blockquote": "\uee09", + "blocks": "\u100b2", + "bluetooth": "\uea37", + "bluetooth-connected": "\uecea", + "bluetooth-off": "\ueceb", + "bluetooth-x": "\uf081", + "blur": "\uef8c", + "blur-off": "\uf3c6", + "bmp": "\uf3a6", + "body-scan": "\ufca3", + "bold": "\ueb7b", + "bold-off": "\uf0ba", + "bolt": "\uea38", + "bolt-filled": "\u10021", + "bolt-off": "\uecec", + "bomb": "\uf59c", + "bomb-filled": "\ufa86", + "bone": "\uedb8", + "bone-filled": "\ufe8b", + "bone-off": "\uf0bb", + "bong": "\uf3a7", + "bong-filled": "\u10020", + "bong-off": "\uf3c7", + "book": "\uea39", + "book-2": "\uefc5", + "book-download": "\uf070", + "book-filled": "\ufa87", + "book-off": "\uf0bc", + "book-upload": "\uf071", + "bookmark": "\uea3a", + "bookmark-ai": "\ufc8a", + "bookmark-edit": "\ufa5e", + "bookmark-filled": "\ufa88", + "bookmark-minus": "\ufa5f", + "bookmark-off": "\ueced", + "bookmark-plus": "\ufa60", + "bookmark-question": "\ufa61", + "bookmarks": "\ued08", + "bookmarks-filled": "\ufb1f", + "bookmarks-off": "\uf0bd", + "books": "\ueff2", + "books-off": "\uf0be", + "boom": "\ufdbe", + "boom-filled": "\ufe8a", + "border-all": "\uea3b", + "border-bottom": "\uea3c", + "border-bottom-plus": "\ufdbd", + "border-corner-ios": "\ufd98", + "border-corner-pill": "\ufd62", + "border-corner-rounded": "\ufd63", + "border-corner-square": "\ufd64", + "border-corners": "\uf7a0", + "border-horizontal": "\uea3d", + "border-inner": "\uea3e", + "border-left": "\uea3f", + "border-left-plus": "\ufdbc", + "border-none": "\uea40", + "border-outer": "\uea41", + "border-radius": "\ueb7c", + "border-right": "\uea42", + "border-right-plus": "\ufdbb", + "border-sides": "\uf7a1", + "border-style": "\uee0a", + "border-style-2": "\uef22", + "border-top": "\uea43", + "border-top-plus": "\ufdba", + "border-vertical": "\uea44", + "bottle": "\uef0b", + "bottle-filled": "\ufa89", + "bottle-off": "\uf3c8", + "bounce-left": "\uf59d", + "bounce-left-filled": "\ufb20", + "bounce-right": "\uf59e", + "bounce-right-filled": "\ufb21", + "bow": "\uf096", + "bow-filled": "\ufe89", + "bowl": "\uf4fa", + "bowl-chopsticks": "\ufd90", + "bowl-chopsticks-filled": "\ufe88", + "bowl-filled": "\ufb22", + "bowl-spoon": "\ufd91", + "bowl-spoon-filled": "\ufe87", + "bowling": "\u100b1", + "box": "\uea45", + "box-align-bottom": "\uf2a8", + "box-align-bottom-filled": "\ufa8a", + "box-align-bottom-left": "\uf2ce", + "box-align-bottom-left-filled": "\ufa8b", + "box-align-bottom-right": "\uf2cf", + "box-align-bottom-right-filled": "\ufa8c", + "box-align-left": "\uf2a9", + "box-align-left-filled": "\ufa8d", + "box-align-right": "\uf2aa", + "box-align-right-filled": "\ufa8e", + "box-align-top": "\uf2ab", + "box-align-top-filled": "\ufa8f", + "box-align-top-left": "\uf2d0", + "box-align-top-left-filled": "\ufa90", + "box-align-top-right": "\uf2d1", + "box-align-top-right-filled": "\ufa91", + "box-margin": "\uee0b", + "box-model": "\uee0c", + "box-model-2": "\uef23", + "box-model-2-off": "\uf3c9", + "box-model-off": "\uf3ca", + "box-multiple": "\uee17", + "box-multiple-0": "\uee0d", + "box-multiple-1": "\uee0e", + "box-multiple-2": "\uee0f", + "box-multiple-3": "\uee10", + "box-multiple-4": "\uee11", + "box-multiple-5": "\uee12", + "box-multiple-6": "\uee13", + "box-multiple-7": "\uee14", + "box-multiple-8": "\uee15", + "box-multiple-9": "\uee16", + "box-multiple-filled": "\u1001f", + "box-off": "\uf102", + "box-padding": "\uee18", + "box-seam": "\ueaff", + "braces": "\uebcc", + "braces-off": "\uf0bf", + "brackets": "\uebcd", + "brackets-angle": "\ufcb2", + "brackets-angle-off": "\ufcb1", + "brackets-contain": "\uf1e5", + "brackets-contain-end": "\uf1e3", + "brackets-contain-start": "\uf1e4", + "brackets-off": "\uf0c0", + "braille": "\uf545", + "brain": "\uf59f", + "brand-4chan": "\uf494", + "brand-abstract": "\uf495", + "brand-adobe": "\uf0dc", + "brand-adobe-after-effect": "\uff2a", + "brand-adobe-illustrator": "\uff29", + "brand-adobe-indesign": "\uff28", + "brand-adobe-photoshop": "\uff27", + "brand-adobe-premier": "\uff26", + "brand-adobe-xd": "\uff25", + "brand-adonis-js": "\uf496", + "brand-airbnb": "\ued68", + "brand-airtable": "\uef6a", + "brand-algolia": "\uf390", + "brand-alipay": "\uf7a2", + "brand-alpine-js": "\uf324", + "brand-amazon": "\uf230", + "brand-amd": "\uf653", + "brand-amie": "\uffab", + "brand-amigo": "\uf5f9", + "brand-among-us": "\uf205", + "brand-android": "\uec16", + "brand-angular": "\uef6b", + "brand-angular-filled": "\u10095", + "brand-ansible": "\ufa70", + "brand-ao3": "\uf5e8", + "brand-appgallery": "\uf231", + "brand-apple": "\uec17", + "brand-apple-arcade": "\ued69", + "brand-apple-filled": "\ufd74", + "brand-apple-news": "\uff24", + "brand-apple-podcast": "\uf1e6", + "brand-appstore": "\ued24", + "brand-arc": "\ufeae", + "brand-asana": "\uedc5", + "brand-astro": "\ufdb9", + "brand-auth0": "\ufcb3", + "brand-aws": "\ufa4c", + "brand-azure": "\ufa4d", + "brand-backbone": "\uf325", + "brand-badoo": "\uf206", + "brand-baidu": "\uf5e9", + "brand-bandcamp": "\uf207", + "brand-bandlab": "\uf5fa", + "brand-beats": "\uf208", + "brand-bebo": "\uffaa", + "brand-behance": "\uec6e", + "brand-bilibili": "\uf6d2", + "brand-binance": "\uf5a0", + "brand-bing": "\uedc6", + "brand-bitbucket": "\uedc7", + "brand-bitbucket-filled": "\u100cb", + "brand-blackberry": "\uf568", + "brand-blender": "\uf326", + "brand-blogger": "\uf35a", + "brand-bluesky": "\ufd75", + "brand-booking": "\uedc8", + "brand-bootstrap": "\uef3e", + "brand-bulma": "\uf327", + "brand-bumble": "\uf5fb", + "brand-bunpo": "\uf4cf", + "brand-c-sharp": "\uf003", + "brand-cake": "\uf7a3", + "brand-cakephp": "\uf7af", + "brand-campaignmonitor": "\uf328", + "brand-carbon": "\uf348", + "brand-cashapp": "\uf391", + "brand-chrome": "\uec18", + "brand-cinema-4d": "\ufa71", + "brand-citymapper": "\uf5fc", + "brand-cloudflare": "\ufa4e", + "brand-codecov": "\uf329", + "brand-codepen": "\uec6f", + "brand-codesandbox": "\ued6a", + "brand-cohost": "\uf5d5", + "brand-coinbase": "\uf209", + "brand-comedy-central": "\uf217", + "brand-coreos": "\uf5fd", + "brand-couchdb": "\uf60f", + "brand-couchsurfing": "\uf392", + "brand-cpp": "\uf5fe", + "brand-craft": "\ufa72", + "brand-crunchbase": "\uf7e3", + "brand-css3": "\ued6b", + "brand-ctemplar": "\uf4d0", + "brand-cucumber": "\uef6c", + "brand-cupra": "\uf4d1", + "brand-cypress": "\uf333", + "brand-d3": "\uf24e", + "brand-databricks": "\ufc41", + "brand-days-counter": "\uf4d2", + "brand-dcos": "\uf32a", + "brand-debian": "\uef57", + "brand-deezer": "\uf78b", + "brand-deliveroo": "\uf4d3", + "brand-deno": "\uf24f", + "brand-denodo": "\uf610", + "brand-deviantart": "\uecfb", + "brand-digg": "\ufa73", + "brand-dingtalk": "\uf5ea", + "brand-discord": "\uece3", + "brand-discord-filled": "\uf7e4", + "brand-disney": "\uf20a", + "brand-disqus": "\uedc9", + "brand-django": "\uf349", + "brand-docker": "\uedca", + "brand-doctrine": "\uef6d", + "brand-dolby-digital": "\uf4d4", + "brand-douban": "\uf5ff", + "brand-dribbble": "\uec19", + "brand-dribbble-filled": "\uf7e5", + "brand-dropbox": "\u1018a", + "brand-drops": "\uf4d5", + "brand-drupal": "\uf393", + "brand-edge": "\uecfc", + "brand-elastic": "\uf611", + "brand-electronic-arts": "\ufa74", + "brand-ember": "\uf497", + "brand-envato": "\uf394", + "brand-etsy": "\uf654", + "brand-evernote": "\uf600", + "brand-facebook": "\uec1a", + "brand-facebook-filled": "\uf7e6", + "brand-feedly": "\ufa75", + "brand-figma": "\uec93", + "brand-filezilla": "\ufa76", + "brand-finder": "\uf218", + "brand-firebase": "\uef6e", + "brand-firefox": "\uecfd", + "brand-fiverr": "\uf7a4", + "brand-flickr": "\uecfe", + "brand-flightradar24": "\uf4d6", + "brand-flipboard": "\uf20b", + "brand-flutter": "\uf395", + "brand-fortnite": "\uf260", + "brand-foursquare": "\uecff", + "brand-framer": "\uec1b", + "brand-framer-motion": "\uf78c", + "brand-funimation": "\uf655", + "brand-gatsby": "\uf396", + "brand-git": "\uef6f", + "brand-github": "\uec1c", + "brand-github-copilot": "\uf4a8", + "brand-github-filled": "\uf7e7", + "brand-gitlab": "\uec1d", + "brand-gmail": "\uefa2", + "brand-golang": "\uf78d", + "brand-google": "\uec1f", + "brand-google-analytics": "\uedcb", + "brand-google-big-query": "\uf612", + "brand-google-drive": "\uec1e", + "brand-google-filled": "\ufd1a", + "brand-google-fit": "\uf297", + "brand-google-home": "\uf601", + "brand-google-maps": "\ufa4f", + "brand-google-one": "\uf232", + "brand-google-photos": "\uf20c", + "brand-google-play": "\ued25", + "brand-google-podcasts": "\uf656", + "brand-grammarly": "\uf32b", + "brand-graphql": "\uf32c", + "brand-gravatar": "\uedcc", + "brand-grindr": "\uf20d", + "brand-guardian": "\uf4fb", + "brand-gumroad": "\uf5d6", + "brand-hackerrank": "\uff23", + "brand-hbo": "\uf657", + "brand-headlessui": "\uf32d", + "brand-hexo": "\ufa50", + "brand-hipchat": "\uedcd", + "brand-html5": "\ued6c", + "brand-inertia": "\uf34a", + "brand-instagram": "\uec20", + "brand-instagram-filled": "\u10094", + "brand-intercom": "\uf1cf", + "brand-itch": "\ufa22", + "brand-javascript": "\uef0c", + "brand-juejin": "\uf7b0", + "brand-kako-talk": "\ufd2d", + "brand-kbin": "\ufad0", + "brand-kick": "\ufa23", + "brand-kick-filled": "\u10093", + "brand-kickstarter": "\uedce", + "brand-kotlin": "\ued6d", + "brand-laravel": "\uf34b", + "brand-lastfm": "\uf001", + "brand-leetcode": "\ufa51", + "brand-letterboxd": "\ufa24", + "brand-line": "\uf7e8", + "brand-linkedin": "\uec8c", + "brand-linkedin-filled": "\u10092", + "brand-linktree": "\uf1e7", + "brand-linqpad": "\uf562", + "brand-livewire": "\ufd76", + "brand-loom": "\uef70", + "brand-mailgun": "\uf32e", + "brand-mantine": "\uf32f", + "brand-mastercard": "\uef49", + "brand-mastodon": "\uf250", + "brand-matrix": "\uf5eb", + "brand-mcdonalds": "\uf251", + "brand-medium": "\uec70", + "brand-meetup": "\ufc6a", + "brand-mercedes": "\uf072", + "brand-messenger": "\uec71", + "brand-messenger-filled": "\u100a7", + "brand-meta": "\uefb0", + "brand-metabrainz": "\uff12", + "brand-minecraft": "\ufaef", + "brand-miniprogram": "\uf602", + "brand-mixpanel": "\uf397", + "brand-monday": "\uf219", + "brand-mongodb": "\uf613", + "brand-my-oppo": "\uf4d7", + "brand-mysql": "\uf614", + "brand-national-geographic": "\uf603", + "brand-nem": "\uf5a1", + "brand-netbeans": "\uef71", + "brand-netease-music": "\uf604", + "brand-netflix": "\uedcf", + "brand-nexo": "\uf5a2", + "brand-nextcloud": "\uf4d8", + "brand-nextjs": "\uf0dd", + "brand-nodejs": "\ufae0", + "brand-nord-vpn": "\uf37f", + "brand-notion": "\uef7b", + "brand-npm": "\uf569", + "brand-nuxt": "\uf0de", + "brand-nytimes": "\uef8d", + "brand-oauth": "\ufa52", + "brand-office": "\uf398", + "brand-ok-ru": "\uf399", + "brand-onedrive": "\uf5d7", + "brand-onlyfans": "\uf605", + "brand-open-source": "\uedd0", + "brand-open-source-filled": "\u10091", + "brand-openai": "\uf78e", + "brand-openvpn": "\uf39a", + "brand-opera": "\uec21", + "brand-opera-filled": "\u10090", + "brand-pagekit": "\uedd1", + "brand-parsinta": "\ufc42", + "brand-patreon": "\uedd2", + "brand-patreon-filled": "\ufcff", + "brand-paypal": "\uec22", + "brand-paypal-filled": "\uf7e9", + "brand-paypay": "\uf5ec", + "brand-peanut": "\uf39b", + "brand-pepsi": "\uf261", + "brand-php": "\uef72", + "brand-picsart": "\uf4d9", + "brand-pinterest": "\uec8d", + "brand-pinterest-filled": "\u1008f", + "brand-planetscale": "\uf78f", + "brand-pnpm": "\ufd77", + "brand-pocket": "\ued00", + "brand-polymer": "\uf498", + "brand-powershell": "\uf5ed", + "brand-printables": "\ufd1b", + "brand-prisma": "\uf499", + "brand-producthunt": "\uedd3", + "brand-pushbullet": "\uf330", + "brand-pushover": "\uf20e", + "brand-python": "\ued01", + "brand-qq": "\uf606", + "brand-radix-ui": "\uf790", + "brand-react": "\uf34c", + "brand-react-native": "\uef73", + "brand-reason": "\uf49a", + "brand-reddit": "\uec8e", + "brand-redhat": "\uf331", + "brand-redux": "\uf3a8", + "brand-revolut": "\uf4da", + "brand-rumble": "\ufad1", + "brand-rust": "\ufa53", + "brand-safari": "\uec23", + "brand-samsungpass": "\uf4db", + "brand-sass": "\uedd4", + "brand-sentry": "\uedd5", + "brand-sharik": "\uf4dc", + "brand-shazam": "\uedd6", + "brand-shopee": "\uf252", + "brand-sketch": "\uec24", + "brand-sketch-filled": "\u1008e", + "brand-skype": "\ued02", + "brand-slack": "\uec72", + "brand-snapchat": "\uec25", + "brand-snapchat-filled": "\u1008d", + "brand-snapseed": "\uf253", + "brand-snowflake": "\uf615", + "brand-socket-io": "\uf49b", + "brand-solidjs": "\uf5ee", + "brand-soundcloud": "\ued6e", + "brand-spacehey": "\uf4fc", + "brand-speedtest": "\ufa77", + "brand-spotify": "\ued03", + "brand-spotify-filled": "\ufe86", + "brand-stackoverflow": "\uef58", + "brand-stackshare": "\uf607", + "brand-steam": "\ued6f", + "brand-steam-filled": "\u1008c", + "brand-stocktwits": "\ufd78", + "brand-storj": "\ufa54", + "brand-storybook": "\uf332", + "brand-storytel": "\uf608", + "brand-strava": "\uf254", + "brand-stripe": "\uedd7", + "brand-stripe-filled": "\u1008b", + "brand-sublime-text": "\uef74", + "brand-sugarizer": "\uf7a5", + "brand-supabase": "\uf6d3", + "brand-superhuman": "\uf50c", + "brand-supernova": "\uf49c", + "brand-surfshark": "\uf255", + "brand-svelte": "\uf0df", + "brand-swift": "\ufa55", + "brand-symfony": "\uf616", + "brand-tabler": "\uec8f", + "brand-tabler-filled": "\u1008a", + "brand-tailwind": "\ueca1", + "brand-taobao": "\uf5ef", + "brand-teams": "\ufadf", + "brand-ted": "\uf658", + "brand-telegram": "\uec26", + "brand-terraform": "\ufa56", + "brand-tesla": "\u10099", + "brand-tether": "\uf5a3", + "brand-thingiverse": "\ufd1c", + "brand-threads": "\ufb02", + "brand-threejs": "\uf5f0", + "brand-tidal": "\ued70", + "brand-tiktok": "\uec73", + "brand-tiktok-filled": "\uf7ea", + "brand-tinder": "\ued71", + "brand-tinder-filled": "\u10089", + "brand-topbuzz": "\uf50d", + "brand-torchain": "\uf5a4", + "brand-toyota": "\uf262", + "brand-trello": "\uf39d", + "brand-tripadvisor": "\uf002", + "brand-tumblr": "\ued04", + "brand-tumblr-filled": "\u10088", + "brand-twilio": "\uf617", + "brand-twitch": "\ued05", + "brand-twitter": "\uec27", + "brand-twitter-filled": "\uf7eb", + "brand-typescript": "\uf5f1", + "brand-uber": "\uef75", + "brand-ubuntu": "\uef59", + "brand-unity": "\uf49d", + "brand-unsplash": "\uedd8", + "brand-upwork": "\uf39e", + "brand-valorant": "\uf39f", + "brand-vercel": "\uef24", + "brand-vercel-filled": "\u10087", + "brand-vimeo": "\ued06", + "brand-vimeo-filled": "\u10086", + "brand-vinted": "\uf20f", + "brand-visa": "\uf380", + "brand-visual-studio": "\uef76", + "brand-vite": "\uf5f2", + "brand-vivaldi": "\uf210", + "brand-vk": "\ued72", + "brand-vlc": "\ufa78", + "brand-volkswagen": "\uf50e", + "brand-vsco": "\uf334", + "brand-vscode": "\uf3a0", + "brand-vue": "\uf0e0", + "brand-walmart": "\uf211", + "brand-waze": "\uf5d8", + "brand-webflow": "\uf2d2", + "brand-wechat": "\uf5f3", + "brand-weibo": "\uf609", + "brand-weibo-filled": "\u100a6", + "brand-whatsapp": "\uec74", + "brand-whatsapp-filled": "\u10085", + "brand-wikipedia": "\ufa79", + "brand-windows": "\uecd8", + "brand-windows-filled": "\u10084", + "brand-windy": "\uf4dd", + "brand-wish": "\uf212", + "brand-wix": "\uf3a1", + "brand-wordpress": "\uf2d3", + "brand-x": "\ufc0f", + "brand-x-filled": "\ufc21", + "brand-xamarin": "\ufa7a", + "brand-xbox": "\uf298", + "brand-xdeep": "\ufc10", + "brand-xing": "\uf21a", + "brand-yahoo": "\ued73", + "brand-yandex": "\ufae1", + "brand-yarn": "\ufd79", + "brand-yatse": "\uf213", + "brand-ycombinator": "\uedd9", + "brand-youtube": "\uec90", + "brand-youtube-filled": "\ufc22", + "brand-youtube-kids": "\uf214", + "brand-zalando": "\uf49e", + "brand-zapier": "\uf49f", + "brand-zeit": "\uf335", + "brand-zhihu": "\uf60a", + "brand-zoom": "\uf215", + "brand-zulip": "\uf4de", + "brand-zwift": "\uf216", + "bread": "\uefa3", + "bread-filled": "\ufe85", + "bread-off": "\uf3cb", + "briefcase": "\uea46", + "briefcase-2": "\ufb03", + "briefcase-2-filled": "\ufe84", + "briefcase-filled": "\ufd00", + "briefcase-off": "\uf3cc", + "brightness": "\ueb7f", + "brightness-2": "\uee19", + "brightness-auto": "\ufd99", + "brightness-auto-filled": "\ufe83", + "brightness-down": "\ueb7d", + "brightness-down-filled": "\ufb23", + "brightness-filled": "\ufe82", + "brightness-half": "\uee1a", + "brightness-off": "\uf3cd", + "brightness-up": "\ueb7e", + "brightness-up-filled": "\ufb24", + "broadcast": "\uf1e9", + "broadcast-off": "\uf1e8", + "browser": "\uebb7", + "browser-check": "\uefd6", + "browser-maximize": "\u100b0", + "browser-minus": "\u100af", + "browser-off": "\uf0c1", + "browser-plus": "\uefd7", + "browser-share": "\u100ae", + "browser-x": "\uefd8", + "brush": "\uebb8", + "brush-off": "\uf0c2", + "bubble": "\ufeba", + "bubble-filled": "\ufec3", + "bubble-minus": "\ufebe", + "bubble-plus": "\ufebd", + "bubble-tea": "\uff51", + "bubble-tea-2": "\uff52", + "bubble-text": "\ufebc", + "bubble-text-filled": "\u100a5", + "bubble-x": "\ufebb", + "bucket": "\uea47", + "bucket-droplet": "\uf56a", + "bucket-off": "\uf103", + "bug": "\uea48", + "bug-filled": "\ufd01", + "bug-off": "\uf0c3", + "building": "\uea4f", + "building-airport": "\uffa9", + "building-arch": "\uea49", + "building-bank": "\uebe2", + "building-bridge": "\uea4b", + "building-bridge-2": "\uea4a", + "building-bridge-2-filled": "\u10189", + "building-broadcast-tower": "\uf4be", + "building-broadcast-tower-filled": "\ufe81", + "building-burj-al-arab": "\uff50", + "building-carousel": "\ued87", + "building-castle": "\ued88", + "building-church": "\uea4c", + "building-circus": "\uf4bf", + "building-cog": "\u10062", + "building-community": "\uebf6", + "building-cottage": "\uee1b", + "building-estate": "\uf5a5", + "building-factory": "\uee1c", + "building-factory-2": "\uf082", + "building-fortress": "\ued89", + "building-hospital": "\uea4d", + "building-lighthouse": "\ued8a", + "building-minus": "\u10061", + "building-monument": "\ued26", + "building-mosque": "\ufa57", + "building-off": "\ufefd", + "building-pavilion": "\uebf7", + "building-plus": "\u10060", + "building-skyscraper": "\uec39", + "building-stadium": "\uf641", + "building-store": "\uea4e", + "building-tunnel": "\uf5a6", + "building-warehouse": "\uebe3", + "building-wind-turbine": "\uf4c0", + "buildings": "\uff40", + "bulb": "\uea51", + "bulb-filled": "\uf66a", + "bulb-off": "\uea50", + "bulldozer": "\uee1d", + "burger": "\ufcb4", + "bus": "\uebe4", + "bus-filled": "\u100ff", + "bus-off": "\uf3ce", + "bus-stop": "\uf2d4", + "businessplan": "\uee1e", + "butterfly": "\uefd9", + "butterfly-filled": "\u10016", + "cactus": "\uf21b", + "cactus-filled": "\ufb25", + "cactus-off": "\uf3cf", + "cake": "\uf00f", + "cake-off": "\uf104", + "cake-roll": "\u100bd", + "calculator": "\ueb80", + "calculator-filled": "\ufb26", + "calculator-off": "\uf0c4", + "calendar": "\uea53", + "calendar-bolt": "\uf822", + "calendar-cancel": "\uf823", + "calendar-check": "\uf824", + "calendar-clock": "\ufd2e", + "calendar-code": "\uf825", + "calendar-cog": "\uf826", + "calendar-dollar": "\uf827", + "calendar-dot": "\ufd3e", + "calendar-down": "\uf828", + "calendar-due": "\uf621", + "calendar-event": "\uea52", + "calendar-event-filled": "\u100b9", + "calendar-exclamation": "\uf829", + "calendar-filled": "\ufb27", + "calendar-heart": "\uf82a", + "calendar-minus": "\uebb9", + "calendar-month": "\ufd2f", + "calendar-month-filled": "\u100b8", + "calendar-off": "\uee1f", + "calendar-pause": "\uf82b", + "calendar-pin": "\uf82c", + "calendar-plus": "\uebba", + "calendar-question": "\uf82d", + "calendar-repeat": "\ufad2", + "calendar-sad": "\ufd1d", + "calendar-search": "\uf82e", + "calendar-share": "\uf82f", + "calendar-smile": "\ufd1e", + "calendar-star": "\uf830", + "calendar-stats": "\uee20", + "calendar-time": "\uee21", + "calendar-up": "\uf831", + "calendar-user": "\ufd1f", + "calendar-week": "\ufd30", + "calendar-week-filled": "\u100b7", + "calendar-x": "\uf832", + "camera": "\uea54", + "camera-ai": "\uffa8", + "camera-bitcoin": "\uffa7", + "camera-bolt": "\uf833", + "camera-cancel": "\uf834", + "camera-check": "\uf835", + "camera-code": "\uf836", + "camera-cog": "\uf837", + "camera-dollar": "\uf838", + "camera-down": "\uf839", + "camera-exclamation": "\uf83a", + "camera-filled": "\ufa37", + "camera-heart": "\uf83b", + "camera-minus": "\uec3a", + "camera-moon": "\uffa6", + "camera-off": "\uecee", + "camera-pause": "\uf83c", + "camera-pin": "\uf83d", + "camera-plus": "\uec3b", + "camera-question": "\uf83e", + "camera-rotate": "\uee22", + "camera-search": "\uf83f", + "camera-selfie": "\uee23", + "camera-share": "\uf840", + "camera-spark": "\uffbc", + "camera-star": "\uf841", + "camera-up": "\uf842", + "camera-x": "\uf843", + "camper": "\ufa25", + "campfire": "\uf5a7", + "campfire-filled": "\ufb28", + "cancel": "\uff11", + "candle": "\uefc6", + "candle-filled": "\ufc23", + "candy": "\uef0d", + "candy-off": "\uf0c5", + "cane": "\uf50f", + "cannabis": "\uf4c1", + "cannabis-filled": "\u10015", + "cap-projecting": "\uff22", + "cap-rounded": "\uff21", + "cap-straight": "\uff20", + "capsule": "\ufae3", + "capsule-filled": "\ufc24", + "capsule-horizontal": "\ufae2", + "capsule-horizontal-filled": "\ufc25", + "capture": "\uec3c", + "capture-filled": "\ufb29", + "capture-off": "\uf0c6", + "car": "\uebbb", + "car-4wd": "\ufdb8", + "car-4wd-filled": "\u1001e", + "car-crane": "\uef25", + "car-crane-filled": "\u100fe", + "car-crash": "\uefa4", + "car-fan": "\ufdb3", + "car-fan-1": "\ufdb7", + "car-fan-2": "\ufdb6", + "car-fan-3": "\ufdb5", + "car-fan-auto": "\ufdb4", + "car-fan-filled": "\u1001d", + "car-filled": "\u1004c", + "car-garage": "\ufc77", + "car-off": "\uf0c7", + "car-suv": "\ufc8b", + "car-suv-filled": "\u1004d", + "car-turbine": "\uf4fd", + "carambola": "\ufeb9", + "carambola-filled": "\u10014", + "caravan": "\uec7c", + "caravan-filled": "\u100fd", + "cardboards": "\ued74", + "cardboards-filled": "\u1001c", + "cardboards-off": "\uf0c8", + "cards": "\uf510", + "cards-filled": "\ufc26", + "caret-down": "\ueb5d", + "caret-down-filled": "\ufb2a", + "caret-left": "\ueb5e", + "caret-left-filled": "\ufb2b", + "caret-left-right": "\ufc43", + "caret-left-right-filled": "\ufd02", + "caret-right": "\ueb5f", + "caret-right-filled": "\ufb2c", + "caret-up": "\ueb60", + "caret-up-down": "\ufc44", + "caret-up-down-filled": "\ufd03", + "caret-up-filled": "\ufb2d", + "carousel-horizontal": "\uf659", + "carousel-horizontal-filled": "\ufa92", + "carousel-vertical": "\uf65a", + "carousel-vertical-filled": "\ufa93", + "carrot": "\uf21c", + "carrot-off": "\uf3d0", + "cash": "\uea55", + "cash-banknote": "\uee25", + "cash-banknote-edit": "\u10149", + "cash-banknote-filled": "\ufe80", + "cash-banknote-heart": "\u10148", + "cash-banknote-minus": "\u10147", + "cash-banknote-move": "\u10145", + "cash-banknote-move-back": "\u10146", + "cash-banknote-off": "\uee24", + "cash-banknote-plus": "\u10144", + "cash-edit": "\u10143", + "cash-heart": "\u10142", + "cash-minus": "\u10141", + "cash-move": "\u1013f", + "cash-move-back": "\u10140", + "cash-off": "\uf105", + "cash-plus": "\u1013e", + "cash-register": "\ufee6", + "cast": "\uea56", + "cast-off": "\uf0c9", + "cat": "\uf65b", + "category": "\uf1f6", + "category-2": "\uf1f5", + "category-filled": "\ufb2e", + "category-minus": "\ufd20", + "category-plus": "\ufd21", + "ce": "\ued75", + "ce-off": "\uf0ca", + "cell": "\uf05f", + "cell-signal-1": "\uf083", + "cell-signal-2": "\uf084", + "cell-signal-3": "\uf085", + "cell-signal-4": "\uf086", + "cell-signal-5": "\uf087", + "cell-signal-off": "\uf088", + "certificate": "\ued76", + "certificate-2": "\uf073", + "certificate-2-off": "\uf0cb", + "certificate-off": "\uf0cc", + "chair-director": "\uf2d5", + "chalkboard": "\uf34d", + "chalkboard-off": "\uf3d1", + "chalkboard-teacher": "\u10160", + "charging-pile": "\uee26", + "charging-pile-filled": "\u1001b", + "chart-arcs": "\uee28", + "chart-arcs-3": "\uee27", + "chart-area": "\uea58", + "chart-area-filled": "\uf66b", + "chart-area-line": "\uea57", + "chart-area-line-filled": "\uf66c", + "chart-arrows": "\uee2a", + "chart-arrows-vertical": "\uee29", + "chart-bar": "\uea59", + "chart-bar-off": "\uf3d2", + "chart-bar-popular": "\ufef7", + "chart-bubble": "\uec75", + "chart-bubble-filled": "\uf66d", + "chart-candle": "\uea5a", + "chart-candle-filled": "\uf66e", + "chart-circles": "\uee2b", + "chart-cohort": "\ufef6", + "chart-column": "\uffa5", + "chart-covariate": "\uffa4", + "chart-donut": "\uea5b", + "chart-donut-2": "\uee2c", + "chart-donut-3": "\uee2d", + "chart-donut-4": "\uee2e", + "chart-donut-filled": "\uf66f", + "chart-dots": "\uee2f", + "chart-dots-2": "\uf097", + "chart-dots-2-filled": "\u100dd", + "chart-dots-3": "\uf098", + "chart-dots-3-filled": "\u100dc", + "chart-dots-filled": "\ufd04", + "chart-funnel": "\ufef5", + "chart-funnel-filled": "\u100db", + "chart-grid-dots": "\uf4c2", + "chart-grid-dots-filled": "\ufd05", + "chart-histogram": "\uf65c", + "chart-infographic": "\uee30", + "chart-line": "\uea5c", + "chart-pie": "\uea5d", + "chart-pie-2": "\uee31", + "chart-pie-2-filled": "\u100da", + "chart-pie-3": "\uee32", + "chart-pie-3-filled": "\u100d9", + "chart-pie-4": "\uee33", + "chart-pie-4-filled": "\u100d8", + "chart-pie-filled": "\uf670", + "chart-pie-off": "\uf3d3", + "chart-ppf": "\uf618", + "chart-radar": "\ued77", + "chart-sankey": "\uf619", + "chart-scatter": "\ufd93", + "chart-scatter-3d": "\ufd92", + "chart-treemap": "\uf381", + "check": "\uea5e", + "checkbox": "\ueba6", + "checklist": "\uf074", + "checks": "\uebaa", + "checkup-list": "\uef5a", + "cheese": "\uef26", + "chef-hat": "\uf21d", + "chef-hat-filled": "\u100d7", + "chef-hat-off": "\uf3d4", + "cherry": "\uf511", + "cherry-filled": "\uf728", + "chess": "\uf382", + "chess-bishop": "\uf56b", + "chess-bishop-filled": "\uf729", + "chess-filled": "\uf72a", + "chess-king": "\uf56c", + "chess-king-filled": "\uf72b", + "chess-knight": "\uf56d", + "chess-knight-filled": "\uf72c", + "chess-queen": "\uf56e", + "chess-queen-filled": "\uf72d", + "chess-rook": "\uf56f", + "chess-rook-filled": "\uf72e", + "chevron-compact-down": "\ufaf0", + "chevron-compact-left": "\ufaf1", + "chevron-compact-right": "\ufaf2", + "chevron-compact-up": "\ufaf3", + "chevron-down": "\uea5f", + "chevron-down-left": "\ued09", + "chevron-down-right": "\ued0a", + "chevron-left": "\uea60", + "chevron-left-pipe": "\ufae4", + "chevron-right": "\uea61", + "chevron-right-pipe": "\ufae5", + "chevron-up": "\uea62", + "chevron-up-left": "\ued0b", + "chevron-up-right": "\ued0c", + "chevrons-down": "\uea63", + "chevrons-down-left": "\ued0d", + "chevrons-down-right": "\ued0e", + "chevrons-left": "\uea64", + "chevrons-right": "\uea65", + "chevrons-up": "\uea66", + "chevrons-up-left": "\ued0f", + "chevrons-up-right": "\ued10", + "chisel": "\uf383", + "christmas-ball": "\ufd31", + "christmas-tree": "\ued78", + "christmas-tree-filled": "\u1001a", + "christmas-tree-off": "\uf3d5", + "circle": "\uea6b", + "circle-0": "\uee34", + "circle-1": "\uee35", + "circle-2": "\uee36", + "circle-3": "\uee37", + "circle-4": "\uee38", + "circle-5": "\uee39", + "circle-6": "\uee3a", + "circle-7": "\uee3b", + "circle-8": "\uee3c", + "circle-9": "\uee3d", + "circle-arrow-down": "\uf6f9", + "circle-arrow-down-filled": "\uf6f4", + "circle-arrow-down-left": "\uf6f6", + "circle-arrow-down-left-filled": "\uf6f5", + "circle-arrow-down-right": "\uf6f8", + "circle-arrow-down-right-filled": "\uf6f7", + "circle-arrow-left": "\uf6fb", + "circle-arrow-left-filled": "\uf6fa", + "circle-arrow-right": "\uf6fd", + "circle-arrow-right-filled": "\uf6fc", + "circle-arrow-up": "\uf703", + "circle-arrow-up-filled": "\uf6fe", + "circle-arrow-up-left": "\uf700", + "circle-arrow-up-left-filled": "\uf6ff", + "circle-arrow-up-right": "\uf702", + "circle-arrow-up-right-filled": "\uf701", + "circle-caret-down": "\uf4a9", + "circle-caret-down-filled": "\u100d6", + "circle-caret-left": "\uf4aa", + "circle-caret-left-filled": "\u100d5", + "circle-caret-right": "\uf4ab", + "circle-caret-right-filled": "\u100d4", + "circle-caret-up": "\uf4ac", + "circle-caret-up-filled": "\u100d3", + "circle-check": "\uea67", + "circle-check-filled": "\uf704", + "circle-chevron-down": "\uf622", + "circle-chevron-down-filled": "\u100d2", + "circle-chevron-left": "\uf623", + "circle-chevron-left-filled": "\u100d1", + "circle-chevron-right": "\uf624", + "circle-chevron-right-filled": "\u100d0", + "circle-chevron-up": "\uf625", + "circle-chevron-up-filled": "\u100cf", + "circle-chevrons-down": "\uf642", + "circle-chevrons-down-filled": "\u100ef", + "circle-chevrons-left": "\uf643", + "circle-chevrons-left-filled": "\u100ee", + "circle-chevrons-right": "\uf644", + "circle-chevrons-right-filled": "\u100ed", + "circle-chevrons-up": "\uf645", + "circle-chevrons-up-filled": "\u100ec", + "circle-dashed": "\ued27", + "circle-dashed-check": "\ufeb8", + "circle-dashed-letter-a": "\uff9a", + "circle-dashed-letter-b": "\uff99", + "circle-dashed-letter-c": "\uff98", + "circle-dashed-letter-d": "\uff97", + "circle-dashed-letter-e": "\uff96", + "circle-dashed-letter-f": "\uff95", + "circle-dashed-letter-g": "\uff94", + "circle-dashed-letter-h": "\uff93", + "circle-dashed-letter-i": "\uff92", + "circle-dashed-letter-j": "\uff91", + "circle-dashed-letter-k": "\uff90", + "circle-dashed-letter-l": "\uff8f", + "circle-dashed-letter-letter-v": "\uff84", + "circle-dashed-letter-m": "\uff8d", + "circle-dashed-letter-n": "\uff8c", + "circle-dashed-letter-o": "\uff8b", + "circle-dashed-letter-p": "\uff8a", + "circle-dashed-letter-q": "\uff89", + "circle-dashed-letter-r": "\uff88", + "circle-dashed-letter-s": "\uff87", + "circle-dashed-letter-t": "\uff86", + "circle-dashed-letter-u": "\uff85", + "circle-dashed-letter-v": "\uff84", + "circle-dashed-letter-w": "\uff83", + "circle-dashed-letter-x": "\uff82", + "circle-dashed-letter-y": "\uff81", + "circle-dashed-letter-z": "\uff80", + "circle-dashed-minus": "\ufeb7", + "circle-dashed-number-0": "\ufc6b", + "circle-dashed-number-1": "\ufc6c", + "circle-dashed-number-2": "\ufc6d", + "circle-dashed-number-3": "\ufc6e", + "circle-dashed-number-4": "\ufc6f", + "circle-dashed-number-5": "\ufc70", + "circle-dashed-number-6": "\ufc71", + "circle-dashed-number-7": "\ufc72", + "circle-dashed-number-8": "\ufc73", + "circle-dashed-number-9": "\ufc74", + "circle-dashed-percentage": "\ufd7a", + "circle-dashed-plus": "\ufeb6", + "circle-dashed-x": "\ufc75", + "circle-dot": "\uefb1", + "circle-dot-filled": "\uf705", + "circle-dotted": "\ued28", + "circle-dotted-letter-a": "\uff7f", + "circle-dotted-letter-b": "\uff7e", + "circle-dotted-letter-c": "\uff7d", + "circle-dotted-letter-d": "\uff7c", + "circle-dotted-letter-e": "\uff7b", + "circle-dotted-letter-f": "\uff7a", + "circle-dotted-letter-g": "\uff79", + "circle-dotted-letter-h": "\uff78", + "circle-dotted-letter-i": "\uff77", + "circle-dotted-letter-j": "\uff76", + "circle-dotted-letter-k": "\uff75", + "circle-dotted-letter-l": "\uff74", + "circle-dotted-letter-m": "\uff73", + "circle-dotted-letter-n": "\uff72", + "circle-dotted-letter-o": "\uff71", + "circle-dotted-letter-p": "\uff70", + "circle-dotted-letter-q": "\uff6f", + "circle-dotted-letter-r": "\uff6e", + "circle-dotted-letter-s": "\uff6d", + "circle-dotted-letter-t": "\uff6c", + "circle-dotted-letter-u": "\uff6b", + "circle-dotted-letter-v": "\uff6a", + "circle-dotted-letter-w": "\uff69", + "circle-dotted-letter-x": "\uff68", + "circle-dotted-letter-y": "\uff67", + "circle-dotted-letter-z": "\uff66", + "circle-filled": "\uf671", + "circle-half": "\uee3f", + "circle-half-2": "\ueff3", + "circle-half-vertical": "\uee3e", + "circle-key": "\uf633", + "circle-key-filled": "\uf706", + "circle-letter-a": "\uf441", + "circle-letter-a-filled": "\ufe7f", + "circle-letter-b": "\uf442", + "circle-letter-b-filled": "\ufe7e", + "circle-letter-c": "\uf443", + "circle-letter-c-filled": "\ufe7d", + "circle-letter-d": "\uf444", + "circle-letter-d-filled": "\ufe7c", + "circle-letter-e": "\uf445", + "circle-letter-e-filled": "\ufe7b", + "circle-letter-f": "\uf446", + "circle-letter-f-filled": "\ufe7a", + "circle-letter-g": "\uf447", + "circle-letter-g-filled": "\ufe79", + "circle-letter-h": "\uf448", + "circle-letter-h-filled": "\ufe78", + "circle-letter-i": "\uf449", + "circle-letter-i-filled": "\ufe77", + "circle-letter-j": "\uf44a", + "circle-letter-j-filled": "\ufe76", + "circle-letter-k": "\uf44b", + "circle-letter-k-filled": "\ufe75", + "circle-letter-l": "\uf44c", + "circle-letter-l-filled": "\ufe74", + "circle-letter-m": "\uf44d", + "circle-letter-m-filled": "\ufe73", + "circle-letter-n": "\uf44e", + "circle-letter-n-filled": "\ufe72", + "circle-letter-o": "\uf44f", + "circle-letter-o-filled": "\ufe71", + "circle-letter-p": "\uf450", + "circle-letter-p-filled": "\ufe70", + "circle-letter-q": "\uf451", + "circle-letter-q-filled": "\ufe6f", + "circle-letter-r": "\uf452", + "circle-letter-r-filled": "\ufe6e", + "circle-letter-s": "\uf453", + "circle-letter-s-filled": "\ufe6d", + "circle-letter-t": "\uf454", + "circle-letter-t-filled": "\ufe6c", + "circle-letter-u": "\uf455", + "circle-letter-u-filled": "\ufe6b", + "circle-letter-v": "\uf4ad", + "circle-letter-v-filled": "\ufe6a", + "circle-letter-w": "\uf456", + "circle-letter-w-filled": "\ufe69", + "circle-letter-x": "\uf4ae", + "circle-letter-x-filled": "\ufe68", + "circle-letter-y": "\uf457", + "circle-letter-y-filled": "\ufe67", + "circle-letter-z": "\uf458", + "circle-letter-z-filled": "\ufe66", + "circle-minus": "\uea68", + "circle-minus-2": "\ufc8c", + "circle-number-0": "\uee34", + "circle-number-0-filled": "\uf72f", + "circle-number-1": "\uee35", + "circle-number-1-filled": "\uf730", + "circle-number-2": "\uee36", + "circle-number-2-filled": "\uf731", + "circle-number-3": "\uee37", + "circle-number-3-filled": "\uf732", + "circle-number-4": "\uee38", + "circle-number-4-filled": "\uf733", + "circle-number-5": "\uee39", + "circle-number-5-filled": "\uf734", + "circle-number-6": "\uee3a", + "circle-number-6-filled": "\uf735", + "circle-number-7": "\uee3b", + "circle-number-7-filled": "\uf736", + "circle-number-8": "\uee3c", + "circle-number-8-filled": "\uf737", + "circle-number-9": "\uee3d", + "circle-number-9-filled": "\uf738", + "circle-off": "\uee40", + "circle-percentage": "\ufd7b", + "circle-percentage-filled": "\ufed5", + "circle-plus": "\uea69", + "circle-plus-2": "\ufc8d", + "circle-plus-filled": "\ufef9", + "circle-rectangle": "\uf010", + "circle-rectangle-filled": "\uff63", + "circle-rectangle-off": "\uf0cd", + "circle-square": "\uece4", + "circle-triangle": "\uf011", + "circle-x": "\uea6a", + "circle-x-filled": "\uf739", + "circles": "\uece5", + "circles-filled": "\uf672", + "circles-relation": "\uf4c3", + "circuit-ammeter": "\uf271", + "circuit-battery": "\uf272", + "circuit-bulb": "\uf273", + "circuit-capacitor": "\uf275", + "circuit-capacitor-polarized": "\uf274", + "circuit-cell": "\uf277", + "circuit-cell-plus": "\uf276", + "circuit-changeover": "\uf278", + "circuit-diode": "\uf27a", + "circuit-diode-zener": "\uf279", + "circuit-ground": "\uf27c", + "circuit-ground-digital": "\uf27b", + "circuit-inductor": "\uf27d", + "circuit-motor": "\uf27e", + "circuit-pushbutton": "\uf27f", + "circuit-resistor": "\uf280", + "circuit-switch-closed": "\uf281", + "circuit-switch-open": "\uf282", + "circuit-voltmeter": "\uf283", + "clear-all": "\uee41", + "clear-formatting": "\uebe5", + "click": "\uebbc", + "cliff-jumping": "\ufefc", + "clipboard": "\uea6f", + "clipboard-check": "\uea6c", + "clipboard-check-filled": "\u100ce", + "clipboard-copy": "\uf299", + "clipboard-data": "\uf563", + "clipboard-data-filled": "\u100eb", + "clipboard-filled": "\u100cc", + "clipboard-heart": "\uf34e", + "clipboard-list": "\uea6d", + "clipboard-list-filled": "\u100ea", + "clipboard-off": "\uf0ce", + "clipboard-plus": "\uefb2", + "clipboard-plus-filled": "\u10176", + "clipboard-search": "\u10098", + "clipboard-smile": "\ufd9a", + "clipboard-smile-filled": "\u10175", + "clipboard-text": "\uf089", + "clipboard-text-filled": "\u100e9", + "clipboard-typography": "\uf34f", + "clipboard-typography-filled": "\u100e8", + "clipboard-x": "\uea6e", + "clipboard-x-filled": "\u100cd", + "clock": "\uea70", + "clock-12": "\ufc56", + "clock-2": "\uf099", + "clock-24": "\ufc57", + "clock-bitcoin": "\uff3f", + "clock-bolt": "\uf844", + "clock-cancel": "\uf546", + "clock-check": "\uf7c1", + "clock-code": "\uf845", + "clock-cog": "\uf7c2", + "clock-dollar": "\uf846", + "clock-down": "\uf7c3", + "clock-edit": "\uf547", + "clock-exclamation": "\uf847", + "clock-filled": "\uf73a", + "clock-heart": "\uf7c4", + "clock-hour-1": "\uf313", + "clock-hour-1-filled": "\ufe65", + "clock-hour-10": "\uf314", + "clock-hour-10-filled": "\ufe64", + "clock-hour-11": "\uf315", + "clock-hour-11-filled": "\ufe63", + "clock-hour-12": "\uf316", + "clock-hour-12-filled": "\ufe62", + "clock-hour-2": "\uf317", + "clock-hour-2-filled": "\ufe61", + "clock-hour-3": "\uf318", + "clock-hour-3-filled": "\ufe60", + "clock-hour-4": "\uf319", + "clock-hour-4-filled": "\ufe5f", + "clock-hour-5": "\uf31a", + "clock-hour-5-filled": "\ufe5e", + "clock-hour-6": "\uf31b", + "clock-hour-6-filled": "\ufe5d", + "clock-hour-7": "\uf31c", + "clock-hour-7-filled": "\ufe5c", + "clock-hour-8": "\uf31d", + "clock-hour-8-filled": "\ufe5b", + "clock-hour-9": "\uf31e", + "clock-hour-9-filled": "\ufe5a", + "clock-minus": "\uf848", + "clock-off": "\uf0cf", + "clock-pause": "\uf548", + "clock-pin": "\uf849", + "clock-play": "\uf549", + "clock-plus": "\uf7c5", + "clock-question": "\uf7c6", + "clock-record": "\uf54a", + "clock-search": "\uf7c7", + "clock-share": "\uf84a", + "clock-shield": "\uf7c8", + "clock-star": "\uf7c9", + "clock-stop": "\uf54b", + "clock-up": "\uf7ca", + "clock-x": "\uf7cb", + "clothes-rack": "\uf285", + "clothes-rack-off": "\uf3d6", + "cloud": "\uea76", + "cloud-bitcoin": "\uff3e", + "cloud-bolt": "\uf84b", + "cloud-cancel": "\uf84c", + "cloud-check": "\uf84d", + "cloud-code": "\uf84e", + "cloud-cog": "\uf84f", + "cloud-computing": "\uf1d0", + "cloud-computing-filled": "\u1010d", + "cloud-data-connection": "\uf1d1", + "cloud-data-connection-filled": "\u1010c", + "cloud-dollar": "\uf850", + "cloud-down": "\uf851", + "cloud-download": "\uea71", + "cloud-exclamation": "\uf852", + "cloud-filled": "\uf673", + "cloud-fog": "\uecd9", + "cloud-heart": "\uf853", + "cloud-lock": "\uefdb", + "cloud-lock-open": "\uefda", + "cloud-minus": "\uf854", + "cloud-network": "\ufc78", + "cloud-off": "\ued3e", + "cloud-pause": "\uf855", + "cloud-pin": "\uf856", + "cloud-plus": "\uf857", + "cloud-question": "\uf858", + "cloud-rain": "\uea72", + "cloud-search": "\uf859", + "cloud-share": "\uf85a", + "cloud-snow": "\uea73", + "cloud-star": "\uf85b", + "cloud-storm": "\uea74", + "cloud-up": "\uf85c", + "cloud-upload": "\uea75", + "cloud-x": "\uf85d", + "clover": "\uf1ea", + "clover-2": "\uf21e", + "clover-filled": "\u10013", + "clubs": "\ueff4", + "clubs-filled": "\uf674", + "code": "\uea77", + "code-asterisk": "\uf312", + "code-asterix": "\uf312", + "code-circle": "\uf4ff", + "code-circle-2": "\uf4fe", + "code-circle-2-filled": "\ufed4", + "code-circle-filled": "\ufed3", + "code-dots": "\uf61a", + "code-minus": "\uee42", + "code-off": "\uf0d0", + "code-plus": "\uee43", + "code-variable": "\u100ab", + "code-variable-minus": "\u100ad", + "code-variable-plus": "\u100ac", + "coffee": "\uef0e", + "coffee-off": "\uf106", + "coffin": "\uf579", + "coin": "\ueb82", + "coin-bitcoin": "\uf2be", + "coin-bitcoin-filled": "\ufd06", + "coin-euro": "\uf2bf", + "coin-euro-filled": "\ufd07", + "coin-filled": "\ufd08", + "coin-monero": "\uf4a0", + "coin-monero-filled": "\ufd09", + "coin-off": "\uf0d1", + "coin-pound": "\uf2c0", + "coin-pound-filled": "\ufd0a", + "coin-rupee": "\uf2c1", + "coin-rupee-filled": "\ufd0b", + "coin-taka": "\ufd0d", + "coin-taka-filled": "\ufd0c", + "coin-yen": "\uf2c2", + "coin-yen-filled": "\ufd0e", + "coin-yuan": "\uf2c3", + "coin-yuan-filled": "\ufd0f", + "coins": "\uf65d", + "color-filter": "\uf5a8", + "color-picker": "\uebe6", + "color-picker-off": "\uf0d2", + "color-swatch": "\ueb61", + "color-swatch-off": "\uf0d3", + "column-insert-left": "\uee44", + "column-insert-right": "\uee45", + "column-remove": "\ufaf4", + "columns": "\ueb83", + "columns-1": "\uf6d4", + "columns-1-filled": "\u10188", + "columns-2": "\uf6d5", + "columns-2-filled": "\u10187", + "columns-3": "\uf6d6", + "columns-3-filled": "\u10186", + "columns-off": "\uf0d4", + "comet": "\uec76", + "command": "\uea78", + "command-off": "\uf3d7", + "compass": "\uea79", + "compass-filled": "\ufd10", + "compass-off": "\uf0d5", + "components": "\uefa5", + "components-off": "\uf0d6", + "cone": "\uefdd", + "cone-2": "\uefdc", + "cone-2-filled": "\ufe59", + "cone-filled": "\ufe58", + "cone-off": "\uf3d8", + "cone-plus": "\ufa94", + "confetti": "\uee46", + "confetti-filled": "\u10185", + "confetti-off": "\uf3d9", + "confucius": "\uf58a", + "congruent-to": "\uffa3", + "container": "\uee47", + "container-filled": "\u10184", + "container-off": "\uf107", + "contract": "\ufefb", + "contrast": "\uec4e", + "contrast-2": "\uefc7", + "contrast-2-filled": "\ufe57", + "contrast-2-off": "\uf3da", + "contrast-filled": "\ufe56", + "contrast-off": "\uf3db", + "cooker": "\uf57a", + "cookie": "\ufdb1", + "cookie-filled": "\ufe54", + "cookie-man": "\ufdb2", + "cookie-man-filled": "\ufe55", + "cookie-off": "\uf0d7", + "copy": "\uea7a", + "copy-check": "\ufdb0", + "copy-check-filled": "\ufe53", + "copy-minus": "\ufdaf", + "copy-minus-filled": "\ufe52", + "copy-off": "\uf0d8", + "copy-plus": "\ufdae", + "copy-plus-filled": "\ufe51", + "copy-x": "\ufdad", + "copy-x-filled": "\ufe50", + "copyleft": "\uec3d", + "copyleft-filled": "\uf73b", + "copyleft-off": "\uf0d9", + "copyright": "\uea7b", + "copyright-filled": "\uf73c", + "copyright-off": "\uf0da", + "corner-down-left": "\uea7c", + "corner-down-left-double": "\uee48", + "corner-down-right": "\uea7d", + "corner-down-right-double": "\uee49", + "corner-left-down": "\uea7e", + "corner-left-down-double": "\uee4a", + "corner-left-up": "\uea7f", + "corner-left-up-double": "\uee4b", + "corner-right-down": "\uea80", + "corner-right-down-double": "\uee4c", + "corner-right-up": "\uea81", + "corner-right-up-double": "\uee4d", + "corner-up-left": "\uea82", + "corner-up-left-double": "\uee4e", + "corner-up-right": "\uea83", + "corner-up-right-double": "\uee4f", + "cpu": "\uef8e", + "cpu-2": "\uf075", + "cpu-off": "\uf108", + "crane": "\uef27", + "crane-off": "\uf109", + "creative-commons": "\uefb3", + "creative-commons-by": "\uf21f", + "creative-commons-nc": "\uf220", + "creative-commons-nd": "\uf221", + "creative-commons-off": "\uf10a", + "creative-commons-sa": "\uf222", + "creative-commons-zero": "\uf223", + "credit-card": "\uea84", + "credit-card-filled": "\ufd11", + "credit-card-off": "\ued11", + "credit-card-pay": "\ufd32", + "credit-card-refund": "\ufd33", + "cricket": "\uf09a", + "crop": "\uea85", + "crop-1-1": "\ufd50", + "crop-1-1-filled": "\ufe4f", + "crop-16-9": "\ufd51", + "crop-16-9-filled": "\ufe4e", + "crop-3-2": "\ufd52", + "crop-3-2-filled": "\ufe4d", + "crop-5-4": "\ufd53", + "crop-5-4-filled": "\ufe4c", + "crop-7-5": "\ufd54", + "crop-7-5-filled": "\ufe4b", + "crop-landscape": "\ufd55", + "crop-landscape-filled": "\ufe4a", + "crop-portrait": "\ufd56", + "crop-portrait-filled": "\ufe49", + "cross": "\uef8f", + "cross-filled": "\uf675", + "cross-off": "\uf10b", + "crosshair": "\uec3e", + "crown": "\ued12", + "crown-off": "\uee50", + "crutches": "\uef5b", + "crutches-off": "\uf10c", + "crystal-ball": "\uf57b", + "csv": "\uf791", + "cube": "\ufa97", + "cube-3d-sphere": "\uecd7", + "cube-3d-sphere-off": "\uf3b5", + "cube-off": "\ufa95", + "cube-plus": "\ufa96", + "cube-send": "\uf61b", + "cube-spark": "\uffbb", + "cube-unfolded": "\uf61c", + "cup": "\uef28", + "cup-off": "\uf10d", + "curling": "\uefc8", + "curly-loop": "\uecda", + "currency": "\uefa6", + "currency-afghani": "\uf65e", + "currency-bahraini": "\uee51", + "currency-baht": "\uf08a", + "currency-bitcoin": "\uebab", + "currency-cent": "\uee53", + "currency-dinar": "\uee54", + "currency-dirham": "\uee55", + "currency-dogecoin": "\uef4b", + "currency-dollar": "\ueb84", + "currency-dollar-australian": "\uee56", + "currency-dollar-brunei": "\uf36c", + "currency-dollar-canadian": "\uee57", + "currency-dollar-guyanese": "\uf36d", + "currency-dollar-off": "\uf3dc", + "currency-dollar-singapore": "\uee58", + "currency-dollar-zimbabwean": "\uf36e", + "currency-dong": "\uf36f", + "currency-dram": "\uf370", + "currency-ethereum": "\uee59", + "currency-euro": "\ueb85", + "currency-euro-off": "\uf3dd", + "currency-florin": "\ufaf5", + "currency-forint": "\uee5a", + "currency-frank": "\uee5b", + "currency-guarani": "\uf371", + "currency-hryvnia": "\uf372", + "currency-iranian-rial": "\ufa58", + "currency-kip": "\uf373", + "currency-krone-czech": "\uee5c", + "currency-krone-danish": "\uee5d", + "currency-krone-swedish": "\uee5e", + "currency-lari": "\uf374", + "currency-leu": "\uee5f", + "currency-lira": "\uee60", + "currency-litecoin": "\uee61", + "currency-lyd": "\uf375", + "currency-manat": "\uf376", + "currency-monero": "\uf377", + "currency-naira": "\uee62", + "currency-nano": "\uf7a6", + "currency-off": "\uf3de", + "currency-paanga": "\uf378", + "currency-peso": "\uf65f", + "currency-pound": "\uebac", + "currency-pound-off": "\uf3df", + "currency-quetzal": "\uf379", + "currency-real": "\uee63", + "currency-renminbi": "\uee64", + "currency-ripple": "\uee65", + "currency-riyal": "\uee66", + "currency-rubel": "\uee67", + "currency-rufiyaa": "\uf37a", + "currency-rupee": "\uebad", + "currency-rupee-nepalese": "\uf37b", + "currency-shekel": "\uee68", + "currency-solana": "\uf4a1", + "currency-som": "\uf37c", + "currency-taka": "\uee69", + "currency-tenge": "\uf37d", + "currency-tugrik": "\uee6a", + "currency-won": "\uee6b", + "currency-xrp": "\ufd34", + "currency-yen": "\uebae", + "currency-yen-off": "\uf3e0", + "currency-yuan": "\uf29a", + "currency-zloty": "\uee6c", + "current-location": "\uecef", + "current-location-filled": "\u10125", + "current-location-off": "\uf10e", + "cursor-off": "\uf10f", + "cursor-text": "\uee6d", + "cut": "\uea86", + "cylinder": "\uf54c", + "cylinder-off": "\ufa98", + "cylinder-plus": "\ufa99", + "dashboard": "\uea87", + "dashboard-filled": "\u10019", + "dashboard-off": "\uf3e1", + "database": "\uea88", + "database-cog": "\ufa10", + "database-dollar": "\ufa11", + "database-edit": "\ufa12", + "database-exclamation": "\ufa13", + "database-export": "\uee6e", + "database-heart": "\ufa14", + "database-import": "\uee6f", + "database-leak": "\ufa15", + "database-minus": "\ufa16", + "database-off": "\uee70", + "database-plus": "\ufa17", + "database-search": "\ufa18", + "database-share": "\ufa19", + "database-smile": "\ufd9b", + "database-star": "\ufa1a", + "database-x": "\ufa1b", + "decimal": "\ufa26", + "deer": "\uf4c5", + "delta": "\uf53c", + "dental": "\uf025", + "dental-broken": "\uf286", + "dental-off": "\uf110", + "deselect": "\uf9f3", + "desk": "\ufd35", + "details": "\uee71", + "details-off": "\uf3e2", + "device-airpods": "\uf5a9", + "device-airpods-case": "\uf646", + "device-airtag": "\ufae6", + "device-analytics": "\uee72", + "device-audio-tape": "\uee73", + "device-camera-phone": "\uf233", + "device-cctv": "\uee74", + "device-cctv-filled": "\u1004b", + "device-cctv-off": "\uf3e3", + "device-computer-camera": "\uee76", + "device-computer-camera-off": "\uee75", + "device-desktop": "\uea89", + "device-desktop-analytics": "\uee77", + "device-desktop-bolt": "\uf85e", + "device-desktop-cancel": "\uf85f", + "device-desktop-check": "\uf860", + "device-desktop-code": "\uf861", + "device-desktop-cog": "\uf862", + "device-desktop-dollar": "\uf863", + "device-desktop-down": "\uf864", + "device-desktop-exclamation": "\uf865", + "device-desktop-filled": "\u1004a", + "device-desktop-heart": "\uf866", + "device-desktop-minus": "\uf867", + "device-desktop-off": "\uee78", + "device-desktop-pause": "\uf868", + "device-desktop-pin": "\uf869", + "device-desktop-plus": "\uf86a", + "device-desktop-question": "\uf86b", + "device-desktop-search": "\uf86c", + "device-desktop-share": "\uf86d", + "device-desktop-star": "\uf86e", + "device-desktop-up": "\uf86f", + "device-desktop-x": "\uf870", + "device-floppy": "\ueb62", + "device-gamepad": "\ueb63", + "device-gamepad-2": "\uf1d2", + "device-gamepad-3": "\ufc58", + "device-gamepad-3-filled": "\u10049", + "device-heart-monitor": "\uf060", + "device-heart-monitor-filled": "\ufa38", + "device-imac": "\uf7a7", + "device-imac-bolt": "\uf871", + "device-imac-cancel": "\uf872", + "device-imac-check": "\uf873", + "device-imac-code": "\uf874", + "device-imac-cog": "\uf875", + "device-imac-dollar": "\uf876", + "device-imac-down": "\uf877", + "device-imac-exclamation": "\uf878", + "device-imac-filled": "\u10048", + "device-imac-heart": "\uf879", + "device-imac-minus": "\uf87a", + "device-imac-off": "\uf87b", + "device-imac-pause": "\uf87c", + "device-imac-pin": "\uf87d", + "device-imac-plus": "\uf87e", + "device-imac-question": "\uf87f", + "device-imac-search": "\uf880", + "device-imac-share": "\uf881", + "device-imac-star": "\uf882", + "device-imac-up": "\uf883", + "device-imac-x": "\uf884", + "device-ipad": "\uf648", + "device-ipad-bolt": "\uf885", + "device-ipad-cancel": "\uf886", + "device-ipad-check": "\uf887", + "device-ipad-code": "\uf888", + "device-ipad-cog": "\uf889", + "device-ipad-dollar": "\uf88a", + "device-ipad-down": "\uf88b", + "device-ipad-exclamation": "\uf88c", + "device-ipad-filled": "\u10047", + "device-ipad-heart": "\uf88d", + "device-ipad-horizontal": "\uf647", + "device-ipad-horizontal-bolt": "\uf88e", + "device-ipad-horizontal-cancel": "\uf88f", + "device-ipad-horizontal-check": "\uf890", + "device-ipad-horizontal-code": "\uf891", + "device-ipad-horizontal-cog": "\uf892", + "device-ipad-horizontal-dollar": "\uf893", + "device-ipad-horizontal-down": "\uf894", + "device-ipad-horizontal-exclamation": "\uf895", + "device-ipad-horizontal-heart": "\uf896", + "device-ipad-horizontal-minus": "\uf897", + "device-ipad-horizontal-off": "\uf898", + "device-ipad-horizontal-pause": "\uf899", + "device-ipad-horizontal-pin": "\uf89a", + "device-ipad-horizontal-plus": "\uf89b", + "device-ipad-horizontal-question": "\uf89c", + "device-ipad-horizontal-search": "\uf89d", + "device-ipad-horizontal-share": "\uf89e", + "device-ipad-horizontal-star": "\uf89f", + "device-ipad-horizontal-up": "\uf8a0", + "device-ipad-horizontal-x": "\uf8a1", + "device-ipad-minus": "\uf8a2", + "device-ipad-off": "\uf8a3", + "device-ipad-pause": "\uf8a4", + "device-ipad-pin": "\uf8a5", + "device-ipad-plus": "\uf8a6", + "device-ipad-question": "\uf8a7", + "device-ipad-search": "\uf8a8", + "device-ipad-share": "\uf8a9", + "device-ipad-star": "\uf8aa", + "device-ipad-up": "\uf8ab", + "device-ipad-x": "\uf8ac", + "device-landline-phone": "\uf649", + "device-laptop": "\ueb64", + "device-laptop-off": "\uf061", + "device-mobile": "\uea8a", + "device-mobile-bolt": "\uf8ad", + "device-mobile-cancel": "\uf8ae", + "device-mobile-charging": "\uf224", + "device-mobile-check": "\uf8af", + "device-mobile-code": "\uf8b0", + "device-mobile-cog": "\uf8b1", + "device-mobile-dollar": "\uf8b2", + "device-mobile-down": "\uf8b3", + "device-mobile-exclamation": "\uf8b4", + "device-mobile-filled": "\ufa39", + "device-mobile-heart": "\uf8b5", + "device-mobile-message": "\uee79", + "device-mobile-minus": "\uf8b6", + "device-mobile-off": "\uf062", + "device-mobile-pause": "\uf8b7", + "device-mobile-pin": "\uf8b8", + "device-mobile-plus": "\uf8b9", + "device-mobile-question": "\uf8ba", + "device-mobile-rotated": "\uecdb", + "device-mobile-search": "\uf8bb", + "device-mobile-share": "\uf8bc", + "device-mobile-star": "\uf8bd", + "device-mobile-up": "\uf8be", + "device-mobile-vibration": "\ueb86", + "device-mobile-x": "\uf8bf", + "device-nintendo": "\uf026", + "device-nintendo-off": "\uf111", + "device-projector": "\ufc11", + "device-remote": "\uf792", + "device-remote-filled": "\u10046", + "device-sd-card": "\uf384", + "device-sim": "\uf4b2", + "device-sim-1": "\uf4af", + "device-sim-2": "\uf4b0", + "device-sim-3": "\uf4b1", + "device-speaker": "\uea8b", + "device-speaker-filled": "\u10045", + "device-speaker-off": "\uf112", + "device-tablet": "\uea8c", + "device-tablet-bolt": "\uf8c0", + "device-tablet-cancel": "\uf8c1", + "device-tablet-check": "\uf8c2", + "device-tablet-code": "\uf8c3", + "device-tablet-cog": "\uf8c4", + "device-tablet-dollar": "\uf8c5", + "device-tablet-down": "\uf8c6", + "device-tablet-exclamation": "\uf8c7", + "device-tablet-filled": "\ufa3a", + "device-tablet-heart": "\uf8c8", + "device-tablet-minus": "\uf8c9", + "device-tablet-off": "\uf063", + "device-tablet-pause": "\uf8ca", + "device-tablet-pin": "\uf8cb", + "device-tablet-plus": "\uf8cc", + "device-tablet-question": "\uf8cd", + "device-tablet-search": "\uf8ce", + "device-tablet-share": "\uf8cf", + "device-tablet-star": "\uf8d0", + "device-tablet-up": "\uf8d1", + "device-tablet-x": "\uf8d2", + "device-tv": "\uea8d", + "device-tv-filled": "\u10043", + "device-tv-off": "\uf064", + "device-tv-old": "\uf1d3", + "device-tv-old-filled": "\u10044", + "device-unknown": "\ufef4", + "device-unknown-filled": "\u10018", + "device-usb": "\ufc59", + "device-usb-filled": "\u10042", + "device-vision-pro": "\ufae7", + "device-vision-pro-filled": "\u10041", + "device-watch": "\uebf9", + "device-watch-bolt": "\uf8d3", + "device-watch-cancel": "\uf8d4", + "device-watch-check": "\uf8d5", + "device-watch-code": "\uf8d6", + "device-watch-cog": "\uf8d7", + "device-watch-dollar": "\uf8d8", + "device-watch-down": "\uf8d9", + "device-watch-exclamation": "\uf8da", + "device-watch-filled": "\u10040", + "device-watch-heart": "\uf8db", + "device-watch-minus": "\uf8dc", + "device-watch-off": "\uf065", + "device-watch-pause": "\uf8dd", + "device-watch-pin": "\uf8de", + "device-watch-plus": "\uf8df", + "device-watch-question": "\uf8e0", + "device-watch-search": "\uf8e1", + "device-watch-share": "\uf8e2", + "device-watch-star": "\uf8e3", + "device-watch-stats": "\uef7d", + "device-watch-stats-2": "\uef7c", + "device-watch-up": "\uf8e4", + "device-watch-x": "\uf8e5", + "devices": "\ueb87", + "devices-2": "\ued29", + "devices-bolt": "\uf8e6", + "devices-cancel": "\uf8e7", + "devices-check": "\uf8e8", + "devices-code": "\uf8e9", + "devices-cog": "\uf8ea", + "devices-dollar": "\uf8eb", + "devices-down": "\uf8ec", + "devices-exclamation": "\uf8ed", + "devices-heart": "\uf8ee", + "devices-minus": "\uf8ef", + "devices-off": "\uf3e4", + "devices-pause": "\uf8f0", + "devices-pc": "\uee7a", + "devices-pc-off": "\uf113", + "devices-pin": "\uf8f1", + "devices-plus": "\uf8f2", + "devices-question": "\uf8f3", + "devices-search": "\uf8f4", + "devices-share": "\uf8f5", + "devices-star": "\uf8f6", + "devices-up": "\uf8f7", + "devices-x": "\uf8f8", + "diabolo": "\ufa9c", + "diabolo-off": "\ufa9a", + "diabolo-plus": "\ufa9b", + "dialpad": "\uf067", + "dialpad-filled": "\ufa3b", + "dialpad-off": "\uf114", + "diamond": "\ueb65", + "diamond-filled": "\uf73d", + "diamond-off": "\uf115", + "diamonds": "\ueff5", + "diamonds-filled": "\uf676", + "diaper": "\uffa2", + "dice": "\ueb66", + "dice-1": "\uf08b", + "dice-1-filled": "\uf73e", + "dice-2": "\uf08c", + "dice-2-filled": "\uf73f", + "dice-3": "\uf08d", + "dice-3-filled": "\uf740", + "dice-4": "\uf08e", + "dice-4-filled": "\uf741", + "dice-5": "\uf08f", + "dice-5-filled": "\uf742", + "dice-6": "\uf090", + "dice-6-filled": "\uf743", + "dice-filled": "\uf744", + "dimensions": "\uee7b", + "direction": "\uebfb", + "direction-arrows": "\ufd36", + "direction-arrows-filled": "\u100ca", + "direction-horizontal": "\uebfa", + "direction-sign": "\uf1f7", + "direction-sign-filled": "\uf745", + "direction-sign-off": "\uf3e5", + "directions": "\uea8e", + "directions-filled": "\u1003f", + "directions-off": "\uf116", + "disabled": "\uea8f", + "disabled-2": "\uebaf", + "disabled-off": "\uf117", + "disc": "\uea90", + "disc-filled": "\u1003e", + "disc-golf": "\uf385", + "disc-off": "\uf118", + "discount": "\uebbd", + "discount-2": "\uee7c", + "discount-2-off": "\uf3e6", + "discount-check": "\uf1f8", + "discount-check-filled": "\uf746", + "discount-filled": "\u1003d", + "discount-off": "\uf3e7", + "divide": "\ued5c", + "dna": "\uee7d", + "dna-2": "\uef5c", + "dna-2-off": "\uf119", + "dna-off": "\uf11a", + "dog": "\uf660", + "dog-bowl": "\uef29", + "door": "\uef4e", + "door-enter": "\uef4c", + "door-exit": "\uef4d", + "door-off": "\uf11b", + "dots": "\uea95", + "dots-circle-horizontal": "\uea91", + "dots-diagonal": "\uea93", + "dots-diagonal-2": "\uea92", + "dots-vertical": "\uea94", + "download": "\uea96", + "download-off": "\uf11c", + "drag-drop": "\ueb89", + "drag-drop-2": "\ueb88", + "drone": "\ued79", + "drone-off": "\uee7e", + "drop-circle": "\uefde", + "drop-circle-filled": "\u10137", + "droplet": "\uea97", + "droplet-bolt": "\uf8f9", + "droplet-cancel": "\uf8fa", + "droplet-check": "\uf8fb", + "droplet-code": "\uf8fc", + "droplet-cog": "\uf8fd", + "droplet-dollar": "\uf8fe", + "droplet-down": "\uf8ff", + "droplet-exclamation": "\uf900", + "droplet-filled": "\uee80", + "droplet-half": "\uee82", + "droplet-half-2": "\uee81", + "droplet-half-2-filled": "\ufb6c", + "droplet-half-filled": "\uf6c5", + "droplet-heart": "\uf901", + "droplet-minus": "\uf902", + "droplet-off": "\uee83", + "droplet-pause": "\uf903", + "droplet-pin": "\uf904", + "droplet-plus": "\uf905", + "droplet-question": "\uf906", + "droplet-search": "\uf907", + "droplet-share": "\uf908", + "droplet-star": "\uf909", + "droplet-up": "\uf90a", + "droplet-x": "\uf90b", + "droplets": "\ufc12", + "droplets-filled": "\u100c9", + "dual-screen": "\ufa59", + "dual-screen-filled": "\u10136", + "dumpling": "\ufeb5", + "dumpling-filled": "\u10135", + "e-passport": "\uf4df", + "ear": "\uebce", + "ear-off": "\uee84", + "ear-scan": "\ufd57", + "ease-in": "\uf573", + "ease-in-control-point": "\uf570", + "ease-in-control-point-filled": "\u10174", + "ease-in-out": "\uf572", + "ease-in-out-control-points": "\uf571", + "ease-in-out-control-points-filled": "\u10173", + "ease-out": "\uf575", + "ease-out-control-point": "\uf574", + "ease-out-control-point-filled": "\u10172", + "edit": "\uea98", + "edit-circle": "\uee85", + "edit-circle-off": "\uf11d", + "edit-off": "\uf11e", + "egg": "\ueb8a", + "egg-cracked": "\uf2d6", + "egg-cracked-filled": "\u10012", + "egg-filled": "\uf678", + "egg-fried": "\uf386", + "egg-fried-filled": "\u10134", + "egg-off": "\uf11f", + "eggs": "\uf500", + "elevator": "\uefdf", + "elevator-filled": "\u1003c", + "elevator-off": "\uf3e8", + "emergency-bed": "\uef5d", + "empathize": "\uf29b", + "empathize-off": "\uf3e9", + "emphasis": "\uebcf", + "engine": "\uef7e", + "engine-filled": "\u100fc", + "engine-off": "\uf120", + "equal": "\uee87", + "equal-double": "\uf4e1", + "equal-not": "\uee86", + "eraser": "\ueb8b", + "eraser-off": "\uf121", + "error-404": "\uf027", + "error-404-off": "\uf122", + "escalator": "\ufb06", + "escalator-down": "\ufb04", + "escalator-down-filled": "\u10133", + "escalator-filled": "\u10131", + "escalator-up": "\ufb05", + "escalator-up-filled": "\u10132", + "exchange": "\uebe7", + "exchange-filled": "\u10130", + "exchange-off": "\uf123", + "exclamation-circle": "\uf634", + "exclamation-circle-filled": "\uff62", + "exclamation-mark": "\uefb4", + "exclamation-mark-off": "\uf124", + "explicit": "\uf256", + "explicit-filled": "\u1012f", + "explicit-off": "\uf3ea", + "exposure": "\ueb8c", + "exposure-0": "\uf29c", + "exposure-filled": "\u10124", + "exposure-minus-1": "\uf29d", + "exposure-minus-2": "\uf29e", + "exposure-off": "\uf3eb", + "exposure-plus-1": "\uf29f", + "exposure-plus-2": "\uf2a0", + "external-link": "\uea99", + "external-link-off": "\uf125", + "eye": "\uea9a", + "eye-bitcoin": "\uff3d", + "eye-bolt": "\ufb6d", + "eye-cancel": "\ufb6e", + "eye-check": "\uee88", + "eye-closed": "\uf7ec", + "eye-code": "\ufb6f", + "eye-cog": "\uf7ed", + "eye-discount": "\ufb70", + "eye-dollar": "\ufb71", + "eye-dotted": "\ufead", + "eye-down": "\ufb72", + "eye-edit": "\uf7ee", + "eye-exclamation": "\uf7ef", + "eye-filled": "\uf679", + "eye-heart": "\uf7f0", + "eye-minus": "\ufb73", + "eye-off": "\uecf0", + "eye-pause": "\ufb74", + "eye-pin": "\ufb75", + "eye-plus": "\ufb76", + "eye-question": "\ufb77", + "eye-search": "\ufb78", + "eye-share": "\ufb79", + "eye-spark": "\uffba", + "eye-star": "\ufb7a", + "eye-table": "\uef5e", + "eye-table-filled": "\u10123", + "eye-up": "\ufb7b", + "eye-x": "\uf7f1", + "eyeglass": "\uee8a", + "eyeglass-2": "\uee89", + "eyeglass-2-filled": "\u10122", + "eyeglass-filled": "\u100c8", + "eyeglass-off": "\uf126", + "face-id": "\uea9b", + "face-id-error": "\uefa7", + "face-mask": "\uefb5", + "face-mask-filled": "\u10121", + "face-mask-off": "\uf127", + "fall": "\uecb9", + "favicon": "\ufd65", + "favicon-filled": "\u10071", + "feather": "\uee8b", + "feather-filled": "\u10011", + "feather-off": "\uf128", + "fence": "\uef2a", + "fence-filled": "\u10120", + "fence-off": "\uf129", + "ferry": "\u10074", + "ferry-filled": "\u100fb", + "fidget-spinner": "\uf068", + "fidget-spinner-filled": "\u1011f", + "file": "\ueaa4", + "file-3d": "\uf032", + "file-ai": "\uffa1", + "file-alert": "\uede6", + "file-analytics": "\uede7", + "file-analytics-filled": "\u10171", + "file-arrow-left": "\uf033", + "file-arrow-right": "\uf034", + "file-barcode": "\uf035", + "file-bitcoin": "\uffa0", + "file-broken": "\uf501", + "file-certificate": "\ued4d", + "file-chart": "\uf036", + "file-check": "\uea9c", + "file-check-filled": "\u1012e", + "file-code": "\uebd0", + "file-code-2": "\uede8", + "file-code-2-filled": "\u1012d", + "file-code-filled": "\u10170", + "file-cv": "\ufa5a", + "file-cv-filled": "\u1012c", + "file-database": "\uf037", + "file-delta": "\uf53d", + "file-delta-filled": "\u1012b", + "file-description": "\uf028", + "file-description-filled": "\u1011e", + "file-diff": "\uecf1", + "file-diff-filled": "\u1016f", + "file-digit": "\uefa8", + "file-digit-filled": "\u1011d", + "file-dislike": "\ued2a", + "file-dollar": "\uefe0", + "file-dots": "\uf038", + "file-dots-filled": "\u1016e", + "file-download": "\uea9d", + "file-download-filled": "\u1012a", + "file-euro": "\uefe1", + "file-excel": "\ufef3", + "file-export": "\uede9", + "file-filled": "\uf747", + "file-function": "\uf53e", + "file-function-filled": "\u1016d", + "file-horizontal": "\uebb0", + "file-horizontal-filled": "\u1011c", + "file-import": "\uedea", + "file-infinity": "\uf502", + "file-info": "\uedec", + "file-info-filled": "\u1016c", + "file-invoice": "\ueb67", + "file-invoice-filled": "\u1011b", + "file-isr": "\ufeac", + "file-lambda": "\uf53f", + "file-lambda-filled": "\u10129", + "file-like": "\ued2b", + "file-minus": "\uea9e", + "file-minus-filled": "\u1011a", + "file-music": "\uea9f", + "file-neutral": "\ufd22", + "file-neutral-filled": "\u10119", + "file-off": "\uecf2", + "file-orientation": "\uf2a1", + "file-pencil": "\uf039", + "file-percent": "\uf540", + "file-percent-filled": "\u10128", + "file-phone": "\uecdc", + "file-phone-filled": "\u10127", + "file-plus": "\ueaa0", + "file-power": "\uf03a", + "file-power-filled": "\u10118", + "file-report": "\ueded", + "file-rss": "\uf03b", + "file-rss-filled": "\u10126", + "file-sad": "\ufd23", + "file-sad-filled": "\u10117", + "file-scissors": "\uf03c", + "file-search": "\ued5d", + "file-settings": "\uf029", + "file-shredder": "\ueaa1", + "file-signal": "\uf03d", + "file-smile": "\ufd24", + "file-smile-filled": "\u10116", + "file-spark": "\uffb9", + "file-spreadsheet": "\uf03e", + "file-stack": "\uf503", + "file-star": "\uf03f", + "file-star-filled": "\u10115", + "file-symlink": "\ued53", + "file-text": "\ueaa2", + "file-text-ai": "\ufa27", + "file-text-filled": "\u10114", + "file-text-shield": "\u100f2", + "file-text-spark": "\uffb8", + "file-time": "\uf040", + "file-type-bmp": "\ufb07", + "file-type-css": "\ufb08", + "file-type-csv": "\ufb09", + "file-type-doc": "\ufb0a", + "file-type-docx": "\ufb0b", + "file-type-html": "\ufb0c", + "file-type-jpg": "\ufb0d", + "file-type-js": "\ufb0e", + "file-type-jsx": "\ufb0f", + "file-type-pdf": "\ufb10", + "file-type-php": "\ufb11", + "file-type-png": "\ufb12", + "file-type-ppt": "\ufb13", + "file-type-rs": "\ufb14", + "file-type-sql": "\ufb15", + "file-type-svg": "\ufb16", + "file-type-ts": "\ufb17", + "file-type-tsx": "\ufb18", + "file-type-txt": "\ufb19", + "file-type-vue": "\ufb1a", + "file-type-xls": "\ufb1b", + "file-type-xml": "\ufb1c", + "file-type-zip": "\ufb1d", + "file-typography": "\uf041", + "file-typography-filled": "\u1016b", + "file-unknown": "\uf042", + "file-upload": "\uec91", + "file-vector": "\uf043", + "file-word": "\ufef2", + "file-x": "\ueaa3", + "file-x-filled": "\uf748", + "file-zip": "\ued4e", + "files": "\uedef", + "files-off": "\uedee", + "filter": "\ueaa5", + "filter-2": "\u1014b", + "filter-2-bolt": "\u1015f", + "filter-2-cancel": "\u1015e", + "filter-2-check": "\u1015d", + "filter-2-code": "\u1015c", + "filter-2-cog": "\u1015b", + "filter-2-discount": "\u1015a", + "filter-2-dollar": "\u10159", + "filter-2-down": "\u10158", + "filter-2-edit": "\u10157", + "filter-2-exclamation": "\u10156", + "filter-2-minus": "\u10155", + "filter-2-pause": "\u10154", + "filter-2-pin": "\u10153", + "filter-2-plus": "\u10152", + "filter-2-question": "\u10151", + "filter-2-search": "\u10150", + "filter-2-share": "\u1014f", + "filter-2-spark": "\u1014e", + "filter-2-up": "\u1014d", + "filter-2-x": "\u1014c", + "filter-bolt": "\ufb7c", + "filter-cancel": "\ufb7d", + "filter-check": "\ufb7e", + "filter-code": "\ufb7f", + "filter-cog": "\uf9fe", + "filter-discount": "\ufb80", + "filter-dollar": "\uf9ff", + "filter-down": "\ufb81", + "filter-edit": "\ufa00", + "filter-exclamation": "\ufb82", + "filter-filled": "\ufc27", + "filter-heart": "\ufb83", + "filter-minus": "\ufa01", + "filter-off": "\ued2c", + "filter-pause": "\ufb84", + "filter-pin": "\ufb85", + "filter-plus": "\ufa02", + "filter-question": "\ufb86", + "filter-search": "\ufb87", + "filter-share": "\ufb88", + "filter-spark": "\u1014a", + "filter-star": "\ufa03", + "filter-up": "\ufb89", + "filter-x": "\ufa04", + "filters": "\uf793", + "filters-filled": "\u100c7", + "fingerprint": "\uebd1", + "fingerprint-off": "\uf12a", + "fingerprint-scan": "\ufcb5", + "fire-extinguisher": "\ufaf6", + "fire-hydrant": "\uf3a9", + "fire-hydrant-off": "\uf3ec", + "firetruck": "\uebe8", + "first-aid-kit": "\uef5f", + "first-aid-kit-off": "\uf3ed", + "fish": "\uef2b", + "fish-bone": "\uf287", + "fish-bone-filled": "\u1010b", + "fish-christianity": "\uf58b", + "fish-hook": "\uf1f9", + "fish-hook-off": "\uf3ee", + "fish-off": "\uf12b", + "flag": "\ueaa6", + "flag-2": "\uee8c", + "flag-2-filled": "\uf707", + "flag-2-off": "\uf12c", + "flag-3": "\uee8d", + "flag-3-filled": "\uf708", + "flag-bitcoin": "\uff3c", + "flag-bolt": "\ufb8a", + "flag-cancel": "\ufb8b", + "flag-check": "\ufb8c", + "flag-code": "\ufb8d", + "flag-cog": "\ufb8e", + "flag-discount": "\ufb8f", + "flag-dollar": "\ufb90", + "flag-down": "\ufb91", + "flag-exclamation": "\ufb92", + "flag-filled": "\uf67a", + "flag-heart": "\ufb93", + "flag-minus": "\ufb94", + "flag-off": "\uf12d", + "flag-pause": "\ufb95", + "flag-pin": "\ufb96", + "flag-plus": "\ufb97", + "flag-question": "\ufb98", + "flag-search": "\ufb99", + "flag-share": "\ufb9a", + "flag-spark": "\uffb7", + "flag-star": "\ufb9b", + "flag-up": "\ufb9c", + "flag-x": "\ufb9d", + "flame": "\uec2c", + "flame-filled": "\u100c6", + "flame-off": "\uf12e", + "flare": "\uee8e", + "flare-filled": "\u100c5", + "flask": "\uebd2", + "flask-2": "\uef60", + "flask-2-filled": "\ufd12", + "flask-2-off": "\uf12f", + "flask-filled": "\ufd13", + "flask-off": "\uf130", + "flip-flops": "\uf564", + "flip-horizontal": "\ueaa7", + "flip-vertical": "\ueaa8", + "float-center": "\uebb1", + "float-left": "\uebb2", + "float-none": "\ued13", + "float-right": "\uebb3", + "flower": "\ueff6", + "flower-filled": "\u10010", + "flower-off": "\uf131", + "focus": "\ueb8d", + "focus-2": "\uebd3", + "focus-auto": "\ufa62", + "focus-centered": "\uf02a", + "fold": "\ued56", + "fold-down": "\ued54", + "fold-up": "\ued55", + "folder": "\ueaad", + "folder-bolt": "\uf90c", + "folder-cancel": "\uf90d", + "folder-check": "\uf90e", + "folder-code": "\uf90f", + "folder-cog": "\uf910", + "folder-dollar": "\uf911", + "folder-down": "\uf912", + "folder-exclamation": "\uf913", + "folder-filled": "\uf749", + "folder-heart": "\uf914", + "folder-minus": "\ueaaa", + "folder-off": "\ued14", + "folder-open": "\ufaf7", + "folder-pause": "\uf915", + "folder-pin": "\uf916", + "folder-plus": "\ueaab", + "folder-question": "\uf917", + "folder-root": "\ufd43", + "folder-search": "\uf918", + "folder-share": "\uf919", + "folder-star": "\uf91a", + "folder-symlink": "\uf91b", + "folder-up": "\uf91c", + "folder-x": "\ueaac", + "folders": "\ueaae", + "folders-filled": "\u100c4", + "folders-off": "\uf133", + "forbid": "\uebd5", + "forbid-2": "\uebd4", + "forbid-2-filled": "\ufc28", + "forbid-filled": "\ufc29", + "forklift": "\uebe9", + "forms": "\uee8f", + "fountain": "\uf09b", + "fountain-filled": "\ufc2a", + "fountain-off": "\uf134", + "frame": "\ueaaf", + "frame-off": "\uf135", + "free-rights": "\uefb6", + "freeze-column": "\ufa63", + "freeze-row": "\ufa65", + "freeze-row-column": "\ufa64", + "fridge": "\uf1fa", + "fridge-off": "\uf3ef", + "friends": "\ueab0", + "friends-off": "\uf136", + "frustum": "\ufa9f", + "frustum-off": "\ufa9d", + "frustum-plus": "\ufa9e", + "function": "\uf225", + "function-filled": "\ufc2b", + "function-off": "\uf3f0", + "galaxy": "\ufcb6", + "garden-cart": "\uf23e", + "garden-cart-filled": "\u100c3", + "garden-cart-off": "\uf3f1", + "gas-station": "\uec7d", + "gas-station-filled": "\u100fa", + "gas-station-off": "\uf137", + "gauge": "\ueab1", + "gauge-filled": "\ufc2c", + "gauge-off": "\uf138", + "gavel": "\uef90", + "gender-agender": "\uf0e1", + "gender-androgyne": "\uf0e2", + "gender-bigender": "\uf0e3", + "gender-demiboy": "\uf0e4", + "gender-demigirl": "\uf0e5", + "gender-epicene": "\uf0e6", + "gender-female": "\uf0e7", + "gender-femme": "\uf0e8", + "gender-genderfluid": "\uf0e9", + "gender-genderless": "\uf0ea", + "gender-genderqueer": "\uf0eb", + "gender-hermaphrodite": "\uf0ec", + "gender-intergender": "\uf0ed", + "gender-male": "\uf0ee", + "gender-neutrois": "\uf0ef", + "gender-third": "\uf0f0", + "gender-transgender": "\uf0f1", + "gender-trasvesti": "\uf0f2", + "geometry": "\uee90", + "ghost": "\ueb8e", + "ghost-2": "\uf57c", + "ghost-2-filled": "\uf74a", + "ghost-3": "\ufc13", + "ghost-3-filled": "\u100a4", + "ghost-filled": "\uf74b", + "ghost-off": "\uf3f2", + "gif": "\uf257", + "gift": "\ueb68", + "gift-card": "\uf3aa", + "gift-card-filled": "\ufc2d", + "gift-filled": "\ufd14", + "gift-off": "\uf3f3", + "git-branch": "\ueab2", + "git-branch-deleted": "\uf57d", + "git-cherry-pick": "\uf57e", + "git-commit": "\ueab3", + "git-compare": "\ueab4", + "git-fork": "\ueb8f", + "git-merge": "\ueab5", + "git-pull-request": "\ueab6", + "git-pull-request-closed": "\uef7f", + "git-pull-request-draft": "\uefb7", + "gizmo": "\uf02b", + "glass": "\ueab8", + "glass-champagne": "\ufd9c", + "glass-cocktail": "\ufd9d", + "glass-filled": "\u1000f", + "glass-full": "\ueab7", + "glass-full-filled": "\ufc2e", + "glass-gin": "\ufd9e", + "glass-off": "\uee91", + "globe": "\ueab9", + "globe-filled": "\ufc2f", + "globe-off": "\uf139", + "go-game": "\uf512", + "golf": "\ued8c", + "golf-filled": "\u100a3", + "golf-off": "\uf13a", + "gps": "\ued7a", + "gps-filled": "\ufe48", + "gradienter": "\uf3ab", + "grain": "\uee92", + "graph": "\uf288", + "graph-filled": "\ufd15", + "graph-off": "\uf3f4", + "grave": "\uf580", + "grave-2": "\uf57f", + "grid-3x3": "\ufca4", + "grid-4x4": "\ufca5", + "grid-dots": "\ueaba", + "grid-goldenratio": "\ufca6", + "grid-pattern": "\uefc9", + "grid-pattern-filled": "\u100c2", + "grid-scan": "\ufca7", + "grill": "\uefa9", + "grill-fork": "\uf35b", + "grill-off": "\uf3f5", + "grill-spatula": "\uf35c", + "grip-horizontal": "\uec00", + "grip-vertical": "\uec01", + "growth": "\uee93", + "guitar-pick": "\uf4c6", + "guitar-pick-filled": "\uf67b", + "gymnastics": "\ufd44", + "h-1": "\uec94", + "h-2": "\uec95", + "h-3": "\uec96", + "h-4": "\uec97", + "h-5": "\uec98", + "h-6": "\uec99", + "hammer": "\uef91", + "hammer-off": "\uf13c", + "hand-click": "\uef4f", + "hand-click-off": "\u100f1", + "hand-finger": "\uee94", + "hand-finger-down": "\uff4f", + "hand-finger-left": "\uff4e", + "hand-finger-off": "\uf13d", + "hand-finger-right": "\uff4d", + "hand-grab": "\uf091", + "hand-little-finger": "\uee95", + "hand-love-you": "\uee97", + "hand-middle-finger": "\uec2d", + "hand-move": "\uef50", + "hand-off": "\ued15", + "hand-ring-finger": "\uee96", + "hand-rock": "\uee97", + "hand-sanitizer": "\uf5f4", + "hand-stop": "\uec2e", + "hand-three-fingers": "\uee98", + "hand-two-fingers": "\uee99", + "hanger": "\uee9a", + "hanger-2": "\uf09c", + "hanger-2-filled": "\uff61", + "hanger-off": "\uf13e", + "hash": "\ueabc", + "haze": "\uefaa", + "haze-moon": "\ufaf8", + "hdr": "\ufa7b", + "heading": "\uee9b", + "heading-off": "\uf13f", + "headphones": "\ueabd", + "headphones-filled": "\ufa3c", + "headphones-off": "\ued1d", + "headset": "\ueb90", + "headset-off": "\uf3f6", + "health-recognition": "\uf1fb", + "heart": "\ueabe", + "heart-bitcoin": "\uff3b", + "heart-bolt": "\ufb9e", + "heart-broken": "\uecba", + "heart-broken-filled": "\u1016a", + "heart-cancel": "\ufb9f", + "heart-check": "\ufba0", + "heart-code": "\ufba1", + "heart-cog": "\ufba2", + "heart-discount": "\ufba3", + "heart-dollar": "\ufba4", + "heart-down": "\ufba5", + "heart-exclamation": "\ufba6", + "heart-filled": "\uf67c", + "heart-handshake": "\uf0f3", + "heart-minus": "\uf140", + "heart-off": "\uf141", + "heart-pause": "\ufba7", + "heart-pin": "\ufba8", + "heart-plus": "\uf142", + "heart-question": "\ufba9", + "heart-rate-monitor": "\uef61", + "heart-search": "\ufbaa", + "heart-share": "\ufbab", + "heart-spark": "\uffb6", + "heart-star": "\ufbac", + "heart-up": "\ufbad", + "heart-x": "\ufbae", + "heartbeat": "\uef92", + "hearts": "\uf387", + "hearts-off": "\uf3f7", + "helicopter": "\ued8e", + "helicopter-filled": "\u100f9", + "helicopter-landing": "\ued8d", + "helicopter-landing-filled": "\u100c1", + "helmet": "\uefca", + "helmet-off": "\uf143", + "help": "\ueabf", + "help-circle": "\uf91d", + "help-circle-filled": "\ufa3d", + "help-hexagon": "\uf7a8", + "help-hexagon-filled": "\ufa3e", + "help-octagon": "\uf7a9", + "help-octagon-filled": "\ufa3f", + "help-off": "\uf3f8", + "help-small": "\uf91e", + "help-square": "\uf920", + "help-square-filled": "\ufa40", + "help-square-rounded": "\uf91f", + "help-square-rounded-filled": "\ufa41", + "help-triangle": "\uf921", + "help-triangle-filled": "\ufa42", + "hemisphere": "\ufaa2", + "hemisphere-off": "\ufaa0", + "hemisphere-plus": "\ufaa1", + "hexagon": "\uec02", + "hexagon-0": "\uf459", + "hexagon-1": "\uf45a", + "hexagon-2": "\uf45b", + "hexagon-3": "\uf45c", + "hexagon-3d": "\uf4c7", + "hexagon-4": "\uf45d", + "hexagon-5": "\uf45e", + "hexagon-6": "\uf45f", + "hexagon-7": "\uf460", + "hexagon-8": "\uf461", + "hexagon-9": "\uf462", + "hexagon-filled": "\uf67d", + "hexagon-letter-a": "\uf463", + "hexagon-letter-a-filled": "\ufe47", + "hexagon-letter-b": "\uf464", + "hexagon-letter-b-filled": "\ufe46", + "hexagon-letter-c": "\uf465", + "hexagon-letter-c-filled": "\ufe45", + "hexagon-letter-d": "\uf466", + "hexagon-letter-d-filled": "\ufe44", + "hexagon-letter-e": "\uf467", + "hexagon-letter-e-filled": "\ufe43", + "hexagon-letter-f": "\uf468", + "hexagon-letter-f-filled": "\ufe42", + "hexagon-letter-g": "\uf469", + "hexagon-letter-g-filled": "\ufe41", + "hexagon-letter-h": "\uf46a", + "hexagon-letter-h-filled": "\ufe40", + "hexagon-letter-i": "\uf46b", + "hexagon-letter-i-filled": "\ufe3f", + "hexagon-letter-j": "\uf46c", + "hexagon-letter-j-filled": "\ufe3e", + "hexagon-letter-k": "\uf46d", + "hexagon-letter-k-filled": "\ufe3d", + "hexagon-letter-l": "\uf46e", + "hexagon-letter-l-filled": "\ufe3c", + "hexagon-letter-m": "\uf46f", + "hexagon-letter-m-filled": "\ufe3b", + "hexagon-letter-n": "\uf470", + "hexagon-letter-n-filled": "\ufe3a", + "hexagon-letter-o": "\uf471", + "hexagon-letter-o-filled": "\ufe39", + "hexagon-letter-p": "\uf472", + "hexagon-letter-p-filled": "\ufe38", + "hexagon-letter-q": "\uf473", + "hexagon-letter-q-filled": "\ufe37", + "hexagon-letter-r": "\uf474", + "hexagon-letter-r-filled": "\ufe36", + "hexagon-letter-s": "\uf475", + "hexagon-letter-s-filled": "\ufe35", + "hexagon-letter-t": "\uf476", + "hexagon-letter-t-filled": "\ufe34", + "hexagon-letter-u": "\uf477", + "hexagon-letter-u-filled": "\ufe33", + "hexagon-letter-v": "\uf4b3", + "hexagon-letter-v-filled": "\ufe32", + "hexagon-letter-w": "\uf478", + "hexagon-letter-w-filled": "\ufe31", + "hexagon-letter-x": "\uf479", + "hexagon-letter-x-filled": "\ufe30", + "hexagon-letter-y": "\uf47a", + "hexagon-letter-y-filled": "\ufe2f", + "hexagon-letter-z": "\uf47b", + "hexagon-letter-z-filled": "\ufe2e", + "hexagon-minus": "\ufc8f", + "hexagon-minus-2": "\ufc8e", + "hexagon-minus-filled": "\ufe2d", + "hexagon-number-0": "\uf459", + "hexagon-number-0-filled": "\uf74c", + "hexagon-number-1": "\uf45a", + "hexagon-number-1-filled": "\uf74d", + "hexagon-number-2": "\uf45b", + "hexagon-number-2-filled": "\uf74e", + "hexagon-number-3": "\uf45c", + "hexagon-number-3-filled": "\uf74f", + "hexagon-number-4": "\uf45d", + "hexagon-number-4-filled": "\uf750", + "hexagon-number-5": "\uf45e", + "hexagon-number-5-filled": "\uf751", + "hexagon-number-6": "\uf45f", + "hexagon-number-6-filled": "\uf752", + "hexagon-number-7": "\uf460", + "hexagon-number-7-filled": "\uf753", + "hexagon-number-8": "\uf461", + "hexagon-number-8-filled": "\uf754", + "hexagon-number-9": "\uf462", + "hexagon-number-9-filled": "\uf755", + "hexagon-off": "\uee9c", + "hexagon-plus": "\ufc45", + "hexagon-plus-2": "\ufc90", + "hexagon-plus-filled": "\ufe2c", + "hexagonal-prism": "\ufaa5", + "hexagonal-prism-off": "\ufaa3", + "hexagonal-prism-plus": "\ufaa4", + "hexagonal-pyramid": "\ufaa8", + "hexagonal-pyramid-off": "\ufaa6", + "hexagonal-pyramid-plus": "\ufaa7", + "hexagons": "\uf09d", + "hexagons-off": "\uf3f9", + "hierarchy": "\uee9e", + "hierarchy-2": "\uee9d", + "hierarchy-3": "\uf289", + "hierarchy-off": "\uf3fa", + "highlight": "\uef3f", + "highlight-off": "\uf144", + "history": "\uebea", + "history-off": "\uf3fb", + "history-toggle": "\uf1fc", + "home": "\ueac1", + "home-2": "\ueac0", + "home-bitcoin": "\uff3a", + "home-bolt": "\uf336", + "home-cancel": "\uf350", + "home-check": "\uf337", + "home-cog": "\uf338", + "home-dollar": "\uf339", + "home-dot": "\uf33a", + "home-down": "\uf33b", + "home-eco": "\uf351", + "home-edit": "\uf352", + "home-exclamation": "\uf33c", + "home-filled": "\ufe2b", + "home-hand": "\uf504", + "home-heart": "\uf353", + "home-infinity": "\uf505", + "home-link": "\uf354", + "home-minus": "\uf33d", + "home-move": "\uf33e", + "home-off": "\uf145", + "home-plus": "\uf33f", + "home-question": "\uf340", + "home-ribbon": "\uf355", + "home-search": "\uf341", + "home-share": "\uf342", + "home-shield": "\uf343", + "home-signal": "\uf356", + "home-spark": "\uffb5", + "home-star": "\uf344", + "home-stats": "\uf345", + "home-up": "\uf346", + "home-x": "\uf347", + "horse": "\ufc46", + "horse-toy": "\uf28a", + "horseshoe": "\ufcb7", + "hospital": "\ufd59", + "hospital-circle": "\ufd58", + "hospital-circle-filled": "\ufed2", + "hotel-service": "\uef80", + "hourglass": "\uef93", + "hourglass-empty": "\uf146", + "hourglass-filled": "\uf756", + "hourglass-high": "\uf092", + "hourglass-low": "\uf093", + "hourglass-off": "\uf147", + "hours-12": "\ufc53", + "hours-24": "\uf5e7", + "html": "\uf7b1", + "http-connect": "\ufa28", + "http-connect-off": "\u100e7", + "http-delete": "\ufa29", + "http-delete-off": "\u100e6", + "http-get": "\ufa2a", + "http-get-off": "\u100e5", + "http-head": "\ufa2b", + "http-head-off": "\u100e4", + "http-options": "\ufa2c", + "http-options-off": "\u100e3", + "http-patch": "\ufa2d", + "http-patch-off": "\u100e2", + "http-post": "\ufa2e", + "http-post-off": "\u100e1", + "http-put": "\ufa2f", + "http-put-off": "\u100e0", + "http-que": "\ufa5b", + "http-que-off": "\u100df", + "http-trace": "\ufa30", + "http-trace-off": "\u100de", + "ice-cream": "\ueac2", + "ice-cream-2": "\uee9f", + "ice-cream-off": "\uf148", + "ice-skating": "\uefcb", + "icons": "\uf1d4", + "icons-filled": "\u10070", + "icons-off": "\uf3fc", + "id": "\ueac3", + "id-badge": "\ueff7", + "id-badge-2": "\uf076", + "id-badge-off": "\uf3fd", + "id-off": "\uf149", + "ikosaedr": "\ufec6", + "image-in-picture": "\ufd9f", + "inbox": "\ueac4", + "inbox-off": "\uf14a", + "indent-decrease": "\ueb91", + "indent-increase": "\ueb92", + "infinity": "\ueb69", + "infinity-off": "\uf3fe", + "info-circle": "\ueac5", + "info-circle-filled": "\uf6d8", + "info-hexagon": "\uf7aa", + "info-hexagon-filled": "\ufa43", + "info-octagon": "\uf7ab", + "info-octagon-filled": "\ufa44", + "info-small": "\uf922", + "info-square": "\ueac6", + "info-square-filled": "\ufa45", + "info-square-rounded": "\uf635", + "info-square-rounded-filled": "\uf6d9", + "info-triangle": "\uf923", + "info-triangle-filled": "\ufa46", + "inner-shadow-bottom": "\uf520", + "inner-shadow-bottom-filled": "\uf757", + "inner-shadow-bottom-left": "\uf51e", + "inner-shadow-bottom-left-filled": "\uf758", + "inner-shadow-bottom-right": "\uf51f", + "inner-shadow-bottom-right-filled": "\uf759", + "inner-shadow-left": "\uf521", + "inner-shadow-left-filled": "\uf75a", + "inner-shadow-right": "\uf522", + "inner-shadow-right-filled": "\uf75b", + "inner-shadow-top": "\uf525", + "inner-shadow-top-filled": "\uf75c", + "inner-shadow-top-left": "\uf523", + "inner-shadow-top-left-filled": "\uf75d", + "inner-shadow-top-right": "\uf524", + "inner-shadow-top-right-filled": "\uf75e", + "input-ai": "\ufc5a", + "input-check": "\ufc5b", + "input-search": "\uf2a2", + "input-spark": "\uffb4", + "input-x": "\ufc5c", + "invoice": "\ufeab", + "ironing": "\ufa7c", + "ironing-1": "\uf2f4", + "ironing-1-filled": "\u1006f", + "ironing-2": "\uf2f5", + "ironing-2-filled": "\u1006e", + "ironing-3": "\uf2f6", + "ironing-3-filled": "\u1006d", + "ironing-filled": "\ufe2a", + "ironing-off": "\uf2f7", + "ironing-steam": "\uf2f9", + "ironing-steam-filled": "\u1006c", + "ironing-steam-off": "\uf2f8", + "irregular-polyhedron": "\ufaab", + "irregular-polyhedron-off": "\ufaa9", + "irregular-polyhedron-plus": "\ufaaa", + "italic": "\ueb93", + "jacket": "\uf661", + "jetpack": "\uf581", + "jetpack-filled": "\ufe29", + "jewish-star": "\uf3ff", + "jewish-star-filled": "\uf67e", + "join-bevel": "\uff4c", + "join-round": "\uff4b", + "join-straight": "\uff4a", + "joker": "\u1005f", + "jpg": "\uf3ac", + "json": "\uf7b2", + "jump-rope": "\ued8f", + "karate": "\ued32", + "kayak": "\uf1d6", + "kering": "\uefb8", + "kerning": "\uefb8", + "key": "\ueac7", + "key-filled": "\ufe28", + "key-off": "\uf14b", + "keyboard": "\uebd6", + "keyboard-filled": "\u100a2", + "keyboard-hide": "\uec7e", + "keyboard-off": "\ueea0", + "keyboard-show": "\uec7f", + "keyframe": "\uf576", + "keyframe-align-center": "\uf582", + "keyframe-align-center-filled": "\ufc30", + "keyframe-align-horizontal": "\uf583", + "keyframe-align-horizontal-filled": "\ufc31", + "keyframe-align-vertical": "\uf584", + "keyframe-align-vertical-filled": "\ufc32", + "keyframe-filled": "\ufc33", + "keyframes": "\uf585", + "keyframes-filled": "\ufc34", + "label": "\uff38", + "label-filled": "\uff41", + "label-important": "\uff49", + "label-important-filled": "\uff60", + "label-off": "\uff39", + "ladder": "\uefe2", + "ladder-off": "\uf14c", + "ladle": "\ufc14", + "lambda": "\uf541", + "lamp": "\uefab", + "lamp-2": "\uf09e", + "lamp-off": "\uf14d", + "lane": "\ufaf9", + "language": "\uebbe", + "language-hiragana": "\uef77", + "language-katakana": "\uef78", + "language-off": "\uf14e", + "lasso": "\uefac", + "lasso-off": "\uf14f", + "lasso-polygon": "\uf388", + "lasso-polygon-filled": "\uff5f", + "laurel-wreath": "\uff45", + "laurel-wreath-1": "\uff48", + "laurel-wreath-1-filled": "\u10169", + "laurel-wreath-2": "\uff47", + "laurel-wreath-2-filled": "\u10168", + "laurel-wreath-3": "\uff46", + "laurel-wreath-3-filled": "\u10167", + "laurel-wreath-filled": "\u100c0", + "layers-difference": "\ueac8", + "layers-intersect": "\ueac9", + "layers-intersect-2": "\ueff8", + "layers-linked": "\ueea1", + "layers-off": "\uf150", + "layers-selected": "\ufea9", + "layers-selected-bottom": "\ufeaa", + "layers-subtract": "\ueaca", + "layers-union": "\ueacb", + "layout": "\ueadb", + "layout-2": "\ueacc", + "layout-2-filled": "\ufe27", + "layout-align-bottom": "\ueacd", + "layout-align-bottom-filled": "\ufe26", + "layout-align-center": "\ueace", + "layout-align-center-filled": "\ufe25", + "layout-align-left": "\ueacf", + "layout-align-left-filled": "\ufe24", + "layout-align-middle": "\uead0", + "layout-align-middle-filled": "\ufe23", + "layout-align-right": "\uead1", + "layout-align-right-filled": "\ufe22", + "layout-align-top": "\uead2", + "layout-align-top-filled": "\ufe21", + "layout-board": "\uef95", + "layout-board-filled": "\u10182", + "layout-board-split": "\uef94", + "layout-board-split-filled": "\u10183", + "layout-bottombar": "\uead3", + "layout-bottombar-collapse": "\uf28b", + "layout-bottombar-collapse-filled": "\ufc35", + "layout-bottombar-expand": "\uf28c", + "layout-bottombar-expand-filled": "\ufc36", + "layout-bottombar-filled": "\ufc37", + "layout-bottombar-inactive": "\ufd45", + "layout-cards": "\uec13", + "layout-cards-filled": "\ufe20", + "layout-collage": "\uf389", + "layout-columns": "\uead4", + "layout-dashboard": "\uf02c", + "layout-dashboard-filled": "\ufe1f", + "layout-distribute-horizontal": "\uead5", + "layout-distribute-horizontal-filled": "\ufe1e", + "layout-distribute-vertical": "\uead6", + "layout-distribute-vertical-filled": "\ufe1d", + "layout-filled": "\ufe17", + "layout-grid": "\uedba", + "layout-grid-add": "\uedb9", + "layout-grid-filled": "\ufe1c", + "layout-grid-remove": "\ufa7d", + "layout-kanban": "\uec3f", + "layout-kanban-filled": "\ufe1b", + "layout-list": "\uec14", + "layout-list-filled": "\ufe1a", + "layout-navbar": "\uead7", + "layout-navbar-collapse": "\uf28d", + "layout-navbar-collapse-filled": "\ufc38", + "layout-navbar-expand": "\uf28e", + "layout-navbar-expand-filled": "\ufc39", + "layout-navbar-filled": "\ufc3a", + "layout-navbar-inactive": "\ufd46", + "layout-off": "\uf151", + "layout-rows": "\uead8", + "layout-sidebar": "\ueada", + "layout-sidebar-filled": "\ufe18", + "layout-sidebar-inactive": "\ufd47", + "layout-sidebar-left-collapse": "\uf004", + "layout-sidebar-left-collapse-filled": "\ufc3b", + "layout-sidebar-left-expand": "\uf005", + "layout-sidebar-left-expand-filled": "\ufc3c", + "layout-sidebar-right": "\uead9", + "layout-sidebar-right-collapse": "\uf006", + "layout-sidebar-right-collapse-filled": "\ufc3d", + "layout-sidebar-right-expand": "\uf007", + "layout-sidebar-right-expand-filled": "\ufc3e", + "layout-sidebar-right-filled": "\ufe19", + "layout-sidebar-right-inactive": "\ufd48", + "leaf": "\ued4f", + "leaf-2": "\uff44", + "leaf-off": "\uf400", + "lego": "\ueadc", + "lego-filled": "\ufe16", + "lego-off": "\uf401", + "lemon": "\uef10", + "lemon-2": "\uef81", + "lemon-2-filled": "\u100bf", + "letter-a": "\uec50", + "letter-a-small": "\ufcc7", + "letter-b": "\uec51", + "letter-b-small": "\ufcc8", + "letter-c": "\uec52", + "letter-c-small": "\ufcc9", + "letter-case": "\ueea5", + "letter-case-lower": "\ueea2", + "letter-case-toggle": "\ueea3", + "letter-case-upper": "\ueea4", + "letter-d": "\uec53", + "letter-d-small": "\ufcca", + "letter-e": "\uec54", + "letter-e-small": "\ufccb", + "letter-f": "\uec55", + "letter-f-small": "\ufccc", + "letter-g": "\uec56", + "letter-g-small": "\ufccd", + "letter-h": "\uec57", + "letter-h-small": "\ufcce", + "letter-i": "\uec58", + "letter-i-small": "\ufccf", + "letter-j": "\uec59", + "letter-j-small": "\ufcd0", + "letter-k": "\uec5a", + "letter-k-small": "\ufcd1", + "letter-l": "\uec5b", + "letter-l-small": "\ufcd2", + "letter-m": "\uec5c", + "letter-m-small": "\ufcd3", + "letter-n": "\uec5d", + "letter-n-small": "\ufcd4", + "letter-o": "\uec5e", + "letter-o-small": "\ufcd5", + "letter-p": "\uec5f", + "letter-p-small": "\ufcd6", + "letter-q": "\uec60", + "letter-q-small": "\ufcd7", + "letter-r": "\uec61", + "letter-r-small": "\ufcd8", + "letter-s": "\uec62", + "letter-s-small": "\ufcd9", + "letter-spacing": "\ueea6", + "letter-t": "\uec63", + "letter-t-small": "\ufcda", + "letter-u": "\uec64", + "letter-u-small": "\ufcdb", + "letter-v": "\uec65", + "letter-v-small": "\ufcdc", + "letter-w": "\uec66", + "letter-w-small": "\ufcdd", + "letter-x": "\uec67", + "letter-x-small": "\ufcde", + "letter-y": "\uec68", + "letter-y-small": "\ufcdf", + "letter-z": "\uec69", + "letter-z-small": "\ufce0", + "library": "\ufd4c", + "library-filled": "\u10180", + "library-minus": "\ufd49", + "library-photo": "\ufd4a", + "library-plus": "\ufd4b", + "library-plus-filled": "\u10181", + "license": "\uebc0", + "license-off": "\uf153", + "lifebuoy": "\ueadd", + "lifebuoy-filled": "\u100be", + "lifebuoy-off": "\uf154", + "lighter": "\uf794", + "line": "\uec40", + "line-dashed": "\ueea7", + "line-dotted": "\ueea8", + "line-height": "\ueb94", + "line-scan": "\ufcb8", + "link": "\ueade", + "link-minus": "\ufd16", + "link-off": "\uf402", + "link-plus": "\ufd17", + "list": "\ueb6b", + "list-check": "\ueb6a", + "list-details": "\uef40", + "list-letters": "\ufc47", + "list-numbers": "\uef11", + "list-search": "\ueea9", + "list-tree": "\ufafa", + "live-photo": "\ueadf", + "live-photo-filled": "\ufed1", + "live-photo-off": "\uf403", + "live-view": "\uec6b", + "live-view-filled": "\u100a1", + "load-balancer": "\ufa5c", + "loader": "\ueca3", + "loader-2": "\uf226", + "loader-3": "\uf513", + "loader-quarter": "\ueca2", + "location": "\ueae0", + "location-bolt": "\ufbaf", + "location-broken": "\uf2c4", + "location-cancel": "\ufbb0", + "location-check": "\ufbb1", + "location-code": "\ufbb2", + "location-cog": "\ufbb3", + "location-discount": "\ufbb4", + "location-dollar": "\ufbb5", + "location-down": "\ufbb6", + "location-exclamation": "\ufbb7", + "location-filled": "\uf67f", + "location-heart": "\ufbb8", + "location-minus": "\ufbb9", + "location-off": "\uf155", + "location-pause": "\ufbba", + "location-pin": "\ufbbb", + "location-plus": "\ufbbc", + "location-question": "\ufbbd", + "location-search": "\ufbbe", + "location-share": "\ufbbf", + "location-star": "\ufbc0", + "location-up": "\ufbc1", + "location-x": "\ufbc2", + "lock": "\ueae2", + "lock-access": "\ueeaa", + "lock-access-off": "\uf404", + "lock-bitcoin": "\uff37", + "lock-bolt": "\uf924", + "lock-cancel": "\uf925", + "lock-check": "\uf926", + "lock-code": "\uf927", + "lock-cog": "\uf928", + "lock-dollar": "\uf929", + "lock-down": "\uf92a", + "lock-exclamation": "\uf92b", + "lock-filled": "\ufe15", + "lock-heart": "\uf92c", + "lock-minus": "\uf92d", + "lock-off": "\ued1e", + "lock-open": "\ueae1", + "lock-open-2": "\ufea8", + "lock-open-off": "\uf156", + "lock-password": "\uff9f", + "lock-pause": "\uf92e", + "lock-pin": "\uf92f", + "lock-plus": "\uf930", + "lock-question": "\uf931", + "lock-search": "\uf932", + "lock-share": "\uf933", + "lock-square": "\uef51", + "lock-square-rounded": "\uf636", + "lock-square-rounded-filled": "\uf6da", + "lock-star": "\uf934", + "lock-up": "\uf935", + "lock-x": "\uf936", + "logic-and": "\uf240", + "logic-buffer": "\uf241", + "logic-nand": "\uf242", + "logic-nor": "\uf243", + "logic-not": "\uf244", + "logic-or": "\uf245", + "logic-xnor": "\uf246", + "logic-xor": "\uf247", + "login": "\ueba7", + "login-2": "\ufc76", + "logout": "\ueba8", + "logout-2": "\ufa7e", + "logs": "\ufea7", + "lollipop": "\uefcc", + "lollipop-off": "\uf157", + "luggage": "\uefad", + "luggage-off": "\uf158", + "lungs": "\uef62", + "lungs-filled": "\ufe14", + "lungs-off": "\uf405", + "macro": "\ueeab", + "macro-filled": "\ufe13", + "macro-off": "\uf406", + "magnet": "\ueae3", + "magnet-filled": "\ufe12", + "magnet-off": "\uf159", + "magnetic": "\ufcb9", + "mail": "\ueae5", + "mail-ai": "\ufa31", + "mail-bitcoin": "\uff36", + "mail-bolt": "\uf937", + "mail-cancel": "\uf938", + "mail-check": "\uf939", + "mail-code": "\uf93a", + "mail-cog": "\uf93b", + "mail-dollar": "\uf93c", + "mail-down": "\uf93d", + "mail-exclamation": "\uf93e", + "mail-fast": "\uf069", + "mail-filled": "\ufa47", + "mail-forward": "\ueeac", + "mail-heart": "\uf93f", + "mail-minus": "\uf940", + "mail-off": "\uf15a", + "mail-opened": "\ueae4", + "mail-opened-filled": "\ufa48", + "mail-pause": "\uf941", + "mail-pin": "\uf942", + "mail-plus": "\uf943", + "mail-question": "\uf944", + "mail-search": "\uf945", + "mail-share": "\uf946", + "mail-spark": "\uffb3", + "mail-star": "\uf947", + "mail-up": "\uf948", + "mail-x": "\uf949", + "mailbox": "\ueead", + "mailbox-off": "\uf15b", + "man": "\ueae6", + "man-filled": "\ufe11", + "manual-gearbox": "\ued7b", + "manual-gearbox-filled": "\ufe10", + "map": "\ueae9", + "map-2": "\ueae7", + "map-bolt": "\ufbc3", + "map-cancel": "\ufbc4", + "map-check": "\ufbc5", + "map-code": "\ufbc6", + "map-cog": "\ufbc7", + "map-discount": "\ufbc8", + "map-dollar": "\ufbc9", + "map-down": "\ufbca", + "map-east": "\ufc5d", + "map-exclamation": "\ufbcb", + "map-heart": "\ufbcc", + "map-minus": "\ufbcd", + "map-north": "\ufc5e", + "map-off": "\uf15c", + "map-pause": "\ufbce", + "map-pin": "\ueae8", + "map-pin-2": "\ufc48", + "map-pin-bolt": "\uf94a", + "map-pin-cancel": "\uf94b", + "map-pin-check": "\uf94c", + "map-pin-code": "\uf94d", + "map-pin-cog": "\uf94e", + "map-pin-dollar": "\uf94f", + "map-pin-down": "\uf950", + "map-pin-exclamation": "\uf951", + "map-pin-filled": "\uf680", + "map-pin-heart": "\uf952", + "map-pin-minus": "\uf953", + "map-pin-off": "\uecf3", + "map-pin-pause": "\uf954", + "map-pin-pin": "\uf955", + "map-pin-plus": "\uf956", + "map-pin-question": "\uf957", + "map-pin-search": "\uf958", + "map-pin-share": "\uf795", + "map-pin-star": "\uf959", + "map-pin-up": "\uf95a", + "map-pin-x": "\uf95b", + "map-pins": "\ued5e", + "map-plus": "\ufbcf", + "map-question": "\ufbd0", + "map-route": "\ufc79", + "map-search": "\uef82", + "map-share": "\ufbd1", + "map-south": "\ufc5f", + "map-star": "\ufbd2", + "map-up": "\ufbd3", + "map-west": "\ufc60", + "map-x": "\ufbd4", + "markdown": "\uec41", + "markdown-off": "\uf407", + "marquee": "\uec77", + "marquee-2": "\ueeae", + "marquee-off": "\uf15d", + "mars": "\uec80", + "mask": "\ueeb0", + "mask-off": "\ueeaf", + "masks-theater": "\uf263", + "masks-theater-off": "\uf408", + "massage": "\ueeb1", + "matchstick": "\uf577", + "math": "\uebeb", + "math-1-divide-2": "\uf4e2", + "math-1-divide-3": "\uf4e3", + "math-avg": "\uf0f4", + "math-cos": "\uff1f", + "math-ctg": "\uff35", + "math-equal-greater": "\uf4e4", + "math-equal-lower": "\uf4e5", + "math-function": "\ueeb2", + "math-function-off": "\uf15e", + "math-function-y": "\uf4e6", + "math-greater": "\uf4e7", + "math-integral": "\uf4e9", + "math-integral-x": "\uf4e8", + "math-integrals": "\uf4ea", + "math-lower": "\uf4eb", + "math-max": "\uf0f5", + "math-max-min": "\ufda0", + "math-min": "\uf0f6", + "math-not": "\uf4ec", + "math-off": "\uf409", + "math-pi": "\uf4ee", + "math-pi-divide-2": "\uf4ed", + "math-sec": "\uff34", + "math-sin": "\uff1e", + "math-symbols": "\ueeb3", + "math-tg": "\uff33", + "math-x-divide-2": "\uf4ef", + "math-x-divide-y": "\uf4f1", + "math-x-divide-y-2": "\uf4f0", + "math-x-floor-divide-y": "\u10073", + "math-x-minus-x": "\uf4f2", + "math-x-minus-y": "\uf4f3", + "math-x-plus-x": "\uf4f4", + "math-x-plus-y": "\uf4f5", + "math-xy": "\uf4f6", + "math-y-minus-y": "\uf4f7", + "math-y-plus-y": "\uf4f8", + "matrix": "\u100bc", + "maximize": "\ueaea", + "maximize-off": "\uf15f", + "meat": "\uef12", + "meat-off": "\uf40a", + "medal": "\uec78", + "medal-2": "\uefcd", + "medical-cross": "\uec2f", + "medical-cross-circle": "\ufae8", + "medical-cross-filled": "\uf681", + "medical-cross-off": "\uf160", + "medicine-syrup": "\uef63", + "meeple": "\uf514", + "meeple-filled": "\u100a0", + "melon": "\ufc7a", + "melon-filled": "\u1000e", + "menorah": "\uf58c", + "menu": "\ueaeb", + "menu-2": "\uec42", + "menu-3": "\uff43", + "menu-4": "\uff42", + "menu-deep": "\ufafb", + "menu-order": "\uf5f5", + "message": "\ueaef", + "message-2": "\ueaec", + "message-2-bolt": "\uf95c", + "message-2-cancel": "\uf95d", + "message-2-check": "\uf95e", + "message-2-code": "\uf012", + "message-2-cog": "\uf95f", + "message-2-dollar": "\uf960", + "message-2-down": "\uf961", + "message-2-exclamation": "\uf962", + "message-2-filled": "\u1009f", + "message-2-heart": "\uf963", + "message-2-minus": "\uf964", + "message-2-off": "\uf40b", + "message-2-pause": "\uf965", + "message-2-pin": "\uf966", + "message-2-plus": "\uf967", + "message-2-question": "\uf968", + "message-2-search": "\uf969", + "message-2-share": "\uf077", + "message-2-star": "\uf96a", + "message-2-up": "\uf96b", + "message-2-x": "\uf96c", + "message-bolt": "\uf96d", + "message-cancel": "\uf96e", + "message-chatbot": "\uf38a", + "message-chatbot-filled": "\ufed0", + "message-check": "\uf96f", + "message-circle": "\ueaed", + "message-circle-2": "\ueaed", + "message-circle-2-filled": "\ufecf", + "message-circle-bolt": "\uf970", + "message-circle-cancel": "\uf971", + "message-circle-check": "\uf972", + "message-circle-code": "\uf973", + "message-circle-cog": "\uf974", + "message-circle-dollar": "\uf975", + "message-circle-down": "\uf976", + "message-circle-exclamation": "\uf977", + "message-circle-filled": "\ufecf", + "message-circle-heart": "\uf978", + "message-circle-minus": "\uf979", + "message-circle-off": "\ued40", + "message-circle-pause": "\uf97a", + "message-circle-pin": "\uf97b", + "message-circle-plus": "\uf97c", + "message-circle-question": "\uf97d", + "message-circle-search": "\uf97e", + "message-circle-share": "\uf97f", + "message-circle-star": "\uf980", + "message-circle-up": "\uf981", + "message-circle-user": "\ufec5", + "message-circle-x": "\uf982", + "message-code": "\uf013", + "message-cog": "\uf983", + "message-dollar": "\uf984", + "message-dots": "\ueaee", + "message-down": "\uf985", + "message-exclamation": "\uf986", + "message-filled": "\ufecd", + "message-forward": "\uf28f", + "message-heart": "\uf987", + "message-language": "\uefae", + "message-minus": "\uf988", + "message-off": "\ued41", + "message-pause": "\uf989", + "message-pin": "\uf98a", + "message-plus": "\uec9a", + "message-question": "\uf98b", + "message-reply": "\ufd4d", + "message-report": "\uec9b", + "message-report-filled": "\ufece", + "message-search": "\uf98c", + "message-share": "\uf078", + "message-star": "\uf98d", + "message-up": "\uf98e", + "message-user": "\ufec4", + "message-x": "\uf98f", + "messages": "\ueb6c", + "messages-off": "\ued42", + "meteor": "\uf1fd", + "meteor-filled": "\u1000d", + "meteor-off": "\uf40c", + "meter-cube": "\ufd7c", + "meter-square": "\ufd7d", + "metronome": "\ufd25", + "michelin-bib-gourmand": "\ufae9", + "michelin-star": "\ufaeb", + "michelin-star-filled": "\u1000c", + "michelin-star-green": "\ufaea", + "mickey": "\uf2a3", + "mickey-filled": "\uf683", + "microphone": "\ueaf0", + "microphone-2": "\uef2c", + "microphone-2-off": "\uf40d", + "microphone-filled": "\ufe0f", + "microphone-off": "\ued16", + "microscope": "\uef64", + "microscope-filled": "\u10166", + "microscope-off": "\uf40e", + "microwave": "\uf248", + "microwave-filled": "\ufe0e", + "microwave-off": "\uf264", + "military-award": "\uf079", + "military-rank": "\uefcf", + "military-rank-filled": "\uff5e", + "milk": "\uef13", + "milk-filled": "\u1000b", + "milk-off": "\uf40f", + "milkshake": "\uf4c8", + "minimize": "\ueaf1", + "minus": "\ueaf2", + "minus-vertical": "\ueeb4", + "mist": "\uec30", + "mist-off": "\uf410", + "mobiledata": "\uf9f5", + "mobiledata-off": "\uf9f4", + "moneybag": "\uf506", + "moneybag-edit": "\u1013d", + "moneybag-heart": "\u1013c", + "moneybag-minus": "\u1013b", + "moneybag-move": "\u10139", + "moneybag-move-back": "\u1013a", + "moneybag-plus": "\u10138", + "monkeybar": "\ufeb4", + "mood-angry": "\uf2de", + "mood-angry-filled": "\uff0a", + "mood-annoyed": "\uf2e0", + "mood-annoyed-2": "\uf2df", + "mood-bitcoin": "\uff32", + "mood-boy": "\ued2d", + "mood-check": "\uf7b3", + "mood-cog": "\uf7b4", + "mood-confuzed": "\ueaf3", + "mood-confuzed-filled": "\uf7f2", + "mood-crazy-happy": "\ued90", + "mood-crazy-happy-filled": "\uff09", + "mood-cry": "\uecbb", + "mood-dollar": "\uf7b5", + "mood-edit": "\ufa05", + "mood-empty": "\ueeb5", + "mood-empty-filled": "\uf7f3", + "mood-happy": "\ueaf4", + "mood-happy-filled": "\uf7f4", + "mood-heart": "\uf7b6", + "mood-kid": "\uec03", + "mood-kid-filled": "\uf7f5", + "mood-look-down": "\ufd37", + "mood-look-left": "\uf2c5", + "mood-look-right": "\uf2c6", + "mood-look-up": "\ufd38", + "mood-minus": "\uf7b7", + "mood-nerd": "\uf2e1", + "mood-nervous": "\uef96", + "mood-neutral": "\ueaf5", + "mood-neutral-filled": "\uf7f6", + "mood-off": "\uf161", + "mood-pin": "\uf7b8", + "mood-plus": "\uf7b9", + "mood-puzzled": "\ufd39", + "mood-sad": "\ueaf6", + "mood-sad-2": "\uf2e2", + "mood-sad-dizzy": "\uf2e3", + "mood-sad-filled": "\uf7f7", + "mood-sad-squint": "\uf2e4", + "mood-search": "\uf7ba", + "mood-share": "\ufa06", + "mood-sick": "\uf2e5", + "mood-silence": "\uf2e6", + "mood-sing": "\uf2c7", + "mood-smile": "\ueaf7", + "mood-smile-beam": "\uf2e7", + "mood-smile-dizzy": "\uf2e8", + "mood-smile-filled": "\uf7f8", + "mood-spark": "\uffb2", + "mood-suprised": "\uec04", + "mood-surprised": "\uec04", + "mood-tongue": "\ueb95", + "mood-tongue-wink": "\uf2ea", + "mood-tongue-wink-2": "\uf2e9", + "mood-unamused": "\uf2eb", + "mood-up": "\uf7bb", + "mood-wink": "\uf2ed", + "mood-wink-2": "\uf2ec", + "mood-wrrr": "\uf2ee", + "mood-wrrr-filled": "\uff08", + "mood-x": "\uf7bc", + "mood-xd": "\uf2ef", + "moon": "\ueaf8", + "moon-2": "\uece6", + "moon-filled": "\uf684", + "moon-off": "\uf162", + "moon-stars": "\uece7", + "moped": "\uecbc", + "motorbike": "\ueeb6", + "motorbike-filled": "\u100f8", + "mountain": "\uef97", + "mountain-filled": "\u1000a", + "mountain-off": "\uf411", + "mouse": "\ueaf9", + "mouse-2": "\uf1d7", + "mouse-filled": "\ufb2f", + "mouse-off": "\uf163", + "moustache": "\uf4c9", + "movie": "\ueafa", + "movie-off": "\uf164", + "mug": "\ueafb", + "mug-filled": "\u10009", + "mug-off": "\uf165", + "multiplier-0-5x": "\uef41", + "multiplier-1-5x": "\uef42", + "multiplier-1x": "\uef43", + "multiplier-2x": "\uef44", + "mushroom": "\uef14", + "mushroom-filled": "\uf7f9", + "mushroom-off": "\uf412", + "music": "\ueafc", + "music-bolt": "\ufbd5", + "music-cancel": "\ufbd6", + "music-check": "\ufbd7", + "music-code": "\ufbd8", + "music-cog": "\ufbd9", + "music-discount": "\ufbda", + "music-dollar": "\ufbdb", + "music-down": "\ufbdc", + "music-exclamation": "\ufbdd", + "music-heart": "\ufbde", + "music-minus": "\ufbdf", + "music-off": "\uf166", + "music-pause": "\ufbe0", + "music-pin": "\ufbe1", + "music-plus": "\ufbe2", + "music-question": "\ufbe3", + "music-search": "\ufbe4", + "music-share": "\ufbe5", + "music-star": "\ufbe6", + "music-up": "\ufbe7", + "music-x": "\ufbe8", + "navigation": "\uf2c8", + "navigation-bolt": "\ufbe9", + "navigation-cancel": "\ufbea", + "navigation-check": "\ufbeb", + "navigation-code": "\ufbec", + "navigation-cog": "\ufbed", + "navigation-discount": "\ufbee", + "navigation-dollar": "\ufbef", + "navigation-down": "\ufbf0", + "navigation-east": "\ufcba", + "navigation-exclamation": "\ufbf1", + "navigation-filled": "\uf685", + "navigation-heart": "\ufbf2", + "navigation-minus": "\ufbf3", + "navigation-north": "\ufcbb", + "navigation-off": "\uf413", + "navigation-pause": "\ufbf4", + "navigation-pin": "\ufbf5", + "navigation-plus": "\ufbf6", + "navigation-question": "\ufbf7", + "navigation-search": "\ufbf8", + "navigation-share": "\ufbf9", + "navigation-south": "\ufcbc", + "navigation-star": "\ufbfa", + "navigation-top": "\ufaec", + "navigation-up": "\ufbfb", + "navigation-west": "\ufcbd", + "navigation-x": "\ufbfc", + "needle": "\uf508", + "needle-thread": "\uf507", + "network": "\uf09f", + "network-off": "\uf414", + "new-section": "\uebc1", + "news": "\ueafd", + "news-off": "\uf167", + "nfc": "\ueeb7", + "nfc-off": "\uf168", + "no-copyright": "\uefb9", + "no-creative-commons": "\uefba", + "no-derivatives": "\uefbb", + "north-star": "\uf014", + "note": "\ueb6d", + "note-off": "\uf169", + "notebook": "\ueb96", + "notebook-off": "\uf415", + "notes": "\ueb6e", + "notes-off": "\uf16a", + "notification": "\ueafe", + "notification-off": "\uf16b", + "number": "\uf1fe", + "number-0": "\uedf0", + "number-0-small": "\ufce1", + "number-1": "\uedf1", + "number-1-small": "\ufce2", + "number-10": "\u1005e", + "number-10-small": "\ufce3", + "number-100-small": "\u10005", + "number-11": "\u1005d", + "number-11-small": "\ufce4", + "number-12-small": "\ufce5", + "number-123": "\uf554", + "number-13-small": "\ufce6", + "number-14-small": "\ufce7", + "number-15-small": "\ufce8", + "number-16-small": "\ufce9", + "number-17-small": "\ufcea", + "number-18-small": "\ufceb", + "number-19-small": "\ufcec", + "number-2": "\uedf2", + "number-2-small": "\ufced", + "number-20-small": "\ufcee", + "number-21-small": "\ufcef", + "number-22-small": "\ufcf0", + "number-23-small": "\ufcf1", + "number-24-small": "\ufcf2", + "number-25-small": "\ufcf3", + "number-26-small": "\ufcf4", + "number-27-small": "\ufcf5", + "number-28-small": "\ufcf6", + "number-29-small": "\ufcf7", + "number-3": "\uedf3", + "number-3-small": "\ufcf8", + "number-30-small": "\u10004", + "number-31-small": "\u10003", + "number-32-small": "\u10002", + "number-33-small": "\u10001", + "number-34-small": "\u10000", + "number-35-small": "\uffff", + "number-36-small": "\ufffe", + "number-37-small": "\ufffd", + "number-38-small": "\ufffc", + "number-39-small": "\ufffb", + "number-4": "\uedf4", + "number-4-small": "\ufcf9", + "number-40-small": "\ufffa", + "number-41-small": "\ufff9", + "number-42-small": "\ufff8", + "number-43-small": "\ufff7", + "number-44-small": "\ufff6", + "number-45-small": "\ufff5", + "number-46-small": "\ufff4", + "number-47-small": "\ufff3", + "number-48-small": "\ufff2", + "number-49-small": "\ufff1", + "number-5": "\uedf5", + "number-5-small": "\ufcfa", + "number-50-small": "\ufff0", + "number-51-small": "\uffef", + "number-52-small": "\uffee", + "number-53-small": "\uffed", + "number-54-small": "\uffec", + "number-55-small": "\uffeb", + "number-56-small": "\uffea", + "number-57-small": "\uffe9", + "number-58-small": "\uffe8", + "number-59-small": "\uffe7", + "number-6": "\uedf6", + "number-6-small": "\ufcfb", + "number-60-small": "\uffe6", + "number-61-small": "\uffe5", + "number-62-small": "\uffe4", + "number-63-small": "\uffe3", + "number-64-small": "\uffe2", + "number-65-small": "\uffe1", + "number-66-small": "\uffe0", + "number-67-small": "\uffdf", + "number-68-small": "\uffde", + "number-69-small": "\uffdd", + "number-7": "\uedf7", + "number-7-small": "\ufcfc", + "number-70-small": "\uffdc", + "number-71-small": "\uffdb", + "number-72-small": "\uffda", + "number-73-small": "\uffd9", + "number-74-small": "\uffd8", + "number-75-small": "\uffd7", + "number-76-small": "\uffd6", + "number-77-small": "\uffd5", + "number-78-small": "\uffd4", + "number-79-small": "\uffd3", + "number-8": "\uedf8", + "number-8-small": "\ufcfd", + "number-80-small": "\uffd2", + "number-81-small": "\uffd1", + "number-82-small": "\uffd0", + "number-83-small": "\uffcf", + "number-84-small": "\uffce", + "number-85-small": "\uffcd", + "number-86-small": "\uffcc", + "number-87-small": "\uffcb", + "number-88-small": "\uffca", + "number-89-small": "\uffc9", + "number-9": "\uedf9", + "number-9-small": "\ufcfe", + "number-90-small": "\uffc8", + "number-91-small": "\uffc7", + "number-92-small": "\uffc6", + "number-93-small": "\uffc5", + "number-94-small": "\uffc4", + "number-95-small": "\uffc3", + "number-96-small": "\uffc2", + "number-97-small": "\uffc1", + "number-98-small": "\uffc0", + "number-99-small": "\uffbf", + "numbers": "\uf015", + "nurse": "\uef65", + "nurse-filled": "\u1009e", + "nut": "\ufc61", + "object-scan": "\ufef1", + "octagon": "\uecbd", + "octagon-filled": "\uf686", + "octagon-minus": "\ufc92", + "octagon-minus-2": "\ufc91", + "octagon-minus-filled": "\u1017f", + "octagon-off": "\ueeb8", + "octagon-plus": "\ufc94", + "octagon-plus-2": "\ufc93", + "octagon-plus-filled": "\u1017e", + "octahedron": "\ufaae", + "octahedron-off": "\ufaac", + "octahedron-plus": "\ufaad", + "old": "\ueeb9", + "olympics": "\ueeba", + "olympics-off": "\uf416", + "om": "\uf58d", + "omega": "\ueb97", + "outbound": "\uf249", + "outlet": "\uebd7", + "oval": "\uf02e", + "oval-filled": "\uf687", + "oval-vertical": "\uf02d", + "oval-vertical-filled": "\uf688", + "overline": "\ueebb", + "package": "\ueaff", + "package-export": "\uf07a", + "package-import": "\uf07b", + "package-off": "\uf16c", + "packages": "\uf2c9", + "pacman": "\ueebc", + "page-break": "\uec81", + "paint": "\ueb00", + "paint-filled": "\uf75f", + "paint-off": "\uf16d", + "palette": "\ueb01", + "palette-filled": "\u1009d", + "palette-off": "\uf16e", + "panorama-horizontal": "\ued33", + "panorama-horizontal-filled": "\ufecc", + "panorama-horizontal-off": "\uf417", + "panorama-vertical": "\ued34", + "panorama-vertical-filled": "\ufecb", + "panorama-vertical-off": "\uf418", + "paper-bag": "\uf02f", + "paper-bag-off": "\uf16f", + "paperclip": "\ueb02", + "parachute": "\ued7c", + "parachute-off": "\uf170", + "parentheses": "\uebd8", + "parentheses-off": "\uf171", + "parking": "\ueb03", + "parking-circle": "\ufd5a", + "parking-circle-filled": "\ufeca", + "parking-off": "\uf172", + "password": "\uf4ca", + "password-fingerprint": "\ufc7b", + "password-mobile-phone": "\ufc7c", + "password-user": "\ufc7d", + "paw": "\ueff9", + "paw-filled": "\uf689", + "paw-off": "\uf419", + "paywall": "\ufd7e", + "pdf": "\uf7ac", + "peace": "\uecbe", + "pencil": "\ueb04", + "pencil-bolt": "\ufbfd", + "pencil-cancel": "\ufbfe", + "pencil-check": "\ufbff", + "pencil-code": "\ufc00", + "pencil-cog": "\ufc01", + "pencil-discount": "\ufc02", + "pencil-dollar": "\ufc03", + "pencil-down": "\ufc04", + "pencil-exclamation": "\ufc05", + "pencil-heart": "\ufc06", + "pencil-minus": "\uf1eb", + "pencil-off": "\uf173", + "pencil-pause": "\ufc07", + "pencil-pin": "\ufc08", + "pencil-plus": "\uf1ec", + "pencil-question": "\ufc09", + "pencil-search": "\ufc0a", + "pencil-share": "\ufc0b", + "pencil-star": "\ufc0c", + "pencil-up": "\ufc0d", + "pencil-x": "\ufc0e", + "pennant": "\ued7d", + "pennant-2": "\uf06a", + "pennant-2-filled": "\uf68a", + "pennant-filled": "\uf68b", + "pennant-off": "\uf174", + "pentagon": "\uefe3", + "pentagon-filled": "\uf68c", + "pentagon-minus": "\ufeb3", + "pentagon-number-0": "\ufc7e", + "pentagon-number-1": "\ufc7f", + "pentagon-number-2": "\ufc80", + "pentagon-number-3": "\ufc81", + "pentagon-number-4": "\ufc82", + "pentagon-number-5": "\ufc83", + "pentagon-number-6": "\ufc84", + "pentagon-number-7": "\ufc85", + "pentagon-number-8": "\ufc86", + "pentagon-number-9": "\ufc87", + "pentagon-off": "\uf41a", + "pentagon-plus": "\ufc49", + "pentagon-x": "\ufc88", + "pentagram": "\uf586", + "pepper": "\uef15", + "pepper-off": "\uf175", + "percentage": "\uecf4", + "percentage-0": "\ufee5", + "percentage-10": "\ufee4", + "percentage-100": "\ufee3", + "percentage-20": "\ufee2", + "percentage-25": "\ufee1", + "percentage-30": "\ufee0", + "percentage-33": "\ufedf", + "percentage-40": "\ufede", + "percentage-50": "\ufedd", + "percentage-60": "\ufedc", + "percentage-66": "\ufedb", + "percentage-70": "\ufeda", + "percentage-75": "\ufed9", + "percentage-80": "\ufed8", + "percentage-90": "\ufed7", + "perfume": "\uf509", + "perspective": "\ueebd", + "perspective-off": "\uf176", + "phone": "\ueb09", + "phone-call": "\ueb05", + "phone-calling": "\uec43", + "phone-check": "\uec05", + "phone-done": "\uff9e", + "phone-end": "\uff9d", + "phone-filled": "\ufa49", + "phone-incoming": "\ueb06", + "phone-off": "\uecf5", + "phone-outgoing": "\ueb07", + "phone-pause": "\ueb08", + "phone-plus": "\uec06", + "phone-ringing": "\uff9c", + "phone-spark": "\uffb1", + "phone-x": "\uec07", + "photo": "\ueb0a", + "photo-ai": "\ufa32", + "photo-bitcoin": "\uff31", + "photo-bolt": "\uf990", + "photo-cancel": "\uf35d", + "photo-check": "\uf35e", + "photo-circle": "\ufc4a", + "photo-circle-minus": "\ufc62", + "photo-circle-plus": "\ufc63", + "photo-code": "\uf991", + "photo-cog": "\uf992", + "photo-dollar": "\uf993", + "photo-down": "\uf35f", + "photo-edit": "\uf360", + "photo-exclamation": "\uf994", + "photo-filled": "\ufa4a", + "photo-heart": "\uf361", + "photo-hexagon": "\ufc4b", + "photo-minus": "\uf362", + "photo-off": "\uecf6", + "photo-pause": "\uf995", + "photo-pentagon": "\ufc4c", + "photo-pin": "\uf996", + "photo-plus": "\uf363", + "photo-question": "\uf997", + "photo-scan": "\ufca8", + "photo-search": "\uf364", + "photo-sensor": "\uf798", + "photo-sensor-2": "\uf796", + "photo-sensor-3": "\uf797", + "photo-share": "\uf998", + "photo-shield": "\uf365", + "photo-spark": "\uffb0", + "photo-square-rounded": "\ufc4d", + "photo-star": "\uf366", + "photo-up": "\uf38b", + "photo-video": "\ufc95", + "photo-x": "\uf367", + "physotherapist": "\ueebe", + "piano": "\ufad3", + "pick": "\ufafc", + "picnic-table": "\ufed6", + "picture-in-picture": "\ued35", + "picture-in-picture-filled": "\ufec1", + "picture-in-picture-off": "\ued43", + "picture-in-picture-on": "\ued44", + "picture-in-picture-top": "\uefe4", + "picture-in-picture-top-filled": "\ufec2", + "pig": "\uef52", + "pig-filled": "\u1010a", + "pig-money": "\uf38c", + "pig-off": "\uf177", + "pilcrow": "\uf5f6", + "pilcrow-left": "\ufd7f", + "pilcrow-right": "\ufd80", + "pill": "\uec44", + "pill-filled": "\uff07", + "pill-off": "\uf178", + "pills": "\uef66", + "pin": "\uec9c", + "pin-end": "\ufd5b", + "pin-filled": "\uf68d", + "pin-invoke": "\ufd5c", + "ping-pong": "\uf38d", + "pinned": "\ued60", + "pinned-filled": "\uf68e", + "pinned-off": "\ued5f", + "pizza": "\uedbb", + "pizza-filled": "\u10008", + "pizza-off": "\uf179", + "placeholder": "\uf626", + "plane": "\ueb6f", + "plane-arrival": "\ueb99", + "plane-departure": "\ueb9a", + "plane-inflight": "\uef98", + "plane-off": "\uf17a", + "plane-tilt": "\uf1ed", + "planet": "\uec08", + "planet-off": "\uf17b", + "plant": "\ued50", + "plant-2": "\ued7e", + "plant-2-off": "\uf17c", + "plant-off": "\uf17d", + "play-basketball": "\ufa66", + "play-card": "\ueebf", + "play-card-1": "\u1005c", + "play-card-1-filled": "\u10083", + "play-card-10": "\u1005b", + "play-card-10-filled": "\u10082", + "play-card-2": "\u1005a", + "play-card-2-filled": "\u10081", + "play-card-3": "\u10059", + "play-card-3-filled": "\u10080", + "play-card-4": "\u10058", + "play-card-4-filled": "\u1007f", + "play-card-5": "\u10057", + "play-card-5-filled": "\u1007e", + "play-card-6": "\u10056", + "play-card-6-filled": "\u1007d", + "play-card-7": "\u10055", + "play-card-7-filled": "\u1007c", + "play-card-8": "\u10054", + "play-card-8-filled": "\u1007b", + "play-card-9": "\u10053", + "play-card-9-filled": "\u1007a", + "play-card-a": "\u10052", + "play-card-a-filled": "\u10079", + "play-card-j": "\u10051", + "play-card-j-filled": "\u10078", + "play-card-k": "\u10050", + "play-card-k-filled": "\u10077", + "play-card-off": "\uf17e", + "play-card-q": "\u1004f", + "play-card-q-filled": "\u10076", + "play-card-star": "\u1004e", + "play-card-star-filled": "\u10075", + "play-football": "\ufa67", + "play-handball": "\ufa68", + "play-volleyball": "\ufa69", + "player-eject": "\uefbc", + "player-eject-filled": "\uf68f", + "player-pause": "\ued45", + "player-pause-filled": "\uf690", + "player-play": "\ued46", + "player-play-filled": "\uf691", + "player-record": "\ued47", + "player-record-filled": "\uf692", + "player-skip-back": "\ued48", + "player-skip-back-filled": "\uf693", + "player-skip-forward": "\ued49", + "player-skip-forward-filled": "\uf694", + "player-stop": "\ued4a", + "player-stop-filled": "\uf695", + "player-track-next": "\ued4b", + "player-track-next-filled": "\uf696", + "player-track-prev": "\ued4c", + "player-track-prev-filled": "\uf697", + "playlist": "\ueec0", + "playlist-add": "\uf008", + "playlist-off": "\uf17f", + "playlist-x": "\uf009", + "playstation-circle": "\uf2ad", + "playstation-square": "\uf2ae", + "playstation-triangle": "\uf2af", + "playstation-x": "\uf2b0", + "plug": "\uebd9", + "plug-connected": "\uf00a", + "plug-connected-x": "\uf0a0", + "plug-off": "\uf180", + "plug-x": "\uf0a1", + "plus": "\ueb0b", + "plus-equal": "\uf7ad", + "plus-minus": "\uf7ae", + "png": "\uf3ad", + "podium": "\uf1d8", + "podium-off": "\uf41b", + "point": "\ueb0c", + "point-filled": "\uf698", + "point-off": "\uf181", + "pointer": "\uf265", + "pointer-bolt": "\uf999", + "pointer-cancel": "\uf99a", + "pointer-check": "\uf99b", + "pointer-code": "\uf99c", + "pointer-cog": "\uf99d", + "pointer-dollar": "\uf99e", + "pointer-down": "\uf99f", + "pointer-exclamation": "\uf9a0", + "pointer-filled": "\ufb30", + "pointer-heart": "\uf9a1", + "pointer-minus": "\uf9a2", + "pointer-off": "\uf9a3", + "pointer-pause": "\uf9a4", + "pointer-pin": "\uf9a5", + "pointer-plus": "\uf9a6", + "pointer-question": "\uf9a7", + "pointer-search": "\uf9a8", + "pointer-share": "\uf9a9", + "pointer-star": "\uf9aa", + "pointer-up": "\uf9ab", + "pointer-x": "\uf9ac", + "pokeball": "\ueec1", + "pokeball-off": "\uf41c", + "poker-chip": "\uf515", + "polaroid": "\ueec2", + "polaroid-filled": "\ufa4b", + "polygon": "\uefd0", + "polygon-off": "\uf182", + "poo": "\uf258", + "poo-filled": "\ufec9", + "pool": "\ued91", + "pool-off": "\uf41d", + "power": "\ueb0d", + "pray": "\uecbf", + "premium-rights": "\uefbd", + "prescription": "\uef99", + "presentation": "\ueb70", + "presentation-analytics": "\ueec3", + "presentation-analytics-filled": "\uff5d", + "presentation-filled": "\uff5c", + "presentation-off": "\uf183", + "printer": "\ueb0e", + "printer-off": "\uf184", + "prism": "\ufab1", + "prism-light": "\ufea6", + "prism-off": "\ufaaf", + "prism-plus": "\ufab0", + "prison": "\uef79", + "progress": "\ufa0d", + "progress-alert": "\ufa07", + "progress-bolt": "\ufa08", + "progress-check": "\ufa09", + "progress-down": "\ufa0a", + "progress-help": "\ufa0b", + "progress-x": "\ufa0c", + "prompt": "\ueb0f", + "prong": "\ufda1", + "propeller": "\ueec4", + "propeller-off": "\uf185", + "protocol": "\ufd81", + "pumpkin-scary": "\uf587", + "puzzle": "\ueb10", + "puzzle-2": "\uef83", + "puzzle-filled": "\uf699", + "puzzle-off": "\uf186", + "pyramid": "\ueec5", + "pyramid-off": "\uf187", + "pyramid-plus": "\ufab2", + "qrcode": "\ueb11", + "qrcode-off": "\uf41e", + "question-mark": "\uec9d", + "quote": "\uefbe", + "quote-filled": "\u1009c", + "quote-off": "\uf188", + "quotes": "\ufb1e", + "radar": "\uf017", + "radar-2": "\uf016", + "radar-filled": "\ufe0d", + "radar-off": "\uf41f", + "radio": "\uef2d", + "radio-off": "\uf420", + "radioactive": "\uecc0", + "radioactive-filled": "\uf760", + "radioactive-off": "\uf189", + "radius-bottom-left": "\ueec6", + "radius-bottom-right": "\ueec7", + "radius-top-left": "\ueec8", + "radius-top-right": "\ueec9", + "rainbow": "\uedbc", + "rainbow-off": "\uf18a", + "rating-12-plus": "\uf266", + "rating-14-plus": "\uf267", + "rating-16-plus": "\uf268", + "rating-18-plus": "\uf269", + "rating-21-plus": "\uf26a", + "razor": "\uf4b5", + "razor-electric": "\uf4b4", + "receipt": "\uedfd", + "receipt-2": "\uedfa", + "receipt-bitcoin": "\ufd66", + "receipt-dollar": "\ufd67", + "receipt-dollar-filled": "\u1017d", + "receipt-euro": "\ufd68", + "receipt-euro-filled": "\u1017c", + "receipt-filled": "\uff06", + "receipt-off": "\uedfb", + "receipt-pound": "\ufd69", + "receipt-pound-filled": "\u1017b", + "receipt-refund": "\uedfc", + "receipt-rupee": "\ufd82", + "receipt-rupee-filled": "\u1017a", + "receipt-tax": "\uedbd", + "receipt-yen": "\ufd6a", + "receipt-yen-filled": "\u10179", + "receipt-yuan": "\ufd6b", + "receipt-yuan-filled": "\u10178", + "recharging": "\ueeca", + "record-mail": "\ueb12", + "record-mail-off": "\uf18b", + "rectangle": "\ued37", + "rectangle-filled": "\uf69a", + "rectangle-rounded-bottom": "\ufaed", + "rectangle-rounded-top": "\ufaee", + "rectangle-vertical": "\ued36", + "rectangle-vertical-filled": "\uf69b", + "rectangular-prism": "\ufab5", + "rectangular-prism-off": "\ufab3", + "rectangular-prism-plus": "\ufab4", + "recycle": "\ueb9b", + "recycle-off": "\uf18c", + "refresh": "\ueb13", + "refresh-alert": "\ued57", + "refresh-dot": "\uefbf", + "refresh-off": "\uf18d", + "regex": "\uf31f", + "regex-off": "\uf421", + "registered": "\ueb14", + "relation-many-to-many": "\ued7f", + "relation-many-to-many-filled": "\ufe0c", + "relation-one-to-many": "\ued80", + "relation-one-to-many-filled": "\ufe0b", + "relation-one-to-one": "\ued81", + "relation-one-to-one-filled": "\ufe0a", + "reload": "\uf3ae", + "reorder": "\ufc15", + "repeat": "\ueb72", + "repeat-off": "\uf18e", + "repeat-once": "\ueb71", + "replace": "\uebc7", + "replace-filled": "\uf69c", + "replace-off": "\uf422", + "replace-user": "\u100f0", + "report": "\ueece", + "report-analytics": "\ueecb", + "report-medical": "\ueecc", + "report-money": "\ueecd", + "report-off": "\uf18f", + "report-search": "\uef84", + "reserved-line": "\uf9f6", + "resize": "\ueecf", + "restore": "\ufafd", + "rewind-backward-10": "\ufaba", + "rewind-backward-15": "\ufabb", + "rewind-backward-20": "\ufabc", + "rewind-backward-30": "\ufabd", + "rewind-backward-40": "\ufabe", + "rewind-backward-5": "\ufabf", + "rewind-backward-50": "\ufac0", + "rewind-backward-60": "\ufac1", + "rewind-forward-10": "\ufac2", + "rewind-forward-15": "\ufac3", + "rewind-forward-20": "\ufac4", + "rewind-forward-30": "\ufac5", + "rewind-forward-40": "\ufac6", + "rewind-forward-5": "\ufac7", + "rewind-forward-50": "\ufac8", + "rewind-forward-60": "\ufac9", + "ribbon-health": "\uf58e", + "rings": "\ufa6a", + "ripple": "\ued82", + "ripple-off": "\uf190", + "road": "\uf018", + "road-off": "\uf191", + "road-sign": "\uecdd", + "robot": "\uf00b", + "robot-face": "\ufcbe", + "robot-off": "\uf192", + "rocket": "\uec45", + "rocket-off": "\uf193", + "roller-skating": "\uefd1", + "rollercoaster": "\uf0a2", + "rollercoaster-filled": "\u100f7", + "rollercoaster-off": "\uf423", + "rosette": "\uf599", + "rosette-discount": "\uee7c", + "rosette-discount-check": "\uf1f8", + "rosette-discount-check-filled": "\uf746", + "rosette-discount-check-off": "\uff10", + "rosette-discount-filled": "\uff05", + "rosette-discount-off": "\uf3e6", + "rosette-filled": "\uf69d", + "rosette-number-0": "\uf58f", + "rosette-number-1": "\uf590", + "rosette-number-2": "\uf591", + "rosette-number-3": "\uf592", + "rosette-number-4": "\uf593", + "rosette-number-5": "\uf594", + "rosette-number-6": "\uf595", + "rosette-number-7": "\uf596", + "rosette-number-8": "\uf597", + "rosette-number-9": "\uf598", + "rotate": "\ueb16", + "rotate-2": "\uebb4", + "rotate-360": "\uef85", + "rotate-3d": "\uf020", + "rotate-clockwise": "\ueb15", + "rotate-clockwise-2": "\uebb5", + "rotate-dot": "\uefe5", + "rotate-rectangle": "\uec15", + "route": "\ueb17", + "route-2": "\uf4b6", + "route-alt-left": "\ufca9", + "route-alt-right": "\ufcaa", + "route-off": "\uf194", + "route-scan": "\ufcbf", + "route-square": "\ufcac", + "route-square-2": "\ufcab", + "route-x": "\ufcae", + "route-x-2": "\ufcad", + "router": "\ueb18", + "router-off": "\uf424", + "row-insert-bottom": "\ueed0", + "row-insert-top": "\ueed1", + "row-remove": "\ufafe", + "rss": "\ueb19", + "rubber-stamp": "\uf5ab", + "rubber-stamp-off": "\uf5aa", + "ruler": "\ueb1a", + "ruler-2": "\ueed2", + "ruler-2-off": "\uf195", + "ruler-3": "\uf290", + "ruler-measure": "\uf291", + "ruler-measure-2": "\uff0f", + "ruler-off": "\uf196", + "run": "\uec82", + "rv-truck": "\ufcc0", + "s-turn-down": "\uf516", + "s-turn-left": "\uf517", + "s-turn-right": "\uf518", + "s-turn-up": "\uf519", + "sailboat": "\uec83", + "sailboat-2": "\uf5f7", + "sailboat-off": "\uf425", + "salad": "\uf50a", + "salad-filled": "\u10007", + "salt": "\uef16", + "sandbox": "\ufd6c", + "satellite": "\ueed3", + "satellite-off": "\uf197", + "sausage": "\uef17", + "scale": "\uebc2", + "scale-off": "\uf198", + "scale-outline": "\uef53", + "scale-outline-off": "\uf199", + "scan": "\uebc8", + "scan-eye": "\uf1ff", + "scan-position": "\ufdac", + "schema": "\uf200", + "schema-off": "\uf426", + "school": "\uecf7", + "school-bell": "\uf64a", + "school-off": "\uf19a", + "scissors": "\ueb1b", + "scissors-off": "\uf19b", + "scooter": "\uec6c", + "scooter-electric": "\uecc1", + "scoreboard": "\ufa6b", + "screen-share": "\ued18", + "screen-share-off": "\ued17", + "screenshot": "\uf201", + "scribble": "\uf0a3", + "scribble-off": "\uf427", + "script": "\uf2da", + "script-minus": "\uf2d7", + "script-plus": "\uf2d8", + "script-x": "\uf2d9", + "scuba-diving": "\ufd4e", + "scuba-diving-tank": "\ufefa", + "scuba-diving-tank-filled": "\uff04", + "scuba-mask": "\ueed4", + "scuba-mask-off": "\uf428", + "sdk": "\uf3af", + "search": "\ueb1c", + "search-off": "\uf19c", + "section": "\ueed5", + "section-filled": "\ufe09", + "section-sign": "\uf019", + "seeding": "\ued51", + "seeding-filled": "\u10006", + "seeding-off": "\uf19d", + "seedling": "\ued51", + "seedling-filled": "\u10006", + "seedling-off": "\uf19d", + "select": "\uec9e", + "select-all": "\uf9f7", + "selector": "\ueb1d", + "send": "\ueb1e", + "send-2": "\ufd5d", + "send-off": "\uf429", + "seo": "\uf26b", + "separator": "\uebda", + "separator-horizontal": "\uec79", + "separator-vertical": "\uec7a", + "server": "\ueb1f", + "server-2": "\uf07c", + "server-bolt": "\uf320", + "server-cog": "\uf321", + "server-off": "\uf19e", + "server-spark": "\uffaf", + "servicemark": "\uec09", + "settings": "\ueb20", + "settings-2": "\uf5ac", + "settings-automation": "\ueed6", + "settings-bolt": "\uf9ad", + "settings-cancel": "\uf9ae", + "settings-check": "\uf9af", + "settings-code": "\uf9b0", + "settings-cog": "\uf9b1", + "settings-dollar": "\uf9b2", + "settings-down": "\uf9b3", + "settings-exclamation": "\uf9b4", + "settings-filled": "\uf69e", + "settings-heart": "\uf9b5", + "settings-minus": "\uf9b6", + "settings-off": "\uf19f", + "settings-pause": "\uf9b7", + "settings-pin": "\uf9b8", + "settings-plus": "\uf9b9", + "settings-question": "\uf9ba", + "settings-search": "\uf9bb", + "settings-share": "\uf9bc", + "settings-spark": "\uffae", + "settings-star": "\uf9bd", + "settings-up": "\uf9be", + "settings-x": "\uf9bf", + "shadow": "\ueed8", + "shadow-off": "\ueed7", + "shape": "\ueb9c", + "shape-2": "\ueed9", + "shape-3": "\ueeda", + "shape-off": "\uf1a0", + "share": "\ueb21", + "share-2": "\uf799", + "share-3": "\uf7bd", + "share-off": "\uf1a1", + "shareplay": "\ufea5", + "shi-jumping": "\ufa6c", + "shield": "\ueb24", + "shield-bolt": "\uf9c0", + "shield-cancel": "\uf9c1", + "shield-check": "\ueb22", + "shield-check-filled": "\uf761", + "shield-checkered": "\uef9a", + "shield-checkered-filled": "\uf762", + "shield-chevron": "\uef9b", + "shield-code": "\uf9c2", + "shield-cog": "\uf9c3", + "shield-dollar": "\uf9c4", + "shield-down": "\uf9c5", + "shield-exclamation": "\uf9c6", + "shield-filled": "\uf69f", + "shield-half": "\uf358", + "shield-half-filled": "\uf357", + "shield-heart": "\uf9c7", + "shield-lock": "\ued58", + "shield-lock-filled": "\uf763", + "shield-minus": "\uf9c8", + "shield-off": "\uecf8", + "shield-pause": "\uf9c9", + "shield-pin": "\uf9ca", + "shield-plus": "\uf9cb", + "shield-question": "\uf9cc", + "shield-search": "\uf9cd", + "shield-share": "\uf9ce", + "shield-star": "\uf9cf", + "shield-up": "\uf9d0", + "shield-x": "\ueb23", + "ship": "\uec84", + "ship-off": "\uf42a", + "shirt": "\uec0a", + "shirt-filled": "\uf6a0", + "shirt-off": "\uf1a2", + "shirt-sport": "\uf26c", + "shoe": "\uefd2", + "shoe-off": "\uf1a4", + "shopping-bag": "\uf5f8", + "shopping-bag-check": "\ufc16", + "shopping-bag-discount": "\ufc17", + "shopping-bag-edit": "\ufc18", + "shopping-bag-exclamation": "\ufc19", + "shopping-bag-heart": "\ufda2", + "shopping-bag-minus": "\ufc1a", + "shopping-bag-plus": "\ufc1b", + "shopping-bag-search": "\ufc1c", + "shopping-bag-x": "\ufc1d", + "shopping-cart": "\ueb25", + "shopping-cart-bolt": "\ufb57", + "shopping-cart-cancel": "\ufb58", + "shopping-cart-check": "\ufb59", + "shopping-cart-code": "\ufb5a", + "shopping-cart-cog": "\ufb5b", + "shopping-cart-copy": "\ufb5c", + "shopping-cart-discount": "\ufb5d", + "shopping-cart-dollar": "\ufb5e", + "shopping-cart-down": "\ufb5f", + "shopping-cart-exclamation": "\ufb60", + "shopping-cart-filled": "\ufc3f", + "shopping-cart-heart": "\ufb61", + "shopping-cart-minus": "\ufb62", + "shopping-cart-off": "\ueedc", + "shopping-cart-pause": "\ufb63", + "shopping-cart-pin": "\ufb64", + "shopping-cart-plus": "\ufb65", + "shopping-cart-question": "\ufb66", + "shopping-cart-search": "\ufb67", + "shopping-cart-share": "\ufb68", + "shopping-cart-star": "\ufb69", + "shopping-cart-up": "\ufb6a", + "shopping-cart-x": "\ufb6b", + "shovel": "\uf1d9", + "shovel-pitchforks": "\ufd3a", + "shredder": "\ueedf", + "sign-left": "\uf06b", + "sign-left-filled": "\uf6a1", + "sign-right": "\uf06c", + "sign-right-filled": "\uf6a2", + "signal-2g": "\uf79a", + "signal-3g": "\uf1ee", + "signal-4g": "\uf1ef", + "signal-4g-plus": "\uf259", + "signal-5g": "\uf1f0", + "signal-6g": "\uf9f8", + "signal-e": "\uf9f9", + "signal-g": "\uf9fa", + "signal-h": "\uf9fc", + "signal-h-plus": "\uf9fb", + "signal-lte": "\uf9fd", + "signature": "\ueee0", + "signature-off": "\uf1a5", + "sitemap": "\ueb9d", + "sitemap-filled": "\u1006b", + "sitemap-off": "\uf1a6", + "skateboard": "\uecc2", + "skateboard-off": "\uf42b", + "skateboarding": "\ufaca", + "skew-x": "\ufd3b", + "skew-y": "\ufd3c", + "ski-jumping": "\ufa6c", + "skull": "\uf292", + "slash": "\uf4f9", + "slashes": "\uf588", + "sleigh": "\uef9c", + "slice": "\uebdb", + "slideshow": "\uebc9", + "smart-home": "\uecde", + "smart-home-off": "\uf1a7", + "smoking": "\uecc4", + "smoking-no": "\uecc3", + "snowboarding": "\ufd4f", + "snowflake": "\uec0b", + "snowflake-off": "\uf1a8", + "snowman": "\uf26d", + "soccer-field": "\ued92", + "social": "\uebec", + "social-off": "\uf1a9", + "sock": "\ueee1", + "sofa": "\uefaf", + "sofa-off": "\uf42c", + "solar-electricity": "\ufcc1", + "solar-panel": "\uf7bf", + "solar-panel-2": "\uf7be", + "sort-0-9": "\uf54d", + "sort-9-0": "\uf54e", + "sort-a-z": "\uf54f", + "sort-ascending": "\ueb26", + "sort-ascending-2": "\ueee2", + "sort-ascending-2-filled": "\uff5b", + "sort-ascending-letters": "\uef18", + "sort-ascending-numbers": "\uef19", + "sort-ascending-shapes": "\ufd94", + "sort-ascending-shapes-filled": "\uff5a", + "sort-ascending-small-big": "\ufd95", + "sort-deacending-small-big": "\ufd96", + "sort-descending": "\ueb27", + "sort-descending-2": "\ueee3", + "sort-descending-2-filled": "\uff59", + "sort-descending-letters": "\uef1a", + "sort-descending-numbers": "\uef1b", + "sort-descending-shapes": "\ufd97", + "sort-descending-shapes-filled": "\uff58", + "sort-descending-small-big": "\ufd96", + "sort-z-a": "\uf550", + "sos": "\uf24a", + "soup": "\uef2e", + "soup-filled": "\ufe08", + "soup-off": "\uf42d", + "source-code": "\uf4a2", + "space": "\uec0c", + "space-off": "\uf1aa", + "spaces": "\ufea4", + "spacing-horizontal": "\uef54", + "spacing-vertical": "\uef55", + "spade": "\ueffa", + "spade-filled": "\uf6a3", + "sparkles": "\uf6d7", + "speakerphone": "\ued61", + "speedboat": "\ued93", + "speedboat-filled": "\u100f6", + "sphere": "\ufab8", + "sphere-off": "\ufab6", + "sphere-plus": "\ufab7", + "spider": "\uf293", + "spider-filled": "\u10109", + "spiral": "\uf294", + "spiral-off": "\uf42e", + "sport-billard": "\ueee4", + "spray": "\uf50b", + "spy": "\uf227", + "spy-off": "\uf42f", + "sql": "\uf7c0", + "square": "\ueb2c", + "square-0": "\ueee5", + "square-1": "\ueee6", + "square-2": "\ueee7", + "square-3": "\ueee8", + "square-4": "\ueee9", + "square-5": "\ueeea", + "square-6": "\ueeeb", + "square-7": "\ueeec", + "square-8": "\ueeed", + "square-9": "\ueeee", + "square-arrow-down": "\uf4b7", + "square-arrow-down-filled": "\ufb31", + "square-arrow-left": "\uf4b8", + "square-arrow-left-filled": "\ufb32", + "square-arrow-right": "\uf4b9", + "square-arrow-right-filled": "\ufb33", + "square-arrow-up": "\uf4ba", + "square-arrow-up-filled": "\ufb34", + "square-asterisk": "\uf01a", + "square-asterisk-filled": "\ufb35", + "square-check": "\ueb28", + "square-check-filled": "\uf76d", + "square-chevron-down": "\uf627", + "square-chevron-down-filled": "\ufb36", + "square-chevron-left": "\uf628", + "square-chevron-left-filled": "\ufb37", + "square-chevron-right": "\uf629", + "square-chevron-right-filled": "\ufb38", + "square-chevron-up": "\uf62a", + "square-chevron-up-filled": "\ufb39", + "square-chevrons-down": "\uf64b", + "square-chevrons-down-filled": "\ufb3a", + "square-chevrons-left": "\uf64c", + "square-chevrons-left-filled": "\ufb3b", + "square-chevrons-right": "\uf64d", + "square-chevrons-right-filled": "\ufb3c", + "square-chevrons-up": "\uf64e", + "square-chevrons-up-filled": "\ufb3d", + "square-dashed": "\u100bb", + "square-dot": "\ued59", + "square-dot-filled": "\ufb3e", + "square-f0": "\uf526", + "square-f0-filled": "\uf76e", + "square-f1": "\uf527", + "square-f1-filled": "\uf76f", + "square-f2": "\uf528", + "square-f2-filled": "\uf770", + "square-f3": "\uf529", + "square-f3-filled": "\uf771", + "square-f4": "\uf52a", + "square-f4-filled": "\uf772", + "square-f5": "\uf52b", + "square-f5-filled": "\uf773", + "square-f6": "\uf52c", + "square-f6-filled": "\uf774", + "square-f7": "\uf52d", + "square-f7-filled": "\uf775", + "square-f8": "\uf52e", + "square-f8-filled": "\uf776", + "square-f9": "\uf52f", + "square-f9-filled": "\uf777", + "square-filled": "\ufc40", + "square-forbid": "\ued5b", + "square-forbid-2": "\ued5a", + "square-half": "\ueffb", + "square-key": "\uf638", + "square-letter-a": "\uf47c", + "square-letter-a-filled": "\ufe07", + "square-letter-b": "\uf47d", + "square-letter-b-filled": "\ufe06", + "square-letter-c": "\uf47e", + "square-letter-c-filled": "\ufe05", + "square-letter-d": "\uf47f", + "square-letter-d-filled": "\ufe04", + "square-letter-e": "\uf480", + "square-letter-e-filled": "\ufe03", + "square-letter-f": "\uf481", + "square-letter-f-filled": "\ufe02", + "square-letter-g": "\uf482", + "square-letter-g-filled": "\ufe01", + "square-letter-h": "\uf483", + "square-letter-h-filled": "\ufe00", + "square-letter-i": "\uf484", + "square-letter-i-filled": "\ufdff", + "square-letter-j": "\uf485", + "square-letter-j-filled": "\ufdfe", + "square-letter-k": "\uf486", + "square-letter-k-filled": "\ufdfd", + "square-letter-l": "\uf487", + "square-letter-l-filled": "\ufdfc", + "square-letter-m": "\uf488", + "square-letter-m-filled": "\ufdfb", + "square-letter-n": "\uf489", + "square-letter-n-filled": "\ufdfa", + "square-letter-o": "\uf48a", + "square-letter-o-filled": "\ufdf9", + "square-letter-p": "\uf48b", + "square-letter-p-filled": "\ufdf8", + "square-letter-q": "\uf48c", + "square-letter-q-filled": "\ufdf7", + "square-letter-r": "\uf48d", + "square-letter-r-filled": "\ufdf6", + "square-letter-s": "\uf48e", + "square-letter-s-filled": "\ufdf5", + "square-letter-t": "\uf48f", + "square-letter-t-filled": "\ufdf4", + "square-letter-u": "\uf490", + "square-letter-u-filled": "\ufdf3", + "square-letter-v": "\uf4bb", + "square-letter-v-filled": "\ufdf2", + "square-letter-w": "\uf491", + "square-letter-w-filled": "\ufdf1", + "square-letter-x": "\uf4bc", + "square-letter-x-filled": "\ufdf0", + "square-letter-y": "\uf492", + "square-letter-y-filled": "\ufdef", + "square-letter-z": "\uf493", + "square-letter-z-filled": "\ufdee", + "square-minus": "\ueb29", + "square-minus-filled": "\ufb3f", + "square-number-0": "\ueee5", + "square-number-0-filled": "\uf764", + "square-number-1": "\ueee6", + "square-number-1-filled": "\uf765", + "square-number-2": "\ueee7", + "square-number-2-filled": "\uf7fa", + "square-number-3": "\ueee8", + "square-number-3-filled": "\uf766", + "square-number-4": "\ueee9", + "square-number-4-filled": "\uf767", + "square-number-5": "\ueeea", + "square-number-5-filled": "\uf768", + "square-number-6": "\ueeeb", + "square-number-6-filled": "\uf769", + "square-number-7": "\ueeec", + "square-number-7-filled": "\uf76a", + "square-number-8": "\ueeed", + "square-number-8-filled": "\uf76b", + "square-number-9": "\ueeee", + "square-number-9-filled": "\uf76c", + "square-off": "\ueeef", + "square-percentage": "\ufd83", + "square-plus": "\ueb2a", + "square-plus-2": "\ufc96", + "square-root": "\ueef1", + "square-root-2": "\ueef0", + "square-rotated": "\uecdf", + "square-rotated-filled": "\uf6a4", + "square-rotated-forbid": "\uf01c", + "square-rotated-forbid-2": "\uf01b", + "square-rotated-off": "\ueef2", + "square-rounded": "\uf59a", + "square-rounded-arrow-down": "\uf639", + "square-rounded-arrow-down-filled": "\uf6db", + "square-rounded-arrow-left": "\uf63a", + "square-rounded-arrow-left-filled": "\uf6dc", + "square-rounded-arrow-right": "\uf63b", + "square-rounded-arrow-right-filled": "\uf6dd", + "square-rounded-arrow-up": "\uf63c", + "square-rounded-arrow-up-filled": "\uf6de", + "square-rounded-check": "\uf63d", + "square-rounded-check-filled": "\uf6df", + "square-rounded-chevron-down": "\uf62b", + "square-rounded-chevron-down-filled": "\uf6e0", + "square-rounded-chevron-left": "\uf62c", + "square-rounded-chevron-left-filled": "\uf6e1", + "square-rounded-chevron-right": "\uf62d", + "square-rounded-chevron-right-filled": "\uf6e2", + "square-rounded-chevron-up": "\uf62e", + "square-rounded-chevron-up-filled": "\uf6e3", + "square-rounded-chevrons-down": "\uf64f", + "square-rounded-chevrons-down-filled": "\uf6e4", + "square-rounded-chevrons-left": "\uf650", + "square-rounded-chevrons-left-filled": "\uf6e5", + "square-rounded-chevrons-right": "\uf651", + "square-rounded-chevrons-right-filled": "\uf6e6", + "square-rounded-chevrons-up": "\uf652", + "square-rounded-chevrons-up-filled": "\uf6e7", + "square-rounded-filled": "\uf6a5", + "square-rounded-letter-a": "\uf5ae", + "square-rounded-letter-a-filled": "\ufded", + "square-rounded-letter-b": "\uf5af", + "square-rounded-letter-b-filled": "\ufdec", + "square-rounded-letter-c": "\uf5b0", + "square-rounded-letter-c-filled": "\ufdeb", + "square-rounded-letter-d": "\uf5b1", + "square-rounded-letter-d-filled": "\ufdea", + "square-rounded-letter-e": "\uf5b2", + "square-rounded-letter-e-filled": "\ufde9", + "square-rounded-letter-f": "\uf5b3", + "square-rounded-letter-f-filled": "\ufde8", + "square-rounded-letter-g": "\uf5b4", + "square-rounded-letter-g-filled": "\ufde7", + "square-rounded-letter-h": "\uf5b5", + "square-rounded-letter-h-filled": "\ufde6", + "square-rounded-letter-i": "\uf5b6", + "square-rounded-letter-i-filled": "\ufde5", + "square-rounded-letter-j": "\uf5b7", + "square-rounded-letter-j-filled": "\ufde4", + "square-rounded-letter-k": "\uf5b8", + "square-rounded-letter-k-filled": "\ufde3", + "square-rounded-letter-l": "\uf5b9", + "square-rounded-letter-l-filled": "\ufde2", + "square-rounded-letter-m": "\uf5ba", + "square-rounded-letter-m-filled": "\ufde1", + "square-rounded-letter-n": "\uf5bb", + "square-rounded-letter-n-filled": "\ufde0", + "square-rounded-letter-o": "\uf5bc", + "square-rounded-letter-o-filled": "\ufddf", + "square-rounded-letter-p": "\uf5bd", + "square-rounded-letter-p-filled": "\ufdde", + "square-rounded-letter-q": "\uf5be", + "square-rounded-letter-q-filled": "\ufddd", + "square-rounded-letter-r": "\uf5bf", + "square-rounded-letter-r-filled": "\ufddc", + "square-rounded-letter-s": "\uf5c0", + "square-rounded-letter-s-filled": "\ufddb", + "square-rounded-letter-t": "\uf5c1", + "square-rounded-letter-t-filled": "\ufdda", + "square-rounded-letter-u": "\uf5c2", + "square-rounded-letter-u-filled": "\ufdd9", + "square-rounded-letter-v": "\uf5c3", + "square-rounded-letter-v-filled": "\ufdd8", + "square-rounded-letter-w": "\uf5c4", + "square-rounded-letter-w-filled": "\ufdd7", + "square-rounded-letter-x": "\uf5c5", + "square-rounded-letter-x-filled": "\ufdd6", + "square-rounded-letter-y": "\uf5c6", + "square-rounded-letter-y-filled": "\ufdd5", + "square-rounded-letter-z": "\uf5c7", + "square-rounded-letter-z-filled": "\ufdd4", + "square-rounded-minus": "\uf63e", + "square-rounded-minus-2": "\ufc97", + "square-rounded-minus-filled": "\ufb40", + "square-rounded-number-0": "\uf5c8", + "square-rounded-number-0-filled": "\uf778", + "square-rounded-number-1": "\uf5c9", + "square-rounded-number-1-filled": "\uf779", + "square-rounded-number-2": "\uf5ca", + "square-rounded-number-2-filled": "\uf77a", + "square-rounded-number-3": "\uf5cb", + "square-rounded-number-3-filled": "\uf77b", + "square-rounded-number-4": "\uf5cc", + "square-rounded-number-4-filled": "\uf77c", + "square-rounded-number-5": "\uf5cd", + "square-rounded-number-5-filled": "\uf77d", + "square-rounded-number-6": "\uf5ce", + "square-rounded-number-6-filled": "\uf77e", + "square-rounded-number-7": "\uf5cf", + "square-rounded-number-7-filled": "\uf77f", + "square-rounded-number-8": "\uf5d0", + "square-rounded-number-8-filled": "\uf780", + "square-rounded-number-9": "\uf5d1", + "square-rounded-number-9-filled": "\uf781", + "square-rounded-percentage": "\ufd84", + "square-rounded-plus": "\uf63f", + "square-rounded-plus-2": "\ufc98", + "square-rounded-plus-filled": "\uf6e8", + "square-rounded-x": "\uf640", + "square-rounded-x-filled": "\uf6e9", + "square-toggle": "\ueef4", + "square-toggle-horizontal": "\ueef3", + "square-x": "\ueb2b", + "square-x-filled": "\ufb41", + "squares": "\ueef6", + "squares-diagonal": "\ueef5", + "squares-filled": "\ufe9f", + "squares-selected": "\ufea3", + "stack": "\ueb2d", + "stack-2": "\ueef7", + "stack-2-filled": "\ufdd3", + "stack-3": "\uef9d", + "stack-3-filled": "\ufdd2", + "stack-back": "\ufd26", + "stack-backward": "\ufd27", + "stack-filled": "\ufdd1", + "stack-forward": "\ufd28", + "stack-front": "\ufd29", + "stack-middle": "\ufd2a", + "stack-pop": "\uf234", + "stack-push": "\uf235", + "stairs": "\ueca6", + "stairs-down": "\ueca4", + "stairs-up": "\ueca5", + "star": "\ueb2e", + "star-filled": "\uf6a6", + "star-half": "\ued19", + "star-half-filled": "\uf6a7", + "star-off": "\ued62", + "stars": "\ued38", + "stars-filled": "\uf6a8", + "stars-off": "\uf430", + "status-change": "\uf3b0", + "steam": "\uf24b", + "steering-wheel": "\uec7b", + "steering-wheel-filled": "\uff03", + "steering-wheel-off": "\uf431", + "step-into": "\uece0", + "step-out": "\uece1", + "stereo-glasses": "\uf4cb", + "stethoscope": "\uedbe", + "stethoscope-off": "\uf432", + "sticker": "\ueb2f", + "sticker-2": "\ufd3d", + "stopwatch": "\uff9b", + "storm": "\uf24c", + "storm-off": "\uf433", + "stretching": "\uf2db", + "stretching-2": "\ufa6d", + "strikethrough": "\ueb9e", + "submarine": "\ued94", + "subscript": "\ueb9f", + "subtask": "\uec9f", + "sum": "\ueb73", + "sum-off": "\uf1ab", + "sun": "\ueb30", + "sun-electricity": "\ufcc2", + "sun-filled": "\uf6a9", + "sun-high": "\uf236", + "sun-high-filled": "\u10108", + "sun-low": "\uf237", + "sun-low-filled": "\u10107", + "sun-moon": "\uf4a3", + "sun-off": "\ued63", + "sun-wind": "\uf238", + "sunglasses": "\uf239", + "sunglasses-filled": "\ufec8", + "sunrise": "\uef1c", + "sunrise-filled": "\u10106", + "sunset": "\uec31", + "sunset-2": "\uf23a", + "sunset-2-filled": "\u10105", + "sunset-filled": "\u10104", + "superscript": "\ueba0", + "svg": "\uf25a", + "swimming": "\uec92", + "swipe": "\uf551", + "swipe-down": "\ufd5e", + "swipe-down-filled": "\uff57", + "swipe-left": "\ufd5f", + "swipe-left-filled": "\uff56", + "swipe-right": "\ufd60", + "swipe-right-filled": "\uff55", + "swipe-up": "\ufd61", + "swipe-up-filled": "\uff54", + "switch": "\ueb33", + "switch-2": "\uedbf", + "switch-3": "\uedc0", + "switch-horizontal": "\ueb31", + "switch-vertical": "\ueb32", + "sword": "\uf030", + "sword-off": "\uf434", + "swords": "\uf132", + "table": "\ueba1", + "table-alias": "\uf25b", + "table-column": "\ufaff", + "table-dashed": "\u100ba", + "table-down": "\ufa1c", + "table-export": "\ueef8", + "table-filled": "\uf782", + "table-heart": "\ufa1d", + "table-import": "\ueef9", + "table-minus": "\ufa1e", + "table-off": "\ueefa", + "table-options": "\uf25c", + "table-plus": "\ufa1f", + "table-row": "\ufb00", + "table-share": "\ufa20", + "table-shortcut": "\uf25d", + "table-spark": "\uffad", + "tag": "\u10096", + "tag-filled": "\uff02", + "tag-minus": "\ueb34", + "tag-off": "\uefc0", + "tag-plus": "\u10097", + "tag-starred": "\ufc99", + "tags": "\uef86", + "tags-filled": "\uff01", + "tags-off": "\uefc1", + "tallymark-1": "\uec46", + "tallymark-2": "\uec47", + "tallymark-3": "\uec48", + "tallymark-4": "\uec49", + "tallymarks": "\uec4a", + "tank": "\ued95", + "target": "\ueb35", + "target-arrow": "\uf51a", + "target-off": "\uf1ad", + "tax": "\ufeee", + "tax-euro": "\ufef0", + "tax-pound": "\ufeef", + "teapot": "\uf552", + "telescope": "\uf07d", + "telescope-off": "\uf1ae", + "temperature": "\ueb38", + "temperature-celsius": "\ueb36", + "temperature-fahrenheit": "\ueb37", + "temperature-minus": "\uebed", + "temperature-minus-filled": "\u10103", + "temperature-off": "\uf1af", + "temperature-plus": "\uebee", + "temperature-plus-filled": "\u10102", + "temperature-snow": "\ufda3", + "temperature-sun": "\ufda4", + "template": "\ueb39", + "template-filled": "\u10177", + "template-off": "\uf1b0", + "tent": "\ueefb", + "tent-off": "\uf435", + "terminal": "\uebdc", + "terminal-2": "\uebef", + "test-pipe": "\ueb3a", + "test-pipe-2": "\uf0a4", + "test-pipe-2-filled": "\uff53", + "test-pipe-off": "\uf1b1", + "tex": "\uf4e0", + "text-caption": "\uf4a4", + "text-color": "\uf2dc", + "text-decrease": "\uf202", + "text-direction-ltr": "\ueefc", + "text-direction-rtl": "\ueefd", + "text-grammar": "\ufd6d", + "text-increase": "\uf203", + "text-orientation": "\uf2a4", + "text-plus": "\uf2a5", + "text-recognition": "\uf204", + "text-resize": "\uef87", + "text-scan-2": "\ufcc3", + "text-size": "\uf2b1", + "text-spellcheck": "\uf2a6", + "text-wrap": "\uebdd", + "text-wrap-column": "\ufeb2", + "text-wrap-disabled": "\ueca7", + "texture": "\uf51b", + "theater": "\uf79b", + "thermometer": "\uef67", + "thumb-down": "\ueb3b", + "thumb-down-filled": "\uf6aa", + "thumb-down-off": "\uf436", + "thumb-up": "\ueb3c", + "thumb-up-filled": "\uf6ab", + "thumb-up-off": "\uf437", + "tic-tac": "\uf51c", + "ticket": "\ueb3d", + "ticket-off": "\uf1b2", + "tie": "\uf07e", + "tilde": "\uf4a5", + "tilt-shift": "\ueefe", + "tilt-shift-filled": "\ufec7", + "tilt-shift-off": "\uf1b3", + "time-duration-0": "\ufad4", + "time-duration-10": "\ufad5", + "time-duration-15": "\ufad6", + "time-duration-30": "\ufad7", + "time-duration-45": "\ufad8", + "time-duration-5": "\ufad9", + "time-duration-60": "\ufada", + "time-duration-90": "\ufadb", + "time-duration-off": "\ufadc", + "timeline": "\uf031", + "timeline-event": "\uf553", + "timeline-event-exclamation": "\uf662", + "timeline-event-filled": "\ufd18", + "timeline-event-minus": "\uf663", + "timeline-event-plus": "\uf664", + "timeline-event-text": "\uf665", + "timeline-event-x": "\uf666", + "timezone": "\ufeed", + "tip-jar": "\ufeea", + "tip-jar-euro": "\ufeec", + "tip-jar-pound": "\ufeeb", + "tir": "\uebf0", + "toggle-left": "\ueb3e", + "toggle-left-filled": "\ufec0", + "toggle-right": "\ueb3f", + "toggle-right-filled": "\ufebf", + "toilet-paper": "\uefd3", + "toilet-paper-off": "\uf1b4", + "toml": "\ufa5d", + "tool": "\ueb40", + "tools": "\uebca", + "tools-kitchen": "\ued64", + "tools-kitchen-2": "\ueeff", + "tools-kitchen-2-off": "\uf1b5", + "tools-kitchen-3": "\ufd2b", + "tools-kitchen-off": "\uf1b6", + "tools-off": "\uf1b7", + "tooltip": "\uf2dd", + "topology-bus": "\uf5d9", + "topology-complex": "\uf5da", + "topology-full": "\uf5dc", + "topology-full-hierarchy": "\uf5db", + "topology-ring": "\uf5df", + "topology-ring-2": "\uf5dd", + "topology-ring-3": "\uf5de", + "topology-star": "\uf5e5", + "topology-star-2": "\uf5e0", + "topology-star-3": "\uf5e1", + "topology-star-ring": "\uf5e4", + "topology-star-ring-2": "\uf5e2", + "topology-star-ring-3": "\uf5e3", + "torii": "\uf59b", + "tornado": "\uece2", + "tournament": "\uecd0", + "tower": "\uf2cb", + "tower-off": "\uf2ca", + "track": "\uef00", + "tractor": "\uec0d", + "trademark": "\uec0e", + "traffic-cone": "\uec0f", + "traffic-cone-off": "\uf1b8", + "traffic-lights": "\ued39", + "traffic-lights-off": "\uf1b9", + "train": "\ued96", + "train-filled": "\u100f5", + "transaction-bitcoin": "\ufd6e", + "transaction-dollar": "\ufd6f", + "transaction-euro": "\ufd70", + "transaction-pound": "\ufd71", + "transaction-rupee": "\ufd85", + "transaction-yen": "\ufd72", + "transaction-yuan": "\ufd73", + "transfer": "\ufc1f", + "transfer-in": "\uef2f", + "transfer-out": "\uef30", + "transfer-vertical": "\ufc1e", + "transform": "\uf38e", + "transform-filled": "\uf6ac", + "transform-point": "\ufda9", + "transform-point-bottom-left": "\ufda5", + "transform-point-bottom-right": "\ufda6", + "transform-point-top-left": "\ufda7", + "transform-point-top-right": "\ufda8", + "transition-bottom": "\uf2b2", + "transition-bottom-filled": "\ufdd0", + "transition-left": "\uf2b3", + "transition-left-filled": "\ufdcf", + "transition-right": "\uf2b4", + "transition-right-filled": "\ufdce", + "transition-top": "\uf2b5", + "transition-top-filled": "\ufdcd", + "trash": "\ueb41", + "trash-filled": "\uf783", + "trash-off": "\ued65", + "trash-x": "\uef88", + "trash-x-filled": "\uf784", + "treadmill": "\ufa6e", + "tree": "\uef01", + "trees": "\uec10", + "trekking": "\uf5ad", + "trending-down": "\ueb42", + "trending-down-2": "\uedc1", + "trending-down-3": "\uedc2", + "trending-up": "\ueb43", + "trending-up-2": "\uedc3", + "trending-up-3": "\uedc4", + "triangle": "\ueb44", + "triangle-filled": "\uf6ad", + "triangle-inverted": "\uf01d", + "triangle-inverted-filled": "\uf6ae", + "triangle-minus": "\ufc9b", + "triangle-minus-2": "\ufc9a", + "triangle-off": "\uef02", + "triangle-plus": "\ufc9d", + "triangle-plus-2": "\ufc9c", + "triangle-square-circle": "\uece8", + "triangle-square-circle-filled": "\ufb42", + "triangles": "\uf0a5", + "trident": "\uecc5", + "trolley": "\uf4cc", + "trolley-filled": "\u100f4", + "trophy": "\ueb45", + "trophy-filled": "\uf6af", + "trophy-off": "\uf438", + "trowel": "\uf368", + "truck": "\uebc4", + "truck-delivery": "\uec4b", + "truck-filled": "\u100f3", + "truck-loading": "\uf1da", + "truck-off": "\uef03", + "truck-return": "\uec4c", + "txt": "\uf3b1", + "typeface": "\ufdab", + "typography": "\uebc5", + "typography-off": "\uf1ba", + "u-turn-left": "\ufea2", + "u-turn-right": "\ufea1", + "ufo": "\uf26f", + "ufo-filled": "\u10165", + "ufo-off": "\uf26e", + "uhd": "\u100aa", + "umbrella": "\uebf1", + "umbrella-2": "\uff0e", + "umbrella-closed": "\uff0c", + "umbrella-closed-2": "\uff0d", + "umbrella-filled": "\uf6b0", + "umbrella-off": "\uf1bb", + "underline": "\ueba2", + "universe": "\ufcc4", + "unlink": "\ueb46", + "upload": "\ueb47", + "urgent": "\ueb48", + "usb": "\uf00c", + "user": "\ueb4d", + "user-bitcoin": "\uff30", + "user-bolt": "\uf9d1", + "user-cancel": "\uf9d2", + "user-check": "\ueb49", + "user-circle": "\uef68", + "user-code": "\uf9d3", + "user-cog": "\uf9d4", + "user-dollar": "\uf9d5", + "user-down": "\uf9d6", + "user-edit": "\uf7cc", + "user-exclamation": "\uec12", + "user-filled": "\ufd19", + "user-heart": "\uf7cd", + "user-hexagon": "\ufc4e", + "user-minus": "\ueb4a", + "user-off": "\uecf9", + "user-pause": "\uf9d7", + "user-pentagon": "\ufc4f", + "user-pin": "\uf7ce", + "user-plus": "\ueb4b", + "user-question": "\uf7cf", + "user-scan": "\ufcaf", + "user-screen": "\ufea0", + "user-search": "\uef89", + "user-share": "\uf9d8", + "user-shield": "\uf7d0", + "user-square": "\ufc51", + "user-square-rounded": "\ufc50", + "user-star": "\uf7d1", + "user-up": "\uf7d2", + "user-x": "\ueb4c", + "users": "\uebf2", + "users-group": "\ufa21", + "users-minus": "\ufa0e", + "users-plus": "\ufa0f", + "uv-index": "\uf3b2", + "ux-circle": "\uf369", + "vaccine": "\uef04", + "vaccine-bottle": "\uef69", + "vaccine-bottle-off": "\uf439", + "vaccine-off": "\uf1bc", + "vacuum-cleaner": "\uf5e6", + "variable": "\uef05", + "variable-minus": "\uf36a", + "variable-off": "\uf1bd", + "variable-plus": "\uf36b", + "vector": "\ueca9", + "vector-bezier": "\uef1d", + "vector-bezier-2": "\uf1a3", + "vector-bezier-arc": "\uf4cd", + "vector-bezier-circle": "\uf4ce", + "vector-off": "\uf1be", + "vector-spline": "\uf565", + "vector-triangle": "\ueca8", + "vector-triangle-off": "\uf1bf", + "venus": "\uec86", + "versions": "\ued52", + "versions-filled": "\uf6b1", + "versions-off": "\uf1c0", + "video": "\ued22", + "video-filled": "\u1009b", + "video-minus": "\ued1f", + "video-off": "\ued20", + "video-plus": "\ued21", + "view-360": "\ued84", + "view-360-arrow": "\uf62f", + "view-360-number": "\uf566", + "view-360-off": "\uf1c1", + "viewfinder": "\ueb4e", + "viewfinder-off": "\uf1c2", + "viewport-narrow": "\uebf3", + "viewport-short": "\ufee9", + "viewport-tall": "\ufee8", + "viewport-wide": "\uebf4", + "vinyl": "\uf00d", + "vip": "\uf3b3", + "vip-off": "\uf43a", + "virus": "\ueb74", + "virus-off": "\ued66", + "virus-search": "\ued67", + "vocabulary": "\uef1e", + "vocabulary-off": "\uf43b", + "volcano": "\uf79c", + "volume": "\ueb51", + "volume-2": "\ueb4f", + "volume-3": "\ueb50", + "volume-off": "\uf1c3", + "vs": "\ufc52", + "walk": "\uec87", + "wall": "\uef7a", + "wall-off": "\uf43c", + "wallet": "\ueb75", + "wallet-off": "\uf1c4", + "wallpaper": "\uef56", + "wallpaper-off": "\uf1c5", + "wand": "\uebcb", + "wand-off": "\uf1c6", + "wash": "\uf311", + "wash-dry": "\uf304", + "wash-dry-1": "\uf2fa", + "wash-dry-2": "\uf2fb", + "wash-dry-3": "\uf2fc", + "wash-dry-a": "\uf2fd", + "wash-dry-dip": "\uf2fe", + "wash-dry-f": "\uf2ff", + "wash-dry-flat": "\ufa7f", + "wash-dry-hang": "\uf300", + "wash-dry-off": "\uf301", + "wash-dry-p": "\uf302", + "wash-dry-shade": "\uf303", + "wash-dry-w": "\uf322", + "wash-dryclean": "\uf305", + "wash-dryclean-off": "\uf323", + "wash-eco": "\ufa80", + "wash-gentle": "\uf306", + "wash-hand": "\ufa81", + "wash-machine": "\uf25e", + "wash-off": "\uf307", + "wash-press": "\uf308", + "wash-temperature-1": "\uf309", + "wash-temperature-2": "\uf30a", + "wash-temperature-3": "\uf30b", + "wash-temperature-4": "\uf30c", + "wash-temperature-5": "\uf30d", + "wash-temperature-6": "\uf30e", + "wash-tumble-dry": "\uf30f", + "wash-tumble-off": "\uf310", + "waterpolo": "\ufa6f", + "wave-saw-tool": "\uecd3", + "wave-sine": "\uecd4", + "wave-square": "\uecd5", + "waves-electricity": "\ufcc5", + "webhook": "\uf01e", + "webhook-off": "\uf43d", + "weight": "\uf589", + "wheat": "\u100a8", + "wheat-off": "\u100a9", + "wheel": "\ufc64", + "wheelchair": "\uf1db", + "wheelchair-off": "\uf43e", + "whirl": "\uf51d", + "wifi": "\ueb52", + "wifi-0": "\ueba3", + "wifi-1": "\ueba4", + "wifi-2": "\ueba5", + "wifi-off": "\uecfa", + "wind": "\uec34", + "wind-electricity": "\ufcc6", + "wind-off": "\uf1c7", + "windmill": "\ued85", + "windmill-filled": "\uf6b2", + "windmill-off": "\uf1c8", + "window": "\uef06", + "window-maximize": "\uf1f1", + "window-minimize": "\uf1f2", + "window-off": "\uf1c9", + "windsock": "\uf06d", + "windsock-filled": "\u1009a", + "wiper": "\uecab", + "wiper-wash": "\uecaa", + "woman": "\ueb53", + "woman-filled": "\ufdcc", + "wood": "\uf359", + "world": "\ueb54", + "world-bolt": "\uf9d9", + "world-cancel": "\uf9da", + "world-check": "\uf9db", + "world-code": "\uf9dc", + "world-cog": "\uf9dd", + "world-dollar": "\uf9de", + "world-down": "\uf9df", + "world-download": "\uef8a", + "world-exclamation": "\uf9e0", + "world-heart": "\uf9e1", + "world-latitude": "\ued2e", + "world-longitude": "\ued2f", + "world-minus": "\uf9e2", + "world-off": "\uf1ca", + "world-pause": "\uf9e3", + "world-pin": "\uf9e4", + "world-plus": "\uf9e5", + "world-question": "\uf9e6", + "world-search": "\uf9e7", + "world-share": "\uf9e8", + "world-star": "\uf9e9", + "world-up": "\uf9ea", + "world-upload": "\uef8b", + "world-www": "\uf38f", + "world-x": "\uf9eb", + "wrecking-ball": "\ued97", + "writing": "\uef08", + "writing-off": "\uf1cb", + "writing-sign": "\uef07", + "writing-sign-off": "\uf1cc", + "x": "\ueb55", + "x-power-y": "\u10072", + "xbox-a": "\uf2b6", + "xbox-a-filled": "\ufdcb", + "xbox-b": "\uf2b7", + "xbox-b-filled": "\ufdca", + "xbox-x": "\uf2b8", + "xbox-x-filled": "\ufdc9", + "xbox-y": "\uf2b9", + "xbox-y-filled": "\ufdc8", + "xd": "\ufa33", + "xxx": "\ufc20", + "yin-yang": "\uec35", + "yin-yang-filled": "\uf785", + "yoga": "\uf01f", + "zeppelin": "\uf270", + "zeppelin-filled": "\ufdc7", + "zeppelin-off": "\uf43f", + "zip": "\uf3b4", + "zodiac-aquarius": "\uecac", + "zodiac-aries": "\uecad", + "zodiac-cancer": "\uecae", + "zodiac-capricorn": "\uecaf", + "zodiac-gemini": "\uecb0", + "zodiac-leo": "\uecb1", + "zodiac-libra": "\uecb2", + "zodiac-pisces": "\uecb3", + "zodiac-sagittarius": "\uecb4", + "zodiac-scorpio": "\uecb5", + "zodiac-taurus": "\uecb6", + "zodiac-virgo": "\uecb7", + "zoom": "\ufdaa", + "zoom-cancel": "\uec4d", + "zoom-cancel-filled": "\ufdc6", + "zoom-check": "\uef09", + "zoom-check-filled": "\uf786", + "zoom-code": "\uf07f", + "zoom-code-filled": "\ufdc5", + "zoom-exclamation": "\uf080", + "zoom-exclamation-filled": "\ufdc4", + "zoom-filled": "\uf787", + "zoom-in": "\ueb56", + "zoom-in-area": "\uf1dc", + "zoom-in-area-filled": "\uf788", + "zoom-in-filled": "\uf789", + "zoom-money": "\uef0a", + "zoom-money-filled": "\ufdc3", + "zoom-out": "\ueb57", + "zoom-out-area": "\uf1dd", + "zoom-out-area-filled": "\ufdc2", + "zoom-out-filled": "\uf78a", + "zoom-pan": "\uf1de", + "zoom-pan-filled": "\ufdc1", + "zoom-question": "\uedeb", + "zoom-question-filled": "\ufdc0", + "zoom-replace": "\uf2a7", + "zoom-reset": "\uf295", + "zoom-scan": "\ufcb0", + "zoom-scan-filled": "\ufdbf", + "zzz": "\uf228", + "zzz-off": "\uf440" + } +} diff --git a/Modules/ArchUpdaterPanel/ArchUpdaterPanel.qml b/Modules/ArchUpdaterPanel/ArchUpdaterPanel.qml index f8a65ce..a260342 100644 --- a/Modules/ArchUpdaterPanel/ArchUpdaterPanel.qml +++ b/Modules/ArchUpdaterPanel/ArchUpdaterPanel.qml @@ -44,7 +44,7 @@ NPanel { // Reset button (only show if update failed) NIconButton { visible: ArchUpdaterService.updateFailed - icon: "arrow-repeat" + icon: "refresh" tooltipText: "Reset update state" sizeRatio: 0.8 colorBg: Color.mError @@ -55,7 +55,7 @@ NPanel { } NIconButton { - icon: "x-lg" + icon: "close" tooltipText: "Close" sizeRatio: 0.8 onClicked: root.close() @@ -245,7 +245,7 @@ NPanel { // Prominent refresh button NIconButton { - icon: "arrow-repeat" + icon: "refresh" tooltipText: "Try checking again" sizeRatio: 1.2 colorBg: Color.mPrimary @@ -295,7 +295,7 @@ NPanel { // Prominent refresh button NIconButton { - icon: "arrow-repeat" + icon: "refresh" tooltipText: "Refresh and try again" sizeRatio: 1.2 colorBg: Color.mPrimary @@ -483,7 +483,7 @@ NPanel { spacing: Style.marginL * scaling NIconButton { - icon: "arrow-repeat" + icon: "refresh" tooltipText: ArchUpdaterService.aurBusy ? "Checking for updates..." : (!ArchUpdaterService.canPoll ? "Refresh available soon" : "Refresh package lists") onClicked: { ArchUpdaterService.forceRefresh() diff --git a/Modules/Bar/Widgets/ArchUpdater.qml b/Modules/Bar/Widgets/ArchUpdater.qml index 7a1d888..9375855 100644 --- a/Modules/Bar/Widgets/ArchUpdater.qml +++ b/Modules/Bar/Widgets/ArchUpdater.qml @@ -32,7 +32,7 @@ NIconButton { return "box" } if (ArchUpdaterService.aurBusy) { - return "arrow-repeat" + return "refresh" } if (ArchUpdaterService.totalUpdates > 0) { return "box-fill" diff --git a/Modules/Bar/Widgets/DarkModeToggle.qml b/Modules/Bar/Widgets/DarkModeToggle.qml index 4c3ec1e..b01d383 100644 --- a/Modules/Bar/Widgets/DarkModeToggle.qml +++ b/Modules/Bar/Widgets/DarkModeToggle.qml @@ -9,7 +9,7 @@ NIconButton { property ShellScreen screen property real scaling: 1.0 - icon: "transparency" + icon: "dark-mode" tooltipText: "Toggle light/dark mode" sizeRatio: 0.8 diff --git a/Modules/Bar/Widgets/KeepAwake.qml b/Modules/Bar/Widgets/KeepAwake.qml index ebd880c..10a55f2 100644 --- a/Modules/Bar/Widgets/KeepAwake.qml +++ b/Modules/Bar/Widgets/KeepAwake.qml @@ -13,7 +13,7 @@ NIconButton { sizeRatio: 0.8 - icon: "cup" + icon: IdleInhibitorService.isInhibited ? "keep-awake-on" : "keep-awake-off" tooltipText: IdleInhibitorService.isInhibited ? "Disable keep awake" : "Enable keep awake" colorBg: IdleInhibitorService.isInhibited ? Color.mPrimary : Color.mSurfaceVariant colorFg: IdleInhibitorService.isInhibited ? Color.mOnPrimary : Color.mOnSurface diff --git a/Modules/Bar/Widgets/MediaMini.qml b/Modules/Bar/Widgets/MediaMini.qml index aa00cb9..8d48a85 100644 --- a/Modules/Bar/Widgets/MediaMini.qml +++ b/Modules/Bar/Widgets/MediaMini.qml @@ -135,7 +135,7 @@ RowLayout { NIcon { id: windowIcon - text: MediaService.isPlaying ? "pause" : "play" + icon: MediaService.isPlaying ? "media-pause" : "media-play" font.pointSize: Style.fontSizeL * scaling verticalAlignment: Text.AlignVCenter Layout.alignment: Qt.AlignVCenter @@ -155,7 +155,7 @@ RowLayout { id: trackArt anchors.fill: parent imagePath: MediaService.trackArtUrl - fallbackIcon: MediaService.isPlaying ? "pause" : "play" + fallbackIcon: MediaService.isPlaying ? "media-pause" : "media-play" fallbackIconSize: 10 * scaling borderWidth: 0 border.color: Color.transparent diff --git a/Modules/Bar/Widgets/NightLight.qml b/Modules/Bar/Widgets/NightLight.qml index 3712f76..f9d4b76 100644 --- a/Modules/Bar/Widgets/NightLight.qml +++ b/Modules/Bar/Widgets/NightLight.qml @@ -20,7 +20,7 @@ NIconButton { colorBorder: Color.transparent colorBorderHover: Color.transparent - icon: "moon-stars" + icon: Settings.data.nightLight.enabled ? "nightlight-on" : "nightlight-off" tooltipText: `Night light: ${Settings.data.nightLight.enabled ? "enabled." : "disabled."}\nLeft click to toggle.\nRight click to access settings.` onClicked: Settings.data.nightLight.enabled = !Settings.data.nightLight.enabled diff --git a/Modules/Bar/Widgets/PowerProfile.qml b/Modules/Bar/Widgets/PowerProfile.qml index eb1eff5..c71762f 100644 --- a/Modules/Bar/Widgets/PowerProfile.qml +++ b/Modules/Bar/Widgets/PowerProfile.qml @@ -18,13 +18,13 @@ NIconButton { function profileIcon() { if (!hasPP) - return "yin-yang" + return "balanced" if (PowerProfileService.profile === PowerProfile.Performance) - return "speedometer2" + return "performance" if (PowerProfileService.profile === PowerProfile.Balanced) - return "yin-yang" + return "balanced" if (PowerProfileService.profile === PowerProfile.PowerSaver) - return "leaf" + return "powersaver" } function profileName() { diff --git a/Modules/Bar/Widgets/SidePanelToggle.qml b/Modules/Bar/Widgets/SidePanelToggle.qml index 326d7b1..9f901a4 100644 --- a/Modules/Bar/Widgets/SidePanelToggle.qml +++ b/Modules/Bar/Widgets/SidePanelToggle.qml @@ -33,7 +33,7 @@ NIconButton { readonly property bool useDistroLogo: (widgetSettings.useDistroLogo !== undefined) ? widgetSettings.useDistroLogo : widgetMetadata.useDistroLogo - icon: useDistroLogo ? "" : "layout-sidebar-inset-reverse" + icon: useDistroLogo ? "" : "panel" tooltipText: "Open side panel." sizeRatio: 0.8 diff --git a/Modules/Bar/Widgets/SystemMonitor.qml b/Modules/Bar/Widgets/SystemMonitor.qml index f6e0968..43ed774 100644 --- a/Modules/Bar/Widgets/SystemMonitor.qml +++ b/Modules/Bar/Widgets/SystemMonitor.qml @@ -71,7 +71,7 @@ RowLayout { spacing: Style.marginXS * scaling NIcon { - icon: "speedometer2" + icon: "cpu-usage" font.pointSize: Style.fontSizeM * scaling Layout.alignment: Qt.AlignVCenter } @@ -101,7 +101,7 @@ RowLayout { spacing: Style.marginXS * scaling NIcon { - icon: "fire" + icon: "cpu-temperature" // Fire is so tall, we need to make it smaller font.pointSize: Style.fontSizeS * scaling Layout.alignment: Qt.AlignVCenter @@ -132,7 +132,7 @@ RowLayout { spacing: Style.marginXS * scaling NIcon { - icon: "cpu" + icon: "memory" font.pointSize: Style.fontSizeM * scaling Layout.alignment: Qt.AlignVCenter } @@ -162,7 +162,7 @@ RowLayout { spacing: Style.marginXS * scaling NIcon { - icon: "cloud-arrow-down" + icon: "download-speed" font.pointSize: Style.fontSizeM * scaling Layout.alignment: Qt.AlignVCenter } @@ -192,7 +192,7 @@ RowLayout { spacing: Style.marginXS * scaling NIcon { - icon: "cloud-arrow-up" + icon: "upload-speed" font.pointSize: Style.fontSizeM * scaling Layout.alignment: Qt.AlignVCenter } @@ -222,7 +222,7 @@ RowLayout { spacing: Style.marginXS * scaling NIcon { - icon: "hdd" + icon: "storage" font.pointSize: Style.fontSizeM * scaling Layout.alignment: Qt.AlignVCenter } diff --git a/Modules/BluetoothPanel/BluetoothPanel.qml b/Modules/BluetoothPanel/BluetoothPanel.qml index 12d1b50..02656b5 100644 --- a/Modules/BluetoothPanel/BluetoothPanel.qml +++ b/Modules/BluetoothPanel/BluetoothPanel.qml @@ -42,7 +42,7 @@ NPanel { } NIconButton { - icon: BluetoothService.adapter && BluetoothService.adapter.discovering ? "stop" : "arrow-repeat" + icon: BluetoothService.adapter && BluetoothService.adapter.discovering ? "stop" : "refresh" tooltipText: "Refresh Devices" sizeRatio: 0.8 onClicked: { @@ -53,7 +53,7 @@ NPanel { } NIconButton { - icon: "x-lg" + icon: "close" tooltipText: "Close" sizeRatio: 0.8 onClicked: { diff --git a/Modules/Calendar/Calendar.qml b/Modules/Calendar/Calendar.qml index 891a866..12c9684 100644 --- a/Modules/Calendar/Calendar.qml +++ b/Modules/Calendar/Calendar.qml @@ -28,7 +28,7 @@ NPanel { spacing: Style.marginS * scaling NIconButton { - icon: "chevron_left" + icon: "chevron-left" tooltipText: "Previous month" onClicked: { let newDate = new Date(grid.year, grid.month - 1, 1) @@ -47,7 +47,7 @@ NPanel { } NIconButton { - icon: "chevron_right" + icon: "chevron-right" tooltipText: "Next month" onClicked: { let newDate = new Date(grid.year, grid.month + 1, 1) diff --git a/Modules/LockScreen/LockScreen.qml b/Modules/LockScreen/LockScreen.qml index 725a30b..ce9fe08 100644 --- a/Modules/LockScreen/LockScreen.qml +++ b/Modules/LockScreen/LockScreen.qml @@ -781,7 +781,7 @@ Loader { NIcon { id: iconReboot anchors.centerIn: parent - icon: "arrow-repeat" + icon: "refresh" font.pointSize: Style.fontSizeXXXL * scaling color: restartButtonArea.containsMouse ? Color.mOnPrimary : Color.mPrimary } diff --git a/Modules/Notification/Notification.qml b/Modules/Notification/Notification.qml index ab16610..61809e5 100644 --- a/Modules/Notification/Notification.qml +++ b/Modules/Notification/Notification.qml @@ -292,7 +292,7 @@ Variants { // Close button positioned absolutely NIconButton { - icon: "x-lg" + icon: "close" tooltipText: "Close" sizeRatio: 0.6 anchors.top: parent.top diff --git a/Modules/Notification/NotificationHistoryPanel.qml b/Modules/Notification/NotificationHistoryPanel.qml index 5f5b958..c463655 100644 --- a/Modules/Notification/NotificationHistoryPanel.qml +++ b/Modules/Notification/NotificationHistoryPanel.qml @@ -59,7 +59,7 @@ NPanel { } NIconButton { - icon: "x-lg" + icon: "close" tooltipText: "Close" sizeRatio: 0.8 onClicked: { diff --git a/Modules/PowerPanel/PowerPanel.qml b/Modules/PowerPanel/PowerPanel.qml index f4f5758..0b2c0a9 100644 --- a/Modules/PowerPanel/PowerPanel.qml +++ b/Modules/PowerPanel/PowerPanel.qml @@ -39,7 +39,7 @@ NPanel { "subtitle": "Put the system to sleep" }, { "action": "reboot", - "icon": "arrow-repeat", + "icon": "refresh", "title": "Reboot", "subtitle": "Restart the system" }, { @@ -276,7 +276,7 @@ NPanel { } NIconButton { - icon: timerActive ? "x-square" : "x-lg" + icon: timerActive ? "x-square" : "close" tooltipText: timerActive ? "Cancel Timer" : "Close" Layout.alignment: Qt.AlignVCenter colorBg: timerActive ? Qt.alpha(Color.mError, 0.08) : Color.transparent diff --git a/Modules/SettingsPanel/Bar/BarSectionEditor.qml b/Modules/SettingsPanel/Bar/BarSectionEditor.qml index 7e27096..7a1684a 100644 --- a/Modules/SettingsPanel/Bar/BarSectionEditor.qml +++ b/Modules/SettingsPanel/Bar/BarSectionEditor.qml @@ -85,7 +85,7 @@ NBox { } NIconButton { - icon: "plus-lg" + icon: "add" colorBg: Color.mPrimary colorFg: Color.mOnPrimary @@ -170,7 +170,7 @@ NBox { Loader { active: BarWidgetRegistry.widgetHasUserSettings(modelData.id) sourceComponent: NIconButton { - icon: "gear" + icon: "settings" sizeRatio: 0.6 colorBorder: Qt.alpha(Color.mOutline, Style.opacityLight) colorBg: Color.mOnSurface @@ -210,7 +210,7 @@ NBox { } NIconButton { - icon: "x-lg" + icon: "close" sizeRatio: 0.6 colorBorder: Qt.alpha(Color.mOutline, Style.opacityLight) colorBg: Color.mOnSurface diff --git a/Modules/SettingsPanel/Bar/BarWidgetSettingsDialog.qml b/Modules/SettingsPanel/Bar/BarWidgetSettingsDialog.qml index b80c156..a8a3153 100644 --- a/Modules/SettingsPanel/Bar/BarWidgetSettingsDialog.qml +++ b/Modules/SettingsPanel/Bar/BarWidgetSettingsDialog.qml @@ -84,7 +84,7 @@ Popup { } NIconButton { - icon: "x-lg" + icon: "close" onClicked: settingsPopup.close() } } diff --git a/Modules/SettingsPanel/Bar/WidgetSettings/CustomButtonSettings.qml b/Modules/SettingsPanel/Bar/WidgetSettings/CustomButtonSettings.qml index 7e5c78a..60e352c 100644 --- a/Modules/SettingsPanel/Bar/WidgetSettings/CustomButtonSettings.qml +++ b/Modules/SettingsPanel/Bar/WidgetSettings/CustomButtonSettings.qml @@ -26,8 +26,8 @@ ColumnLayout { id: iconInput Layout.fillWidth: true label: "Icon Name" - description: "Pick from Bootstrap Icons or type a name." - placeholderText: "Enter icon name (e.g., speedometer2, gear, house)" + description: "Select an icon from the library." + placeholderText: "Enter icon name (e.g., cat, gear, house, ...)" text: widgetData?.icon || widgetMetadata.icon } @@ -65,7 +65,7 @@ ColumnLayout { property string query: "" property string selectedIcon: "" - property var allIcons: Object.keys(Bootstrap.icons) + property var allIcons: Object.keys(Icons.icons) property var filteredIcons: allIcons.filter(function (name) { return query === "" || name.toLowerCase().indexOf(query.toLowerCase()) !== -1 }) @@ -96,7 +96,7 @@ ColumnLayout { Layout.fillWidth: true } NIconButton { - icon: "x-lg" + icon: "close" onClicked: iconPicker.close() } } diff --git a/Modules/SettingsPanel/SettingsPanel.qml b/Modules/SettingsPanel/SettingsPanel.qml index 6b5e4bd..f9fbf7e 100644 --- a/Modules/SettingsPanel/SettingsPanel.qml +++ b/Modules/SettingsPanel/SettingsPanel.qml @@ -123,52 +123,52 @@ NPanel { let newTabs = [{ "id": SettingsPanel.Tab.General, "label": "General", - "icon": "box", + "icon": "settings-general", "source": generalTab }, { "id": SettingsPanel.Tab.Bar, "label": "Bar", - "icon": "segmented-nav", + "icon": "settings-bar", "source": barTab }, { "id": SettingsPanel.Tab.Launcher, "label": "Launcher", - "icon": "rocket", + "icon": "settings-launcher", "source": launcherTab }, { "id": SettingsPanel.Tab.Audio, "label": "Audio", - "icon": "speaker", + "icon": "settings-audio", "source": audioTab }, { "id": SettingsPanel.Tab.Display, "label": "Display", - "icon": "display", + "icon": "settings-display", "source": displayTab }, { "id": SettingsPanel.Tab.Network, "label": "Network", - "icon": "ethernet", + "icon": "settings-network", "source": networkTab }, { "id": SettingsPanel.Tab.Brightness, "label": "Brightness", - "icon": "brightness-high", + "icon": "settings-brightness", "source": brightnessTab }, { "id": SettingsPanel.Tab.Weather, "label": "Weather", - "icon": "cloud-sun", + "icon": "settings-weather", "source": weatherTab }, { "id": SettingsPanel.Tab.ColorScheme, "label": "Color Scheme", - "icon": "palette", + "icon": "settings-color-scheme", "source": colorSchemeTab }, { "id": SettingsPanel.Tab.Wallpaper, "label": "Wallpaper", - "icon": "easel", + "icon": "settings-wallpaper", "source": wallpaperTab }] @@ -177,7 +177,7 @@ NPanel { newTabs.push({ "id": SettingsPanel.Tab.WallpaperSelector, "label": "Wallpaper Selector", - "icon": "image", + "icon": "settings-wallpaper-selector", "source": wallpaperSelectorTab }) } @@ -185,17 +185,17 @@ NPanel { newTabs.push({ "id": SettingsPanel.Tab.ScreenRecorder, "label": "Screen Recorder", - "icon": "camera-video", + "icon": "settings-screen-recorder", "source": screenRecorderTab }, { "id": SettingsPanel.Tab.Hooks, "label": "Hooks", - "icon": "link-45deg", + "icon": "settings-hooks", "source": hooksTab }, { "id": SettingsPanel.Tab.About, "label": "About", - "icon": "info-circle", + "icon": "settings-about", "source": aboutTab }) @@ -403,9 +403,9 @@ NPanel { spacing: Style.marginM * scaling NIcon { - text: Bootstrap.icons[modelData.icon] + icon: modelData.icon color: tabTextColor - font.pointSize: Style.fontSizeL * scaling + font.pointSize: Style.fontSizeXL * scaling } // Tab label NText { @@ -472,7 +472,7 @@ NPanel { // Close button NIconButton { - icon: "x-lg" + icon: "close" tooltipText: "Close" Layout.alignment: Qt.AlignVCenter onClicked: root.close() diff --git a/Modules/SettingsPanel/Tabs/AudioTab.qml b/Modules/SettingsPanel/Tabs/AudioTab.qml index 16e6781..d60ae38 100644 --- a/Modules/SettingsPanel/Tabs/AudioTab.qml +++ b/Modules/SettingsPanel/Tabs/AudioTab.qml @@ -272,7 +272,7 @@ ColumnLayout { // Button aligned to the center of the actual input field NIconButton { - icon: "plus-lg" + icon: "add" Layout.alignment: Qt.AlignBottom Layout.bottomMargin: blacklistInput.description ? Style.marginS * scaling : 0 onClicked: { @@ -322,7 +322,7 @@ ColumnLayout { } NIconButton { - icon: "x-lg" + icon: "close" sizeRatio: 0.8 Layout.alignment: Qt.AlignVCenter Layout.rightMargin: Style.marginXS * scaling diff --git a/Modules/SettingsPanel/Tabs/DisplayTab.qml b/Modules/SettingsPanel/Tabs/DisplayTab.qml index 534b62c..9a5c4e3 100644 --- a/Modules/SettingsPanel/Tabs/DisplayTab.qml +++ b/Modules/SettingsPanel/Tabs/DisplayTab.qml @@ -181,7 +181,7 @@ ColumnLayout { } NIconButton { - icon: "arrow-repeat" + icon: "refresh" tooltipText: "Reset scaling" onClicked: ScalingService.setScreenScale(modelData, 1.0) } diff --git a/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml b/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml index 8d3e77b..e2135c9 100644 --- a/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml +++ b/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml @@ -96,7 +96,7 @@ ColumnLayout { } NIconButton { - icon: "arrow-repeat" + icon: "refresh" tooltipText: "Refresh wallpaper list" onClicked: { WallpaperService.refreshWallpapersList() diff --git a/Modules/SidePanel/Cards/MediaCard.qml b/Modules/SidePanel/Cards/MediaCard.qml index 7d3f5cf..e78617b 100644 --- a/Modules/SidePanel/Cards/MediaCard.qml +++ b/Modules/SidePanel/Cards/MediaCard.qml @@ -307,7 +307,7 @@ NBox { // Previous button NIconButton { - icon: "skip-start" + icon: "media-prev" tooltipText: "Previous Media" visible: MediaService.canGoPrevious onClicked: MediaService.canGoPrevious ? MediaService.previous() : {} @@ -315,7 +315,7 @@ NBox { // Play/Pause button NIconButton { - icon: MediaService.isPlaying ? "pause" : "play" + icon: MediaService.isPlaying ? "media-pause" : "media-play" tooltipText: MediaService.isPlaying ? "Pause" : "Play" visible: (MediaService.canPlay || MediaService.canPause) onClicked: (MediaService.canPlay || MediaService.canPause) ? MediaService.playPause() : {} @@ -323,7 +323,7 @@ NBox { // Next button NIconButton { - icon: "skip-end" + icon: "media-next" tooltipText: "Next media" visible: MediaService.canGoNext onClicked: MediaService.canGoNext ? MediaService.next() : {} diff --git a/Modules/SidePanel/Cards/PowerProfilesCard.qml b/Modules/SidePanel/Cards/PowerProfilesCard.qml index 0d4ae21..63efa31 100644 --- a/Modules/SidePanel/Cards/PowerProfilesCard.qml +++ b/Modules/SidePanel/Cards/PowerProfilesCard.qml @@ -27,7 +27,7 @@ NBox { } // Performance NIconButton { - icon: "speedometer2" + icon: "performance" tooltipText: "Set performance power profile." enabled: hasPP opacity: enabled ? Style.opacityFull : Style.opacityMedium @@ -42,7 +42,7 @@ NBox { } // Balanced NIconButton { - icon: "yin-yang" + icon: "balanced" tooltipText: "Set balanced power profile." enabled: hasPP opacity: enabled ? Style.opacityFull : Style.opacityMedium @@ -57,7 +57,7 @@ NBox { } // Eco NIconButton { - icon: "leaf" + icon: "powersaver" tooltipText: "Set eco power profile." enabled: hasPP opacity: enabled ? Style.opacityFull : Style.opacityMedium diff --git a/Modules/SidePanel/Cards/ProfileCard.qml b/Modules/SidePanel/Cards/ProfileCard.qml index 66ecaa2..c883ef7 100644 --- a/Modules/SidePanel/Cards/ProfileCard.qml +++ b/Modules/SidePanel/Cards/ProfileCard.qml @@ -59,7 +59,7 @@ NBox { Layout.fillWidth: true } NIconButton { - icon: "gear" + icon: "settings" tooltipText: "Open settings." onClicked: { settingsPanel.requestedTab = SettingsPanel.Tab.General @@ -79,7 +79,7 @@ NBox { NIconButton { id: closeButton - icon: "x-lg" + icon: "close" tooltipText: "Close side panel." onClicked: { sidePanel.close() diff --git a/Modules/SidePanel/Cards/SystemMonitorCard.qml b/Modules/SidePanel/Cards/SystemMonitorCard.qml index d9af228..e10341c 100644 --- a/Modules/SidePanel/Cards/SystemMonitorCard.qml +++ b/Modules/SidePanel/Cards/SystemMonitorCard.qml @@ -24,7 +24,7 @@ NBox { NCircleStat { value: SystemStatService.cpuUsage - icon: "speedometer2" + icon: "cpu-usage" flat: true contentScale: 0.8 width: 72 * scaling @@ -33,7 +33,7 @@ NBox { NCircleStat { value: SystemStatService.cpuTemp suffix: "°C" - icon: "fire" + icon: "cpu-temperature" flat: true contentScale: 0.8 width: 72 * scaling @@ -41,7 +41,7 @@ NBox { } NCircleStat { value: SystemStatService.memPercent - icon: "cpu" + icon: "memory" flat: true contentScale: 0.8 width: 72 * scaling diff --git a/Modules/SidePanel/Cards/UtilitiesCard.qml b/Modules/SidePanel/Cards/UtilitiesCard.qml index f4bde37..8e044ac 100644 --- a/Modules/SidePanel/Cards/UtilitiesCard.qml +++ b/Modules/SidePanel/Cards/UtilitiesCard.qml @@ -44,7 +44,7 @@ NBox { // Idle Inhibitor NIconButton { - icon: "cup" + icon: IdleInhibitorService.isInhibited ? "keep-awake-on" : "keep-awake-off" tooltipText: IdleInhibitorService.isInhibited ? "Disable keep awake." : "Enable keep awake." colorBg: IdleInhibitorService.isInhibited ? Color.mPrimary : Color.mSurfaceVariant colorFg: IdleInhibitorService.isInhibited ? Color.mOnPrimary : Color.mPrimary diff --git a/Modules/WiFiPanel/WiFiPanel.qml b/Modules/WiFiPanel/WiFiPanel.qml index 25ea245..467c25b 100644 --- a/Modules/WiFiPanel/WiFiPanel.qml +++ b/Modules/WiFiPanel/WiFiPanel.qml @@ -55,7 +55,7 @@ NPanel { } NIconButton { - icon: "arrow-repeat" + icon: "refresh" tooltipText: "Refresh" sizeRatio: 0.8 enabled: Settings.data.network.wifiEnabled && !NetworkService.scanning @@ -63,7 +63,7 @@ NPanel { } NIconButton { - icon: "x-lg" + icon: "close" tooltipText: "Close" sizeRatio: 0.8 onClicked: root.close() @@ -105,7 +105,7 @@ NPanel { } NIconButton { - icon: "x-lg" + icon: "close" sizeRatio: 0.6 onClicked: NetworkService.lastError = "" } @@ -492,7 +492,7 @@ NPanel { } NIconButton { - icon: "x-lg" + icon: "close" sizeRatio: 0.8 onClicked: { passwordSsid = "" @@ -547,7 +547,7 @@ NPanel { } NIconButton { - icon: "x-lg" + icon: "close" sizeRatio: 0.8 onClicked: expandedSsid = "" } @@ -586,7 +586,7 @@ NPanel { NButton { text: "Scan again" - icon: "arrow-repeat" + icon: "refresh" Layout.alignment: Qt.AlignHCenter onClicked: NetworkService.scan() } diff --git a/Services/NetworkService.qml b/Services/NetworkService.qml index 97304c1..745461f 100644 --- a/Services/NetworkService.qml +++ b/Services/NetworkService.qml @@ -207,7 +207,7 @@ Singleton { return "wifi-2" if (signal >= 20) return "wifi-1" - return "dot" + return "wifi-0" } function isSecured(security) { diff --git a/Widgets/NColorPickerDialog.qml b/Widgets/NColorPickerDialog.qml index 60f5fd1..dec8b25 100644 --- a/Widgets/NColorPickerDialog.qml +++ b/Widgets/NColorPickerDialog.qml @@ -148,7 +148,7 @@ Popup { } NIconButton { - icon: "x-lg" + icon: "close" onClicked: root.close() } } @@ -492,7 +492,7 @@ Popup { NButton { id: cancelButton text: "Cancel" - icon: "x-lg" + icon: "close" outlined: cancelButton.hovered ? false : true customHeight: 36 * scaling customWidth: 100 * scaling diff --git a/Widgets/NIcon.qml b/Widgets/NIcon.qml index f111abb..9f66c7c 100644 --- a/Widgets/NIcon.qml +++ b/Widgets/NIcon.qml @@ -4,8 +4,9 @@ import qs.Commons import qs.Widgets Text { + id: root + property string icon: Icons.defaultIcon - property string family: Icons.fontFamily visible: (icon !== undefined) && (icon !== "") text: { @@ -15,11 +16,11 @@ Text { if (Icons.get(icon) === undefined) { Logger.warn("Icon", `"${icon}"`, "doesn't exist in the icons font") Logger.callStack() - return Icons.get(defaultIcon) + return Icons.get(Icons.defaultIcon) } return Icons.get(icon) } - font.family: family + font.family: Icons.fontFamily font.pointSize: Style.fontSizeL * scaling color: Color.mOnSurface verticalAlignment: Text.AlignVCenter diff --git a/Widgets/NIconButton.qml b/Widgets/NIconButton.qml index efbd8e9..e98d7f2 100644 --- a/Widgets/NIconButton.qml +++ b/Widgets/NIconButton.qml @@ -48,7 +48,7 @@ Rectangle { NIcon { icon: root.icon - font.pointSize: Math.max(1, root.width * 0.4) + font.pointSize: Math.max(1, root.width * 0.5) color: root.enabled && root.hovering ? colorFgHover : colorFg // Center horizontally x: (root.width - width) / 2 diff --git a/Widgets/NInputAction.qml b/Widgets/NInputAction.qml index 1ae0629..5b3706e 100644 --- a/Widgets/NInputAction.qml +++ b/Widgets/NInputAction.qml @@ -14,7 +14,7 @@ RowLayout { property string placeholderText: "" property string text: "" property string actionButtonText: "Test" - property string actionButtonIcon: "play" + property string actionButtonIcon: "media-play" property bool actionButtonEnabled: text !== "" // Signals diff --git a/Widgets/NToast.qml b/Widgets/NToast.qml index c6ccbbc..bb0396a 100644 --- a/Widgets/NToast.qml +++ b/Widgets/NToast.qml @@ -162,7 +162,7 @@ Item { // Close button (only if persistent or manual dismiss needed) NIconButton { - icon: "x-lg" + icon: "close" visible: root.persistent || root.duration === 0 colorBg: Color.mSurfaceVariant