#!/usr/bin/env bash
help_text="
NAME
bash-func - One line description.
USAGE
bash-func [options] <parameters>
OPTIONS
-x
Description...
-h|--help
Show help text.
DESCRIPTION
Description description description description.
AUTHOR
mjnurse.github.io - 2026
"
help_line="Example Bash Script"
web_desc_line="Example Bash Script"
tmpfile=$(mktemp)
trap 'rm -f "$tmpfile"' EXIT
# set -x # for debugging
# Terminal Colours
cdef="\x1b[39m" # default colour
cbla="\x1b[30m"; cgra="\x1b[90m"; clgra="\x1b[37m"; cwhi="\x1b[97m"
cred="\x1b[31m"; cgre="\x1b[32m"; cyel="\x1b[33m"; cblu="\x1b[34m"; cmag="\x1b[35m"; ccya="\x1b[36m";
clred="\x1b[91m"; clgre="\x1b[92m"; clyel="\x1b[93m"; clblu="\x1b[94m"; clmag="\x1b[95m"; clcya="\x1b[96m"
function cecho {
if [[ "$1" == "-u" ]]; then ul=true; shift; else ul=false; fi
color=c$1; shift; echo -e "${!color}$*${cdef}"
if $ul; then echo -e "${!color}${*//?/-}${cdef}"; fi
}
try="Try ${0##*/} -h for more information"
tmp="${help_text##*USAGE}"
usage=$(echo "Usage: ${tmp%%OPTIONS*}" | tr -d "\n" | sed "s/ */ /g")
# if [[ "$1" == "" ]]; then
# echo "${usage}"
# echo "${try}"
# exit 1
# fi
exact=false
while [[ "$1" != "" ]]; do
case $1 in
-h|--help)
echo "$help_text"
exit
;;
-e|--exact)
exact=true
;;
?*)
break
;;
esac
shift
done
if [[ $exact == true ]]; then
sp=" "
fi
## dasdas
#@ dasds
p1="${sp}${1}${sp}"
p2="${sp}${2:-$1}${sp}"
p3="${sp}${3:-$1}${sp}"
grp=""
cat $0 | sed 's/:/ : /g' | egrep "^#@.*$p1" | grep "$p2" | grep "$p3" | sed 's/#//; s/ : /, /g' | while IFS=',' read -r group desc char; do
if [[ "$group" != "$grp" ]]; then
grp="$group"
case $grp in
@co) title="Codicons (Visual Studio Code icons)" ;;
@cu) title="Custom icons specific to Nerd Fonts" ;;
@de) title="Devicons (programming language and tool icons)" ;;
@ex) title="Extra icons (miscellaneous)" ;;
@fa) title="Font Awesome (popular icon library)" ;;
@fx) title="Font Awesome Extension" ;;
@ie) title="IEC Power Symbols" ;;
@in) title="Indentation markers" ;;
@li) title="Font Linux (Linux distro logos)" ;;
@md) title="Material Design Icons" ;;
@oc) title="Octicons (GitHub icons)" ;;
@pl) title="Powerline symbols" ;;
@ple) title="Powerline Extra symbols" ;;
@po) title="Pomicons" ;;
@se) title="Seti UI (file type icons)" ;;
@we) title="Weather icons" ;;
esac
echo
echo -e "${clcya}$title${cdef}"
echo -e "${clcya}${title//?/-}${cdef}"
fi
echo -e "\U${char## } : ${clgre}\\\\U${char## }${cdef} - ${desc## } " | egrep --color "$p1|$p2|$p3"
done
exit
#@co:account:eb99
#@co:activate breakpoints:ea97
#@co:add:ea60
#@co:add small:ec7b
#@co:agent:ec67
#@co:archive:ea98
#@co:arrow both:ea99
#@co:arrow circle down:ebfc
#@co:arrow circle left:ebfd
#@co:arrow circle right:ebfe
#@co:arrow circle up:ebff
#@co:arrow down:ea9a
#@co:arrow left:ea9b
#@co:arrow right:ea9c
#@co:arrow small down:ea9d
#@co:arrow small left:ea9e
#@co:arrow small right:ea9f
#@co:arrow small up:eaa0
#@co:arrow swap:ebcb
#@co:arrow up:eaa1
#@co:ask:ec80
#@co:attach:ec34
#@co:azure:ebd8
#@co:azure devops:ebe8
#@co:beaker:ea79
#@co:beaker stop:ebe1
#@co:bell:eaa2
#@co:bell dot:eb9a
#@co:bell slash:ec08
#@co:bell slash dot:ec09
#@co:blank:ec03
#@co:bold:eaa3
#@co:book:eaa4
#@co:bookmark:eaa5
#@co:bracket dot:ebe5
#@co:bracket error:ebe6
#@co:briefcase:eaac
#@co:broadcast:eaad
#@co:browser:eaae
#@co:bug:eaaf
#@co:build:ec5a
#@co:calendar:eab0
#@co:call incoming:eb92
#@co:call outgoing:eb93
#@co:case sensitive:eab1
#@co:chat sparkle:ec4f
#@co:chat sparkle error:ec56
#@co:chat sparkle warning:ec55
#@co:check:eab2
#@co:check all:ebb1
#@co:checklist:eab3
#@co:chevron down:eab4
#@co:chevron left:eab5
#@co:chevron right:eab6
#@co:chevron up:eab7
#@co:chip:ec19
#@co:chrome close:eab8
#@co:chrome maximize:eab9
#@co:chrome minimize:eaba
#@co:chrome restore:eabb
#@co:circle:eabc
#@co:circle filled:ea71
#@co:circle large:ebb5
#@co:circle large filled:ebb4
#@co:circle slash:eabd
#@co:circle small:ec07
#@co:circle small filled:eb8a
#@co:circuit board:eabe
#@co:claude:ec82
#@co:clear all:eabf
#@co:clippy:eac0
#@co:clockface:ec75
#@co:close:ea76
#@co:close all:eac1
#@co:cloud:ebaa
#@co:cloud download:eac2
#@co:cloud small:ec7a
#@co:cloud upload:eac3
#@co:code:eac4
#@co:code oss:ec2b
#@co:code review:ec37
#@co:coffee:ec15
#@co:collapse all:eac5
#@co:collection:ec57
#@co:collection small:ec78
#@co:color mode:eac6
#@co:combine:ebb6
#@co:comment:ea6b
#@co:comment discussion:eac7
#@co:comment discussion quote:ec5b
#@co:comment discussion sparkle:ec54
#@co:comment draft:ec0e
#@co:comment unresolved:ec0a
#@co:compass:ebd5
#@co:compass active:ebd7
#@co:compass dot:ebd6
#@co:copilot:ec1e
#@co:copilot blocked:ec3d
#@co:copilot error:ec4d
#@co:copilot in progress:ec4c
#@co:copilot large:ec3a
#@co:copilot not connected:ec3e
#@co:copilot snooze:ec52
#@co:copilot success:ec4e
#@co:copilot unavailable:ec42
#@co:copilot warning:ec38
#@co:copilot warning large:ec3b
#@co:copy:ebcc
#@co:coverage:ec2e
#@co:credit card:eac9
#@co:cursor:ec5c
#@co:dash:eacc
#@co:dashboard:eacd
#@co:database:eace
#@co:debug:ead8
#@co:debug all:ebdc
#@co:debug alt:eb91
#@co:debug alt small:eba8
#@co:debug breakpoint conditional:eaa7
#@co:debug breakpoint conditional unverified:eaa6
#@co:debug breakpoint data:eaa9
#@co:debug breakpoint data unverified:eaa8
#@co:debug breakpoint function:eb88
#@co:debug breakpoint function unverified:eb87
#@co:debug breakpoint log:eaab
#@co:debug breakpoint log unverified:eaaa
#@co:debug breakpoint unsupported:eb8c
#@co:debug connected:ec63
#@co:debug console:eb9b
#@co:debug continue:eacf
#@co:debug continue small:ebe0
#@co:debug coverage:ebdd
#@co:debug disconnect:ead0
#@co:debug line by line:ebd0
#@co:debug pause:ead1
#@co:debug rerun:ebc0
#@co:debug restart:ead2
#@co:debug restart frame:eb90
#@co:debug reverse continue:eb8e
#@co:debug stackframe:eb8b
#@co:debug stackframe active:eb89
#@co:debug start:ead3
#@co:debug step back:eb8f
#@co:debug step into:ead4
#@co:debug step out:ead5
#@co:debug step over:ead6
#@co:debug stop:ead7
#@co:desktop download:ea78
#@co:device camera:eada
#@co:device camera video:ead9
#@co:device mobile:eadb
#@co:diff:eae1
#@co:diff added:eadc
#@co:diff ignored:eadd
#@co:diff modified:eade
#@co:diff multiple:ec23
#@co:diff removed:eadf
#@co:diff renamed:eae0
#@co:diff single:ec22
#@co:discard:eae2
#@co:download:ec74
#@co:edit:ea73
#@co:edit code:ec68
#@co:edit session:ec36
#@co:edit sparkle:ec51
#@co:editor layout:eae3
#@co:ellipsis:ea7c
#@co:empty window:eae4
#@co:eraser:ec5d
#@co:error:ea87
#@co:error small:ebfb
#@co:exclude:eae5
#@co:expand all:eb95
#@co:export:ebac
#@co:extensions:eae6
#@co:extensions large:ec48
#@co:eye:ea70
#@co:eye closed:eae7
#@co:feedback:eb96
#@co:file:ea7b
#@co:file binary:eae8
#@co:file code:eae9
#@co:file media:eaea
#@co:file pdf:eaeb
#@co:file submodule:eaec
#@co:file symlink directory:eaed
#@co:file symlink file:eaee
#@co:file text:ec5e
#@co:file zip:eaef
#@co:files:eaf0
#@co:filter:eaf1
#@co:filter filled:ebce
#@co:flag:ec3f
#@co:flame:eaf2
#@co:fold:eaf5
#@co:fold down:eaf3
#@co:fold up:eaf4
#@co:folder:ea83
#@co:folder active:eaf6
#@co:folder library:ebdf
#@co:folder opened:eaf7
#@co:forward:ec73
#@co:game:ec17
#@co:gear:eaf8
#@co:gift:eaf9
#@co:gist:eafb
#@co:gist secret:eafa
#@co:git branch:ec6f
#@co:git branch changes:ec6c
#@co:git branch conflicts:ec6e
#@co:git branch staged changes:ec6d
#@co:git commit:eafc
#@co:git compare:eafd
#@co:git fetch:ec1d
#@co:git merge:eafe
#@co:git pull request:ea64
#@co:git pull request closed:ebda
#@co:git pull request create:ebbc
#@co:git pull request done:ec46
#@co:git pull request draft:ebdb
#@co:git pull request go to changes:ec0b
#@co:git pull request new changes:ec0c
#@co:git stash:ec26
#@co:git stash apply:ec27
#@co:git stash pop:ec28
#@co:github:ea84
#@co:github action:eaff
#@co:github alt:eb00
#@co:github inverted:eba1
#@co:github project:ec2f
#@co:globe:eb01
#@co:go to editing session:ec35
#@co:go to file:ea94
#@co:go to search:ec32
#@co:grabber:eb02
#@co:graph:eb03
#@co:graph left:ebad
#@co:graph line:ebe2
#@co:graph scatter:ebe3
#@co:gripper:eb04
#@co:group by ref type:eb97
#@co:heart:eb05
#@co:heart filled:ec04
#@co:history:ea82
#@co:home:eb06
#@co:horizontal rule:eb07
#@co:hubot:eb08
#@co:inbox:eb09
#@co:indent:ebf9
#@co:index zero:ec66
#@co:info:ea74
#@co:insert:ec11
#@co:inspect:ebd1
#@co:issue draft:ebd9
#@co:issue reopened:eb0b
#@co:issues:eb0c
#@co:italic:eb0d
#@co:jersey:eb0e
#@co:json:eb0f
#@co:kebab vertical:eb10
#@co:key:eb11
#@co:keyboard tab:ec3c
#@co:keyboard tab above:ec44
#@co:keyboard tab below:ec45
#@co:law:eb12
#@co:layers:ebd2
#@co:layers active:ebd4
#@co:layers dot:ebd3
#@co:layout:ebeb
#@co:layout activitybar left:ebec
#@co:layout activitybar right:ebed
#@co:layout centered:ebf7
#@co:layout menubar:ebf6
#@co:layout panel:ebf2
#@co:layout panel center:ebef
#@co:layout panel dock:ec49
#@co:layout panel justify:ebf0
#@co:layout panel left:ebee
#@co:layout panel off:ec01
#@co:layout panel right:ebf1
#@co:layout sidebar left:ebf3
#@co:layout sidebar left dock:ec4a
#@co:layout sidebar left off:ec02
#@co:layout sidebar right:ebf4
#@co:layout sidebar right dock:ec4b
#@co:layout sidebar right off:ec00
#@co:layout statusbar:ebf5
#@co:library:eb9c
#@co:lightbulb:ea61
#@co:lightbulb autofix:eb13
#@co:lightbulb empty:ec40
#@co:lightbulb sparkle:ec1f
#@co:link:eb15
#@co:link external:eb14
#@co:list filter:eb83
#@co:list flat:eb84
#@co:list ordered:eb16
#@co:list selection:eb85
#@co:list tree:eb86
#@co:list unordered:eb17
#@co:live share:eb18
#@co:loading:eb19
#@co:location:eb1a
#@co:lock:ea75
#@co:lock small:ebe7
#@co:magnet:ebae
#@co:mail:eb1c
#@co:mail read:eb1b
#@co:map:ec05
#@co:map filled:ec06
#@co:map vertical:ec30
#@co:map vertical filled:ec31
#@co:markdown:eb1d
#@co:mcp:ec47
#@co:megaphone:eb1e
#@co:mention:eb1f
#@co:menu:eb94
#@co:merge:ebab
#@co:merge into:ec6b
#@co:mic:ec12
#@co:mic filled:ec1c
#@co:milestone:eb20
#@co:mirror:ea69
#@co:mortar board:eb21
#@co:move:eb22
#@co:multiple windows:eb23
#@co:music:ec1b
#@co:mute:eb24
#@co:new collection:ec58
#@co:new file:ea7f
#@co:new folder:ea80
#@co:new session:ec84
#@co:newline:ebea
#@co:no newline:eb25
#@co:note:eb26
#@co:notebook:ebaf
#@co:notebook template:ebbf
#@co:octoface:eb27
#@co:open in product:ec65
#@co:open in window:ec83
#@co:open preview:eb28
#@co:openai:ec81
#@co:organization:ea7e
#@co:output:eb9d
#@co:package:eb29
#@co:paintcan:eb2a
#@co:pass:eba4
#@co:pass filled:ebb3
#@co:percentage:ec33
#@co:person:ea67
#@co:person add:ebcd
#@co:piano:ec1a
#@co:pie chart:ebe4
#@co:pin:eb2b
#@co:pinned:eba0
#@co:pinned dirty:ebb2
#@co:play:eb2c
#@co:play circle:eba6
#@co:plug:eb2d
#@co:preserve case:eb2e
#@co:preview:eb2f
#@co:primitive square:ea72
#@co:project:eb30
#@co:pulse:eb31
#@co:python:ec39
#@co:question:eb32
#@co:quote:eb33
#@co:quotes:ec60
#@co:radio tower:eb34
#@co:reactions:eb35
#@co:record:eba7
#@co:record keys:ea65
#@co:record small:ebfa
#@co:redo:ebb0
#@co:references:eb36
#@co:refresh:eb37
#@co:regex:eb38
#@co:remote:eb3a
#@co:remote explorer:eb39
#@co:remove:eb3b
#@co:remove small:ec7c
#@co:rename:ec61
#@co:replace:eb3d
#@co:replace all:eb3c
#@co:reply:ea7d
#@co:repo:ea62
#@co:repo clone:eb3e
#@co:repo force push:eb3f
#@co:repo forked:ea63
#@co:repo pinned:ec43
#@co:repo pull:eb40
#@co:repo push:eb41
#@co:repo selected:ec69
#@co:report:eb42
#@co:request changes:eb43
#@co:robot:ec20
#@co:rocket:eb44
#@co:root folder:eb46
#@co:root folder opened:eb45
#@co:rss:eb47
#@co:ruby:eb48
#@co:run above:ebbd
#@co:run all:eb9e
#@co:run all coverage:ec2d
#@co:run below:ebbe
#@co:run coverage:ec2c
#@co:run errors:ebde
#@co:run with deps:ec62
#@co:save:eb4b
#@co:save all:eb49
#@co:save as:eb4a
#@co:screen cut:ec7f
#@co:screen full:eb4c
#@co:screen normal:eb4d
#@co:search:ea6d
#@co:search fuzzy:ec0d
#@co:search large:ec70
#@co:search sparkle:ec50
#@co:search stop:eb4e
#@co:send:ec0f
#@co:send to remote agent:ec53
#@co:server:eb50
#@co:server environment:eba3
#@co:server process:eba2
#@co:session in progress:ec77
#@co:settings:eb52
#@co:settings gear:eb51
#@co:share:ec25
#@co:shield:eb53
#@co:sign in:ea6f
#@co:sign out:ea6e
#@co:skip:ec6a
#@co:smiley:eb54
#@co:snake:ec16
#@co:sort precedence:eb55
#@co:source control:ea68
#@co:sparkle:ec10
#@co:sparkle filled:ec21
#@co:split horizontal:eb56
#@co:split vertical:eb57
#@co:squirrel:eb58
#@co:star empty:ea6a
#@co:star full:eb59
#@co:star half:eb5a
#@co:stop circle:eba5
#@co:strikethrough:ec64
#@co:surround with:ec24
#@co:symbol array:ea8a
#@co:symbol boolean:ea8f
#@co:symbol class:eb5b
#@co:symbol color:eb5c
#@co:symbol constant:eb5d
#@co:symbol enum:ea95
#@co:symbol enum member:eb5e
#@co:symbol event:ea86
#@co:symbol field:eb5f
#@co:symbol file:eb60
#@co:symbol interface:eb61
#@co:symbol key:ea93
#@co:symbol keyword:eb62
#@co:symbol method:ea8c
#@co:symbol method arrow:ec41
#@co:symbol misc:eb63
#@co:symbol namespace:ea8b
#@co:symbol numeric:ea90
#@co:symbol operator:eb64
#@co:symbol parameter:ea92
#@co:symbol property:eb65
#@co:symbol ruler:ea96
#@co:symbol snippet:eb66
#@co:symbol string:eb8d
#@co:symbol structure:ea91
#@co:symbol variable:ea88
#@co:sync:ea77
#@co:sync ignored:eb9f
#@co:table:ebb7
#@co:tag:ea66
#@co:target:ebf8
#@co:tasklist:eb67
#@co:telescope:eb68
#@co:terminal:ea85
#@co:terminal bash:ebca
#@co:terminal cmd:ebc4
#@co:terminal debian:ebc5
#@co:terminal git bash:ec71
#@co:terminal linux:ebc6
#@co:terminal powershell:ebc7
#@co:terminal tmux:ebc8
#@co:terminal ubuntu:ebc9
#@co:text size:eb69
#@co:thinking:ec59
#@co:three bars:eb6a
#@co:thumbsdown:eb6b
#@co:thumbsdown filled:ec13
#@co:thumbsup:eb6c
#@co:thumbsup filled:ec14
#@co:tools:eb6d
#@co:trash:ea81
#@co:triangle down:eb6e
#@co:triangle left:eb6f
#@co:triangle right:eb70
#@co:triangle up:eb71
#@co:twitter:eb72
#@co:type hierarchy:ebb9
#@co:type hierarchy sub:ebba
#@co:type hierarchy super:ebbb
#@co:unarchive:ec76
#@co:unfold:eb73
#@co:ungroup by ref type:eb98
#@co:unlock:eb74
#@co:unmute:eb75
#@co:unverified:eb76
#@co:variable group:ebb8
#@co:verified:eb77
#@co:verified filled:ebe9
#@co:versions:eb78
#@co:vm:ea7a
#@co:vm active:eb79
#@co:vm connect:eba9
#@co:vm outline:eb7a
#@co:vm running:eb7b
#@co:vm small:ec79
#@co:vr:ec18
#@co:vscode:ec29
#@co:vscode insiders:ec2a
#@co:wand:ebcf
#@co:warning:ea6c
#@co:watch:eb7c
#@co:whitespace:eb7d
#@co:whole word:eb7e
#@co:window:eb7f
#@co:window active:ec72
#@co:word wrap:eb80
#@co:workspace trusted:ebc1
#@co:workspace unknown:ebc3
#@co:workspace untrusted:ebc2
#@co:worktree:ec7e
#@co:worktree small:ec7d
#@co:zoom in:eb81
#@co:zoom out:eb82
#@cu:ada:e6b5
#@cu:asm:e6ab
#@cu:astro:e6b3
#@cu:bazel:e63a
#@cu:c:e61e
#@cu:chuck:e6b6
#@cu:common lisp:e6b0
#@cu:cpp:e61d
#@cu:crystal:e62f
#@cu:css:e6b8
#@cu:default:e612
#@cu:electron:e62e
#@cu:elixir:e62d
#@cu:elm:e62c
#@cu:emacs:e632
#@cu:fennel:e6af
#@cu:firebase:e657
#@cu:folder:e5ff
#@cu:folder config:e5fc
#@cu:folder git:e5fb
#@cu:folder git branch:e5fb
#@cu:folder github:e5fd
#@cu:folder npm:e5fa
#@cu:folder oct:e6ad
#@cu:folder open:e5fe
#@cu:go:e626
#@cu:home:e617
#@cu:kotlin:e634
#@cu:msdos:e629
#@cu:neovim:e6ae
#@cu:obsidian:e6bb
#@cu:orgmode:e633
#@cu:play arrow:e602
#@cu:prettier:e6b4
#@cu:puppet:e631
#@cu:purescript:e630
#@cu:ruby:e605
#@cu:scheme:e6b1
#@cu:toml:e6b2
#@cu:v lang:e6ac
#@cu:vim:e62b
#@cu:vitruvian:e6b7
#@cu:windows:e62a
#@cu:wireshark:e6ba
#@cu:zsh:e6b9
#@de:aarch64:e700
#@de:adonisjs:e701
#@de:aerospike:e8f1
#@de:aframe:e8f2
#@de:aftereffects:e705
#@de:akka:e708
#@de:algolia:e70a
#@de:almalinux:e8f3
#@de:alpinejs:e713
#@de:amazonwebservices:e7ad
#@de:anaconda:e715
#@de:android:e70e
#@de:androidstudio:e71a
#@de:angular:e753
#@de:angularjs:e71c
#@de:angularmaterial:e720
#@de:ansible:e723
#@de:ansys:e8f4
#@de:antdesign:e72a
#@de:apache:e72b
#@de:apacheairflow:e72c
#@de:apachekafka:e72e
#@de:apachespark:e72f
#@de:apex:e8f5
#@de:apl:e730
#@de:apollographql:e8f6
#@de:appcelerator:e7ab
#@de:apple:e711
#@de:appwrite:e731
#@de:archlinux:e732
#@de:arduino:e733
#@de:argocd:e734
#@de:artixlinux:e8f7
#@de:astro:e735
#@de:atom:e764
#@de:awk:e741
#@de:aws:e7ad
#@de:axios:e74f
#@de:azure:e754
#@de:azuredevops:e756
#@de:azuresqldatabase:e75b
#@de:babel:e75d
#@de:babylonjs:e8f8
#@de:backbone:e752
#@de:backbonejs:e752
#@de:ballerina:e75e
#@de:bamboo:e75f
#@de:bash:e760
#@de:bazel:e8f9
#@de:beats:e761
#@de:behance:e762
#@de:bevyengine:e8fa
#@de:biome:e8fb
#@de:bitbucket:e703
#@de:blazor:e765
#@de:blender:e766
#@de:bootstrap:e747
#@de:bower:e74d
#@de:browserstack:e76b
#@de:bulma:e76c
#@de:bun:e76f
#@de:c:e771
#@de:c lang:e771
#@de:cairo:e773
#@de:cakephp:e77a
#@de:canva:e77c
#@de:capacitor:e785
#@de:carbon:e788
#@de:cassandra:e789
#@de:centos:e78a
#@de:ceylon:e78b
#@de:chakraui:e8fc
#@de:chartjs:e8fd
#@de:chrome:e743
#@de:circleci:e78c
#@de:clarity:e78d
#@de:clickhouse:e8fe
#@de:clion:e78e
#@de:clojure:e768
#@de:clojure alt:e76a
#@de:clojurescript:e790
#@de:cloudflare:e792
#@de:cloudflareworkers:e793
#@de:cloudrun:e8ff
#@de:cmake:e794
#@de:cobol:e900
#@de:codeac:e796
#@de:codecov:e797
#@de:codeigniter:e780
#@de:codepen:e716
#@de:coffeescript:e751
#@de:composer:e783
#@de:confluence:e799
#@de:consul:e79a
#@de:contao:e79b
#@de:corejs:e79d
#@de:cosmosdb:e79f
#@de:couchbase:e7a0
#@de:couchdb:e7a2
#@de:cpanel:e901
#@de:cplusplus:e7a3
#@de:crystal:e7ac
#@de:csharp:e7b2
#@de:css3:e749
#@de:css3 full:e74a
#@de:cucumber:e7b7
#@de:cypressio:e7b9
#@de:d3js:e7bc
#@de:dart:e798
#@de:database:e706
#@de:datadog:e902
#@de:datagrip:e7bd
#@de:dataspell:e7be
#@de:datatables:e903
#@de:dbeaver:e7bf
#@de:debian:e77d
#@de:delphi:e904
#@de:denojs:e7c0
#@de:detaspace:e905
#@de:devicon:e7c1
#@de:digital ocean:e7ae
#@de:digitalocean:e7ae
#@de:discloud:e906
#@de:discordjs:e7c2
#@de:django:e71d
#@de:djangorest:e7c3
#@de:dlang:e7af
#@de:docker:e7b0
#@de:doctrine:e774
#@de:dotnet:e77f
#@de:dotnetcore:e7c6
#@de:dovecot:e907
#@de:dreamweaver:e79c
#@de:dropbox:e707
#@de:dropwizard:e7c7
#@de:drupal:e742
#@de:duckdb:e908
#@de:dyalog:e909
#@de:dynamodb:e7c8
#@de:dynatrace:e90a
#@de:eclipse:e79e
#@de:ecto:e7c9
#@de:elasticsearch:e7ca
#@de:electron:e7cb
#@de:eleventy:e7cc
#@de:elixir:e7cd
#@de:elm:e7ce
#@de:emacs:e7cf
#@de:embeddedc:e7d0
#@de:ember:e71b
#@de:entityframeworkcore:e90b
#@de:envoy:e7d1
#@de:erlang:e7b1
#@de:eslint:e7d2
#@de:expo:e90c
#@de:express:e7d3
#@de:facebook:e7d4
#@de:fastapi:e7d5
#@de:fastify:e7d6
#@de:faunadb:e7d7
#@de:feathersjs:e7d8
#@de:fedora:e7d9
#@de:fiber:e90d
#@de:figma:e7da
#@de:filamentphp:e90e
#@de:filezilla:e7db
#@de:firebase:e787
#@de:firebird:e90f
#@de:firefox:e745
#@de:flask:e7dc
#@de:flutter:e7dd
#@de:forgejo:e910
#@de:fortran:e7de
#@de:foundation:e7df
#@de:framermotion:e7e0
#@de:framework7:e7e1
#@de:fsharp:e7a7
#@de:fusion:e911
#@de:gardener:e912
#@de:gatling:e7e2
#@de:gatsby:e7e3
#@de:gazebo:e7e4
#@de:gcc:e7e5
#@de:gentoo:e7e6
#@de:ghost:e71f
#@de:ghost small:e714
#@de:gimp:e7e7
#@de:git:e702
#@de:git branch:e725
#@de:git commit:e729
#@de:git compare:e728
#@de:git merge:e727
#@de:git pull request:e726
#@de:gitbook:e7e8
#@de:github:e709
#@de:github badge:e709
#@de:github full:e717
#@de:githubactions:e7e9
#@de:githubcodespaces:e7ea
#@de:gitkraken:e913
#@de:gitlab:e7eb
#@de:gitpod:e7ec
#@de:gitter:e7ed
#@de:gleam:e914
#@de:glitch:e915
#@de:gnu:e779
#@de:go:e724
#@de:godot:e7ee
#@de:goland:e7ef
#@de:google:e7f0
#@de:googlecloud:e7f1
#@de:googlecolab:e916
#@de:gradle:e7f2
#@de:grafana:e7f3
#@de:grails:e7b3
#@de:graphql:e7f4
#@de:groovy:e775
#@de:grpc:e7f5
#@de:grunt:e74c
#@de:gulp:e763
#@de:hadoop:e7f6
#@de:handlebars:e7f7
#@de:harbor:e917
#@de:hardhat:e7f8
#@de:harvester:e7f9
#@de:haskell:e777
#@de:haxe:e7fa
#@de:helm:e7fb
#@de:heroku:e77b
#@de:hibernate:e7fc
#@de:homebrew:e7fd
#@de:hoppscotch:e918
#@de:html5:e736
#@de:htmx:e919
#@de:hugo:e7fe
#@de:hyperv:e91a
#@de:ie:e744
#@de:ifttt:e7ff
#@de:illustrator:e7b4
#@de:inertiajs:e91b
#@de:influxdb:e800
#@de:inkscape:e801
#@de:insomnia:e802
#@de:intellij:e7b5
#@de:ionic:e7a9
#@de:jaegertracing:e803
#@de:jamstack:e804
#@de:jasmine:e805
#@de:java:e738
#@de:javascript:e781
#@de:javascript alt:e74e
#@de:javascript badge:e781
#@de:jeet:e806
#@de:jekyll:e70d
#@de:jekyll small:e70d
#@de:jenkins:e767
#@de:jest:e807
#@de:jetbrains:e808
#@de:jetpackcompose:e809
#@de:jhipster:e91c
#@de:jira:e75c
#@de:jiraalign:e80a
#@de:jquery:e750
#@de:json:e80b
#@de:jule:e80c
#@de:julia:e80d
#@de:junit:e80e
#@de:jupyter:e80f
#@de:k3os:e810
#@de:k3s:e811
#@de:k6:e812
#@de:kaggle:e813
#@de:kaldi:e91d
#@de:kalilinux:e91e
#@de:karatelabs:e814
#@de:karma:e815
#@de:kdeneon:e816
#@de:keras:e817
#@de:kibana:e818
#@de:knexjs:e819
#@de:knockout:e81a
#@de:kotlin:e81b
#@de:krakenjs:e784
#@de:krakenjs badge:e784
#@de:ktor:e81c
#@de:kubeflow:e91f
#@de:kubernetes:e81d
#@de:labview:e81e
#@de:laminas:e920
#@de:laravel:e73f
#@de:laraveljetstream:e921
#@de:latex:e81f
#@de:leetcode:e922
#@de:less:e758
#@de:libgdx:e923
#@de:linkedin:e820
#@de:linux:e712
#@de:linuxmint:e924
#@de:liquibase:e821
#@de:livewire:e822
#@de:llvm:e823
#@de:lodash:e824
#@de:logstash:e825
#@de:love2d:e925
#@de:lua:e826
#@de:lumen:e827
#@de:magento:e740
#@de:mapbox:e926
#@de:mariadb:e828
#@de:markdown:e73e
#@de:materializecss:e7b6
#@de:materialui:e829
#@de:matlab:e82a
#@de:matplotlib:e82b
#@de:mattermost:e927
#@de:maven:e82c
#@de:maya:e82d
#@de:memcached:e928
#@de:mercurial:e929
#@de:meteor:e7a5
#@de:meteorfull:e7a6
#@de:microsoftsqlserver:e82e
#@de:minitab:e82f
#@de:mithril:e830
#@de:mobx:e831
#@de:mocha:e832
#@de:modx:e833
#@de:moleculer:e834
#@de:mongodb:e7a4
#@de:mongoose:e835
#@de:monogame:e92a
#@de:moodle:e836
#@de:mootools badge:e78f
#@de:mozilla:e786
#@de:msdos:e837
#@de:mysql:e704
#@de:nano:e838
#@de:nats:e8f0
#@de:neo4j:e839
#@de:neovim:e83a
#@de:nestjs:e83b
#@de:netbeans:e92b
#@de:netbox:e92c
#@de:netlify:e83c
#@de:networkx:e83d
#@de:newrelic:e92d
#@de:nextjs:e83e
#@de:nginx:e776
#@de:ngrok:e92e
#@de:ngrx:e83f
#@de:nhibernate:e840
#@de:nim:e841
#@de:nimble:e842
#@de:nixos:e843
#@de:nodejs:e719
#@de:nodejs small:e718
#@de:nodemon:e844
#@de:nodered:e92f
#@de:nodewebkit:e845
#@de:nomad:e846
#@de:norg:e847
#@de:notion:e848
#@de:npm:e71e
#@de:npss:e930
#@de:nuget:e849
#@de:numpy:e84a
#@de:nuxt:e931
#@de:nuxtjs:e84b
#@de:oauth:e84c
#@de:objectivec:e84d
#@de:ocaml:e84e
#@de:ohmyzsh:e84f
#@de:okta:e850
#@de:openal:e851
#@de:openapi:e852
#@de:opencl:e853
#@de:opencv:e854
#@de:opengl:e855
#@de:openstack:e856
#@de:opensuse:e857
#@de:opentelemetry:e858
#@de:opera:e746
#@de:oracle:e859
#@de:ory:e85a
#@de:p5js:e85b
#@de:packer:e85c
#@de:pandas:e85d
#@de:passport:e932
#@de:perl:e769
#@de:pfsense:e85e
#@de:phalcon:e85f
#@de:phoenix:e860
#@de:photonengine:e861
#@de:photoshop:e7b8
#@de:php:e73d
#@de:phpstorm:e862
#@de:pixijs:e933
#@de:playwright:e863
#@de:plotly:e864
#@de:pm2:e934
#@de:pnpm:e865
#@de:podman:e866
#@de:poetry:e867
#@de:polygon:e868
#@de:portainer:e869
#@de:postcss:e86a
#@de:postgresql:e76e
#@de:postman:e86b
#@de:powershell:e86c
#@de:premierepro:e86d
#@de:primeng:e935
#@de:prisma:e86e
#@de:processing:e86f
#@de:processwire:e936
#@de:prolog:e7a1
#@de:prometheus:e870
#@de:protractor:e871
#@de:proxmox:e937
#@de:pug:e938
#@de:pulsar:e872
#@de:pulumi:e873
#@de:puppeteer:e874
#@de:purescript:e875
#@de:putty:e876
#@de:pycharm:e877
#@de:pypi:e878
#@de:pyscript:e879
#@de:pytest:e87a
#@de:python:e73c
#@de:pytorch:e87b
#@de:qodana:e87c
#@de:qt:e87d
#@de:qtest:e939
#@de:quarkus:e87e
#@de:quasar:e87f
#@de:qwik:e880
#@de:r:e881
#@de:rabbitmq:e882
#@de:racket:e93a
#@de:radstudio:e93b
#@de:rails:e73b
#@de:railway:e883
#@de:rancher:e884
#@de:raspberry pi:e722
#@de:reach:e885
#@de:react:e7ba
#@de:reactbootstrap:e886
#@de:reactnative:e93c
#@de:reactnavigation:e887
#@de:reactrouter:e888
#@de:readthedocs:e889
#@de:realm:e88a
#@de:rect:e88b
#@de:redhat:e7bb
#@de:redis:e76d
#@de:redux:e88c
#@de:reflex:e93d
#@de:remix:e93e
#@de:renpy:e88d
#@de:replit:e88e
#@de:requirejs:e770
#@de:rexx:e93f
#@de:rider:e88f
#@de:rocksdb:e890
#@de:rockylinux:e891
#@de:rollup:e892
#@de:ros:e893
#@de:rspec:e894
#@de:rstudio:e895
#@de:ruby:e739
#@de:ruby on rails:e73b
#@de:ruby rough:e791
#@de:rubymine:e896
#@de:rust:e7a8
#@de:rxjs:e897
#@de:safari:e748
#@de:salesforce:e898
#@de:sanity:e899
#@de:sass:e74b
#@de:scala:e737
#@de:scalingo:e89a
#@de:scikitlearn:e89b
#@de:sdl:e89c
#@de:selenium:e89d
#@de:sema:e89e
#@de:sentry:e89f
#@de:sequelize:e8a0
#@de:shopware:e8a1
#@de:shotgrid:e8a2
#@de:sketch:e8a3
#@de:slack:e8a4
#@de:smashing magazine:e72d
#@de:socketio:e8a5
#@de:solidity:e8a6
#@de:solidjs:e8a7
#@de:sonarqube:e8a8
#@de:sourceengine:e940
#@de:sourcetree:e8a9
#@de:spack:e8aa
#@de:spicedb:e941
#@de:splunk:e8ab
#@de:spring:e8ac
#@de:spss:e8ad
#@de:spyder:e8ae
#@de:sqlalchemy:e8af
#@de:sqldeveloper:e8b0
#@de:sqlite:e7c4
#@de:ssh:e8b1
#@de:stackblitz:e942
#@de:stackoverflow:e710
#@de:stata:e8b2
#@de:stenciljs:e943
#@de:storybook:e8b3
#@de:streamlit:e8b4
#@de:styledcomponents:e944
#@de:stylus:e759
#@de:sublime:e7aa
#@de:subversion:e8b5
#@de:sulu:e945
#@de:supabase:e8b6
#@de:surrealdb:e946
#@de:svelte:e8b7
#@de:svgo:e947
#@de:swagger:e8b8
#@de:swift:e755
#@de:swiper:e8b9
#@de:symfony:e757
#@de:symfony badge:e757
#@de:tailwindcss:e8ba
#@de:talos:e948
#@de:tauri:e8bb
#@de:teleport:e949
#@de:tensorflow:e8bc
#@de:terminal:e795
#@de:terraform:e8bd
#@de:terramate:e94a
#@de:tex:e8be
#@de:thealgorithms:e8bf
#@de:threedsmax:e8c0
#@de:threejs:e8c1
#@de:thymeleaf:e94b
#@de:titaniumsdk:e8c2
#@de:tmux:e94c
#@de:tomcat:e8c3
#@de:tortoisegit:e8c4
#@de:towergit:e8c5
#@de:traefikmesh:e8c6
#@de:traefikproxy:e8c7
#@de:travis:e77e
#@de:trello:e75a
#@de:trpc:e8c8
#@de:turbo:e94d
#@de:twilio:e94e
#@de:twitter:e8c9
#@de:typescript:e8ca
#@de:typo3:e772
#@de:ubuntu:e73a
#@de:uml:e8cb
#@de:unifiedmodelinglanguage:e8cb
#@de:unity:e721
#@de:unity small:e721
#@de:unix:e8cc
#@de:unrealengine:e8cd
#@de:uwsgi:e8ce
#@de:v8:e8cf
#@de:vaadin:e94f
#@de:vagrant:e8d0
#@de:vala:e8d1
#@de:vault:e8d2
#@de:veevalidate:e950
#@de:vercel:e8d3
#@de:vertx:e8d4
#@de:vim:e7c5
#@de:visualbasic:e8d5
#@de:visualstudio:e70c
#@de:vite:e8d6
#@de:vitejs:e8d7
#@de:vitess:e8d8
#@de:vitest:e8d9
#@de:vscode:e8da
#@de:vscodium:e951
#@de:vsphere:e8db
#@de:vuejs:e8dc
#@de:vuestorefront:e8dd
#@de:vuetify:e8de
#@de:vulkan:e952
#@de:vyper:e8df
#@de:waku:e953
#@de:wasm:e8e0
#@de:web3js:e954
#@de:webflow:e8e1
#@de:webgpu:e955
#@de:weblate:e8e2
#@de:webpack:e8e3
#@de:webstorm:e8e4
#@de:windows:e70f
#@de:windows11:e8e5
#@de:wolfram:e956
#@de:woocommerce:e8e6
#@de:wordpress:e70b
#@de:xamarin:e8e7
#@de:xcode:e8e8
#@de:xd:e8e9
#@de:xml:e8ea
#@de:yaml:e8eb
#@de:yarn:e8ec
#@de:yii:e782
#@de:yugabytedb:e8ed
#@de:yunohost:e8ee
#@de:zend:e778
#@de:zig:e8ef
#@de:zsh:e957
#@de:zustand:e958
#@ex:progress empty left:ee00
#@ex:progress empty mid:ee01
#@ex:progress empty right:ee02
#@ex:progress full left:ee03
#@ex:progress full mid:ee04
#@ex:progress full right:ee05
#@ex:progress spinner 1:ee06
#@ex:progress spinner 2:ee07
#@ex:progress spinner 3:ee08
#@ex:progress spinner 4:ee09
#@ex:progress spinner 5:ee0a
#@ex:progress spinner 6:ee0b
#@fa:500px:f26e
#@fa:accessible icon:f29b
#@fa:accusoft:f0b7
#@fa:address book:f2b9
#@fa:address book o:f2ba
#@fa:address card:f2bb
#@fa:address card o:f2bc
#@fa:adjust:f042
#@fa:adn:f170
#@fa:adversal:f0b8
#@fa:affiliatetheme:f0b9
#@fa:airbnb:ef93
#@fa:algolia:f0ba
#@fa:align center:f037
#@fa:align justify:f039
#@fa:align left:f036
#@fa:align right:f038
#@fa:alipay:eebc
#@fa:amazon:f270
#@fa:amazon pay:ed56
#@fa:ambulance:f0f9
#@fa:american sign language interpreting:f2a3
#@fa:amilia:f0bb
#@fa:anchor:f13d
#@fa:android:f17b
#@fa:angellist:f209
#@fa:angle double down:f103
#@fa:angle double left:f100
#@fa:angle double right:f101
#@fa:angle double up:f102
#@fa:angle down:f107
#@fa:angle left:f104
#@fa:angle right:f105
#@fa:angle up:f106
#@fa:angles down:f103
#@fa:angles left:f100
#@fa:angles right:f101
#@fa:angles up:f102
#@fa:angrycreative:f0bc
#@fa:angular:ed4b
#@fa:ankh:eebd
#@fa:app store:f0bd
#@fa:app store ios:f0be
#@fa:apper:f0bf
#@fa:apple:f179
#@fa:apple pay:ed41
#@fa:apple whole:ee98
#@fa:archive:f187
#@fa:archway:ee20
#@fa:area chart:f1fe
#@fa:arrow circle down:f0ab
#@fa:arrow circle left:f0a8
#@fa:arrow circle o down:f01a
#@fa:arrow circle o left:f190
#@fa:arrow circle o right:f18e
#@fa:arrow circle o up:f01b
#@fa:arrow circle right:f0a9
#@fa:arrow circle up:f0aa
#@fa:arrow down:f063
#@fa:arrow down 1 9:f162
#@fa:arrow down 9 1:efb1
#@fa:arrow down a z:f15d
#@fa:arrow down long:f175
#@fa:arrow down short wide:efaf
#@fa:arrow down wide short:f160
#@fa:arrow down z a:efad
#@fa:arrow left:f060
#@fa:arrow left long:f177
#@fa:arrow pointer:f245
#@fa:arrow right:f061
#@fa:arrow right arrow left:f0ec
#@fa:arrow right from bracket:f08b
#@fa:arrow right long:f178
#@fa:arrow right to bracket:f090
#@fa:arrow rotate left:f0e2
#@fa:arrow rotate right:f01e
#@fa:arrow turn down:f149
#@fa:arrow turn up:f148
#@fa:arrow up:f062
#@fa:arrow up 1 9:f163
#@fa:arrow up 9 1:efb2
#@fa:arrow up a z:f15e
#@fa:arrow up long:f176
#@fa:arrow up right from square:f08e
#@fa:arrow up short wide:efb0
#@fa:arrow up wide short:f161
#@fa:arrow up z a:efae
#@fa:arrows:f047
#@fa:arrows alt:f0b2
#@fa:arrows h:f07e
#@fa:arrows left right:f07e
#@fa:arrows rotate:f021
#@fa:arrows up down:f07d
#@fa:arrows up down left right:f047
#@fa:arrows v:f07d
#@fa:artstation:ef31
#@fa:asl interpreting:f2a3
#@fa:assistive listening systems:f2a2
#@fa:asterisk:f069
#@fa:asymmetrik:f0cf
#@fa:at:f1fa
#@fa:atlassian:ef32
#@fa:atom:ee99
#@fa:audible:f0df
#@fa:audio description:f29e
#@fa:automobile:f1b9
#@fa:autoprefixer:ed47
#@fa:avianex:efc2
#@fa:aviato:ed4c
#@fa:award:ee22
#@fa:aws:f0ef
#@fa:baby:ef33
#@fa:baby carriage:ef34
#@fa:backward:f04a
#@fa:backward fast:f049
#@fa:backward step:f048
#@fa:bacon:ef77
#@fa:bag shopping:f290
#@fa:bahai:eecb
#@fa:balance scale:f24e
#@fa:ban:f05e
#@fa:ban smoking:ee16
#@fa:bandage:ed74
#@fa:bandcamp:f2d5
#@fa:bank:f19c
#@fa:bar chart:f080
#@fa:bar chart o:f080
#@fa:barcode:f02a
#@fa:bars:f0c9
#@fa:bars progress:ef8f
#@fa:bars staggered:ee19
#@fa:baseball:ed5c
#@fa:baseball bat ball:ed5b
#@fa:basket shopping:f291
#@fa:basketball:ed5d
#@fa:bath:f2cd
#@fa:bathtub:f2cd
#@fa:battery:f240
#@fa:battery 0:f244
#@fa:battery 1:f243
#@fa:battery 2:f242
#@fa:battery 3:f241
#@fa:battery 4:f240
#@fa:battery empty:f244
#@fa:battery full:f240
#@fa:battery half:f242
#@fa:battery quarter:f243
#@fa:battery three quarters:f241
#@fa:battle net:ef94
#@fa:bed:f236
#@fa:bed pulse:ed8a
#@fa:beer:f0fc
#@fa:beer mug empty:f0fc
#@fa:behance:f1b4
#@fa:behance square:f1b5
#@fa:bell:f0f3
#@fa:bell concierge:ee2b
#@fa:bell o:f0a2
#@fa:bell slash:f1f6
#@fa:bell slash o:f1f7
#@fa:bezier curve:ee24
#@fa:bicycle:f206
#@fa:bimobject:f0ff
#@fa:binoculars:f1e5
#@fa:biohazard:ef35
#@fa:birthday cake:f1fd
#@fa:bitbucket:f171
#@fa:bitbucket square:f172
#@fa:bitcoin:f10f
#@fa:bity:f116
#@fa:black tie:f27e
#@fa:blackberry:f117
#@fa:blender:ede1
#@fa:blender phone:eeea
#@fa:blind:f29d
#@fa:blog:ef36
#@fa:blogger:f11f
#@fa:blogger b:f12f
#@fa:bluetooth:f293
#@fa:bluetooth b:f294
#@fa:bold:f032
#@fa:bolt:f0e7
#@fa:bomb:f1e2
#@fa:bone:ee9a
#@fa:bong:ee25
#@fa:book:f02d
#@fa:book atlas:ee21
#@fa:book bible:eebe
#@fa:book journal whills:eecd
#@fa:book medical:ef78
#@fa:book open:ede2
#@fa:book open reader:ee9b
#@fa:book quran:eedc
#@fa:book skull:eeeb
#@fa:book tanakh:ef8e
#@fa:bookmark:f02e
#@fa:bookmark o:f097
#@fa:bootstrap:ef95
#@fa:border all:efa3
#@fa:border none:efa4
#@fa:border top left:efa5
#@fa:bowling ball:ed5e
#@fa:box:ed75
#@fa:box archive:f187
#@fa:box open:ed95
#@fa:boxes stacked:ed76
#@fa:braille:f2a1
#@fa:brain:ee9c
#@fa:bread slice:ef79
#@fa:briefcase:f0b1
#@fa:briefcase medical:ed77
#@fa:broom:ede4
#@fa:broom ball:ed6e
#@fa:brush:ee26
#@fa:btc:f15a
#@fa:buffer:ef96
#@fa:bug:f188
#@fa:building:f1ad
#@fa:building columns:f19c
#@fa:building o:f0f7
#@fa:bullhorn:f0a1
#@fa:bullseye:f140
#@fa:burger:ef82
#@fa:buromobelexperte:f13f
#@fa:bus:f207
#@fa:bus simple:ee27
#@fa:business time:eebf
#@fa:buy n large:efb6
#@fa:buysellads:f20d
#@fa:cab:f1ba
#@fa:cable car:ef71
#@fa:cake candles:f1fd
#@fa:calculator:f1ec
#@fa:calendar:f073
#@fa:calendar check:f274
#@fa:calendar check o:f274
#@fa:calendar day:ef37
#@fa:calendar days:f073
#@fa:calendar minus:f272
#@fa:calendar minus o:f272
#@fa:calendar o:f133
#@fa:calendar plus:f271
#@fa:calendar plus o:f271
#@fa:calendar times o:f273
#@fa:calendar week:ef38
#@fa:calendar xmark:f273
#@fa:camera:f030
#@fa:camera retro:f083
#@fa:campground:eeec
#@fa:canadian maple leaf:ef39
#@fa:candy cane:ef3a
#@fa:cannabis:ee28
#@fa:capsules:ed79
#@fa:car:f1b9
#@fa:car battery:ee9e
#@fa:car burst:ee9f
#@fa:car rear:ee9d
#@fa:car side:eea0
#@fa:caravan:efc1
#@fa:caret down:f0d7
#@fa:caret left:f0d9
#@fa:caret right:f0da
#@fa:caret square o down:f150
#@fa:caret square o left:f191
#@fa:caret square o right:f152
#@fa:caret square o up:f151
#@fa:caret up:f0d8
#@fa:carrot:ef3b
#@fa:cart arrow down:f218
#@fa:cart flatbed:ed7f
#@fa:cart flatbed suitcase:ee66
#@fa:cart plus:f217
#@fa:cart shopping:f07a
#@fa:cash register:ef3c
#@fa:cat:eeed
#@fa:cc:f20a
#@fa:cc amazon pay:ed57
#@fa:cc amex:f1f3
#@fa:cc apple pay:ed42
#@fa:cc diners club:f24c
#@fa:cc discover:f1f2
#@fa:cc jcb:f24b
#@fa:cc mastercard:f1f1
#@fa:cc paypal:f1f4
#@fa:cc stripe:f1f5
#@fa:cc visa:f1f0
#@fa:centercode:f14f
#@fa:centos:ef3d
#@fa:certificate:f0a3
#@fa:chain:f0c1
#@fa:chain broken:f127
#@fa:chair:eeee
#@fa:chalkboard:ede5
#@fa:chalkboard user:ede6
#@fa:champagne glasses:ef49
#@fa:charging station:eea1
#@fa:chart area:f1fe
#@fa:chart bar:f080
#@fa:chart line:f201
#@fa:chart pie:f200
#@fa:check:f00c
#@fa:check circle:f058
#@fa:check circle o:f05d
#@fa:check double:ee29
#@fa:check square:f14a
#@fa:check square o:f046
#@fa:check to slot:ef2f
#@fa:cheese:ef7a
#@fa:chess:ed5f
#@fa:chess bishop:ed60
#@fa:chess board:ed61
#@fa:chess king:ed62
#@fa:chess knight:ed63
#@fa:chess pawn:ed64
#@fa:chess queen:ed65
#@fa:chess rook:ed66
#@fa:chevron circle down:f13a
#@fa:chevron circle left:f137
#@fa:chevron circle right:f138
#@fa:chevron circle up:f139
#@fa:chevron down:f078
#@fa:chevron left:f053
#@fa:chevron right:f054
#@fa:chevron up:f077
#@fa:child:f1ae
#@fa:chrome:f268
#@fa:chromecast:ef97
#@fa:church:ede7
#@fa:circle:f111
#@fa:circle arrow down:f0ab
#@fa:circle arrow left:f0a8
#@fa:circle arrow right:f0a9
#@fa:circle arrow up:f0aa
#@fa:circle check:f05d
#@fa:circle chevron down:f13a
#@fa:circle chevron left:f137
#@fa:circle chevron right:f138
#@fa:circle chevron up:f139
#@fa:circle dollar to slot:ed98
#@fa:circle dot:f192
#@fa:circle down:f01a
#@fa:circle exclamation:f06a
#@fa:circle h:ed83
#@fa:circle half stroke:f042
#@fa:circle info:f05a
#@fa:circle left:f190
#@fa:circle minus:f056
#@fa:circle notch:f1ce
#@fa:circle o:f10c
#@fa:circle o notch:f1ce
#@fa:circle pause:f28b
#@fa:circle play:f144
#@fa:circle plus:f055
#@fa:circle question:f059
#@fa:circle radiation:ef5b
#@fa:circle right:f18e
#@fa:circle stop:f28d
#@fa:circle thin:f1db
#@fa:circle up:f01b
#@fa:circle user:f2bd
#@fa:circle xmark:f05c
#@fa:city:eec0
#@fa:clipboard:f0ea
#@fa:clipboard alt:f07f
#@fa:clipboard check:ed7a
#@fa:clipboard list:ed7b
#@fa:clipboard user:ef7c
#@fa:clock:f017
#@fa:clock o:f017
#@fa:clock rotate left:f1da
#@fa:clone:f24d
#@fa:close:f00d
#@fa:closed captioning:f20a
#@fa:cloud:f0c2
#@fa:cloud arrow down:f0ed
#@fa:cloud arrow up:f0ee
#@fa:cloud bolt:ef2c
#@fa:cloud download:f0ed
#@fa:cloud meatball:ef1a
#@fa:cloud moon:eeef
#@fa:cloud moon rain:ef1b
#@fa:cloud rain:ef1c
#@fa:cloud showers heavy:ef1d
#@fa:cloud sun:eef0
#@fa:cloud sun rain:ef1e
#@fa:cloud upload:f0ee
#@fa:cloudscale:f15f
#@fa:cloudsmith:f167
#@fa:cloudversify:f16f
#@fa:cny:f157
#@fa:code:f121
#@fa:code branch:f126
#@fa:code commit:f172
#@fa:code fork:f126
#@fa:code merge:f17f
#@fa:codepen:f1cb
#@fa:codiepie:f284
#@fa:coffee:f0f4
#@fa:cog:f013
#@fa:cogs:f085
#@fa:coins:ede8
#@fa:columns:f0db
#@fa:comment:f075
#@fa:comment dollar:eec1
#@fa:comment dots:f27b
#@fa:comment medical:ef7d
#@fa:comment o:f0e5
#@fa:comment slash:ed96
#@fa:comment sms:ef68
#@fa:commenting:f27a
#@fa:commenting o:f27b
#@fa:comments:f086
#@fa:comments dollar:eec2
#@fa:comments o:f0e6
#@fa:compact disc:ede9
#@fa:compass:f14e
#@fa:compass drafting:ee31
#@fa:compress:f066
#@fa:computer mouse:efba
#@fa:confluence:ef3f
#@fa:connectdevelop:f20e
#@fa:contao:f26d
#@fa:cookie:ee2c
#@fa:cookie bite:ee2d
#@fa:copy:f0c5
#@fa:copyright:f1f9
#@fa:cotton bureau:efb5
#@fa:couch:ed97
#@fa:cow:eef1
#@fa:cpanel:f18f
#@fa:creative commons:f25e
#@fa:creative commons by:edb1
#@fa:creative commons nc:edb2
#@fa:creative commons nc eu:edb3
#@fa:creative commons nc jp:edb4
#@fa:creative commons nd:edb5
#@fa:creative commons pd:edb6
#@fa:creative commons pd alt:edb7
#@fa:creative commons remix:edb8
#@fa:creative commons sa:edb9
#@fa:creative commons sampling:edba
#@fa:creative commons sampling plus:edbb
#@fa:creative commons share:edbc
#@fa:creative commons zero:edbd
#@fa:credit card:f09d
#@fa:credit card alt:f283
#@fa:critical role:eef2
#@fa:crop:f125
#@fa:crop simple:ee2e
#@fa:cross:eec3
#@fa:crosshairs:f05b
#@fa:crow:edea
#@fa:crown:edeb
#@fa:crutch:ef7e
#@fa:css3:f13c
#@fa:css3 alt:f19f
#@fa:cube:f1b2
#@fa:cubes:f1b3
#@fa:cut:f0c4
#@fa:cutlery:f0f5
#@fa:cuttlefish:f1af
#@fa:d and d:f1bf
#@fa:d and d beyond:eef3
#@fa:dashboard:f0e4
#@fa:dashcube:f210
#@fa:database:f1c0
#@fa:deaf:f2a4
#@fa:deafness:f2a4
#@fa:dedent:f03b
#@fa:delete left:ee23
#@fa:delicious:f1a5
#@fa:democrat:ef1f
#@fa:deploydog:f1cf
#@fa:deskpro:f1df
#@fa:desktop:f108
#@fa:dev:eef4
#@fa:deviantart:f1bd
#@fa:dharmachakra:eec4
#@fa:dhl:ef40
#@fa:diagram project:efce
#@fa:diamond:f29f
#@fa:diamond turn right:eea2
#@fa:diaspora:ef41
#@fa:dice:edec
#@fa:dice d20:eef5
#@fa:dice d6:eef6
#@fa:dice five:eded
#@fa:dice four:edee
#@fa:dice one:edef
#@fa:dice six:edf0
#@fa:dice three:edf1
#@fa:dice two:edf2
#@fa:digg:f1a6
#@fa:digital ocean:f1ef
#@fa:discord:f1ff
#@fa:discourse:f20c
#@fa:disease:ef7f
#@fa:divide:edf3
#@fa:dna:ed7d
#@fa:dochub:f20f
#@fa:docker:f21f
#@fa:dog:eef7
#@fa:dollar:f155
#@fa:dollar sign:f155
#@fa:dolly:ed7e
#@fa:door closed:edf4
#@fa:door open:edf5
#@fa:dot circle o:f192
#@fa:dove:ed99
#@fa:down left and up right to center:ed4d
#@fa:down long:f03f
#@fa:download:f019
#@fa:draft2digital:f220
#@fa:dragon:eef8
#@fa:draw polygon:eea3
#@fa:dribbble:f17d
#@fa:drivers license:f2c2
#@fa:drivers license o:f2c3
#@fa:dropbox:f16b
#@fa:droplet:f043
#@fa:droplet slash:ee8e
#@fa:drum:ee32
#@fa:drum steelpan:ee33
#@fa:drumstick bite:eef9
#@fa:drupal:f1a9
#@fa:dumbbell:ed67
#@fa:dumpster:ef42
#@fa:dumpster fire:ef43
#@fa:dungeon:eefa
#@fa:dyalog:f22f
#@fa:ear deaf:f2a4
#@fa:ear listen:f2a2
#@fa:earlybirds:f230
#@fa:earth africa:ee45
#@fa:earth americas:ee46
#@fa:earth asia:ee47
#@fa:earth europe:ef4b
#@fa:ebay:edbe
#@fa:edge:f282
#@fa:edit:f044
#@fa:eercast:f2da
#@fa:egg:ef80
#@fa:eject:f052
#@fa:elementor:ed5a
#@fa:ellipsis:f141
#@fa:ellipsis h:f141
#@fa:ellipsis v:f142
#@fa:ellipsis vertical:f142
#@fa:ello:eea4
#@fa:ember:ed4e
#@fa:empire:f1d1
#@fa:envelope:f0e0
#@fa:envelope o:f003
#@fa:envelope open:f2b6
#@fa:envelope open o:f2b7
#@fa:envelope open text:eec5
#@fa:envelope square:f199
#@fa:envelopes bulk:eed1
#@fa:envira:f299
#@fa:equals:edf6
#@fa:eraser:f12d
#@fa:erlang:f23f
#@fa:ethereum:ed58
#@fa:ethernet:ef44
#@fa:etsy:f2d7
#@fa:eur:f153
#@fa:euro:f153
#@fa:euro sign:f153
#@fa:evernote:ef98
#@fa:exchange:f0ec
#@fa:exclamation:f12a
#@fa:exclamation circle:f06a
#@fa:exclamation triangle:f071
#@fa:expand:f065
#@fa:expeditedssl:f23e
#@fa:external link:f08e
#@fa:external link square:f14c
#@fa:eye:f06e
#@fa:eye dropper:f1fb
#@fa:eye low vision:f2a8
#@fa:eye slash:f070
#@fa:eyedropper:f1fb
#@fa:fa:f2b4
#@fa:face angry:ee1f
#@fa:face dizzy:ee30
#@fa:face flushed:ee42
#@fa:face frown:f119
#@fa:face frown open:ee43
#@fa:face grimace:ee48
#@fa:face grin:ee49
#@fa:face grin beam:ee4b
#@fa:face grin beam sweat:ee4c
#@fa:face grin hearts:ee4d
#@fa:face grin squint:ee4e
#@fa:face grin squint tears:ee4f
#@fa:face grin stars:ee50
#@fa:face grin tears:ee51
#@fa:face grin tongue:ee52
#@fa:face grin tongue squint:ee53
#@fa:face grin tongue wink:ee54
#@fa:face grin wide:ee4a
#@fa:face grin wink:ee55
#@fa:face kiss:ee5f
#@fa:face kiss beam:ee60
#@fa:face kiss wink heart:ee61
#@fa:face laugh:ee62
#@fa:face laugh beam:ee63
#@fa:face laugh squint:ee64
#@fa:face laugh wink:ee65
#@fa:face meh:f11a
#@fa:face meh blank:ee6d
#@fa:face rolling eyes:ee6e
#@fa:face sad cry:ee7b
#@fa:face sad tear:ee7c
#@fa:face smile:f118
#@fa:face smile beam:ee80
#@fa:face smile wink:eda9
#@fa:face surprise:ee89
#@fa:face tired:ee8f
#@fa:facebook:f09a
#@fa:facebook f:f24f
#@fa:facebook messenger:f25f
#@fa:facebook official:f230
#@fa:facebook square:f082
#@fa:fan:efa7
#@fa:fantasy flight games:eefb
#@fa:fast backward:f049
#@fa:fast forward:f050
#@fa:fax:f1ac
#@fa:feather:edf7
#@fa:feather pointed:ee34
#@fa:fedex:ef45
#@fa:fedora:ef46
#@fa:feed:f09e
#@fa:female:f182
#@fa:fighter jet:f0fb
#@fa:figma:ef47
#@fa:file:f15b
#@fa:file archive o:f1c6
#@fa:file arrow down:ee36
#@fa:file arrow up:ee3d
#@fa:file audio:f1c7
#@fa:file audio o:f1c7
#@fa:file code:f1c9
#@fa:file code o:f1c9
#@fa:file contract:ee35
#@fa:file csv:eefc
#@fa:file excel:f1c3
#@fa:file excel o:f1c3
#@fa:file export:ee37
#@fa:file image:f1c5
#@fa:file image o:f1c5
#@fa:file import:ee38
#@fa:file invoice:ee39
#@fa:file invoice dollar:ee3a
#@fa:file lines:f15c
#@fa:file medical:ed80
#@fa:file movie o:f1c8
#@fa:file o:f016
#@fa:file pdf:f1c1
#@fa:file pdf o:f1c1
#@fa:file pen:f05f
#@fa:file photo o:f1c5
#@fa:file picture o:f1c5
#@fa:file powerpoint:f1c4
#@fa:file powerpoint o:f1c4
#@fa:file prescription:ee3b
#@fa:file signature:ee3c
#@fa:file sound o:f1c7
#@fa:file text:f15c
#@fa:file text o:f0f6
#@fa:file video:f1c8
#@fa:file video o:f1c8
#@fa:file waveform:ed81
#@fa:file word:f1c2
#@fa:file word o:f1c2
#@fa:file zip o:f1c6
#@fa:file zipper:f1c6
#@fa:files o:f0c5
#@fa:fill:ee3e
#@fa:fill drip:ee3f
#@fa:film:f008
#@fa:filter:f0b0
#@fa:filter circle dollar:eec8
#@fa:fingerprint:ee40
#@fa:fire:f06d
#@fa:fire extinguisher:f134
#@fa:fire flame curved:ef76
#@fa:fire flame simple:ed78
#@fa:firefox:f269
#@fa:first order:f2b0
#@fa:first order alt:edd4
#@fa:firstdraft:f262
#@fa:fish:ee41
#@fa:flag:f024
#@fa:flag checkered:f11e
#@fa:flag o:f11d
#@fa:flag usa:ef20
#@fa:flash:f0e7
#@fa:flask:f0c3
#@fa:flickr:f16e
#@fa:flipboard:ed68
#@fa:floppy disk:f0c7
#@fa:floppy o:f0c7
#@fa:fly:ed43
#@fa:folder:f07b
#@fa:folder minus:eec6
#@fa:folder o:f114
#@fa:folder open:f07c
#@fa:folder open o:f115
#@fa:folder plus:eec7
#@fa:folder tree:ef81
#@fa:font:f031
#@fa:font awesome:f2b4
#@fa:fonticons:f280
#@fa:fonticons fi:f26f
#@fa:football:ed69
#@fa:fort awesome:f286
#@fa:fort awesome alt:f27f
#@fa:forumbee:f211
#@fa:forward:f04e
#@fa:forward fast:f050
#@fa:forward step:f051
#@fa:foursquare:f180
#@fa:free code camp:f2c5
#@fa:freebsd:f28f
#@fa:frog:edf8
#@fa:frown o:f119
#@fa:fulcrum:edd5
#@fa:futbol:f1e3
#@fa:futbol o:f1e3
#@fa:galactic republic:edd6
#@fa:galactic senate:edd7
#@fa:gamepad:f11b
#@fa:gas pump:edf9
#@fa:gauge:eeb2
#@fa:gauge high:ed2f
#@fa:gauge simple:eeb3
#@fa:gauge simple high:f0e4
#@fa:gavel:f0e3
#@fa:gbp:f154
#@fa:ge:f1d1
#@fa:gear:f013
#@fa:gears:f085
#@fa:gem:f219
#@fa:genderless:f22d
#@fa:get pocket:f265
#@fa:gg:f260
#@fa:gg circle:f261
#@fa:ghost:eefe
#@fa:gift:f06b
#@fa:gifts:ef48
#@fa:git:f1d3
#@fa:git alt:efa0
#@fa:git square:f1d2
#@fa:github:f09b
#@fa:github alt:f113
#@fa:github square:f092
#@fa:gitkraken:f2ac
#@fa:gitlab:f296
#@fa:gitter:ed50
#@fa:gittip:f184
#@fa:glass:f000
#@fa:glasses:edfa
#@fa:glide:f2a5
#@fa:glide g:f2a6
#@fa:globe:f0ac
#@fa:gofore:f2af
#@fa:golf ball tee:ed6a
#@fa:goodreads:f2bf
#@fa:goodreads g:f2cf
#@fa:google:f1a0
#@fa:google drive:f2df
#@fa:google play:f2e1
#@fa:google plus:f0d5
#@fa:google plus circle:f2b3
#@fa:google plus official:f2b3
#@fa:google plus square:f0d4
#@fa:google wallet:f1ee
#@fa:gopuram:eec9
#@fa:graduation cap:f19d
#@fa:gratipay:f184
#@fa:grav:f2d6
#@fa:greater than:edfb
#@fa:greater than equal:edfc
#@fa:grip:ee56
#@fa:grip lines:ef4c
#@fa:grip lines vertical:ef4d
#@fa:grip vertical:ee57
#@fa:gripfire:f2e2
#@fa:group:f0c0
#@fa:grunt:f2e3
#@fa:guitar:ef4e
#@fa:gulp:f2e4
#@fa:h square:f0fd
#@fa:hacker news:f1d4
#@fa:hackerrank:eea5
#@fa:hammer:eeff
#@fa:hamsa:eeca
#@fa:hand:f256
#@fa:hand back fist:f255
#@fa:hand dots:ed73
#@fa:hand fist:eefd
#@fa:hand grab o:f255
#@fa:hand holding:ed9a
#@fa:hand holding dollar:ed9c
#@fa:hand holding droplet:ed9d
#@fa:hand holding heart:ed9b
#@fa:hand lizard:f258
#@fa:hand lizard o:f258
#@fa:hand middle finger:ef83
#@fa:hand o down:f0a7
#@fa:hand o left:f0a5
#@fa:hand o right:f0a4
#@fa:hand o up:f0a6
#@fa:hand paper o:f256
#@fa:hand peace:f25b
#@fa:hand peace o:f25b
#@fa:hand point down:f0a7
#@fa:hand point left:f0a5
#@fa:hand point right:f0a4
#@fa:hand point up:f0a6
#@fa:hand pointer:f25a
#@fa:hand pointer o:f25a
#@fa:hand rock o:f255
#@fa:hand scissors:f257
#@fa:hand scissors o:f257
#@fa:hand spock:f259
#@fa:hand spock o:f259
#@fa:hand stop o:f256
#@fa:hands:f2a7
#@fa:hands asl interpreting:f2a3
#@fa:hands holding:ed9e
#@fa:hands praying:eedb
#@fa:handshake:f2b5
#@fa:handshake angle:ed9f
#@fa:handshake o:f2b5
#@fa:handshake simple:eda0
#@fa:hanukiah:ef00
#@fa:hard drive:f0a0
#@fa:hard of hearing:f2a4
#@fa:hashtag:f292
#@fa:hat cowboy:efb7
#@fa:hat cowboy side:efb8
#@fa:hat wizard:ef01
#@fa:hdd o:f0a0
#@fa:header:f1dc
#@fa:heading:f1dc
#@fa:headphones:f025
#@fa:headphones simple:ee58
#@fa:headset:ee59
#@fa:heard o:f08a
#@fa:heart:f004
#@fa:heart crack:ef4f
#@fa:heart o:f08a
#@fa:heart pulse:f21e
#@fa:heartbeat:f21e
#@fa:helicopter:edfd
#@fa:helmet safety:ef84
#@fa:highlighter:ee5a
#@fa:hippo:ef03
#@fa:hips:ed6b
#@fa:hire a helper:f2e6
#@fa:history:f1da
#@fa:hockey puck:ed6c
#@fa:holly berry:ef50
#@fa:home:f015
#@fa:hooli:ed51
#@fa:hornbill:ee5b
#@fa:horse:ef04
#@fa:horse head:ef51
#@fa:hospital:f0f8
#@fa:hospital o:f0f8
#@fa:hospital user:ef86
#@fa:hot tub person:ee5c
#@fa:hotdog:ef87
#@fa:hotel:f236
#@fa:hotel building:ee5d
#@fa:hotjar:f2e7
#@fa:hourglass:f254
#@fa:hourglass 1:f251
#@fa:hourglass 2:f252
#@fa:hourglass 3:f253
#@fa:hourglass end:f253
#@fa:hourglass half:f252
#@fa:hourglass o:f250
#@fa:hourglass start:f251
#@fa:house:f015
#@fa:house chimney:ef85
#@fa:house chimney crack:ef05
#@fa:house chimney medical:ef7b
#@fa:houzz:f27c
#@fa:hryvnia sign:ef06
#@fa:html5:f13b
#@fa:hubspot:f2e8
#@fa:hurricane:ef21
#@fa:i cursor:f246
#@fa:ice cream:ef88
#@fa:icicles:ef52
#@fa:icons:efa8
#@fa:id badge:f2c1
#@fa:id card:f2c2
#@fa:id card clip:ed84
#@fa:id card o:f2c3
#@fa:igloo:ef53
#@fa:ils:f20b
#@fa:image:f03e
#@fa:image portrait:ed19
#@fa:images:f00f
#@fa:imdb:f2d8
#@fa:inbox:f01c
#@fa:indent:f03c
#@fa:industry:f275
#@fa:infinity:edfe
#@fa:info:f129
#@fa:info circle:f05a
#@fa:inr:f156
#@fa:instagram:f16d
#@fa:institution:f19c
#@fa:intercom:ef54
#@fa:internet explorer:f26b
#@fa:intersex:f224
#@fa:invision:ef55
#@fa:ioxhost:f208
#@fa:italic:f033
#@fa:itch io:ef99
#@fa:itunes:f2e9
#@fa:itunes note:f2eb
#@fa:java:edaf
#@fa:jedi:eecc
#@fa:jedi order:edd8
#@fa:jenkins:f2ec
#@fa:jet fighter:f0fb
#@fa:jira:ef56
#@fa:joget:f2ed
#@fa:joint:ee5e
#@fa:joomla:f1aa
#@fa:jpy:f157
#@fa:js:f2ee
#@fa:jsfiddle:f1cc
#@fa:kaaba:eece
#@fa:kaggle:eea6
#@fa:key:f084
#@fa:keybase:edbf
#@fa:keyboard:f11c
#@fa:keyboard o:f11c
#@fa:keycdn:f2f0
#@fa:khanda:eecf
#@fa:kickstarter:f2f3
#@fa:kickstarter k:f2f4
#@fa:kit medical:ed82
#@fa:kiwi bird:edff
#@fa:korvue:ed59
#@fa:krw:f159
#@fa:landmark:eed0
#@fa:landmark dome:ef22
#@fa:language:f1ab
#@fa:laptop:f109
#@fa:laptop code:eea7
#@fa:laptop medical:ef89
#@fa:laravel:f2f7
#@fa:lastfm:f202
#@fa:lastfm square:f203
#@fa:layer group:eea8
#@fa:leaf:f06c
#@fa:leanpub:f212
#@fa:left long:f04f
#@fa:left right:f08f
#@fa:legal:f0e3
#@fa:lemon:f094
#@fa:lemon o:f094
#@fa:less:ed48
#@fa:less than:efc3
#@fa:less than equal:efc4
#@fa:level down:f149
#@fa:level up:f148
#@fa:life bouy:f1cd
#@fa:life buoy:f1cd
#@fa:life ring:f1cd
#@fa:life saver:f1cd
#@fa:lightbulb:f0eb
#@fa:lightbulb o:f0eb
#@fa:line:f2fb
#@fa:line chart:f201
#@fa:link:f0c1
#@fa:link slash:f127
#@fa:linkedin:f0e1
#@fa:linkedin in:f0e1
#@fa:linkedin square:f08c
#@fa:linode:f2b8
#@fa:linux:f17c
#@fa:lira sign:f195
#@fa:list:f03a
#@fa:list alt:f022
#@fa:list check:f0ae
#@fa:list ol:f0cb
#@fa:list ul:f0ca
#@fa:location arrow:f124
#@fa:location crosshairs:eea9
#@fa:location dot:ed00
#@fa:location pin:f041
#@fa:lock:f023
#@fa:lock open:f2fc
#@fa:long arrow down:f175
#@fa:long arrow left:f177
#@fa:long arrow right:f178
#@fa:long arrow up:f176
#@fa:low vision:f2a8
#@fa:lungs:eeaa
#@fa:lyft:f2fd
#@fa:magento:f2ff
#@fa:magic:f0d0
#@fa:magnet:f076
#@fa:magnifying glass:f002
#@fa:magnifying glass dollar:eedd
#@fa:magnifying glass location:eede
#@fa:magnifying glass minus:f010
#@fa:magnifying glass plus:f00e
#@fa:mail forward:f064
#@fa:mail reply:f112
#@fa:mail reply all:f122
#@fa:mailchimp:ee67
#@fa:male:f183
#@fa:mandalorian:edd9
#@fa:map:f279
#@fa:map location:ee68
#@fa:map location dot:ee69
#@fa:map marker:f041
#@fa:map o:f278
#@fa:map pin:f276
#@fa:map signs:f277
#@fa:markdown:eeab
#@fa:marker:ee6a
#@fa:mars:f222
#@fa:mars double:f227
#@fa:mars stroke:f229
#@fa:mars stroke h:f22b
#@fa:mars stroke right:f22b
#@fa:mars stroke up:f22a
#@fa:mars stroke v:f22a
#@fa:martini glass:ee44
#@fa:martini glass citrus:ee2a
#@fa:martini glass empty:f000
#@fa:mask:ef07
#@fa:masks theater:eeb6
#@fa:mastodon:edc0
#@fa:maxcdn:f136
#@fa:maximize:f06f
#@fa:mdb:efb9
#@fa:meanpath:f20c
#@fa:medal:ee6b
#@fa:medapps:ed01
#@fa:medium:f23a
#@fa:medkit:f0fa
#@fa:medrt:ed02
#@fa:meetup:f2e0
#@fa:megaport:ee6c
#@fa:meh o:f11a
#@fa:memory:efc5
#@fa:mendeley:ef57
#@fa:menorah:eed2
#@fa:mercury:f223
#@fa:message:f27a
#@fa:meteor:ef23
#@fa:microchip:f2db
#@fa:microphone:f130
#@fa:microphone lines:ed03
#@fa:microphone lines slash:efc6
#@fa:microphone slash:f131
#@fa:microscope:eeac
#@fa:microsoft:ed04
#@fa:minimize:ef3e
#@fa:minus:f068
#@fa:minus circle:f056
#@fa:minus square:f146
#@fa:minus square o:f147
#@fa:mitten:ef58
#@fa:mix:ed05
#@fa:mixcloud:f289
#@fa:mizuni:ed06
#@fa:mobile:ed08
#@fa:mobile button:ed07
#@fa:mobile phone:f10b
#@fa:mobile screen:ed09
#@fa:mobile screen button:f10b
#@fa:modx:f285
#@fa:monero:ed0a
#@fa:money:f0d6
#@fa:money bill:f0d6
#@fa:money bill 1:ed0b
#@fa:money bill 1 wave:efc8
#@fa:money bill wave:efc7
#@fa:money check:efc9
#@fa:money check dollar:efca
#@fa:monument:ee6f
#@fa:moon:f186
#@fa:moon o:f186
#@fa:mortar board:f19d
#@fa:mortar pestle:ee70
#@fa:mosque:eed3
#@fa:motorcycle:f21c
#@fa:mountain:ef08
#@fa:mouse pointer:f245
#@fa:mug hot:ef59
#@fa:mug saucer:f0f4
#@fa:music:f001
#@fa:napster:ed0c
#@fa:navicon:f0c9
#@fa:neos:eead
#@fa:network wired:ef09
#@fa:neuter:f22c
#@fa:newspaper:f1ea
#@fa:newspaper o:f1ea
#@fa:nimblr:ee71
#@fa:node:ed44
#@fa:node js:ed0d
#@fa:not equal:efcb
#@fa:note sticky:f249
#@fa:notes medical:ed85
#@fa:npm:ed0e
#@fa:ns8:ed0f
#@fa:nutritionix:ed10
#@fa:object group:f247
#@fa:object ungroup:f248
#@fa:odnoklassniki:f263
#@fa:odnoklassniki square:f264
#@fa:oil can:eeae
#@fa:ok sign:f058
#@fa:old republic:edda
#@fa:om:eed4
#@fa:opencart:f23d
#@fa:openid:f19b
#@fa:opera:f26a
#@fa:optin monster:f23c
#@fa:orcid:efbb
#@fa:osi:ed45
#@fa:otter:ef0a
#@fa:outdent:f03b
#@fa:page4:ed11
#@fa:pagelines:f18c
#@fa:pager:ef8a
#@fa:paint brush:f1fc
#@fa:paint roller:ee72
#@fa:paintbrush:f1fc
#@fa:palette:efcc
#@fa:palfed:ed12
#@fa:pallet:ed86
#@fa:paper plane:f1d8
#@fa:paper plane o:f1d9
#@fa:paperclip:f0c6
#@fa:parachute box:eda1
#@fa:paragraph:f1dd
#@fa:passport:ee73
#@fa:paste:f0ea
#@fa:patreon:ed13
#@fa:pause:f04c
#@fa:pause circle:f28b
#@fa:pause circle o:f28c
#@fa:paw:f1b0
#@fa:paypal:f1ed
#@fa:peace:eed6
#@fa:pen:f01f
#@fa:pen clip:f020
#@fa:pen fancy:ee74
#@fa:pen nib:ee75
#@fa:pen ruler:ee76
#@fa:pen to square:f044
#@fa:pencil:f040
#@fa:pencil square:f14b
#@fa:pencil square o:f044
#@fa:people carry box:eda2
#@fa:pepper hot:ef8b
#@fa:percent:f295
#@fa:periscope:ed14
#@fa:person:f183
#@fa:person biking:efa2
#@fa:person booth:ef24
#@fa:person digging:efa6
#@fa:person dots from line:ed7c
#@fa:person dress:f182
#@fa:person hiking:ef02
#@fa:person praying:eeda
#@fa:person running:ef0c
#@fa:person skating:ef63
#@fa:person skiing:ef65
#@fa:person skiing nordic:ef66
#@fa:person snowboarding:ef69
#@fa:person swimming:ee8b
#@fa:person walking:ee1d
#@fa:person walking with cane:f29d
#@fa:phabricator:ed15
#@fa:phoenix framework:ed16
#@fa:phoenix squadron:eddb
#@fa:phone:f095
#@fa:phone flip:efa9
#@fa:phone slash:ed17
#@fa:phone square:f098
#@fa:phone volume:f2a0
#@fa:photo:f03e
#@fa:photo film:efab
#@fa:php:ed6d
#@fa:picture o:f03e
#@fa:pie chart:f200
#@fa:pied piper:f2ae
#@fa:pied piper alt:f1a8
#@fa:pied piper hat:edb0
#@fa:pied piper pp:f1a7
#@fa:piggy bank:eda3
#@fa:pills:ed87
#@fa:pinterest:f0d2
#@fa:pinterest p:f231
#@fa:pinterest square:f0d3
#@fa:pizza slice:ef8c
#@fa:place of worship:eed7
#@fa:plane:f072
#@fa:plane arrival:ee77
#@fa:plane departure:ee78
#@fa:play:f04b
#@fa:play circle:f144
#@fa:play circle o:f01d
#@fa:playstation:ed18
#@fa:plug:f1e6
#@fa:plus:f067
#@fa:plus circle:f055
#@fa:plus square:f0fe
#@fa:plus square o:f196
#@fa:podcast:f2ce
#@fa:poo:f2fe
#@fa:poo storm:ef25
#@fa:poop:eeaf
#@fa:power off:f011
#@fa:prescription:ee79
#@fa:prescription bottle:ed88
#@fa:prescription bottle medical:ed89
#@fa:print:f02f
#@fa:product hunt:f288
#@fa:pushed:ed1a
#@fa:puzzle piece:f12e
#@fa:python:ed1b
#@fa:qq:f1d6
#@fa:qrcode:f029
#@fa:question:f128
#@fa:question circle:f059
#@fa:question circle o:f29c
#@fa:quinscape:ed6f
#@fa:quora:f2c4
#@fa:quote left:f10d
#@fa:quote right:f10e
#@fa:r project:edc1
#@fa:ra:f1d0
#@fa:radiation:ef5a
#@fa:radio:efbc
#@fa:rainbow:ef26
#@fa:random:f074
#@fa:raspberry pi:ef5c
#@fa:ravelry:f2d9
#@fa:react:ed46
#@fa:reacteurope:ef27
#@fa:readme:eda4
#@fa:rebel:f1d0
#@fa:receipt:ee0c
#@fa:record vinyl:efbd
#@fa:rectangle ad:eebb
#@fa:rectangle list:f022
#@fa:rectangle xmark:f2d4
#@fa:recycle:f1b8
#@fa:red river:ed1c
#@fa:reddit:f1a1
#@fa:reddit alien:f281
#@fa:reddit square:f1a2
#@fa:redhat:ef5d
#@fa:refresh:f021
#@fa:registered:f25d
#@fa:remove:f00d
#@fa:remove sign:f057
#@fa:renren:f18b
#@fa:reorder:f0c9
#@fa:repeat:f01e
#@fa:repeat alt:f0b6
#@fa:reply:f112
#@fa:reply all:f122
#@fa:replyd:ed1e
#@fa:republican:ef28
#@fa:researchgate:edc2
#@fa:resistance:f1d0
#@fa:resolving:ed1f
#@fa:restroom:ef5e
#@fa:retweet:f079
#@fa:rev:ee7a
#@fa:ribbon:eda5
#@fa:right from bracket:f2f5
#@fa:right left:f0b5
#@fa:right to bracket:f2f6
#@fa:ring:ef0b
#@fa:rmb:f157
#@fa:road:f018
#@fa:robot:ee0d
#@fa:rocket:f135
#@fa:rocketchat:ed20
#@fa:rockrms:ed21
#@fa:rotate:f2f1
#@fa:rotate left:f2ea
#@fa:rotate right:f2f9
#@fa:rouble:f158
#@fa:route:eda6
#@fa:rss:f09e
#@fa:rss square:f143
#@fa:rub:f158
#@fa:ruble:f158
#@fa:ruble sign:f158
#@fa:ruler:ee0e
#@fa:ruler combined:ee0f
#@fa:ruler horizontal:ee10
#@fa:ruler vertical:ee11
#@fa:rupee:f156
#@fa:rupee sign:f156
#@fa:s15:f2cd
#@fa:sack dollar:ef8d
#@fa:safari:f267
#@fa:salesforce:ef9a
#@fa:sass:ed49
#@fa:satellite:ef5f
#@fa:satellite dish:ef60
#@fa:save:f0c7
#@fa:scale balanced:f24e
#@fa:scale unbalanced:eddf
#@fa:scale unbalanced flip:ede0
#@fa:schlix:ed22
#@fa:school:ee12
#@fa:scissors:f0c4
#@fa:screwdriver:ee13
#@fa:screwdriver wrench:ef70
#@fa:scribd:f28a
#@fa:scroll:ef0d
#@fa:scroll torah:eee5
#@fa:sd card:ef61
#@fa:search:f002
#@fa:search minus:f010
#@fa:search plus:f00e
#@fa:searchengin:ed23
#@fa:seedling:eda7
#@fa:sellcast:f2da
#@fa:sellsy:f213
#@fa:send:f1d8
#@fa:send o:f1d9
#@fa:server:f233
#@fa:servicestack:ed24
#@fa:shapes:eeb0
#@fa:share:f064
#@fa:share alt:f1e0
#@fa:share alt square:f1e1
#@fa:share from square:f14d
#@fa:share nodes:f1e0
#@fa:share square:f14d
#@fa:share square o:f045
#@fa:shekel:f20b
#@fa:shekel sign:f20b
#@fa:sheqel:f20b
#@fa:shield:f132
#@fa:shield halved:ed25
#@fa:ship:f21a
#@fa:shirt:ee1c
#@fa:shirtsinbulk:f214
#@fa:shoe prints:ee14
#@fa:shop:ee18
#@fa:shopping bag:f290
#@fa:shopping basket:f291
#@fa:shopping cart:f07a
#@fa:shopware:ee7d
#@fa:shower:f2cc
#@fa:shuffle:f074
#@fa:shuttle space:f197
#@fa:sign hanging:eda8
#@fa:sign in:f090
#@fa:sign language:f2a7
#@fa:sign out:f08b
#@fa:signal:f012
#@fa:signature:ee7f
#@fa:signing:f2a7
#@fa:signs post:f277
#@fa:sim card:ef62
#@fa:simplybuilt:f215
#@fa:sistrix:ed26
#@fa:sitemap:f0e8
#@fa:sith:eddc
#@fa:sketch:ef64
#@fa:skull:ee15
#@fa:skull crossbones:ef0e
#@fa:skyatlas:f216
#@fa:skype:f17e
#@fa:slack:f198
#@fa:slash:ef0f
#@fa:sleigh:ef67
#@fa:sliders:f1de
#@fa:slideshare:f1e7
#@fa:smile o:f118
#@fa:smog:ef29
#@fa:smoking:ed8c
#@fa:snapchat:f2ab
#@fa:snapchat ghost:f2ac
#@fa:snapchat square:f2ad
#@fa:snowflake:f2dc
#@fa:snowflake o:f2dc
#@fa:snowman:ef6a
#@fa:snowplow:ef6b
#@fa:soccer ball o:f1e3
#@fa:socks:eedf
#@fa:solar panel:ee81
#@fa:sort:f0dc
#@fa:sort alpha asc:f15d
#@fa:sort alpha desc:f15e
#@fa:sort amount asc:f160
#@fa:sort amount desc:f161
#@fa:sort asc:f0de
#@fa:sort desc:f0dd
#@fa:sort down:f0dd
#@fa:sort numeric asc:f162
#@fa:sort numeric desc:f163
#@fa:sort up:f0de
#@fa:soundcloud:f1be
#@fa:sourcetree:ef6c
#@fa:spa:ee82
#@fa:space shuttle:f197
#@fa:spaghetti monster flying:eed5
#@fa:speakap:ed27
#@fa:speaker deck:ef9b
#@fa:spell check:efb3
#@fa:spider:ef10
#@fa:spinner:f110
#@fa:splotch:ee83
#@fa:spoon:f1b1
#@fa:spotify:f1bc
#@fa:spray can:ee84
#@fa:spray can sparkles:ee97
#@fa:square:f0c8
#@fa:square arrow up right:f14c
#@fa:square behance:f1b5
#@fa:square caret down:f150
#@fa:square caret left:f191
#@fa:square caret right:f152
#@fa:square caret up:f151
#@fa:square check:f14a
#@fa:square dribbble:f22e
#@fa:square envelope:f199
#@fa:square facebook:f082
#@fa:square font awesome stroke:f0af
#@fa:square full:ed70
#@fa:square git:f1d2
#@fa:square github:f092
#@fa:square google plus:f0d4
#@fa:square h:f0fd
#@fa:square hacker news:f2e5
#@fa:square js:f2ef
#@fa:square lastfm:f203
#@fa:square minus:f146
#@fa:square o:f096
#@fa:square odnoklassniki:f264
#@fa:square parking:efcd
#@fa:square pen:f14b
#@fa:square phone:f098
#@fa:square phone flip:efaa
#@fa:square pinterest:f0d3
#@fa:square plus:f0fe
#@fa:square poll horizontal:eed9
#@fa:square poll vertical:eed8
#@fa:square reddit:f1a2
#@fa:square root variable:eee0
#@fa:square rss:f143
#@fa:square share nodes:f1e1
#@fa:square snapchat:f2ad
#@fa:square steam:f1b7
#@fa:square tumblr:f174
#@fa:square twitter:f081
#@fa:square up right:f0b4
#@fa:square viadeo:f2aa
#@fa:square vimeo:f194
#@fa:square whatsapp:ed3b
#@fa:square xing:f169
#@fa:square xmark:f2d3
#@fa:square youtube:f166
#@fa:squarespace:ee85
#@fa:stack exchange:f18d
#@fa:stack overflow:f16c
#@fa:stackpath:efa1
#@fa:stamp:ee86
#@fa:star:f005
#@fa:star and crescent:eee1
#@fa:star half:f089
#@fa:star half empty:f123
#@fa:star half full:f123
#@fa:star half o:f123
#@fa:star half stroke:ee87
#@fa:star o:f006
#@fa:star of david:eee2
#@fa:star of life:eeb1
#@fa:staylinked:ed28
#@fa:steam:f1b6
#@fa:steam square:f1b7
#@fa:steam symbol:ed29
#@fa:step backward:f048
#@fa:step forward:f051
#@fa:sterling sign:f154
#@fa:stethoscope:f0f1
#@fa:sticker mule:ed2a
#@fa:sticky note:f249
#@fa:sticky note o:f24a
#@fa:stop:f04d
#@fa:stop circle:f28d
#@fa:stop circle o:f28e
#@fa:stopwatch:f2f2
#@fa:store:ee17
#@fa:strava:ed52
#@fa:street view:f21d
#@fa:strikethrough:f0cc
#@fa:stripe:ed53
#@fa:stripe s:ed54
#@fa:stroopwafel:ee1a
#@fa:studiovinari:ed2b
#@fa:stumbleupon:f1a4
#@fa:stumbleupon circle:f1a3
#@fa:subscript:f12c
#@fa:subway:f239
#@fa:suitcase:f0f2
#@fa:suitcase medical:f0fa
#@fa:suitcase rolling:ee88
#@fa:sun:f185
#@fa:sun o:f185
#@fa:superpowers:f2dd
#@fa:superscript:f12b
#@fa:supple:ed2c
#@fa:support:f1cd
#@fa:suse:ef6d
#@fa:swatchbook:ee8a
#@fa:swift:efbe
#@fa:symfony:ef9c
#@fa:synagogue:eee3
#@fa:syringe:ed8d
#@fa:table:f0ce
#@fa:table cells:f00a
#@fa:table cells large:f009
#@fa:table columns:f0db
#@fa:table list:f00b
#@fa:table tennis paddle ball:ed71
#@fa:tablet:ed2e
#@fa:tablet button:ed2d
#@fa:tablet screen button:f10a
#@fa:tablets:ed8e
#@fa:tachograph digital:ee2f
#@fa:tachometer:f0e4
#@fa:tag:f02b
#@fa:tags:f02c
#@fa:tape:edaa
#@fa:tasks:f0ae
#@fa:taxi:f1ba
#@fa:teamspeak:edc3
#@fa:teeth:eeb4
#@fa:teeth open:eeb5
#@fa:telegram:f2c6
#@fa:television:f26c
#@fa:temperature empty:f2cb
#@fa:temperature full:f2c7
#@fa:temperature half:f2c9
#@fa:temperature high:ef2a
#@fa:temperature low:ef2b
#@fa:temperature quarter:f2ca
#@fa:temperature three quarters:f2c8
#@fa:tencent weibo:f1d5
#@fa:tenge sign:ef6e
#@fa:terminal:f120
#@fa:text height:f034
#@fa:text slash:efac
#@fa:text width:f035
#@fa:th:f00a
#@fa:th large:f009
#@fa:th list:f00b
#@fa:the red yeti:eee4
#@fa:themeco:ee8d
#@fa:themeisle:f2b2
#@fa:thermometer:f2c7
#@fa:thermometer 0:f2cb
#@fa:thermometer 1:f2ca
#@fa:thermometer 2:f2c9
#@fa:thermometer 3:f2c8
#@fa:thermometer 4:f2c7
#@fa:thermometer alt:ed8f
#@fa:thermometer empty:f2cb
#@fa:thermometer full:f2c7
#@fa:thermometer half:f2c9
#@fa:thermometer quarter:f2ca
#@fa:thermometer three quarters:f2c8
#@fa:think peaks:ef19
#@fa:thumb tack:f08d
#@fa:thumbs down:f165
#@fa:thumbs o down:f088
#@fa:thumbs o up:f087
#@fa:thumbs up:f164
#@fa:thumbtack:f08d
#@fa:ticket:f145
#@fa:ticket simple:ed30
#@fa:times:f00d
#@fa:times circle:f057
#@fa:times circle o:f05c
#@fa:times rectangle:f2d3
#@fa:times rectangle o:f2d4
#@fa:tint:f043
#@fa:toggle down:f150
#@fa:toggle left:f191
#@fa:toggle off:f204
#@fa:toggle on:f205
#@fa:toggle right:f152
#@fa:toggle up:f151
#@fa:toilet:ef6f
#@fa:toilet paper:ef11
#@fa:toolbox:ee1b
#@fa:tooth:ee90
#@fa:torii gate:eee6
#@fa:tornado:ef2d
#@fa:tower broadcast:ede3
#@fa:tractor:ef12
#@fa:trade federation:eddd
#@fa:trademark:f25c
#@fa:traffic light:eeb7
#@fa:train:f238
#@fa:train subway:f239
#@fa:transgender:f224
#@fa:transgender alt:f225
#@fa:trash:f1f8
#@fa:trash arrow up:ef90
#@fa:trash can:f014
#@fa:trash can arrow up:ef91
#@fa:trash o:f014
#@fa:tree:f1bb
#@fa:trello:f181
#@fa:triangle exclamation:f071
#@fa:tripadvisor:f262
#@fa:trophy:f091
#@fa:truck:f0d1
#@fa:truck fast:ed8b
#@fa:truck medical:f0f9
#@fa:truck monster:eeb8
#@fa:truck moving:edac
#@fa:truck pickup:eeb9
#@fa:truck ramp box:edab
#@fa:try:f195
#@fa:tty:f1e4
#@fa:tumblr:f173
#@fa:tumblr square:f174
#@fa:turkish lira:f195
#@fa:turn down:f2f8
#@fa:turn up:f2fa
#@fa:tv:f26c
#@fa:twitch:f1e8
#@fa:twitter:f099
#@fa:twitter square:f081
#@fa:typo3:ed55
#@fa:uber:ed31
#@fa:ubuntu:ef72
#@fa:uikit:ed32
#@fa:umbraco:efbf
#@fa:umbrella:f0e9
#@fa:umbrella beach:ee91
#@fa:underline:f0cd
#@fa:undo:f0e2
#@fa:uniregistry:ed33
#@fa:universal access:f29a
#@fa:university:f19c
#@fa:unlink:f127
#@fa:unlock:f09c
#@fa:unlock alt:f13e
#@fa:unlock keyhole:f13e
#@fa:unsorted:f0dc
#@fa:untappd:ed34
#@fa:up down:f09f
#@fa:up down left right:f0b2
#@fa:up right and down left from center:ed4f
#@fa:up right from square:f0b3
#@fa:upload:f093
#@fa:ups:ef73
#@fa:usb:f287
#@fa:usd:f155
#@fa:user:f007
#@fa:user astronaut:edc5
#@fa:user check:edc6
#@fa:user circle:f2bd
#@fa:user circle o:f2be
#@fa:user clock:edc7
#@fa:user doctor:f0f0
#@fa:user gear:edc8
#@fa:user graduate:edcb
#@fa:user group:edca
#@fa:user injured:ef13
#@fa:user large:ed35
#@fa:user large slash:edc4
#@fa:user lock:edcc
#@fa:user md:f0f0
#@fa:user minus:edcd
#@fa:user ninja:edce
#@fa:user nurse:ef92
#@fa:user o:f2c0
#@fa:user pen:edc9
#@fa:user plus:f234
#@fa:user secret:f21b
#@fa:user shield:edcf
#@fa:user slash:edd0
#@fa:user tag:edd1
#@fa:user tie:edd2
#@fa:user times:f235
#@fa:user xmark:f235
#@fa:users:f0c0
#@fa:users gear:edd3
#@fa:usps:ef74
#@fa:ussunnah:ed36
#@fa:utensils:f0f5
#@fa:vaadin:ed37
#@fa:van shuttle:ee7e
#@fa:vcard:f2bb
#@fa:vcard o:f2bc
#@fa:vector square:ee92
#@fa:venus:f221
#@fa:venus double:f226
#@fa:venus mars:f228
#@fa:viacoin:f237
#@fa:viadeo:f2a9
#@fa:viadeo square:f2aa
#@fa:vial:ed90
#@fa:vials:ed91
#@fa:viber:ed38
#@fa:video:f03d
#@fa:video camera:f03d
#@fa:video slash:edad
#@fa:vihara:eee7
#@fa:vimeo:ed39
#@fa:vimeo square:f194
#@fa:vimeo v:f27d
#@fa:vine:f1ca
#@fa:vk:f189
#@fa:vnv:ed3a
#@fa:voicemail:efb4
#@fa:volcano:ef2e
#@fa:volleyball:ed72
#@fa:volume:efcf
#@fa:volume control phone:f2a0
#@fa:volume down:f027
#@fa:volume high:f028
#@fa:volume low:f027
#@fa:volume off:f026
#@fa:volume up:f028
#@fa:volume xmark:eee8
#@fa:vr cardboard:ef14
#@fa:vuejs:ed4a
#@fa:walkie talkie:efc0
#@fa:wallet:ee1e
#@fa:wand magic:f0d0
#@fa:wand sparkles:ef15
#@fa:warehouse:ed92
#@fa:warning:f071
#@fa:water:ef30
#@fa:water ladder:ee8c
#@fa:wave square:ef9d
#@fa:waze:ef9e
#@fa:wechat:f1d7
#@fa:weebly:ee93
#@fa:weibo:f18a
#@fa:weight hanging:ee94
#@fa:weight scale:ed93
#@fa:weixin:f1d7
#@fa:whatsapp:f232
#@fa:wheelchair:f193
#@fa:wheelchair alt:f29b
#@fa:whiskey glass:ef4a
#@fa:whmcs:ed3c
#@fa:wifi:f1eb
#@fa:wikipedia w:f266
#@fa:wind:ef16
#@fa:window close:f2d3
#@fa:window close o:f2d4
#@fa:window maximize:f2d0
#@fa:window minimize:f2d1
#@fa:window restore:f2d2
#@fa:windows:f17a
#@fa:wine bottle:ef17
#@fa:wine glass:edae
#@fa:wine glass empty:ee95
#@fa:wix:ee96
#@fa:wizards of the coast:ef18
#@fa:wolf pack battalion:edde
#@fa:won:f159
#@fa:won sign:f159
#@fa:wordpress:f19a
#@fa:wordpress simple:ed3d
#@fa:wpbeginner:f297
#@fa:wpexplorer:f2de
#@fa:wpforms:f298
#@fa:wpressr:ed1d
#@fa:wrench:f0ad
#@fa:x ray:ed94
#@fa:xbox:ed3e
#@fa:xing:f168
#@fa:xing square:f169
#@fa:xmark:f00d
#@fa:y combinator:f23b
#@fa:y combinator square:f1d4
#@fa:yahoo:f19e
#@fa:yammer:ef9f
#@fa:yandex:ed3f
#@fa:yandex international:ed40
#@fa:yarn:ef75
#@fa:yc:f23b
#@fa:yc square:f1d4
#@fa:yelp:f1e9
#@fa:yen:f157
#@fa:yen sign:f157
#@fa:yin yang:eee9
#@fa:yoast:f2b1
#@fa:youtube:f16a
#@fa:youtube play:f16a
#@fa:youtube square:f166
#@fa:zhihu:eeba
#@fae:apple fruit:e29e
#@fae:atom:e27f
#@fae:bacteria:e280
#@fae:banana:e281
#@fae:bath:e282
#@fae:bed:e283
#@fae:benzene:e284
#@fae:bigger:e285
#@fae:biohazard:e286
#@fae:blogger circle:e287
#@fae:blogger square:e288
#@fae:bones:e289
#@fae:book open:e28a
#@fae:book open o:e28b
#@fae:brain:e28c
#@fae:bread:e28d
#@fae:butterfly:e28e
#@fae:carot:e28f
#@fae:cc by:e290
#@fae:cc cc:e291
#@fae:cc nc:e292
#@fae:cc nc eu:e293
#@fae:cc nc jp:e294
#@fae:cc nd:e295
#@fae:cc remix:e296
#@fae:cc sa:e297
#@fae:cc share:e298
#@fae:cc zero:e299
#@fae:checklist o:e29a
#@fae:cheese:e264
#@fae:cherry:e29b
#@fae:chess bishop:e29c
#@fae:chess horse:e25f
#@fae:chess king:e260
#@fae:chess pawn:e261
#@fae:chess queen:e262
#@fae:chess tower:e263
#@fae:chicken thigh:e29f
#@fae:chilli:e265
#@fae:chip:e266
#@fae:cicling:e267
#@fae:cloud:e268
#@fae:cockroach:e269
#@fae:coffe beans:e26a
#@fae:coins:e26b
#@fae:comb:e26c
#@fae:comet:e26d
#@fae:crown:e26e
#@fae:cup coffe:e26f
#@fae:dice:e270
#@fae:disco:e271
#@fae:dna:e272
#@fae:donut:e273
#@fae:dress:e274
#@fae:drop:e275
#@fae:ello:e276
#@fae:envelope open:e277
#@fae:envelope open o:e278
#@fae:equal:e279
#@fae:equal bigger:e27a
#@fae:feedly:e27b
#@fae:file export:e27c
#@fae:file import:e27d
#@fae:fingerprint:e23f
#@fae:floppy:e240
#@fae:footprint:e241
#@fae:freecodecamp:e242
#@fae:galaxy:e243
#@fae:galery:e244
#@fae:gift card:e2a0
#@fae:glass:e245
#@fae:google drive:e246
#@fae:google play:e247
#@fae:gps:e248
#@fae:grav:e249
#@fae:guitar:e24a
#@fae:gut:e24b
#@fae:halter:e24c
#@fae:hamburger:e24d
#@fae:hat:e24e
#@fae:hexagon:e24f
#@fae:high heel:e250
#@fae:hotdog:e251
#@fae:ice cream:e252
#@fae:id card:e253
#@fae:imdb:e254
#@fae:infinity:e255
#@fae:injection:e2a1
#@fae:isle:e2a2
#@fae:java:e256
#@fae:layers:e257
#@fae:lips:e258
#@fae:lipstick:e259
#@fae:liver:e25a
#@fae:lollipop:e2a3
#@fae:loyalty card:e2a4
#@fae:lung:e25b
#@fae:makeup brushes:e25c
#@fae:maximize:e25d
#@fae:meat:e2a5
#@fae:medicine:e221
#@fae:microscope:e222
#@fae:milk bottle:e223
#@fae:minimize:e224
#@fae:molecule:e225
#@fae:moon cloud:e226
#@fae:mountains:e2a6
#@fae:mushroom:e227
#@fae:mustache:e228
#@fae:mysql:e229
#@fae:nintendo:e22a
#@fae:orange:e2a7
#@fae:palette color:e22b
#@fae:peach:e2a8
#@fae:pear:e2a9
#@fae:pi:e22c
#@fae:pizza:e22d
#@fae:planet:e22e
#@fae:plant:e22f
#@fae:playstation:e230
#@fae:poison:e231
#@fae:popcorn:e232
#@fae:popsicle:e233
#@fae:pulse:e234
#@fae:python:e235
#@fae:quora circle:e236
#@fae:quora square:e237
#@fae:radioactive:e238
#@fae:raining:e239
#@fae:real heart:e23a
#@fae:refrigerator:e23b
#@fae:restore:e23c
#@fae:ring:e23d
#@fae:ruby:e23e
#@fae:ruby o:e21e
#@fae:ruler:e21f
#@fae:shirt:e218
#@fae:slash:e216
#@fae:smaller:e200
#@fae:snowing:e201
#@fae:soda:e202
#@fae:sofa:e203
#@fae:soup:e204
#@fae:spermatozoon:e205
#@fae:spin double:e206
#@fae:stomach:e207
#@fae:storm:e208
#@fae:sun cloud:e21d
#@fae:sushi:e21a
#@fae:tacos:e219
#@fae:telegram:e217
#@fae:telegram circle:e215
#@fae:telescope:e209
#@fae:thermometer:e20a
#@fae:thermometer high:e20b
#@fae:thermometer low:e20c
#@fae:thin close:e20d
#@fae:toilet:e20e
#@fae:tools:e20f
#@fae:tooth:e210
#@fae:tree:e21c
#@fae:triangle ruler:e21b
#@fae:umbrella:e220
#@fae:uterus:e211
#@fae:virus:e214
#@fae:w3c:e212
#@fae:walking:e213
#@fae:wallet:e25e
#@fae:wind:e27e
#@fae:xbox:e29d
#@ie:power:23fb
#@ie:power off:2b58
#@ie:power on:23fd
#@ie:sleep mode:23fe
#@ie:toggle power:23fc
#@in:dotted guide:e621
#@in:line:e621
#@li:almalinux:f31d
#@li:alpine:f300
#@li:aosc:f301
#@li:apple:f302
#@li:archcraft:f345
#@li:archlabs:f31e
#@li:archlinux:f303
#@li:arcolinux:f346
#@li:arduino:f34b
#@li:artix:f31f
#@li:awesome:f354
#@li:biglinux:f347
#@li:bspwm:f355
#@li:budgie:f320
#@li:cachyos:f385
#@li:centos:f304
#@li:cinnamon:f35f
#@li:codeberg:f330
#@li:coreos:f305
#@li:crystal:f348
#@li:debian:f306
#@li:deepin:f321
#@li:devuan:f307
#@li:docker:f308
#@li:dwm:f356
#@li:elementary:f309
#@li:endeavour:f322
#@li:enlightenment:f357
#@li:fdroid:f36a
#@li:fedora:f30a
#@li:fedora inverse:f30b
#@li:ferris:f323
#@li:ffmpeg:f384
#@li:flathub:f324
#@li:fluxbox:f358
#@li:forgejo:f335
#@li:fosdem:f36b
#@li:freebsd:f30c
#@li:freecad:f336
#@li:freedesktop:f360
#@li:garuda:f337
#@li:gentoo:f30d
#@li:gimp:f338
#@li:gitea:f339
#@li:gnome:f361
#@li:gnu guix:f325
#@li:gtk:f362
#@li:hyperbola:f33a
#@li:hyprland:f359
#@li:i3:f35a
#@li:illumos:f326
#@li:inkscape:f33b
#@li:jwm:f35b
#@li:kali linux:f327
#@li:kde:f373
#@li:kde neon:f331
#@li:kde plasma:f332
#@li:kdenlive:f33c
#@li:kicad:f34c
#@li:krita:f33d
#@li:kubuntu:f333
#@li:kubuntu inverse:f334
#@li:leap:f37e
#@li:libreoffice:f376
#@li:libreofficebase:f377
#@li:libreofficecalc:f378
#@li:libreofficedraw:f379
#@li:libreofficeimpress:f37a
#@li:libreofficemath:f37b
#@li:libreofficewriter:f37c
#@li:linuxmint:f30e
#@li:linuxmint inverse:f30f
#@li:locos:f349
#@li:lxde:f363
#@li:lxle:f33e
#@li:lxqt:f364
#@li:mageia:f310
#@li:mandriva:f311
#@li:manjaro:f312
#@li:mate:f365
#@li:mpv:f36e
#@li:mxlinux:f33f
#@li:neovim:f36f
#@li:nixos:f313
#@li:nobara:f380
#@li:octoprint:f34d
#@li:openbsd:f328
#@li:openscad:f34e
#@li:opensuse:f314
#@li:openwrt:f382
#@li:osh:f34f
#@li:oshwa:f350
#@li:osi:f36c
#@li:parabola:f340
#@li:parrot:f329
#@li:pop os:f32a
#@li:postmarketos:f374
#@li:prusaslicer:f351
#@li:puppy:f341
#@li:qt:f375
#@li:qtile:f35c
#@li:qubesos:f342
#@li:raspberry pi:f315
#@li:redhat:f316
#@li:reprap:f352
#@li:riscv:f353
#@li:river:f381
#@li:rocky linux:f32b
#@li:sabayon:f317
#@li:slackware:f318
#@li:slackware inverse:f319
#@li:snappy:f32c
#@li:solus:f32d
#@li:sway:f35d
#@li:tails:f343
#@li:thunderbird:f370
#@li:tor:f371
#@li:trisquel:f344
#@li:tumbleweed:f37d
#@li:tux:f31a
#@li:typst:f37f
#@li:ubuntu:f31b
#@li:ubuntu inverse:f31c
#@li:vanilla:f366
#@li:void:f32e
#@li:vscodium:f372
#@li:wayland:f367
#@li:wikimedia:f36d
#@li:wireguard:f383
#@li:xerolinux:f34a
#@li:xfce:f368
#@li:xmonad:f35e
#@li:xorg:f369
#@li:zorin:f32f
#@md:ab testing:f01c9
#@md:abacus:f16e0
#@md:abjad arabic:f1328
#@md:abjad hebrew:f1329
#@md:abugida devanagari:f132a
#@md:abugida thai:f132b
#@md:access point:f0003
#@md:access point check:f1538
#@md:access point minus:f1539
#@md:access point network:f0002
#@md:access point network off:f0be1
#@md:access point off:f1511
#@md:access point plus:f153a
#@md:access point remove:f153b
#@md:account:f0004
#@md:account alert:f0005
#@md:account alert outline:f0b50
#@md:account arrow down:f1868
#@md:account arrow down outline:f1869
#@md:account arrow left:f0b51
#@md:account arrow left outline:f0b52
#@md:account arrow right:f0b53
#@md:account arrow right outline:f0b54
#@md:account arrow up:f1867
#@md:account arrow up outline:f186a
#@md:account box:f0006
#@md:account box multiple:f0934
#@md:account box multiple outline:f100a
#@md:account box outline:f0007
#@md:account cancel:f12df
#@md:account cancel outline:f12e0
#@md:account cash:f1097
#@md:account cash outline:f1098
#@md:account check:f0008
#@md:account check outline:f0be2
#@md:account child:f0a89
#@md:account child circle:f0a8a
#@md:account child outline:f10c8
#@md:account circle:f0009
#@md:account circle outline:f0b55
#@md:account clock:f0b56
#@md:account clock outline:f0b57
#@md:account cog:f1370
#@md:account cog outline:f1371
#@md:account convert:f000a
#@md:account convert outline:f1301
#@md:account cowboy hat:f0e9b
#@md:account cowboy hat outline:f17f3
#@md:account details:f0631
#@md:account details outline:f1372
#@md:account edit:f06bc
#@md:account edit outline:f0ffb
#@md:account eye:f0420
#@md:account eye outline:f127b
#@md:account filter:f0936
#@md:account filter outline:f0f9d
#@md:account group:f0849
#@md:account group outline:f0b58
#@md:account hard hat:f05b5
#@md:account hard hat outline:f1a1f
#@md:account heart:f0899
#@md:account heart outline:f0be3
#@md:account injury:f1815
#@md:account injury outline:f1816
#@md:account key:f000b
#@md:account key outline:f0be4
#@md:account lock:f115e
#@md:account lock open:f1960
#@md:account lock open outline:f1961
#@md:account lock outline:f115f
#@md:account minus:f000d
#@md:account minus outline:f0aec
#@md:account multiple:f000e
#@md:account multiple check:f08c5
#@md:account multiple check outline:f11fe
#@md:account multiple minus:f05d3
#@md:account multiple minus outline:f0be5
#@md:account multiple outline:f000f
#@md:account multiple plus:f0010
#@md:account multiple plus outline:f0800
#@md:account multiple remove:f120a
#@md:account multiple remove outline:f120b
#@md:account music:f0803
#@md:account music outline:f0ce9
#@md:account network:f0011
#@md:account network outline:f0be6
#@md:account off:f0012
#@md:account off outline:f0be7
#@md:account outline:f0013
#@md:account plus:f0014
#@md:account plus outline:f0801
#@md:account question:f0b59
#@md:account question outline:f0b5a
#@md:account reactivate:f152b
#@md:account reactivate outline:f152c
#@md:account remove:f0015
#@md:account remove outline:f0aed
#@md:account school:f1a20
#@md:account school outline:f1a21
#@md:account search:f0016
#@md:account search outline:f0935
#@md:account settings:f0630
#@md:account settings outline:f10c9
#@md:account star:f0017
#@md:account star outline:f0be8
#@md:account supervisor:f0a8b
#@md:account supervisor circle:f0a8c
#@md:account supervisor circle outline:f14ec
#@md:account supervisor outline:f112d
#@md:account switch:f0019
#@md:account switch outline:f04cb
#@md:account sync:f191b
#@md:account sync outline:f191c
#@md:account tie:f0ce3
#@md:account tie hat:f1898
#@md:account tie hat outline:f1899
#@md:account tie outline:f10ca
#@md:account tie voice:f1308
#@md:account tie voice off:f130a
#@md:account tie voice off outline:f130b
#@md:account tie voice outline:f1309
#@md:account tie woman:f1a8c
#@md:account voice:f05cb
#@md:account voice off:f0ed4
#@md:account wrench:f189a
#@md:account wrench outline:f189b
#@md:adjust:f001a
#@md:advertisements:f192a
#@md:advertisements off:f192b
#@md:air conditioner:f001b
#@md:air filter:f0d43
#@md:air horn:f0dac
#@md:air humidifier:f1099
#@md:air humidifier off:f1466
#@md:air purifier:f0d44
#@md:airbag:f0be9
#@md:airballoon:f001c
#@md:airballoon outline:f100b
#@md:airplane:f001d
#@md:airplane alert:f187a
#@md:airplane check:f187b
#@md:airplane clock:f187c
#@md:airplane cog:f187d
#@md:airplane edit:f187e
#@md:airplane landing:f05d4
#@md:airplane marker:f187f
#@md:airplane minus:f1880
#@md:airplane off:f001e
#@md:airplane plus:f1881
#@md:airplane remove:f1882
#@md:airplane search:f1883
#@md:airplane settings:f1884
#@md:airplane takeoff:f05d5
#@md:airport:f084b
#@md:alarm:f0020
#@md:alarm bell:f078e
#@md:alarm check:f0021
#@md:alarm light:f078f
#@md:alarm light off:f171e
#@md:alarm light off outline:f171f
#@md:alarm light outline:f0bea
#@md:alarm multiple:f0022
#@md:alarm note:f0e71
#@md:alarm note off:f0e72
#@md:alarm off:f0023
#@md:alarm panel:f15c4
#@md:alarm panel outline:f15c5
#@md:alarm plus:f0024
#@md:alarm snooze:f068e
#@md:album:f0025
#@md:alert:f0026
#@md:alert box:f0027
#@md:alert box outline:f0ce4
#@md:alert circle:f0028
#@md:alert circle check:f11ed
#@md:alert circle check outline:f11ee
#@md:alert circle outline:f05d6
#@md:alert decagram:f06bd
#@md:alert decagram outline:f0ce5
#@md:alert minus:f14bb
#@md:alert minus outline:f14be
#@md:alert octagon:f0029
#@md:alert octagon outline:f0ce6
#@md:alert octagram:f0767
#@md:alert octagram outline:f0ce7
#@md:alert outline:f002a
#@md:alert plus:f14ba
#@md:alert plus outline:f14bd
#@md:alert remove:f14bc
#@md:alert remove outline:f14bf
#@md:alert rhombus:f11ce
#@md:alert rhombus outline:f11cf
#@md:alien:f089a
#@md:alien outline:f10cb
#@md:align horizontal center:f11c3
#@md:align horizontal distribute:f1962
#@md:align horizontal left:f11c2
#@md:align horizontal right:f11c4
#@md:align vertical bottom:f11c5
#@md:align vertical center:f11c6
#@md:align vertical distribute:f1963
#@md:align vertical top:f11c7
#@md:all inclusive:f06be
#@md:all inclusive box:f188d
#@md:all inclusive box outline:f188e
#@md:allergy:f1258
#@md:alpha:f002b
#@md:alpha a:f0aee
#@md:alpha a box:f0b08
#@md:alpha a box outline:f0beb
#@md:alpha a circle:f0bec
#@md:alpha a circle outline:f0bed
#@md:alpha b:f0aef
#@md:alpha b box:f0b09
#@md:alpha b box outline:f0bee
#@md:alpha b circle:f0bef
#@md:alpha b circle outline:f0bf0
#@md:alpha c:f0af0
#@md:alpha c box:f0b0a
#@md:alpha c box outline:f0bf1
#@md:alpha c circle:f0bf2
#@md:alpha c circle outline:f0bf3
#@md:alpha d:f0af1
#@md:alpha d box:f0b0b
#@md:alpha d box outline:f0bf4
#@md:alpha d circle:f0bf5
#@md:alpha d circle outline:f0bf6
#@md:alpha e:f0af2
#@md:alpha e box:f0b0c
#@md:alpha e box outline:f0bf7
#@md:alpha e circle:f0bf8
#@md:alpha e circle outline:f0bf9
#@md:alpha f:f0af3
#@md:alpha f box:f0b0d
#@md:alpha f box outline:f0bfa
#@md:alpha f circle:f0bfb
#@md:alpha f circle outline:f0bfc
#@md:alpha g:f0af4
#@md:alpha g box:f0b0e
#@md:alpha g box outline:f0bfd
#@md:alpha g circle:f0bfe
#@md:alpha g circle outline:f0bff
#@md:alpha h:f0af5
#@md:alpha h box:f0b0f
#@md:alpha h box outline:f0c00
#@md:alpha h circle:f0c01
#@md:alpha h circle outline:f0c02
#@md:alpha i:f0af6
#@md:alpha i box:f0b10
#@md:alpha i box outline:f0c03
#@md:alpha i circle:f0c04
#@md:alpha i circle outline:f0c05
#@md:alpha j:f0af7
#@md:alpha j box:f0b11
#@md:alpha j box outline:f0c06
#@md:alpha j circle:f0c07
#@md:alpha j circle outline:f0c08
#@md:alpha k:f0af8
#@md:alpha k box:f0b12
#@md:alpha k box outline:f0c09
#@md:alpha k circle:f0c0a
#@md:alpha k circle outline:f0c0b
#@md:alpha l:f0af9
#@md:alpha l box:f0b13
#@md:alpha l box outline:f0c0c
#@md:alpha l circle:f0c0d
#@md:alpha l circle outline:f0c0e
#@md:alpha m:f0afa
#@md:alpha m box:f0b14
#@md:alpha m box outline:f0c0f
#@md:alpha m circle:f0c10
#@md:alpha m circle outline:f0c11
#@md:alpha n:f0afb
#@md:alpha n box:f0b15
#@md:alpha n box outline:f0c12
#@md:alpha n circle:f0c13
#@md:alpha n circle outline:f0c14
#@md:alpha o:f0afc
#@md:alpha o box:f0b16
#@md:alpha o box outline:f0c15
#@md:alpha o circle:f0c16
#@md:alpha o circle outline:f0c17
#@md:alpha p:f0afd
#@md:alpha p box:f0b17
#@md:alpha p box outline:f0c18
#@md:alpha p circle:f0c19
#@md:alpha p circle outline:f0c1a
#@md:alpha q:f0afe
#@md:alpha q box:f0b18
#@md:alpha q box outline:f0c1b
#@md:alpha q circle:f0c1c
#@md:alpha q circle outline:f0c1d
#@md:alpha r:f0aff
#@md:alpha r box:f0b19
#@md:alpha r box outline:f0c1e
#@md:alpha r circle:f0c1f
#@md:alpha r circle outline:f0c20
#@md:alpha s:f0b00
#@md:alpha s box:f0b1a
#@md:alpha s box outline:f0c21
#@md:alpha s circle:f0c22
#@md:alpha s circle outline:f0c23
#@md:alpha t:f0b01
#@md:alpha t box:f0b1b
#@md:alpha t box outline:f0c24
#@md:alpha t circle:f0c25
#@md:alpha t circle outline:f0c26
#@md:alpha u:f0b02
#@md:alpha u box:f0b1c
#@md:alpha u box outline:f0c27
#@md:alpha u circle:f0c28
#@md:alpha u circle outline:f0c29
#@md:alpha v:f0b03
#@md:alpha v box:f0b1d
#@md:alpha v box outline:f0c2a
#@md:alpha v circle:f0c2b
#@md:alpha v circle outline:f0c2c
#@md:alpha w:f0b04
#@md:alpha w box:f0b1e
#@md:alpha w box outline:f0c2d
#@md:alpha w circle:f0c2e
#@md:alpha w circle outline:f0c2f
#@md:alpha x:f0b05
#@md:alpha x box:f0b1f
#@md:alpha x box outline:f0c30
#@md:alpha x circle:f0c31
#@md:alpha x circle outline:f0c32
#@md:alpha y:f0b06
#@md:alpha y box:f0b20
#@md:alpha y box outline:f0c33
#@md:alpha y circle:f0c34
#@md:alpha y circle outline:f0c35
#@md:alpha z:f0b07
#@md:alpha z box:f0b21
#@md:alpha z box outline:f0c36
#@md:alpha z circle:f0c37
#@md:alpha z circle outline:f0c38
#@md:alphabet aurebesh:f132c
#@md:alphabet cyrillic:f132d
#@md:alphabet greek:f132e
#@md:alphabet latin:f132f
#@md:alphabet piqad:f1330
#@md:alphabet tengwar:f1337
#@md:alphabetical:f002c
#@md:alphabetical off:f100c
#@md:alphabetical variant:f100d
#@md:alphabetical variant off:f100e
#@md:altimeter:f05d7
#@md:ambulance:f002f
#@md:ammunition:f0ce8
#@md:ampersand:f0a8d
#@md:amplifier:f0030
#@md:amplifier off:f11b5
#@md:anchor:f0031
#@md:android:f0032
#@md:android messages:f0d45
#@md:android studio:f0034
#@md:angle acute:f0937
#@md:angle obtuse:f0938
#@md:angle right:f0939
#@md:angular:f06b2
#@md:angularjs:f06bf
#@md:animation:f05d8
#@md:animation outline:f0a8f
#@md:animation play:f093a
#@md:animation play outline:f0a90
#@md:ansible:f109a
#@md:antenna:f1119
#@md:anvil:f089b
#@md:apache kafka:f100f
#@md:api:f109b
#@md:api off:f1257
#@md:apple:f0035
#@md:apple finder:f0036
#@md:apple icloud:f0038
#@md:apple ios:f0037
#@md:apple keyboard caps:f0632
#@md:apple keyboard command:f0633
#@md:apple keyboard control:f0634
#@md:apple keyboard option:f0635
#@md:apple keyboard shift:f0636
#@md:apple safari:f0039
#@md:application:f08c6
#@md:application array:f10f5
#@md:application array outline:f10f6
#@md:application braces:f10f7
#@md:application braces outline:f10f8
#@md:application brackets:f0c8b
#@md:application brackets outline:f0c8c
#@md:application cog:f0675
#@md:application cog outline:f1577
#@md:application edit:f00ae
#@md:application edit outline:f0619
#@md:application export:f0dad
#@md:application import:f0dae
#@md:application outline:f0614
#@md:application parentheses:f10f9
#@md:application parentheses outline:f10fa
#@md:application settings:f0b60
#@md:application settings outline:f1555
#@md:application variable:f10fb
#@md:application variable outline:f10fc
#@md:approximately equal:f0f9e
#@md:approximately equal box:f0f9f
#@md:apps:f003b
#@md:apps box:f0d46
#@md:arch:f08c7
#@md:archive:f003c
#@md:archive alert:f14fd
#@md:archive alert outline:f14fe
#@md:archive arrow down:f1259
#@md:archive arrow down outline:f125a
#@md:archive arrow up:f125b
#@md:archive arrow up outline:f125c
#@md:archive cancel:f174b
#@md:archive cancel outline:f174c
#@md:archive check:f174d
#@md:archive check outline:f174e
#@md:archive clock:f174f
#@md:archive clock outline:f1750
#@md:archive cog:f1751
#@md:archive cog outline:f1752
#@md:archive edit:f1753
#@md:archive edit outline:f1754
#@md:archive eye:f1755
#@md:archive eye outline:f1756
#@md:archive lock:f1757
#@md:archive lock open:f1758
#@md:archive lock open outline:f1759
#@md:archive lock outline:f175a
#@md:archive marker:f175b
#@md:archive marker outline:f175c
#@md:archive minus:f175d
#@md:archive minus outline:f175e
#@md:archive music:f175f
#@md:archive music outline:f1760
#@md:archive off:f1761
#@md:archive off outline:f1762
#@md:archive outline:f120e
#@md:archive plus:f1763
#@md:archive plus outline:f1764
#@md:archive refresh:f1765
#@md:archive refresh outline:f1766
#@md:archive remove:f1767
#@md:archive remove outline:f1768
#@md:archive search:f1769
#@md:archive search outline:f176a
#@md:archive settings:f176b
#@md:archive settings outline:f176c
#@md:archive star:f176d
#@md:archive star outline:f176e
#@md:archive sync:f176f
#@md:archive sync outline:f1770
#@md:arm flex:f0fd7
#@md:arm flex outline:f0fd6
#@md:arrange bring forward:f003d
#@md:arrange bring to front:f003e
#@md:arrange send backward:f003f
#@md:arrange send to back:f0040
#@md:arrow all:f0041
#@md:arrow bottom left:f0042
#@md:arrow bottom left bold box:f1964
#@md:arrow bottom left bold box outline:f1965
#@md:arrow bottom left bold outline:f09b7
#@md:arrow bottom left thick:f09b8
#@md:arrow bottom left thin:f19b6
#@md:arrow bottom left thin circle outline:f1596
#@md:arrow bottom right:f0043
#@md:arrow bottom right bold box:f1966
#@md:arrow bottom right bold box outline:f1967
#@md:arrow bottom right bold outline:f09b9
#@md:arrow bottom right thick:f09ba
#@md:arrow bottom right thin:f19b7
#@md:arrow bottom right thin circle outline:f1595
#@md:arrow collapse:f0615
#@md:arrow collapse all:f0044
#@md:arrow collapse down:f0792
#@md:arrow collapse horizontal:f084c
#@md:arrow collapse left:f0793
#@md:arrow collapse right:f0794
#@md:arrow collapse up:f0795
#@md:arrow collapse vertical:f084d
#@md:arrow decision:f09bb
#@md:arrow decision auto:f09bc
#@md:arrow decision auto outline:f09bd
#@md:arrow decision outline:f09be
#@md:arrow down:f0045
#@md:arrow down bold:f072e
#@md:arrow down bold box:f072f
#@md:arrow down bold box outline:f0730
#@md:arrow down bold circle:f0047
#@md:arrow down bold circle outline:f0048
#@md:arrow down bold hexagon outline:f0049
#@md:arrow down bold outline:f09bf
#@md:arrow down box:f06c0
#@md:arrow down circle:f0cdb
#@md:arrow down circle outline:f0cdc
#@md:arrow down drop circle:f004a
#@md:arrow down drop circle outline:f004b
#@md:arrow down left:f17a1
#@md:arrow down left bold:f17a2
#@md:arrow down right:f17a3
#@md:arrow down right bold:f17a4
#@md:arrow down thick:f0046
#@md:arrow down thin:f19b3
#@md:arrow down thin circle outline:f1599
#@md:arrow expand:f0616
#@md:arrow expand all:f004c
#@md:arrow expand down:f0796
#@md:arrow expand horizontal:f084e
#@md:arrow expand left:f0797
#@md:arrow expand right:f0798
#@md:arrow expand up:f0799
#@md:arrow expand vertical:f084f
#@md:arrow horizontal lock:f115b
#@md:arrow left:f004d
#@md:arrow left bold:f0731
#@md:arrow left bold box:f0732
#@md:arrow left bold box outline:f0733
#@md:arrow left bold circle:f004f
#@md:arrow left bold circle outline:f0050
#@md:arrow left bold hexagon outline:f0051
#@md:arrow left bold outline:f09c0
#@md:arrow left bottom:f17a5
#@md:arrow left bottom bold:f17a6
#@md:arrow left box:f06c1
#@md:arrow left circle:f0cdd
#@md:arrow left circle outline:f0cde
#@md:arrow left drop circle:f0052
#@md:arrow left drop circle outline:f0053
#@md:arrow left right:f0e73
#@md:arrow left right bold:f0e74
#@md:arrow left right bold outline:f09c1
#@md:arrow left thick:f004e
#@md:arrow left thin:f19b1
#@md:arrow left thin circle outline:f159a
#@md:arrow left top:f17a7
#@md:arrow left top bold:f17a8
#@md:arrow projectile:f1840
#@md:arrow projectile multiple:f183f
#@md:arrow right:f0054
#@md:arrow right bold:f0734
#@md:arrow right bold box:f0735
#@md:arrow right bold box outline:f0736
#@md:arrow right bold circle:f0056
#@md:arrow right bold circle outline:f0057
#@md:arrow right bold hexagon outline:f0058
#@md:arrow right bold outline:f09c2
#@md:arrow right bottom:f17a9
#@md:arrow right bottom bold:f17aa
#@md:arrow right box:f06c2
#@md:arrow right circle:f0cdf
#@md:arrow right circle outline:f0ce0
#@md:arrow right drop circle:f0059
#@md:arrow right drop circle outline:f005a
#@md:arrow right thick:f0055
#@md:arrow right thin:f19b0
#@md:arrow right thin circle outline:f1598
#@md:arrow right top:f17ab
#@md:arrow right top bold:f17ac
#@md:arrow split horizontal:f093b
#@md:arrow split vertical:f093c
#@md:arrow top left:f005b
#@md:arrow top left bold box:f1968
#@md:arrow top left bold box outline:f1969
#@md:arrow top left bold outline:f09c3
#@md:arrow top left bottom right:f0e75
#@md:arrow top left bottom right bold:f0e76
#@md:arrow top left thick:f09c4
#@md:arrow top left thin:f19b5
#@md:arrow top left thin circle outline:f1593
#@md:arrow top right:f005c
#@md:arrow top right bold box:f196a
#@md:arrow top right bold box outline:f196b
#@md:arrow top right bold outline:f09c5
#@md:arrow top right bottom left:f0e77
#@md:arrow top right bottom left bold:f0e78
#@md:arrow top right thick:f09c6
#@md:arrow top right thin:f19b4
#@md:arrow top right thin circle outline:f1594
#@md:arrow u down left:f17ad
#@md:arrow u down left bold:f17ae
#@md:arrow u down right:f17af
#@md:arrow u down right bold:f17b0
#@md:arrow u left bottom:f17b1
#@md:arrow u left bottom bold:f17b2
#@md:arrow u left top:f17b3
#@md:arrow u left top bold:f17b4
#@md:arrow u right bottom:f17b5
#@md:arrow u right bottom bold:f17b6
#@md:arrow u right top:f17b7
#@md:arrow u right top bold:f17b8
#@md:arrow u up left:f17b9
#@md:arrow u up left bold:f17ba
#@md:arrow u up right:f17bb
#@md:arrow u up right bold:f17bc
#@md:arrow up:f005d
#@md:arrow up bold:f0737
#@md:arrow up bold box:f0738
#@md:arrow up bold box outline:f0739
#@md:arrow up bold circle:f005f
#@md:arrow up bold circle outline:f0060
#@md:arrow up bold hexagon outline:f0061
#@md:arrow up bold outline:f09c7
#@md:arrow up box:f06c3
#@md:arrow up circle:f0ce1
#@md:arrow up circle outline:f0ce2
#@md:arrow up down:f0e79
#@md:arrow up down bold:f0e7a
#@md:arrow up down bold outline:f09c8
#@md:arrow up drop circle:f0062
#@md:arrow up drop circle outline:f0063
#@md:arrow up left:f17bd
#@md:arrow up left bold:f17be
#@md:arrow up right:f17bf
#@md:arrow up right bold:f17c0
#@md:arrow up thick:f005e
#@md:arrow up thin:f19b2
#@md:arrow up thin circle outline:f1597
#@md:arrow vertical lock:f115c
#@md:artstation:f0b5b
#@md:aspect ratio:f0a24
#@md:assistant:f0064
#@md:asterisk:f06c4
#@md:asterisk circle outline:f1a27
#@md:at:f0065
#@md:atlassian:f0804
#@md:atm:f0d47
#@md:atom:f0768
#@md:atom variant:f0e7b
#@md:attachment:f0066
#@md:attachment check:f1ac1
#@md:attachment lock:f19c4
#@md:attachment minus:f1ac2
#@md:attachment off:f1ac3
#@md:attachment plus:f1ac4
#@md:attachment remove:f1ac5
#@md:audio input rca:f186b
#@md:audio input stereo minijack:f186c
#@md:audio input xlr:f186d
#@md:audio video:f093d
#@md:audio video off:f11b6
#@md:augmented reality:f0850
#@md:auto download:f137e
#@md:auto fix:f0068
#@md:auto upload:f0069
#@md:autorenew:f006a
#@md:autorenew off:f19e7
#@md:av timer:f006b
#@md:aws:f0e0f
#@md:axe:f08c8
#@md:axe battle:f1842
#@md:axis:f0d48
#@md:axis arrow:f0d49
#@md:axis arrow info:f140e
#@md:axis arrow lock:f0d4a
#@md:axis lock:f0d4b
#@md:axis x arrow:f0d4c
#@md:axis x arrow lock:f0d4d
#@md:axis x rotate clockwise:f0d4e
#@md:axis x rotate counterclockwise:f0d4f
#@md:axis x y arrow lock:f0d50
#@md:axis y arrow:f0d51
#@md:axis y arrow lock:f0d52
#@md:axis y rotate clockwise:f0d53
#@md:axis y rotate counterclockwise:f0d54
#@md:axis z arrow:f0d55
#@md:axis z arrow lock:f0d56
#@md:axis z rotate clockwise:f0d57
#@md:axis z rotate counterclockwise:f0d58
#@md:babel:f0a25
#@md:baby:f006c
#@md:baby bottle:f0f39
#@md:baby bottle outline:f0f3a
#@md:baby buggy:f13e0
#@md:baby carriage:f068f
#@md:baby carriage off:f0fa0
#@md:baby face:f0e7c
#@md:baby face outline:f0e7d
#@md:backburger:f006d
#@md:backspace:f006e
#@md:backspace outline:f0b5c
#@md:backspace reverse:f0e7e
#@md:backspace reverse outline:f0e7f
#@md:backup restore:f006f
#@md:bacteria:f0ed5
#@md:bacteria outline:f0ed6
#@md:badge account:f0da7
#@md:badge account alert:f0da8
#@md:badge account alert outline:f0da9
#@md:badge account horizontal:f0e0d
#@md:badge account horizontal outline:f0e0e
#@md:badge account outline:f0daa
#@md:badminton:f0851
#@md:bag carry on:f0f3b
#@md:bag carry on check:f0d65
#@md:bag carry on off:f0f3c
#@md:bag checked:f0f3d
#@md:bag personal:f0e10
#@md:bag personal off:f0e11
#@md:bag personal off outline:f0e12
#@md:bag personal outline:f0e13
#@md:bag suitcase:f158b
#@md:bag suitcase off:f158d
#@md:bag suitcase off outline:f158e
#@md:bag suitcase outline:f158c
#@md:baguette:f0f3e
#@md:balcony:f1817
#@md:balloon:f0a26
#@md:ballot:f09c9
#@md:ballot outline:f09ca
#@md:ballot recount:f0c39
#@md:ballot recount outline:f0c3a
#@md:bandage:f0daf
#@md:bank:f0070
#@md:bank check:f1655
#@md:bank minus:f0db0
#@md:bank off:f1656
#@md:bank off outline:f1657
#@md:bank outline:f0e80
#@md:bank plus:f0db1
#@md:bank remove:f0db2
#@md:bank transfer:f0a27
#@md:bank transfer in:f0a28
#@md:bank transfer out:f0a29
#@md:barcode:f0071
#@md:barcode off:f1236
#@md:barcode scan:f0072
#@md:barley:f0073
#@md:barley off:f0b5d
#@md:barn:f0b5e
#@md:barrel:f0074
#@md:barrel outline:f1a28
#@md:baseball:f0852
#@md:baseball bat:f0853
#@md:baseball diamond:f15ec
#@md:baseball diamond outline:f15ed
#@md:bash:f1183
#@md:basket:f0076
#@md:basket check:f18e5
#@md:basket check outline:f18e6
#@md:basket fill:f0077
#@md:basket minus:f1523
#@md:basket minus outline:f1524
#@md:basket off:f1525
#@md:basket off outline:f1526
#@md:basket outline:f1181
#@md:basket plus:f1527
#@md:basket plus outline:f1528
#@md:basket remove:f1529
#@md:basket remove outline:f152a
#@md:basket unfill:f0078
#@md:basketball:f0806
#@md:basketball hoop:f0c3b
#@md:basketball hoop outline:f0c3c
#@md:bat:f0b5f
#@md:bathtub:f1818
#@md:bathtub outline:f1819
#@md:battery:f0079
#@md:battery 10:f007a
#@md:battery 10 bluetooth:f093e
#@md:battery 20:f007b
#@md:battery 20 bluetooth:f093f
#@md:battery 30:f007c
#@md:battery 30 bluetooth:f0940
#@md:battery 40:f007d
#@md:battery 40 bluetooth:f0941
#@md:battery 50:f007e
#@md:battery 50 bluetooth:f0942
#@md:battery 60:f007f
#@md:battery 60 bluetooth:f0943
#@md:battery 70:f0080
#@md:battery 70 bluetooth:f0944
#@md:battery 80:f0081
#@md:battery 80 bluetooth:f0945
#@md:battery 90:f0082
#@md:battery 90 bluetooth:f0946
#@md:battery alert:f0083
#@md:battery alert bluetooth:f0947
#@md:battery alert variant:f10cc
#@md:battery alert variant outline:f10cd
#@md:battery arrow down:f17de
#@md:battery arrow down outline:f17df
#@md:battery arrow up:f17e0
#@md:battery arrow up outline:f17e1
#@md:battery bluetooth:f0948
#@md:battery bluetooth variant:f0949
#@md:battery charging:f0084
#@md:battery charging 10:f089c
#@md:battery charging 100:f0085
#@md:battery charging 20:f0086
#@md:battery charging 30:f0087
#@md:battery charging 40:f0088
#@md:battery charging 50:f089d
#@md:battery charging 60:f0089
#@md:battery charging 70:f089e
#@md:battery charging 80:f008a
#@md:battery charging 90:f008b
#@md:battery charging high:f12a6
#@md:battery charging low:f12a4
#@md:battery charging medium:f12a5
#@md:battery charging outline:f089f
#@md:battery charging wireless:f0807
#@md:battery charging wireless 10:f0808
#@md:battery charging wireless 20:f0809
#@md:battery charging wireless 30:f080a
#@md:battery charging wireless 40:f080b
#@md:battery charging wireless 50:f080c
#@md:battery charging wireless 60:f080d
#@md:battery charging wireless 70:f080e
#@md:battery charging wireless 80:f080f
#@md:battery charging wireless 90:f0810
#@md:battery charging wireless alert:f0811
#@md:battery charging wireless outline:f0812
#@md:battery check:f17e2
#@md:battery check outline:f17e3
#@md:battery clock:f19e5
#@md:battery clock outline:f19e6
#@md:battery heart:f120f
#@md:battery heart outline:f1210
#@md:battery heart variant:f1211
#@md:battery high:f12a3
#@md:battery lock:f179c
#@md:battery lock open:f179d
#@md:battery low:f12a1
#@md:battery medium:f12a2
#@md:battery minus:f17e4
#@md:battery minus outline:f17e5
#@md:battery minus variant:f008c
#@md:battery negative:f008d
#@md:battery off:f125d
#@md:battery off outline:f125e
#@md:battery outline:f008e
#@md:battery plus:f17e6
#@md:battery plus outline:f17e7
#@md:battery plus variant:f008f
#@md:battery positive:f0090
#@md:battery remove:f17e8
#@md:battery remove outline:f17e9
#@md:battery sync:f1834
#@md:battery sync outline:f1835
#@md:battery unknown:f0091
#@md:battery unknown bluetooth:f094a
#@md:beach:f0092
#@md:beaker:f0cea
#@md:beaker alert:f1229
#@md:beaker alert outline:f122a
#@md:beaker check:f122b
#@md:beaker check outline:f122c
#@md:beaker minus:f122d
#@md:beaker minus outline:f122e
#@md:beaker outline:f0690
#@md:beaker plus:f122f
#@md:beaker plus outline:f1230
#@md:beaker question:f1231
#@md:beaker question outline:f1232
#@md:beaker remove:f1233
#@md:beaker remove outline:f1234
#@md:bed:f02e3
#@md:bed double:f0fd4
#@md:bed double outline:f0fd3
#@md:bed empty:f08a0
#@md:bed king:f0fd2
#@md:bed king outline:f0fd1
#@md:bed outline:f0099
#@md:bed queen:f0fd0
#@md:bed queen outline:f0fdb
#@md:bed single:f106d
#@md:bed single outline:f106e
#@md:bee:f0fa1
#@md:bee flower:f0fa2
#@md:beehive off outline:f13ed
#@md:beehive outline:f10ce
#@md:beekeeper:f14e2
#@md:beer:f0098
#@md:beer outline:f130c
#@md:bell:f009a
#@md:bell alert:f0d59
#@md:bell alert outline:f0e81
#@md:bell badge:f116b
#@md:bell badge outline:f0178
#@md:bell cancel:f13e7
#@md:bell cancel outline:f13e8
#@md:bell check:f11e5
#@md:bell check outline:f11e6
#@md:bell circle:f0d5a
#@md:bell circle outline:f0d5b
#@md:bell cog:f1a29
#@md:bell cog outline:f1a2a
#@md:bell minus:f13e9
#@md:bell minus outline:f13ea
#@md:bell off:f009b
#@md:bell off outline:f0a91
#@md:bell outline:f009c
#@md:bell plus:f009d
#@md:bell plus outline:f0a92
#@md:bell remove:f13eb
#@md:bell remove outline:f13ec
#@md:bell ring:f009e
#@md:bell ring outline:f009f
#@md:bell sleep:f00a0
#@md:bell sleep outline:f0a93
#@md:beta:f00a1
#@md:betamax:f09cb
#@md:biathlon:f0e14
#@md:bicycle:f109c
#@md:bicycle basket:f1235
#@md:bicycle cargo:f189c
#@md:bicycle electric:f15b4
#@md:bicycle penny farthing:f15e9
#@md:bike:f00a3
#@md:bike fast:f111f
#@md:billboard:f1010
#@md:billiards:f0b61
#@md:billiards rack:f0b62
#@md:binoculars:f00a5
#@md:bio:f00a6
#@md:biohazard:f00a7
#@md:bird:f15c6
#@md:bitbucket:f00a8
#@md:bitcoin:f0813
#@md:black mesa:f00a9
#@md:blender:f0ceb
#@md:blender outline:f181a
#@md:blender software:f00ab
#@md:blinds:f00ac
#@md:blinds horizontal:f1a2b
#@md:blinds horizontal closed:f1a2c
#@md:blinds open:f1011
#@md:blinds vertical:f1a2d
#@md:blinds vertical closed:f1a2e
#@md:block helper:f00ad
#@md:blood bag:f0cec
#@md:bluetooth:f00af
#@md:bluetooth audio:f00b0
#@md:bluetooth connect:f00b1
#@md:bluetooth off:f00b2
#@md:bluetooth settings:f00b3
#@md:bluetooth transfer:f00b4
#@md:blur:f00b5
#@md:blur linear:f00b6
#@md:blur off:f00b7
#@md:blur radial:f00b8
#@md:bolt:f0db3
#@md:bomb:f0691
#@md:bomb off:f06c5
#@md:bone:f00b9
#@md:bone off:f19e0
#@md:book:f00ba
#@md:book account:f13ad
#@md:book account outline:f13ae
#@md:book alert:f167c
#@md:book alert outline:f167d
#@md:book alphabet:f061d
#@md:book arrow down:f167e
#@md:book arrow down outline:f167f
#@md:book arrow left:f1680
#@md:book arrow left outline:f1681
#@md:book arrow right:f1682
#@md:book arrow right outline:f1683
#@md:book arrow up:f1684
#@md:book arrow up outline:f1685
#@md:book cancel:f1686
#@md:book cancel outline:f1687
#@md:book check:f14f3
#@md:book check outline:f14f4
#@md:book clock:f1688
#@md:book clock outline:f1689
#@md:book cog:f168a
#@md:book cog outline:f168b
#@md:book cross:f00a2
#@md:book edit:f168c
#@md:book edit outline:f168d
#@md:book education:f16c9
#@md:book education outline:f16ca
#@md:book heart:f1a1d
#@md:book heart outline:f1a1e
#@md:book information variant:f106f
#@md:book lock:f079a
#@md:book lock open:f079b
#@md:book lock open outline:f168e
#@md:book lock outline:f168f
#@md:book marker:f1690
#@md:book marker outline:f1691
#@md:book minus:f05d9
#@md:book minus multiple:f0a94
#@md:book minus multiple outline:f090b
#@md:book minus outline:f1692
#@md:book multiple:f00bb
#@md:book multiple outline:f0436
#@md:book music:f0067
#@md:book music outline:f1693
#@md:book off:f1694
#@md:book off outline:f1695
#@md:book open:f00bd
#@md:book open blank variant:f00be
#@md:book open outline:f0b63
#@md:book open page variant:f05da
#@md:book open page variant outline:f15d6
#@md:book open variant:f14f7
#@md:book outline:f0b64
#@md:book play:f0e82
#@md:book play outline:f0e83
#@md:book plus:f05db
#@md:book plus multiple:f0a95
#@md:book plus multiple outline:f0ade
#@md:book plus outline:f1696
#@md:book refresh:f1697
#@md:book refresh outline:f1698
#@md:book remove:f0a97
#@md:book remove multiple:f0a96
#@md:book remove multiple outline:f04ca
#@md:book remove outline:f1699
#@md:book search:f0e84
#@md:book search outline:f0e85
#@md:book settings:f169a
#@md:book settings outline:f169b
#@md:book sync:f169c
#@md:book sync outline:f16c8
#@md:book variant:f00bf
#@md:book variant multiple:f00bc
#@md:bookmark:f00c0
#@md:bookmark box multiple:f196c
#@md:bookmark box multiple outline:f196d
#@md:bookmark check:f00c1
#@md:bookmark check outline:f137b
#@md:bookmark minus:f09cc
#@md:bookmark minus outline:f09cd
#@md:bookmark multiple:f0e15
#@md:bookmark multiple outline:f0e16
#@md:bookmark music:f00c2
#@md:bookmark music outline:f1379
#@md:bookmark off:f09ce
#@md:bookmark off outline:f09cf
#@md:bookmark outline:f00c3
#@md:bookmark plus:f00c5
#@md:bookmark plus outline:f00c4
#@md:bookmark remove:f00c6
#@md:bookmark remove outline:f137a
#@md:bookshelf:f125f
#@md:boom gate:f0e86
#@md:boom gate alert:f0e87
#@md:boom gate alert outline:f0e88
#@md:boom gate arrow down:f0e89
#@md:boom gate arrow down outline:f0e8a
#@md:boom gate arrow up:f0e8c
#@md:boom gate arrow up outline:f0e8d
#@md:boom gate outline:f0e8b
#@md:boom gate up:f17f9
#@md:boom gate up outline:f17fa
#@md:boombox:f05dc
#@md:boomerang:f10cf
#@md:bootstrap:f06c6
#@md:border all:f00c7
#@md:border all variant:f08a1
#@md:border bottom:f00c8
#@md:border bottom variant:f08a2
#@md:border color:f00c9
#@md:border horizontal:f00ca
#@md:border inside:f00cb
#@md:border left:f00cc
#@md:border left variant:f08a3
#@md:border none:f00cd
#@md:border none variant:f08a4
#@md:border outside:f00ce
#@md:border right:f00cf
#@md:border right variant:f08a5
#@md:border style:f00d0
#@md:border top:f00d1
#@md:border top variant:f08a6
#@md:border vertical:f00d2
#@md:bottle soda:f1070
#@md:bottle soda classic:f1071
#@md:bottle soda classic outline:f1363
#@md:bottle soda outline:f1072
#@md:bottle tonic:f112e
#@md:bottle tonic outline:f112f
#@md:bottle tonic plus:f1130
#@md:bottle tonic plus outline:f1131
#@md:bottle tonic skull:f1132
#@md:bottle tonic skull outline:f1133
#@md:bottle wine:f0854
#@md:bottle wine outline:f1310
#@md:bow arrow:f1841
#@md:bow tie:f0678
#@md:bowl:f028e
#@md:bowl mix:f0617
#@md:bowl mix outline:f02e4
#@md:bowl outline:f02a9
#@md:bowling:f00d3
#@md:box:f00d4
#@md:box cutter:f00d5
#@md:box cutter off:f0b4a
#@md:box shadow:f0637
#@md:boxing glove:f0b65
#@md:braille:f09d0
#@md:brain:f09d1
#@md:bread slice:f0cee
#@md:bread slice outline:f0cef
#@md:bridge:f0618
#@md:briefcase:f00d6
#@md:briefcase account:f0cf0
#@md:briefcase account outline:f0cf1
#@md:briefcase arrow left right:f1a8d
#@md:briefcase arrow left right outline:f1a8e
#@md:briefcase arrow up down:f1a8f
#@md:briefcase arrow up down outline:f1a90
#@md:briefcase check:f00d7
#@md:briefcase check outline:f131e
#@md:briefcase clock:f10d0
#@md:briefcase clock outline:f10d1
#@md:briefcase download:f00d8
#@md:briefcase download outline:f0c3d
#@md:briefcase edit:f0a98
#@md:briefcase edit outline:f0c3e
#@md:briefcase eye:f17d9
#@md:briefcase eye outline:f17da
#@md:briefcase minus:f0a2a
#@md:briefcase minus outline:f0c3f
#@md:briefcase off:f1658
#@md:briefcase off outline:f1659
#@md:briefcase outline:f0814
#@md:briefcase plus:f0a2b
#@md:briefcase plus outline:f0c40
#@md:briefcase remove:f0a2c
#@md:briefcase remove outline:f0c41
#@md:briefcase search:f0a2d
#@md:briefcase search outline:f0c42
#@md:briefcase upload:f00d9
#@md:briefcase upload outline:f0c43
#@md:briefcase variant:f1494
#@md:briefcase variant off:f165a
#@md:briefcase variant off outline:f165b
#@md:briefcase variant outline:f1495
#@md:brightness 1:f00da
#@md:brightness 2:f00db
#@md:brightness 3:f00dc
#@md:brightness 4:f00dd
#@md:brightness 5:f00de
#@md:brightness 6:f00df
#@md:brightness 7:f00e0
#@md:brightness auto:f00e1
#@md:brightness percent:f0cf2
#@md:broadcast:f1720
#@md:broadcast off:f1721
#@md:broom:f00e2
#@md:brush:f00e3
#@md:brush off:f1771
#@md:brush outline:f1a0d
#@md:brush variant:f1813
#@md:bucket:f1415
#@md:bucket outline:f1416
#@md:buffet:f0578
#@md:bug:f00e4
#@md:bug check:f0a2e
#@md:bug check outline:f0a2f
#@md:bug outline:f0a30
#@md:bugle:f0db4
#@md:bulkhead light:f1a2f
#@md:bulldozer:f0b22
#@md:bullet:f0cf3
#@md:bulletin board:f00e5
#@md:bullhorn:f00e6
#@md:bullhorn outline:f0b23
#@md:bullhorn variant:f196e
#@md:bullhorn variant outline:f196f
#@md:bullseye:f05dd
#@md:bullseye arrow:f08c9
#@md:bulma:f12e7
#@md:bunk bed:f1302
#@md:bunk bed outline:f0097
#@md:bus:f00e7
#@md:bus alert:f0a99
#@md:bus articulated end:f079c
#@md:bus articulated front:f079d
#@md:bus clock:f08ca
#@md:bus double decker:f079e
#@md:bus electric:f191d
#@md:bus marker:f1212
#@md:bus multiple:f0f3f
#@md:bus school:f079f
#@md:bus side:f07a0
#@md:bus stop:f1012
#@md:bus stop covered:f1013
#@md:bus stop uncovered:f1014
#@md:butterfly:f1589
#@md:butterfly outline:f158a
#@md:cabin a frame:f188c
#@md:cable data:f1394
#@md:cached:f00e8
#@md:cactus:f0db5
#@md:cake:f00e9
#@md:cake layered:f00ea
#@md:cake variant:f00eb
#@md:cake variant outline:f17f0
#@md:calculator:f00ec
#@md:calculator variant:f0a9a
#@md:calculator variant outline:f15a6
#@md:calendar:f00ed
#@md:calendar account:f0ed7
#@md:calendar account outline:f0ed8
#@md:calendar alert:f0a31
#@md:calendar arrow left:f1134
#@md:calendar arrow right:f1135
#@md:calendar blank:f00ee
#@md:calendar blank multiple:f1073
#@md:calendar blank outline:f0b66
#@md:calendar check:f00ef
#@md:calendar check outline:f0c44
#@md:calendar clock:f00f0
#@md:calendar clock outline:f16e1
#@md:calendar collapse horizontal:f189d
#@md:calendar cursor:f157b
#@md:calendar edit:f08a7
#@md:calendar end:f166c
#@md:calendar expand horizontal:f189e
#@md:calendar export:f0b24
#@md:calendar heart:f09d2
#@md:calendar import:f0b25
#@md:calendar lock:f1641
#@md:calendar lock outline:f1642
#@md:calendar minus:f0d5c
#@md:calendar month:f0e17
#@md:calendar month outline:f0e18
#@md:calendar multiple:f00f1
#@md:calendar multiple check:f00f2
#@md:calendar multiselect:f0a32
#@md:calendar outline:f0b67
#@md:calendar plus:f00f3
#@md:calendar question:f0692
#@md:calendar range:f0679
#@md:calendar range outline:f0b68
#@md:calendar refresh:f01e1
#@md:calendar refresh outline:f0203
#@md:calendar remove:f00f4
#@md:calendar remove outline:f0c45
#@md:calendar search:f094c
#@md:calendar star:f09d3
#@md:calendar start:f166d
#@md:calendar sync:f0e8e
#@md:calendar sync outline:f0e8f
#@md:calendar text:f00f5
#@md:calendar text outline:f0c46
#@md:calendar today:f00f6
#@md:calendar today outline:f1a30
#@md:calendar week:f0a33
#@md:calendar week begin:f0a34
#@md:calendar week begin outline:f1a31
#@md:calendar week end:f1a32
#@md:calendar week end outline:f1a33
#@md:calendar week outline:f1a34
#@md:calendar weekend:f0ed9
#@md:calendar weekend outline:f0eda
#@md:call made:f00f7
#@md:call merge:f00f8
#@md:call missed:f00f9
#@md:call received:f00fa
#@md:call split:f00fb
#@md:camcorder:f00fc
#@md:camcorder off:f00ff
#@md:camera:f0100
#@md:camera account:f08cb
#@md:camera burst:f0693
#@md:camera control:f0b69
#@md:camera document:f1871
#@md:camera document off:f1872
#@md:camera enhance:f0101
#@md:camera enhance outline:f0b6a
#@md:camera flip:f15d9
#@md:camera flip outline:f15da
#@md:camera front:f0102
#@md:camera front variant:f0103
#@md:camera gopro:f07a1
#@md:camera image:f08cc
#@md:camera iris:f0104
#@md:camera lock:f1a14
#@md:camera lock outline:f1a15
#@md:camera marker:f19a7
#@md:camera marker outline:f19a8
#@md:camera metering center:f07a2
#@md:camera metering matrix:f07a3
#@md:camera metering partial:f07a4
#@md:camera metering spot:f07a5
#@md:camera off:f05df
#@md:camera off outline:f19bf
#@md:camera outline:f0d5d
#@md:camera party mode:f0105
#@md:camera plus:f0edb
#@md:camera plus outline:f0edc
#@md:camera rear:f0106
#@md:camera rear variant:f0107
#@md:camera retake:f0e19
#@md:camera retake outline:f0e1a
#@md:camera switch:f0108
#@md:camera switch outline:f084a
#@md:camera timer:f0109
#@md:camera wireless:f0db6
#@md:camera wireless outline:f0db7
#@md:campfire:f0edd
#@md:cancel:f073a
#@md:candelabra:f17d2
#@md:candelabra fire:f17d3
#@md:candle:f05e2
#@md:candy:f1970
#@md:candy off:f1971
#@md:candy off outline:f1972
#@md:candy outline:f1973
#@md:candycane:f010a
#@md:cannabis:f07a6
#@md:cannabis off:f166e
#@md:caps lock:f0a9b
#@md:car:f010b
#@md:car 2 plus:f1015
#@md:car 3 plus:f1016
#@md:car arrow left:f13b2
#@md:car arrow right:f13b3
#@md:car back:f0e1b
#@md:car battery:f010c
#@md:car brake abs:f0c47
#@md:car brake alert:f0c48
#@md:car brake fluid level:f1909
#@md:car brake hold:f0d5e
#@md:car brake low pressure:f190a
#@md:car brake parking:f0d5f
#@md:car brake retarder:f1017
#@md:car brake temperature:f190b
#@md:car brake worn linings:f190c
#@md:car child seat:f0fa3
#@md:car clock:f1974
#@md:car clutch:f1018
#@md:car cog:f13cc
#@md:car connected:f010d
#@md:car convertible:f07a7
#@md:car coolant level:f1019
#@md:car cruise control:f0d60
#@md:car defrost front:f0d61
#@md:car defrost rear:f0d62
#@md:car door:f0b6b
#@md:car door lock:f109d
#@md:car electric:f0b6c
#@md:car electric outline:f15b5
#@md:car emergency:f160f
#@md:car esp:f0c49
#@md:car estate:f07a8
#@md:car hatchback:f07a9
#@md:car info:f11be
#@md:car key:f0b6d
#@md:car lifted pickup:f152d
#@md:car light alert:f190d
#@md:car light dimmed:f0c4a
#@md:car light fog:f0c4b
#@md:car light high:f0c4c
#@md:car limousine:f08cd
#@md:car multiple:f0b6e
#@md:car off:f0e1c
#@md:car outline:f14ed
#@md:car parking lights:f0d63
#@md:car pickup:f07aa
#@md:car seat:f0fa4
#@md:car seat cooler:f0fa5
#@md:car seat heater:f0fa6
#@md:car select:f1879
#@md:car settings:f13cd
#@md:car shift pattern:f0f40
#@md:car side:f07ab
#@md:car speed limiter:f190e
#@md:car sports:f07ac
#@md:car tire alert:f0c4d
#@md:car traction control:f0d64
#@md:car turbocharger:f101a
#@md:car wash:f010e
#@md:car windshield:f101b
#@md:car windshield outline:f101c
#@md:car wireless:f1878
#@md:car wrench:f1814
#@md:carabiner:f14c0
#@md:caravan:f07ad
#@md:card:f0b6f
#@md:card account details:f05d2
#@md:card account details outline:f0dab
#@md:card account details star:f02a3
#@md:card account details star outline:f06db
#@md:card account mail:f018e
#@md:card account mail outline:f0e98
#@md:card account phone:f0e99
#@md:card account phone outline:f0e9a
#@md:card bulleted:f0b70
#@md:card bulleted off:f0b71
#@md:card bulleted off outline:f0b72
#@md:card bulleted outline:f0b73
#@md:card bulleted settings:f0b74
#@md:card bulleted settings outline:f0b75
#@md:card minus:f1600
#@md:card minus outline:f1601
#@md:card multiple:f17f1
#@md:card multiple outline:f17f2
#@md:card off:f1602
#@md:card off outline:f1603
#@md:card outline:f0b76
#@md:card plus:f11ff
#@md:card plus outline:f1200
#@md:card remove:f1604
#@md:card remove outline:f1605
#@md:card search:f1074
#@md:card search outline:f1075
#@md:card text:f0b77
#@md:card text outline:f0b78
#@md:cards:f0638
#@md:cards club:f08ce
#@md:cards club outline:f189f
#@md:cards diamond:f08cf
#@md:cards diamond outline:f101d
#@md:cards heart:f08d0
#@md:cards heart outline:f18a0
#@md:cards outline:f0639
#@md:cards playing:f18a1
#@md:cards playing club:f18a2
#@md:cards playing club multiple:f18a3
#@md:cards playing club multiple outline:f18a4
#@md:cards playing club outline:f18a5
#@md:cards playing diamond:f18a6
#@md:cards playing diamond multiple:f18a7
#@md:cards playing diamond multiple outline:f18a8
#@md:cards playing diamond outline:f18a9
#@md:cards playing heart:f18aa
#@md:cards playing heart multiple:f18ab
#@md:cards playing heart multiple outline:f18ac
#@md:cards playing heart outline:f18ad
#@md:cards playing outline:f063a
#@md:cards playing spade:f18ae
#@md:cards playing spade multiple:f18af
#@md:cards playing spade multiple outline:f18b0
#@md:cards playing spade outline:f18b1
#@md:cards spade:f08d1
#@md:cards spade outline:f18b2
#@md:cards variant:f06c7
#@md:carrot:f010f
#@md:cart:f0110
#@md:cart arrow down:f0d66
#@md:cart arrow right:f0c4e
#@md:cart arrow up:f0d67
#@md:cart check:f15ea
#@md:cart heart:f18e0
#@md:cart minus:f0d68
#@md:cart off:f066b
#@md:cart outline:f0111
#@md:cart plus:f0112
#@md:cart remove:f0d69
#@md:cart variant:f15eb
#@md:case sensitive alt:f0113
#@md:cash:f0114
#@md:cash 100:f0115
#@md:cash check:f14ee
#@md:cash clock:f1a91
#@md:cash fast:f185c
#@md:cash lock:f14ea
#@md:cash lock open:f14eb
#@md:cash marker:f0db8
#@md:cash minus:f1260
#@md:cash multiple:f0116
#@md:cash plus:f1261
#@md:cash refund:f0a9c
#@md:cash register:f0cf4
#@md:cash remove:f1262
#@md:cash sync:f1a92
#@md:cassette:f09d4
#@md:cast:f0118
#@md:cast audio:f101e
#@md:cast audio variant:f1749
#@md:cast connected:f0119
#@md:cast education:f0e1d
#@md:cast off:f078a
#@md:cast variant:f001f
#@md:castle:f011a
#@md:cat:f011b
#@md:cctv:f07ae
#@md:cctv off:f185f
#@md:ceiling fan:f1797
#@md:ceiling fan light:f1798
#@md:ceiling light:f0769
#@md:ceiling light multiple:f18dd
#@md:ceiling light multiple outline:f18de
#@md:ceiling light outline:f17c7
#@md:cellphone:f011c
#@md:cellphone arrow down:f09d5
#@md:cellphone arrow down variant:f19c5
#@md:cellphone basic:f011e
#@md:cellphone charging:f1397
#@md:cellphone check:f17fd
#@md:cellphone cog:f0951
#@md:cellphone dock:f011f
#@md:cellphone information:f0f41
#@md:cellphone key:f094e
#@md:cellphone link:f0121
#@md:cellphone link off:f0122
#@md:cellphone lock:f094f
#@md:cellphone marker:f183a
#@md:cellphone message:f08d3
#@md:cellphone message off:f10d2
#@md:cellphone nfc:f0e90
#@md:cellphone nfc off:f12d8
#@md:cellphone off:f0950
#@md:cellphone play:f101f
#@md:cellphone remove:f094d
#@md:cellphone screenshot:f0a35
#@md:cellphone settings:f0123
#@md:cellphone sound:f0952
#@md:cellphone text:f08d2
#@md:cellphone wireless:f0815
#@md:centos:f111a
#@md:certificate:f0124
#@md:certificate outline:f1188
#@md:chair rolling:f0f48
#@md:chair school:f0125
#@md:chandelier:f1793
#@md:charity:f0c4f
#@md:chart arc:f0126
#@md:chart areaspline:f0127
#@md:chart areaspline variant:f0e91
#@md:chart bar:f0128
#@md:chart bar stacked:f076a
#@md:chart bell curve:f0c50
#@md:chart bell curve cumulative:f0fa7
#@md:chart box:f154d
#@md:chart box outline:f154e
#@md:chart box plus outline:f154f
#@md:chart bubble:f05e3
#@md:chart donut:f07af
#@md:chart donut variant:f07b0
#@md:chart gantt:f066c
#@md:chart histogram:f0129
#@md:chart line:f012a
#@md:chart line stacked:f076b
#@md:chart line variant:f07b1
#@md:chart multiline:f08d4
#@md:chart multiple:f1213
#@md:chart pie:f012b
#@md:chart ppf:f1380
#@md:chart sankey:f11df
#@md:chart sankey variant:f11e0
#@md:chart scatter plot:f0e92
#@md:chart scatter plot hexbin:f066d
#@md:chart timeline:f066e
#@md:chart timeline variant:f0e93
#@md:chart timeline variant shimmer:f15b6
#@md:chart tree:f0e94
#@md:chart waterfall:f1918
#@md:chat:f0b79
#@md:chat alert:f0b7a
#@md:chat alert outline:f12c9
#@md:chat minus:f1410
#@md:chat minus outline:f1413
#@md:chat outline:f0ede
#@md:chat plus:f140f
#@md:chat plus outline:f1412
#@md:chat processing:f0b7b
#@md:chat processing outline:f12ca
#@md:chat question:f1738
#@md:chat question outline:f1739
#@md:chat remove:f1411
#@md:chat remove outline:f1414
#@md:chat sleep:f12d1
#@md:chat sleep outline:f12d2
#@md:check:f012c
#@md:check all:f012d
#@md:check bold:f0e1e
#@md:check circle:f05e0
#@md:check circle outline:f05e1
#@md:check decagram:f0791
#@md:check decagram outline:f1740
#@md:check network:f0c53
#@md:check network outline:f0c54
#@md:check outline:f0855
#@md:check underline:f0e1f
#@md:check underline circle:f0e20
#@md:check underline circle outline:f0e21
#@md:checkbook:f0a9d
#@md:checkbox blank:f012e
#@md:checkbox blank badge:f1176
#@md:checkbox blank badge outline:f0117
#@md:checkbox blank circle:f012f
#@md:checkbox blank circle outline:f0130
#@md:checkbox blank off:f12ec
#@md:checkbox blank off outline:f12ed
#@md:checkbox blank outline:f0131
#@md:checkbox intermediate:f0856
#@md:checkbox marked:f0132
#@md:checkbox marked circle:f0133
#@md:checkbox marked circle outline:f0134
#@md:checkbox marked circle plus outline:f1927
#@md:checkbox marked outline:f0135
#@md:checkbox multiple blank:f0136
#@md:checkbox multiple blank circle:f063b
#@md:checkbox multiple blank circle outline:f063c
#@md:checkbox multiple blank outline:f0137
#@md:checkbox multiple marked:f0138
#@md:checkbox multiple marked circle:f063d
#@md:checkbox multiple marked circle outline:f063e
#@md:checkbox multiple marked outline:f0139
#@md:checkbox multiple outline:f0c51
#@md:checkbox outline:f0c52
#@md:checkerboard:f013a
#@md:checkerboard minus:f1202
#@md:checkerboard plus:f1201
#@md:checkerboard remove:f1203
#@md:cheese:f12b9
#@md:cheese off:f13ee
#@md:chef hat:f0b7c
#@md:chemical weapon:f013b
#@md:chess bishop:f085c
#@md:chess king:f0857
#@md:chess knight:f0858
#@md:chess pawn:f0859
#@md:chess queen:f085a
#@md:chess rook:f085b
#@md:chevron double down:f013c
#@md:chevron double left:f013d
#@md:chevron double right:f013e
#@md:chevron double up:f013f
#@md:chevron down:f0140
#@md:chevron down box:f09d6
#@md:chevron down box outline:f09d7
#@md:chevron down circle:f0b26
#@md:chevron down circle outline:f0b27
#@md:chevron left:f0141
#@md:chevron left box:f09d8
#@md:chevron left box outline:f09d9
#@md:chevron left circle:f0b28
#@md:chevron left circle outline:f0b29
#@md:chevron right:f0142
#@md:chevron right box:f09da
#@md:chevron right box outline:f09db
#@md:chevron right circle:f0b2a
#@md:chevron right circle outline:f0b2b
#@md:chevron triple down:f0db9
#@md:chevron triple left:f0dba
#@md:chevron triple right:f0dbb
#@md:chevron triple up:f0dbc
#@md:chevron up:f0143
#@md:chevron up box:f09dc
#@md:chevron up box outline:f09dd
#@md:chevron up circle:f0b2c
#@md:chevron up circle outline:f0b2d
#@md:chili alert:f17ea
#@md:chili alert outline:f17eb
#@md:chili hot:f07b2
#@md:chili hot outline:f17ec
#@md:chili medium:f07b3
#@md:chili medium outline:f17ed
#@md:chili mild:f07b4
#@md:chili mild outline:f17ee
#@md:chili off:f1467
#@md:chili off outline:f17ef
#@md:chip:f061a
#@md:church:f0144
#@md:cigar:f1189
#@md:cigar off:f141b
#@md:circle:f0765
#@md:circle box:f15dc
#@md:circle box outline:f15dd
#@md:circle double:f0e95
#@md:circle edit outline:f08d5
#@md:circle expand:f0e96
#@md:circle half:f1395
#@md:circle half full:f1396
#@md:circle medium:f09de
#@md:circle multiple:f0b38
#@md:circle multiple outline:f0695
#@md:circle off outline:f10d3
#@md:circle opacity:f1853
#@md:circle outline:f0766
#@md:circle slice 1:f0a9e
#@md:circle slice 2:f0a9f
#@md:circle slice 3:f0aa0
#@md:circle slice 4:f0aa1
#@md:circle slice 5:f0aa2
#@md:circle slice 6:f0aa3
#@md:circle slice 7:f0aa4
#@md:circle slice 8:f0aa5
#@md:circle small:f09df
#@md:circular saw:f0e22
#@md:city:f0146
#@md:city variant:f0a36
#@md:city variant outline:f0a37
#@md:clipboard:f0147
#@md:clipboard account:f0148
#@md:clipboard account outline:f0c55
#@md:clipboard alert:f0149
#@md:clipboard alert outline:f0cf7
#@md:clipboard arrow down:f014a
#@md:clipboard arrow down outline:f0c56
#@md:clipboard arrow left:f014b
#@md:clipboard arrow left outline:f0cf8
#@md:clipboard arrow right:f0cf9
#@md:clipboard arrow right outline:f0cfa
#@md:clipboard arrow up:f0c57
#@md:clipboard arrow up outline:f0c58
#@md:clipboard check:f014e
#@md:clipboard check multiple:f1263
#@md:clipboard check multiple outline:f1264
#@md:clipboard check outline:f08a8
#@md:clipboard clock:f16e2
#@md:clipboard clock outline:f16e3
#@md:clipboard edit:f14e5
#@md:clipboard edit outline:f14e6
#@md:clipboard file:f1265
#@md:clipboard file outline:f1266
#@md:clipboard flow:f06c8
#@md:clipboard flow outline:f1117
#@md:clipboard list:f10d4
#@md:clipboard list outline:f10d5
#@md:clipboard minus:f1618
#@md:clipboard minus outline:f1619
#@md:clipboard multiple:f1267
#@md:clipboard multiple outline:f1268
#@md:clipboard off:f161a
#@md:clipboard off outline:f161b
#@md:clipboard outline:f014c
#@md:clipboard play:f0c59
#@md:clipboard play multiple:f1269
#@md:clipboard play multiple outline:f126a
#@md:clipboard play outline:f0c5a
#@md:clipboard plus:f0751
#@md:clipboard plus outline:f131f
#@md:clipboard pulse:f085d
#@md:clipboard pulse outline:f085e
#@md:clipboard remove:f161c
#@md:clipboard remove outline:f161d
#@md:clipboard search:f161e
#@md:clipboard search outline:f161f
#@md:clipboard text:f014d
#@md:clipboard text clock:f18f9
#@md:clipboard text clock outline:f18fa
#@md:clipboard text multiple:f126b
#@md:clipboard text multiple outline:f126c
#@md:clipboard text off:f1620
#@md:clipboard text off outline:f1621
#@md:clipboard text outline:f0a38
#@md:clipboard text play:f0c5b
#@md:clipboard text play outline:f0c5c
#@md:clipboard text search:f1622
#@md:clipboard text search outline:f1623
#@md:clippy:f014f
#@md:clock:f0954
#@md:clock alert:f0955
#@md:clock alert outline:f05ce
#@md:clock check:f0fa8
#@md:clock check outline:f0fa9
#@md:clock digital:f0e97
#@md:clock edit:f19ba
#@md:clock edit outline:f19bb
#@md:clock end:f0151
#@md:clock fast:f0152
#@md:clock in:f0153
#@md:clock minus:f1863
#@md:clock minus outline:f1864
#@md:clock out:f0154
#@md:clock outline:f0150
#@md:clock plus:f1861
#@md:clock plus outline:f1862
#@md:clock remove:f1865
#@md:clock remove outline:f1866
#@md:clock start:f0155
#@md:clock time eight:f1446
#@md:clock time eight outline:f1452
#@md:clock time eleven:f1449
#@md:clock time eleven outline:f1455
#@md:clock time five:f1443
#@md:clock time five outline:f144f
#@md:clock time four:f1442
#@md:clock time four outline:f144e
#@md:clock time nine:f1447
#@md:clock time nine outline:f1453
#@md:clock time one:f143f
#@md:clock time one outline:f144b
#@md:clock time seven:f1445
#@md:clock time seven outline:f1451
#@md:clock time six:f1444
#@md:clock time six outline:f1450
#@md:clock time ten:f1448
#@md:clock time ten outline:f1454
#@md:clock time three:f1441
#@md:clock time three outline:f144d
#@md:clock time twelve:f144a
#@md:clock time twelve outline:f1456
#@md:clock time two:f1440
#@md:clock time two outline:f144c
#@md:close:f0156
#@md:close box:f0157
#@md:close box multiple:f0c5d
#@md:close box multiple outline:f0c5e
#@md:close box outline:f0158
#@md:close circle:f0159
#@md:close circle multiple:f062a
#@md:close circle multiple outline:f0883
#@md:close circle outline:f015a
#@md:close network:f015b
#@md:close network outline:f0c5f
#@md:close octagon:f015c
#@md:close octagon outline:f015d
#@md:close outline:f06c9
#@md:close thick:f1398
#@md:closed caption:f015e
#@md:closed caption outline:f0dbd
#@md:cloud:f015f
#@md:cloud alert:f09e0
#@md:cloud braces:f07b5
#@md:cloud check:f0160
#@md:cloud check outline:f12cc
#@md:cloud circle:f0161
#@md:cloud download:f0162
#@md:cloud download outline:f0b7d
#@md:cloud lock:f11f1
#@md:cloud lock outline:f11f2
#@md:cloud off outline:f0164
#@md:cloud outline:f0163
#@md:cloud percent:f1a35
#@md:cloud percent outline:f1a36
#@md:cloud print:f0165
#@md:cloud print outline:f0166
#@md:cloud question:f0a39
#@md:cloud refresh:f052a
#@md:cloud search:f0956
#@md:cloud search outline:f0957
#@md:cloud sync:f063f
#@md:cloud sync outline:f12d6
#@md:cloud tags:f07b6
#@md:cloud upload:f0167
#@md:cloud upload outline:f0b7e
#@md:clover:f0816
#@md:coach lamp:f1020
#@md:coach lamp variant:f1a37
#@md:coat rack:f109e
#@md:code array:f0168
#@md:code braces:f0169
#@md:code braces box:f10d6
#@md:code brackets:f016a
#@md:code equal:f016b
#@md:code greater than:f016c
#@md:code greater than or equal:f016d
#@md:code json:f0626
#@md:code less than:f016e
#@md:code less than or equal:f016f
#@md:code not equal:f0170
#@md:code not equal variant:f0171
#@md:code parentheses:f0172
#@md:code parentheses box:f10d7
#@md:code string:f0173
#@md:code tags:f0174
#@md:code tags check:f0694
#@md:codepen:f0175
#@md:coffee:f0176
#@md:coffee maker:f109f
#@md:coffee maker check:f1931
#@md:coffee maker check outline:f1932
#@md:coffee maker outline:f181b
#@md:coffee off:f0faa
#@md:coffee off outline:f0fab
#@md:coffee outline:f06ca
#@md:coffee to go:f0177
#@md:coffee to go outline:f130e
#@md:coffin:f0b7f
#@md:cog:f0493
#@md:cog box:f0494
#@md:cog clockwise:f11dd
#@md:cog counterclockwise:f11de
#@md:cog off:f13ce
#@md:cog off outline:f13cf
#@md:cog outline:f08bb
#@md:cog pause:f1933
#@md:cog pause outline:f1934
#@md:cog play:f1935
#@md:cog play outline:f1936
#@md:cog refresh:f145e
#@md:cog refresh outline:f145f
#@md:cog stop:f1937
#@md:cog stop outline:f1938
#@md:cog sync:f1460
#@md:cog sync outline:f1461
#@md:cog transfer:f105b
#@md:cog transfer outline:f105c
#@md:cogs:f08d6
#@md:collage:f0640
#@md:collapse all:f0aa6
#@md:collapse all outline:f0aa7
#@md:color helper:f0179
#@md:comma:f0e23
#@md:comma box:f0e2b
#@md:comma box outline:f0e24
#@md:comma circle:f0e25
#@md:comma circle outline:f0e26
#@md:comment:f017a
#@md:comment account:f017b
#@md:comment account outline:f017c
#@md:comment alert:f017d
#@md:comment alert outline:f017e
#@md:comment arrow left:f09e1
#@md:comment arrow left outline:f09e2
#@md:comment arrow right:f09e3
#@md:comment arrow right outline:f09e4
#@md:comment bookmark:f15ae
#@md:comment bookmark outline:f15af
#@md:comment check:f017f
#@md:comment check outline:f0180
#@md:comment edit:f11bf
#@md:comment edit outline:f12c4
#@md:comment eye:f0a3a
#@md:comment eye outline:f0a3b
#@md:comment flash:f15b0
#@md:comment flash outline:f15b1
#@md:comment minus:f15df
#@md:comment minus outline:f15e0
#@md:comment multiple:f085f
#@md:comment multiple outline:f0181
#@md:comment off:f15e1
#@md:comment off outline:f15e2
#@md:comment outline:f0182
#@md:comment plus:f09e5
#@md:comment plus outline:f0183
#@md:comment processing:f0184
#@md:comment processing outline:f0185
#@md:comment question:f0817
#@md:comment question outline:f0186
#@md:comment quote:f1021
#@md:comment quote outline:f1022
#@md:comment remove:f05de
#@md:comment remove outline:f0187
#@md:comment search:f0a3c
#@md:comment search outline:f0a3d
#@md:comment text:f0188
#@md:comment text multiple:f0860
#@md:comment text multiple outline:f0861
#@md:comment text outline:f0189
#@md:compare:f018a
#@md:compare horizontal:f1492
#@md:compare remove:f18b3
#@md:compare vertical:f1493
#@md:compass:f018b
#@md:compass off:f0b80
#@md:compass off outline:f0b81
#@md:compass outline:f018c
#@md:compass rose:f1382
#@md:compost:f1a38
#@md:cone:f194c
#@md:cone off:f194d
#@md:connection:f1616
#@md:console:f018d
#@md:console line:f07b7
#@md:console network:f08a9
#@md:console network outline:f0c60
#@md:consolidate:f10d8
#@md:contactless payment:f0d6a
#@md:contactless payment circle:f0321
#@md:contactless payment circle outline:f0408
#@md:contacts:f06cb
#@md:contacts outline:f05b8
#@md:contain:f0a3e
#@md:contain end:f0a3f
#@md:contain start:f0a40
#@md:content copy:f018f
#@md:content cut:f0190
#@md:content duplicate:f0191
#@md:content paste:f0192
#@md:content save:f0193
#@md:content save alert:f0f42
#@md:content save alert outline:f0f43
#@md:content save all:f0194
#@md:content save all outline:f0f44
#@md:content save check:f18ea
#@md:content save check outline:f18eb
#@md:content save cog:f145b
#@md:content save cog outline:f145c
#@md:content save edit:f0cfb
#@md:content save edit outline:f0cfc
#@md:content save move:f0e27
#@md:content save move outline:f0e28
#@md:content save off:f1643
#@md:content save off outline:f1644
#@md:content save outline:f0818
#@md:content save settings:f061b
#@md:content save settings outline:f0b2e
#@md:contrast:f0195
#@md:contrast box:f0196
#@md:contrast circle:f0197
#@md:controller classic:f0b82
#@md:controller classic outline:f0b83
#@md:cookie:f0198
#@md:cookie alert:f16d0
#@md:cookie alert outline:f16d1
#@md:cookie check:f16d2
#@md:cookie check outline:f16d3
#@md:cookie clock:f16e4
#@md:cookie clock outline:f16e5
#@md:cookie cog:f16d4
#@md:cookie cog outline:f16d5
#@md:cookie edit:f16e6
#@md:cookie edit outline:f16e7
#@md:cookie lock:f16e8
#@md:cookie lock outline:f16e9
#@md:cookie minus:f16da
#@md:cookie minus outline:f16db
#@md:cookie off:f16ea
#@md:cookie off outline:f16eb
#@md:cookie outline:f16de
#@md:cookie plus:f16d6
#@md:cookie plus outline:f16d7
#@md:cookie refresh:f16ec
#@md:cookie refresh outline:f16ed
#@md:cookie remove:f16d8
#@md:cookie remove outline:f16d9
#@md:cookie settings:f16dc
#@md:cookie settings outline:f16dd
#@md:coolant temperature:f03c8
#@md:copyleft:f1939
#@md:copyright:f05e6
#@md:cordova:f0958
#@md:corn:f07b8
#@md:corn off:f13ef
#@md:cosine wave:f1479
#@md:counter:f0199
#@md:countertop:f181c
#@md:countertop outline:f181d
#@md:cow:f019a
#@md:cow off:f18fc
#@md:cpu 32 bit:f0edf
#@md:cpu 64 bit:f0ee0
#@md:cradle:f198b
#@md:cradle outline:f1991
#@md:crane:f0862
#@md:creation:f0674
#@md:creative commons:f0d6b
#@md:credit card:f0fef
#@md:credit card check:f13d0
#@md:credit card check outline:f13d1
#@md:credit card chip:f190f
#@md:credit card chip outline:f1910
#@md:credit card clock:f0ee1
#@md:credit card clock outline:f0ee2
#@md:credit card edit:f17d7
#@md:credit card edit outline:f17d8
#@md:credit card fast:f1911
#@md:credit card fast outline:f1912
#@md:credit card lock:f18e7
#@md:credit card lock outline:f18e8
#@md:credit card marker:f06a8
#@md:credit card marker outline:f0dbe
#@md:credit card minus:f0fac
#@md:credit card minus outline:f0fad
#@md:credit card multiple:f0ff0
#@md:credit card multiple outline:f019c
#@md:credit card off:f0ff1
#@md:credit card off outline:f05e4
#@md:credit card outline:f019b
#@md:credit card plus:f0ff2
#@md:credit card plus outline:f0676
#@md:credit card refresh:f1645
#@md:credit card refresh outline:f1646
#@md:credit card refund:f0ff3
#@md:credit card refund outline:f0aa8
#@md:credit card remove:f0fae
#@md:credit card remove outline:f0faf
#@md:credit card scan:f0ff4
#@md:credit card scan outline:f019d
#@md:credit card search:f1647
#@md:credit card search outline:f1648
#@md:credit card settings:f0ff5
#@md:credit card settings outline:f08d7
#@md:credit card sync:f1649
#@md:credit card sync outline:f164a
#@md:credit card wireless:f0802
#@md:credit card wireless off:f057a
#@md:credit card wireless off outline:f057b
#@md:credit card wireless outline:f0d6c
#@md:cricket:f0d6d
#@md:crop:f019e
#@md:crop free:f019f
#@md:crop landscape:f01a0
#@md:crop portrait:f01a1
#@md:crop rotate:f0696
#@md:crop square:f01a2
#@md:cross:f0953
#@md:cross bolnisi:f0ced
#@md:cross celtic:f0cf5
#@md:cross outline:f0cf6
#@md:crosshairs:f01a3
#@md:crosshairs gps:f01a4
#@md:crosshairs off:f0f45
#@md:crosshairs question:f1136
#@md:crowd:f1975
#@md:crown:f01a5
#@md:crown circle:f17dc
#@md:crown circle outline:f17dd
#@md:crown outline:f11d0
#@md:cryengine:f0959
#@md:crystal ball:f0b2f
#@md:cube:f01a6
#@md:cube off:f141c
#@md:cube off outline:f141d
#@md:cube outline:f01a7
#@md:cube scan:f0b84
#@md:cube send:f01a8
#@md:cube unfolded:f01a9
#@md:cup:f01aa
#@md:cup off:f05e5
#@md:cup off outline:f137d
#@md:cup outline:f130f
#@md:cup water:f01ab
#@md:cupboard:f0f46
#@md:cupboard outline:f0f47
#@md:cupcake:f095a
#@md:curling:f0863
#@md:currency bdt:f0864
#@md:currency brl:f0b85
#@md:currency btc:f01ac
#@md:currency cny:f07ba
#@md:currency eth:f07bb
#@md:currency eur:f01ad
#@md:currency eur off:f1315
#@md:currency fra:f1a39
#@md:currency gbp:f01ae
#@md:currency ils:f0c61
#@md:currency inr:f01af
#@md:currency jpy:f07bc
#@md:currency krw:f07bd
#@md:currency kzt:f0865
#@md:currency mnt:f1512
#@md:currency ngn:f01b0
#@md:currency php:f09e6
#@md:currency rial:f0e9c
#@md:currency rub:f01b1
#@md:currency rupee:f1976
#@md:currency sign:f07be
#@md:currency try:f01b2
#@md:currency twd:f07bf
#@md:currency usd:f01c1
#@md:currency usd off:f067a
#@md:current ac:f1480
#@md:current dc:f095c
#@md:cursor default:f01c0
#@md:cursor default click:f0cfd
#@md:cursor default click outline:f0cfe
#@md:cursor default gesture:f1127
#@md:cursor default gesture outline:f1128
#@md:cursor default outline:f01bf
#@md:cursor move:f01be
#@md:cursor pointer:f01bd
#@md:cursor text:f05e7
#@md:curtains:f1846
#@md:curtains closed:f1847
#@md:cylinder:f194e
#@md:cylinder off:f194f
#@md:dance ballroom:f15fb
#@md:dance pole:f1578
#@md:data matrix:f153c
#@md:data matrix edit:f153d
#@md:data matrix minus:f153e
#@md:data matrix plus:f153f
#@md:data matrix remove:f1540
#@md:data matrix scan:f1541
#@md:database:f01bc
#@md:database alert:f163a
#@md:database alert outline:f1624
#@md:database arrow down:f163b
#@md:database arrow down outline:f1625
#@md:database arrow left:f163c
#@md:database arrow left outline:f1626
#@md:database arrow right:f163d
#@md:database arrow right outline:f1627
#@md:database arrow up:f163e
#@md:database arrow up outline:f1628
#@md:database check:f0aa9
#@md:database check outline:f1629
#@md:database clock:f163f
#@md:database clock outline:f162a
#@md:database cog:f164b
#@md:database cog outline:f164c
#@md:database edit:f0b86
#@md:database edit outline:f162b
#@md:database export:f095e
#@md:database export outline:f162c
#@md:database eye:f191f
#@md:database eye off:f1920
#@md:database eye off outline:f1921
#@md:database eye outline:f1922
#@md:database import:f095d
#@md:database import outline:f162d
#@md:database lock:f0aaa
#@md:database lock outline:f162e
#@md:database marker:f12f6
#@md:database marker outline:f162f
#@md:database minus:f01bb
#@md:database minus outline:f1630
#@md:database off:f1640
#@md:database off outline:f1631
#@md:database outline:f1632
#@md:database plus:f01ba
#@md:database plus outline:f1633
#@md:database refresh:f05c2
#@md:database refresh outline:f1634
#@md:database remove:f0d00
#@md:database remove outline:f1635
#@md:database search:f0866
#@md:database search outline:f1636
#@md:database settings:f0d01
#@md:database settings outline:f1637
#@md:database sync:f0cff
#@md:database sync outline:f1638
#@md:death star:f08d8
#@md:death star variant:f08d9
#@md:deathly hallows:f0b87
#@md:debian:f08da
#@md:debug step into:f01b9
#@md:debug step out:f01b8
#@md:debug step over:f01b7
#@md:decagram:f076c
#@md:decagram outline:f076d
#@md:decimal:f10a1
#@md:decimal comma:f10a2
#@md:decimal comma decrease:f10a3
#@md:decimal comma increase:f10a4
#@md:decimal decrease:f01b6
#@md:decimal increase:f01b5
#@md:delete:f01b4
#@md:delete alert:f10a5
#@md:delete alert outline:f10a6
#@md:delete circle:f0683
#@md:delete circle outline:f0b88
#@md:delete clock:f1556
#@md:delete clock outline:f1557
#@md:delete empty:f06cc
#@md:delete empty outline:f0e9d
#@md:delete forever:f05e8
#@md:delete forever outline:f0b89
#@md:delete off:f10a7
#@md:delete off outline:f10a8
#@md:delete outline:f09e7
#@md:delete restore:f0819
#@md:delete sweep:f05e9
#@md:delete sweep outline:f0c62
#@md:delete variant:f01b3
#@md:delta:f01c2
#@md:desk:f1239
#@md:desk lamp:f095f
#@md:deskphone:f01c3
#@md:desktop classic:f07c0
#@md:desktop mac:f01c4
#@md:desktop mac dashboard:f09e8
#@md:desktop tower:f01c5
#@md:desktop tower monitor:f0aab
#@md:details:f01c6
#@md:dev to:f0d6e
#@md:developer board:f0697
#@md:deviantart:f01c7
#@md:devices:f0fb0
#@md:dharmachakra:f094b
#@md:diabetes:f1126
#@md:dialpad:f061c
#@md:diameter:f0c63
#@md:diameter outline:f0c64
#@md:diameter variant:f0c65
#@md:diamond:f0b8a
#@md:diamond outline:f0b8b
#@md:diamond stone:f01c8
#@md:dice 1:f01ca
#@md:dice 1 outline:f114a
#@md:dice 2:f01cb
#@md:dice 2 outline:f114b
#@md:dice 3:f01cc
#@md:dice 3 outline:f114c
#@md:dice 4:f01cd
#@md:dice 4 outline:f114d
#@md:dice 5:f01ce
#@md:dice 5 outline:f114e
#@md:dice 6:f01cf
#@md:dice 6 outline:f114f
#@md:dice d10:f1153
#@md:dice d10 outline:f076f
#@md:dice d12:f1154
#@md:dice d12 outline:f0867
#@md:dice d20:f1155
#@md:dice d20 outline:f05ea
#@md:dice d4:f1150
#@md:dice d4 outline:f05eb
#@md:dice d6:f1151
#@md:dice d6 outline:f05ed
#@md:dice d8:f1152
#@md:dice d8 outline:f05ec
#@md:dice multiple:f076e
#@md:dice multiple outline:f1156
#@md:digital ocean:f1237
#@md:dip switch:f07c1
#@md:directions:f01d0
#@md:directions fork:f0641
#@md:disc:f05ee
#@md:disc alert:f01d1
#@md:disc player:f0960
#@md:discord:f066f
#@md:dishwasher:f0aac
#@md:dishwasher alert:f11b8
#@md:dishwasher off:f11b9
#@md:disqus:f01d2
#@md:distribute horizontal center:f11c9
#@md:distribute horizontal left:f11c8
#@md:distribute horizontal right:f11ca
#@md:distribute vertical bottom:f11cb
#@md:distribute vertical center:f11cc
#@md:distribute vertical top:f11cd
#@md:diversify:f1877
#@md:diving:f1977
#@md:diving flippers:f0dbf
#@md:diving helmet:f0dc0
#@md:diving scuba:f0dc1
#@md:diving scuba flag:f0dc2
#@md:diving scuba tank:f0dc3
#@md:diving scuba tank multiple:f0dc4
#@md:diving snorkel:f0dc5
#@md:division:f01d4
#@md:division box:f01d5
#@md:dlna:f0a41
#@md:dna:f0684
#@md:dns:f01d6
#@md:dns outline:f0b8c
#@md:dock bottom:f10a9
#@md:dock left:f10aa
#@md:dock right:f10ab
#@md:dock top:f1513
#@md:dock window:f10ac
#@md:docker:f0868
#@md:doctor:f0a42
#@md:dog:f0a43
#@md:dog service:f0aad
#@md:dog side:f0a44
#@md:dog side off:f16ee
#@md:dolby:f06b3
#@md:dolly:f0e9e
#@md:dolphin:f18b4
#@md:domain:f01d7
#@md:domain off:f0d6f
#@md:domain plus:f10ad
#@md:domain remove:f10ae
#@md:dome light:f141e
#@md:domino mask:f1023
#@md:donkey:f07c2
#@md:door:f081a
#@md:door closed:f081b
#@md:door closed lock:f10af
#@md:door open:f081c
#@md:door sliding:f181e
#@md:door sliding lock:f181f
#@md:door sliding open:f1820
#@md:doorbell:f12e6
#@md:doorbell video:f0869
#@md:dot net:f0aae
#@md:dots circle:f1978
#@md:dots grid:f15fc
#@md:dots hexagon:f15ff
#@md:dots horizontal:f01d8
#@md:dots horizontal circle:f07c3
#@md:dots horizontal circle outline:f0b8d
#@md:dots square:f15fd
#@md:dots triangle:f15fe
#@md:dots vertical:f01d9
#@md:dots vertical circle:f07c4
#@md:dots vertical circle outline:f0b8e
#@md:download:f01da
#@md:download box:f1462
#@md:download box outline:f1463
#@md:download circle:f1464
#@md:download circle outline:f1465
#@md:download lock:f1320
#@md:download lock outline:f1321
#@md:download multiple:f09e9
#@md:download network:f06f4
#@md:download network outline:f0c66
#@md:download off:f10b0
#@md:download off outline:f10b1
#@md:download outline:f0b8f
#@md:drag:f01db
#@md:drag horizontal:f01dc
#@md:drag horizontal variant:f12f0
#@md:drag variant:f0b90
#@md:drag vertical:f01dd
#@md:drag vertical variant:f12f1
#@md:drama masks:f0d02
#@md:draw:f0f49
#@md:draw pen:f19b9
#@md:drawing:f01de
#@md:drawing box:f01df
#@md:dresser:f0f4a
#@md:dresser outline:f0f4b
#@md:drone:f01e2
#@md:dropbox:f01e3
#@md:drupal:f01e4
#@md:duck:f01e5
#@md:dumbbell:f01e6
#@md:dump truck:f0c67
#@md:ear hearing:f07c5
#@md:ear hearing loop:f1aee
#@md:ear hearing off:f0a45
#@md:earbuds:f184f
#@md:earbuds off:f1850
#@md:earbuds off outline:f1851
#@md:earbuds outline:f1852
#@md:earth:f01e7
#@md:earth arrow right:f1311
#@md:earth box:f06cd
#@md:earth box minus:f1407
#@md:earth box off:f06ce
#@md:earth box plus:f1406
#@md:earth box remove:f1408
#@md:earth minus:f1404
#@md:earth off:f01e8
#@md:earth plus:f1403
#@md:earth remove:f1405
#@md:egg:f0aaf
#@md:egg easter:f0ab0
#@md:egg fried:f184a
#@md:egg off:f13f0
#@md:egg off outline:f13f1
#@md:egg outline:f13f2
#@md:eiffel tower:f156b
#@md:eight track:f09ea
#@md:eject:f01ea
#@md:eject outline:f0b91
#@md:electric switch:f0e9f
#@md:electric switch closed:f10d9
#@md:electron framework:f1024
#@md:elephant:f07c6
#@md:elevation decline:f01eb
#@md:elevation rise:f01ec
#@md:elevator:f01ed
#@md:elevator down:f12c2
#@md:elevator passenger:f1381
#@md:elevator passenger off:f1979
#@md:elevator passenger off outline:f197a
#@md:elevator passenger outline:f197b
#@md:elevator up:f12c1
#@md:ellipse:f0ea0
#@md:ellipse outline:f0ea1
#@md:email:f01ee
#@md:email alert:f06cf
#@md:email alert outline:f0d42
#@md:email box:f0d03
#@md:email check:f0ab1
#@md:email check outline:f0ab2
#@md:email edit:f0ee3
#@md:email edit outline:f0ee4
#@md:email fast:f186f
#@md:email fast outline:f1870
#@md:email lock:f01f1
#@md:email mark as unread:f0b92
#@md:email minus:f0ee5
#@md:email minus outline:f0ee6
#@md:email multiple:f0ee7
#@md:email multiple outline:f0ee8
#@md:email newsletter:f0fb1
#@md:email off:f13e3
#@md:email off outline:f13e4
#@md:email open:f01ef
#@md:email open multiple:f0ee9
#@md:email open multiple outline:f0eea
#@md:email open outline:f05ef
#@md:email outline:f01f0
#@md:email plus:f09eb
#@md:email plus outline:f09ec
#@md:email receive:f10da
#@md:email receive outline:f10db
#@md:email remove:f1661
#@md:email remove outline:f1662
#@md:email seal:f195b
#@md:email seal outline:f195c
#@md:email search:f0961
#@md:email search outline:f0962
#@md:email send:f10dc
#@md:email send outline:f10dd
#@md:email sync:f12c7
#@md:email sync outline:f12c8
#@md:email variant:f05f0
#@md:ember:f0b30
#@md:emby:f06b4
#@md:emoticon:f0c68
#@md:emoticon angry:f0c69
#@md:emoticon angry outline:f0c6a
#@md:emoticon confused:f10de
#@md:emoticon confused outline:f10df
#@md:emoticon cool:f0c6b
#@md:emoticon cool outline:f01f3
#@md:emoticon cry:f0c6c
#@md:emoticon cry outline:f0c6d
#@md:emoticon dead:f0c6e
#@md:emoticon dead outline:f069b
#@md:emoticon devil:f0c6f
#@md:emoticon devil outline:f01f4
#@md:emoticon excited:f0c70
#@md:emoticon excited outline:f069c
#@md:emoticon frown:f0f4c
#@md:emoticon frown outline:f0f4d
#@md:emoticon happy:f0c71
#@md:emoticon happy outline:f01f5
#@md:emoticon kiss:f0c72
#@md:emoticon kiss outline:f0c73
#@md:emoticon lol:f1214
#@md:emoticon lol outline:f1215
#@md:emoticon neutral:f0c74
#@md:emoticon neutral outline:f01f6
#@md:emoticon outline:f01f2
#@md:emoticon poop:f01f7
#@md:emoticon poop outline:f0c75
#@md:emoticon sad:f0c76
#@md:emoticon sad outline:f01f8
#@md:emoticon sick:f157c
#@md:emoticon sick outline:f157d
#@md:emoticon tongue:f01f9
#@md:emoticon tongue outline:f0c77
#@md:emoticon wink:f0c78
#@md:emoticon wink outline:f0c79
#@md:engine:f01fa
#@md:engine off:f0a46
#@md:engine off outline:f0a47
#@md:engine outline:f01fb
#@md:epsilon:f10e0
#@md:equal:f01fc
#@md:equal box:f01fd
#@md:equalizer:f0ea2
#@md:equalizer outline:f0ea3
#@md:eraser:f01fe
#@md:eraser variant:f0642
#@md:escalator:f01ff
#@md:escalator box:f1399
#@md:escalator down:f12c0
#@md:escalator up:f12bf
#@md:eslint:f0c7a
#@md:et:f0ab3
#@md:ethereum:f086a
#@md:ethernet:f0200
#@md:ethernet cable:f0201
#@md:ethernet cable off:f0202
#@md:ev plug ccs1:f1519
#@md:ev plug ccs2:f151a
#@md:ev plug chademo:f151b
#@md:ev plug tesla:f151c
#@md:ev plug type1:f151d
#@md:ev plug type2:f151e
#@md:ev station:f05f1
#@md:evernote:f0204
#@md:excavator:f1025
#@md:exclamation:f0205
#@md:exclamation thick:f1238
#@md:exit run:f0a48
#@md:exit to app:f0206
#@md:expand all:f0ab4
#@md:expand all outline:f0ab5
#@md:expansion card:f08ae
#@md:expansion card variant:f0fb2
#@md:exponent:f0963
#@md:exponent box:f0964
#@md:export:f0207
#@md:export variant:f0b93
#@md:eye:f0208
#@md:eye arrow left:f18fd
#@md:eye arrow left outline:f18fe
#@md:eye arrow right:f18ff
#@md:eye arrow right outline:f1900
#@md:eye check:f0d04
#@md:eye check outline:f0d05
#@md:eye circle:f0b94
#@md:eye circle outline:f0b95
#@md:eye minus:f1026
#@md:eye minus outline:f1027
#@md:eye off:f0209
#@md:eye off outline:f06d1
#@md:eye outline:f06d0
#@md:eye plus:f086b
#@md:eye plus outline:f086c
#@md:eye refresh:f197c
#@md:eye refresh outline:f197d
#@md:eye remove:f15e3
#@md:eye remove outline:f15e4
#@md:eye settings:f086d
#@md:eye settings outline:f086e
#@md:eyedropper:f020a
#@md:eyedropper minus:f13dd
#@md:eyedropper off:f13df
#@md:eyedropper plus:f13dc
#@md:eyedropper remove:f13de
#@md:eyedropper variant:f020b
#@md:face agent:f0d70
#@md:face man:f0643
#@md:face man outline:f0b96
#@md:face man profile:f0644
#@md:face man shimmer:f15cc
#@md:face man shimmer outline:f15cd
#@md:face mask:f1586
#@md:face mask outline:f1587
#@md:face recognition:f0c7b
#@md:face woman:f1077
#@md:face woman outline:f1078
#@md:face woman profile:f1076
#@md:face woman shimmer:f15ce
#@md:face woman shimmer outline:f15cf
#@md:facebook:f020c
#@md:facebook gaming:f07dd
#@md:facebook messenger:f020e
#@md:facebook workplace:f0b31
#@md:factory:f020f
#@md:family tree:f160e
#@md:fan:f0210
#@md:fan alert:f146c
#@md:fan auto:f171d
#@md:fan chevron down:f146d
#@md:fan chevron up:f146e
#@md:fan clock:f1a3a
#@md:fan minus:f1470
#@md:fan off:f081d
#@md:fan plus:f146f
#@md:fan remove:f1471
#@md:fan speed 1:f1472
#@md:fan speed 2:f1473
#@md:fan speed 3:f1474
#@md:fast forward:f0211
#@md:fast forward 10:f0d71
#@md:fast forward 15:f193a
#@md:fast forward 30:f0d06
#@md:fast forward 5:f11f8
#@md:fast forward 60:f160b
#@md:fast forward outline:f06d2
#@md:fax:f0212
#@md:feather:f06d3
#@md:feature search:f0a49
#@md:feature search outline:f0a4a
#@md:fedora:f08db
#@md:fence:f179a
#@md:fence electric:f17f6
#@md:fencing:f14c1
#@md:ferris wheel:f0ea4
#@md:ferry:f0213
#@md:file:f0214
#@md:file account:f073b
#@md:file account outline:f1028
#@md:file alert:f0a4b
#@md:file alert outline:f0a4c
#@md:file arrow left right:f1a93
#@md:file arrow left right outline:f1a94
#@md:file arrow up down:f1a95
#@md:file arrow up down outline:f1a96
#@md:file cabinet:f0ab6
#@md:file cad:f0eeb
#@md:file cad box:f0eec
#@md:file cancel:f0dc6
#@md:file cancel outline:f0dc7
#@md:file certificate:f1186
#@md:file certificate outline:f1187
#@md:file chart:f0215
#@md:file chart check:f19c6
#@md:file chart check outline:f19c7
#@md:file chart outline:f1029
#@md:file check:f0216
#@md:file check outline:f0e29
#@md:file clock:f12e1
#@md:file clock outline:f12e2
#@md:file cloud:f0217
#@md:file cloud outline:f102a
#@md:file code:f022e
#@md:file code outline:f102b
#@md:file cog:f107b
#@md:file cog outline:f107c
#@md:file compare:f08aa
#@md:file delimited:f0218
#@md:file delimited outline:f0ea5
#@md:file document:f0219
#@md:file document alert:f1a97
#@md:file document alert outline:f1a98
#@md:file document check:f1a99
#@md:file document check outline:f1a9a
#@md:file document edit:f0dc8
#@md:file document edit outline:f0dc9
#@md:file document minus:f1a9b
#@md:file document minus outline:f1a9c
#@md:file document multiple:f1517
#@md:file document multiple outline:f1518
#@md:file document outline:f09ee
#@md:file document plus:f1a9d
#@md:file document plus outline:f1a9e
#@md:file document remove:f1a9f
#@md:file document remove outline:f1aa0
#@md:file download:f0965
#@md:file download outline:f0966
#@md:file edit:f11e7
#@md:file edit outline:f11e8
#@md:file excel:f021b
#@md:file excel box:f021c
#@md:file excel box outline:f102c
#@md:file excel outline:f102d
#@md:file export:f021d
#@md:file export outline:f102e
#@md:file eye:f0dca
#@md:file eye outline:f0dcb
#@md:file find:f021e
#@md:file find outline:f0b97
#@md:file gif box:f0d78
#@md:file hidden:f0613
#@md:file image:f021f
#@md:file image marker:f1772
#@md:file image marker outline:f1773
#@md:file image minus:f193b
#@md:file image minus outline:f193c
#@md:file image outline:f0eb0
#@md:file image plus:f193d
#@md:file image plus outline:f193e
#@md:file image remove:f193f
#@md:file image remove outline:f1940
#@md:file import:f0220
#@md:file import outline:f102f
#@md:file jpg box:f0225
#@md:file key:f1184
#@md:file key outline:f1185
#@md:file link:f1177
#@md:file link outline:f1178
#@md:file lock:f0221
#@md:file lock open:f19c8
#@md:file lock open outline:f19c9
#@md:file lock outline:f1030
#@md:file marker:f1774
#@md:file marker outline:f1775
#@md:file minus:f1aa1
#@md:file minus outline:f1aa2
#@md:file move:f0ab9
#@md:file move outline:f1031
#@md:file multiple:f0222
#@md:file multiple outline:f1032
#@md:file music:f0223
#@md:file music outline:f0e2a
#@md:file outline:f0224
#@md:file pdf box:f0226
#@md:file percent:f081e
#@md:file percent outline:f1033
#@md:file phone:f1179
#@md:file phone outline:f117a
#@md:file plus:f0752
#@md:file plus outline:f0eed
#@md:file png box:f0e2d
#@md:file powerpoint:f0227
#@md:file powerpoint box:f0228
#@md:file powerpoint box outline:f1034
#@md:file powerpoint outline:f1035
#@md:file presentation box:f0229
#@md:file question:f086f
#@md:file question outline:f1036
#@md:file refresh:f0918
#@md:file refresh outline:f0541
#@md:file remove:f0b98
#@md:file remove outline:f1037
#@md:file replace:f0b32
#@md:file replace outline:f0b33
#@md:file restore:f0670
#@md:file restore outline:f1038
#@md:file rotate left:f1a3b
#@md:file rotate left outline:f1a3c
#@md:file rotate right:f1a3d
#@md:file rotate right outline:f1a3e
#@md:file search:f0c7c
#@md:file search outline:f0c7d
#@md:file send:f022a
#@md:file send outline:f1039
#@md:file settings:f1079
#@md:file settings outline:f107a
#@md:file sign:f19c3
#@md:file star:f103a
#@md:file star outline:f103b
#@md:file swap:f0fb4
#@md:file swap outline:f0fb5
#@md:file sync:f1216
#@md:file sync outline:f1217
#@md:file table:f0c7e
#@md:file table box:f10e1
#@md:file table box multiple:f10e2
#@md:file table box multiple outline:f10e3
#@md:file table box outline:f10e4
#@md:file table outline:f0c7f
#@md:file tree:f0645
#@md:file tree outline:f13d2
#@md:file undo:f08dc
#@md:file undo outline:f103c
#@md:file upload:f0a4d
#@md:file upload outline:f0a4e
#@md:file video:f022b
#@md:file video outline:f0e2c
#@md:file word:f022c
#@md:file word box:f022d
#@md:file word box outline:f103d
#@md:file word outline:f103e
#@md:film:f022f
#@md:filmstrip:f0230
#@md:filmstrip box:f0332
#@md:filmstrip box multiple:f0d18
#@md:filmstrip off:f0231
#@md:filter:f0232
#@md:filter check:f18ec
#@md:filter check outline:f18ed
#@md:filter cog:f1aa3
#@md:filter cog outline:f1aa4
#@md:filter menu:f10e5
#@md:filter menu outline:f10e6
#@md:filter minus:f0eee
#@md:filter minus outline:f0eef
#@md:filter multiple:f1a3f
#@md:filter multiple outline:f1a40
#@md:filter off:f14ef
#@md:filter off outline:f14f0
#@md:filter outline:f0233
#@md:filter plus:f0ef0
#@md:filter plus outline:f0ef1
#@md:filter remove:f0234
#@md:filter remove outline:f0235
#@md:filter settings:f1aa5
#@md:filter settings outline:f1aa6
#@md:filter variant:f0236
#@md:filter variant minus:f1112
#@md:filter variant plus:f1113
#@md:filter variant remove:f103f
#@md:finance:f081f
#@md:find replace:f06d4
#@md:fingerprint:f0237
#@md:fingerprint off:f0eb1
#@md:fire:f0238
#@md:fire alert:f15d7
#@md:fire circle:f1807
#@md:fire extinguisher:f0ef2
#@md:fire hydrant:f1137
#@md:fire hydrant alert:f1138
#@md:fire hydrant off:f1139
#@md:fire off:f1722
#@md:fire truck:f08ab
#@md:firebase:f0967
#@md:firefox:f0239
#@md:fireplace:f0e2e
#@md:fireplace off:f0e2f
#@md:firewire:f05be
#@md:firework:f0e30
#@md:firework off:f1723
#@md:fish:f023a
#@md:fish off:f13f3
#@md:fishbowl:f0ef3
#@md:fishbowl outline:f0ef4
#@md:fit to page:f0ef5
#@md:fit to page outline:f0ef6
#@md:fit to screen:f18f4
#@md:fit to screen outline:f18f5
#@md:flag:f023b
#@md:flag checkered:f023c
#@md:flag minus:f0b99
#@md:flag minus outline:f10b2
#@md:flag off:f18ee
#@md:flag off outline:f18ef
#@md:flag outline:f023d
#@md:flag plus:f0b9a
#@md:flag plus outline:f10b3
#@md:flag remove:f0b9b
#@md:flag remove outline:f10b4
#@md:flag triangle:f023f
#@md:flag variant:f0240
#@md:flag variant outline:f023e
#@md:flare:f0d72
#@md:flash:f0241
#@md:flash alert:f0ef7
#@md:flash alert outline:f0ef8
#@md:flash auto:f0242
#@md:flash off:f0243
#@md:flash outline:f06d5
#@md:flash red eye:f067b
#@md:flashlight:f0244
#@md:flashlight off:f0245
#@md:flask:f0093
#@md:flask empty:f0094
#@md:flask empty minus:f123a
#@md:flask empty minus outline:f123b
#@md:flask empty off:f13f4
#@md:flask empty off outline:f13f5
#@md:flask empty outline:f0095
#@md:flask empty plus:f123c
#@md:flask empty plus outline:f123d
#@md:flask empty remove:f123e
#@md:flask empty remove outline:f123f
#@md:flask minus:f1240
#@md:flask minus outline:f1241
#@md:flask off:f13f6
#@md:flask off outline:f13f7
#@md:flask outline:f0096
#@md:flask plus:f1242
#@md:flask plus outline:f1243
#@md:flask remove:f1244
#@md:flask remove outline:f1245
#@md:flask round bottom:f124b
#@md:flask round bottom empty:f124c
#@md:flask round bottom empty outline:f124d
#@md:flask round bottom outline:f124e
#@md:fleur de lis:f1303
#@md:flip horizontal:f10e7
#@md:flip to back:f0247
#@md:flip to front:f0248
#@md:flip vertical:f10e8
#@md:floor lamp:f08dd
#@md:floor lamp dual:f1040
#@md:floor lamp dual outline:f17ce
#@md:floor lamp outline:f17c8
#@md:floor lamp torchiere:f1747
#@md:floor lamp torchiere outline:f17d6
#@md:floor lamp torchiere variant:f1041
#@md:floor lamp torchiere variant outline:f17cf
#@md:floor plan:f0821
#@md:floppy:f0249
#@md:floppy variant:f09ef
#@md:flower:f024a
#@md:flower outline:f09f0
#@md:flower pollen:f1885
#@md:flower pollen outline:f1886
#@md:flower poppy:f0d08
#@md:flower tulip:f09f1
#@md:flower tulip outline:f09f2
#@md:focus auto:f0f4e
#@md:focus field:f0f4f
#@md:focus field horizontal:f0f50
#@md:focus field vertical:f0f51
#@md:folder:f024b
#@md:folder account:f024c
#@md:folder account outline:f0b9c
#@md:folder alert:f0dcc
#@md:folder alert outline:f0dcd
#@md:folder arrow down:f19e8
#@md:folder arrow down outline:f19e9
#@md:folder arrow left:f19ea
#@md:folder arrow left outline:f19eb
#@md:folder arrow left right:f19ec
#@md:folder arrow left right outline:f19ed
#@md:folder arrow right:f19ee
#@md:folder arrow right outline:f19ef
#@md:folder arrow up:f19f0
#@md:folder arrow up down:f19f1
#@md:folder arrow up down outline:f19f2
#@md:folder arrow up outline:f19f3
#@md:folder cancel:f19f4
#@md:folder cancel outline:f19f5
#@md:folder check:f197e
#@md:folder check outline:f197f
#@md:folder clock:f0aba
#@md:folder clock outline:f0abb
#@md:folder cog:f107f
#@md:folder cog outline:f1080
#@md:folder download:f024d
#@md:folder download outline:f10e9
#@md:folder edit:f08de
#@md:folder edit outline:f0dce
#@md:folder eye:f178a
#@md:folder eye outline:f178b
#@md:folder file:f19f6
#@md:folder file outline:f19f7
#@md:folder google drive:f024e
#@md:folder heart:f10ea
#@md:folder heart outline:f10eb
#@md:folder hidden:f179e
#@md:folder home:f10b5
#@md:folder home outline:f10b6
#@md:folder image:f024f
#@md:folder information:f10b7
#@md:folder information outline:f10b8
#@md:folder key:f08ac
#@md:folder key network:f08ad
#@md:folder key network outline:f0c80
#@md:folder key outline:f10ec
#@md:folder lock:f0250
#@md:folder lock open:f0251
#@md:folder lock open outline:f1aa7
#@md:folder lock outline:f1aa8
#@md:folder marker:f126d
#@md:folder marker outline:f126e
#@md:folder move:f0252
#@md:folder move outline:f1246
#@md:folder multiple:f0253
#@md:folder multiple image:f0254
#@md:folder multiple outline:f0255
#@md:folder multiple plus:f147e
#@md:folder multiple plus outline:f147f
#@md:folder music:f1359
#@md:folder music outline:f135a
#@md:folder network:f0870
#@md:folder network outline:f0c81
#@md:folder off:f19f8
#@md:folder off outline:f19f9
#@md:folder open:f0770
#@md:folder open outline:f0dcf
#@md:folder outline:f0256
#@md:folder play:f19fa
#@md:folder play outline:f19fb
#@md:folder plus:f0257
#@md:folder plus outline:f0b9d
#@md:folder pound:f0d09
#@md:folder pound outline:f0d0a
#@md:folder question:f19ca
#@md:folder question outline:f19cb
#@md:folder refresh:f0749
#@md:folder refresh outline:f0542
#@md:folder remove:f0258
#@md:folder remove outline:f0b9e
#@md:folder search:f0968
#@md:folder search outline:f0969
#@md:folder settings:f107d
#@md:folder settings outline:f107e
#@md:folder star:f069d
#@md:folder star multiple:f13d3
#@md:folder star multiple outline:f13d4
#@md:folder star outline:f0b9f
#@md:folder swap:f0fb6
#@md:folder swap outline:f0fb7
#@md:folder sync:f0d0b
#@md:folder sync outline:f0d0c
#@md:folder table:f12e3
#@md:folder table outline:f12e4
#@md:folder text:f0c82
#@md:folder text outline:f0c83
#@md:folder upload:f0259
#@md:folder upload outline:f10ed
#@md:folder wrench:f19fc
#@md:folder wrench outline:f19fd
#@md:folder zip:f06eb
#@md:folder zip outline:f07b9
#@md:font awesome:f003a
#@md:food:f025a
#@md:food apple:f025b
#@md:food apple outline:f0c84
#@md:food croissant:f07c8
#@md:food drumstick:f141f
#@md:food drumstick off:f1468
#@md:food drumstick off outline:f1469
#@md:food drumstick outline:f1420
#@md:food fork drink:f05f2
#@md:food halal:f1572
#@md:food hot dog:f184b
#@md:food kosher:f1573
#@md:food off:f05f3
#@md:food off outline:f1915
#@md:food outline:f1916
#@md:food steak:f146a
#@md:food steak off:f146b
#@md:food takeout box:f1836
#@md:food takeout box outline:f1837
#@md:food turkey:f171c
#@md:food variant:f025c
#@md:food variant off:f13e5
#@md:foot print:f0f52
#@md:football:f025d
#@md:football australian:f025e
#@md:football helmet:f025f
#@md:forest:f1897
#@md:forklift:f07c9
#@md:form dropdown:f1400
#@md:form select:f1401
#@md:form textarea:f1095
#@md:form textbox:f060e
#@md:form textbox lock:f135d
#@md:form textbox password:f07f5
#@md:format align bottom:f0753
#@md:format align center:f0260
#@md:format align justify:f0261
#@md:format align left:f0262
#@md:format align middle:f0754
#@md:format align right:f0263
#@md:format align top:f0755
#@md:format annotation minus:f0abc
#@md:format annotation plus:f0646
#@md:format bold:f0264
#@md:format clear:f0265
#@md:format color fill:f0266
#@md:format color highlight:f0e31
#@md:format color marker cancel:f1313
#@md:format color text:f069e
#@md:format columns:f08df
#@md:format float center:f0267
#@md:format float left:f0268
#@md:format float none:f0269
#@md:format float right:f026a
#@md:format font:f06d6
#@md:format font size decrease:f09f3
#@md:format font size increase:f09f4
#@md:format header 1:f026b
#@md:format header 2:f026c
#@md:format header 3:f026d
#@md:format header 4:f026e
#@md:format header 5:f026f
#@md:format header 6:f0270
#@md:format header decrease:f0271
#@md:format header equal:f0272
#@md:format header increase:f0273
#@md:format header pound:f0274
#@md:format horizontal align center:f061e
#@md:format horizontal align left:f061f
#@md:format horizontal align right:f0620
#@md:format indent decrease:f0275
#@md:format indent increase:f0276
#@md:format italic:f0277
#@md:format letter case:f0b34
#@md:format letter case lower:f0b35
#@md:format letter case upper:f0b36
#@md:format letter ends with:f0fb8
#@md:format letter matches:f0fb9
#@md:format letter spacing:f1956
#@md:format letter starts with:f0fba
#@md:format line spacing:f0278
#@md:format line style:f05c8
#@md:format line weight:f05c9
#@md:format list bulleted:f0279
#@md:format list bulleted square:f0dd0
#@md:format list bulleted triangle:f0eb2
#@md:format list bulleted type:f027a
#@md:format list checkbox:f096a
#@md:format list checks:f0756
#@md:format list group:f1860
#@md:format list numbered:f027b
#@md:format list numbered rtl:f0d0d
#@md:format list text:f126f
#@md:format overline:f0eb3
#@md:format page break:f06d7
#@md:format page split:f1917
#@md:format paint:f027c
#@md:format paragraph:f027d
#@md:format pilcrow:f06d8
#@md:format quote close:f027e
#@md:format quote close outline:f11a8
#@md:format quote open:f0757
#@md:format quote open outline:f11a7
#@md:format rotate 90:f06aa
#@md:format section:f069f
#@md:format size:f027f
#@md:format strikethrough:f0280
#@md:format strikethrough variant:f0281
#@md:format subscript:f0282
#@md:format superscript:f0283
#@md:format text:f0284
#@md:format text rotation angle down:f0fbb
#@md:format text rotation angle up:f0fbc
#@md:format text rotation down:f0d73
#@md:format text rotation down vertical:f0fbd
#@md:format text rotation none:f0d74
#@md:format text rotation up:f0fbe
#@md:format text rotation vertical:f0fbf
#@md:format text variant:f0e32
#@md:format text variant outline:f150f
#@md:format text wrapping clip:f0d0e
#@md:format text wrapping overflow:f0d0f
#@md:format text wrapping wrap:f0d10
#@md:format textbox:f0d11
#@md:format textdirection l to r:f0285
#@md:format textdirection r to l:f0286
#@md:format title:f05f4
#@md:format underline:f0287
#@md:format underline wavy:f18e9
#@md:format vertical align bottom:f0621
#@md:format vertical align center:f0622
#@md:format vertical align top:f0623
#@md:format wrap inline:f0288
#@md:format wrap square:f0289
#@md:format wrap tight:f028a
#@md:format wrap top bottom:f028b
#@md:forum:f028c
#@md:forum minus:f1aa9
#@md:forum minus outline:f1aaa
#@md:forum outline:f0822
#@md:forum plus:f1aab
#@md:forum plus outline:f1aac
#@md:forum remove:f1aad
#@md:forum remove outline:f1aae
#@md:forward:f028d
#@md:forwardburger:f0d75
#@md:fountain:f096b
#@md:fountain pen:f0d12
#@md:fountain pen tip:f0d13
#@md:fraction one half:f1992
#@md:freebsd:f08e0
#@md:french fries:f1957
#@md:frequently asked questions:f0eb4
#@md:fridge:f0290
#@md:fridge alert:f11b1
#@md:fridge alert outline:f11b2
#@md:fridge bottom:f0292
#@md:fridge industrial:f15ee
#@md:fridge industrial alert:f15ef
#@md:fridge industrial alert outline:f15f0
#@md:fridge industrial off:f15f1
#@md:fridge industrial off outline:f15f2
#@md:fridge industrial outline:f15f3
#@md:fridge off:f11af
#@md:fridge off outline:f11b0
#@md:fridge outline:f028f
#@md:fridge top:f0291
#@md:fridge variant:f15f4
#@md:fridge variant alert:f15f5
#@md:fridge variant alert outline:f15f6
#@md:fridge variant off:f15f7
#@md:fridge variant off outline:f15f8
#@md:fridge variant outline:f15f9
#@md:fruit cherries:f1042
#@md:fruit cherries off:f13f8
#@md:fruit citrus:f1043
#@md:fruit citrus off:f13f9
#@md:fruit grapes:f1044
#@md:fruit grapes outline:f1045
#@md:fruit pear:f1a0e
#@md:fruit pineapple:f1046
#@md:fruit watermelon:f1047
#@md:fuel:f07ca
#@md:fuel cell:f18b5
#@md:fullscreen:f0293
#@md:fullscreen exit:f0294
#@md:function:f0295
#@md:function variant:f0871
#@md:furigana horizontal:f1081
#@md:furigana vertical:f1082
#@md:fuse:f0c85
#@md:fuse alert:f142d
#@md:fuse blade:f0c86
#@md:fuse off:f142c
#@md:gamepad:f0296
#@md:gamepad circle:f0e33
#@md:gamepad circle down:f0e34
#@md:gamepad circle left:f0e35
#@md:gamepad circle outline:f0e36
#@md:gamepad circle right:f0e37
#@md:gamepad circle up:f0e38
#@md:gamepad down:f0e39
#@md:gamepad left:f0e3a
#@md:gamepad outline:f1919
#@md:gamepad right:f0e3b
#@md:gamepad round:f0e3c
#@md:gamepad round down:f0e3d
#@md:gamepad round left:f0e3e
#@md:gamepad round outline:f0e3f
#@md:gamepad round right:f0e40
#@md:gamepad round up:f0e41
#@md:gamepad square:f0eb5
#@md:gamepad square outline:f0eb6
#@md:gamepad up:f0e42
#@md:gamepad variant:f0297
#@md:gamepad variant outline:f0eb7
#@md:gamma:f10ee
#@md:gantry crane:f0dd1
#@md:garage:f06d9
#@md:garage alert:f0872
#@md:garage alert variant:f12d5
#@md:garage lock:f17fb
#@md:garage open:f06da
#@md:garage open variant:f12d4
#@md:garage variant:f12d3
#@md:garage variant lock:f17fc
#@md:gas burner:f1a1b
#@md:gas cylinder:f0647
#@md:gas station:f0298
#@md:gas station off:f1409
#@md:gas station off outline:f140a
#@md:gas station outline:f0eb8
#@md:gate:f0299
#@md:gate alert:f17f8
#@md:gate and:f08e1
#@md:gate arrow left:f17f7
#@md:gate arrow right:f1169
#@md:gate nand:f08e2
#@md:gate nor:f08e3
#@md:gate not:f08e4
#@md:gate open:f116a
#@md:gate or:f08e5
#@md:gate xnor:f08e6
#@md:gate xor:f08e7
#@md:gatsby:f0e43
#@md:gauge:f029a
#@md:gauge empty:f0873
#@md:gauge full:f0874
#@md:gauge low:f0875
#@md:gavel:f029b
#@md:gender female:f029c
#@md:gender male:f029d
#@md:gender male female:f029e
#@md:gender male female variant:f113f
#@md:gender non binary:f1140
#@md:gender transgender:f029f
#@md:gentoo:f08e8
#@md:gesture:f07cb
#@md:gesture double tap:f073c
#@md:gesture pinch:f0abd
#@md:gesture spread:f0abe
#@md:gesture swipe:f0d76
#@md:gesture swipe down:f073d
#@md:gesture swipe horizontal:f0abf
#@md:gesture swipe left:f073e
#@md:gesture swipe right:f073f
#@md:gesture swipe up:f0740
#@md:gesture swipe vertical:f0ac0
#@md:gesture tap:f0741
#@md:gesture tap box:f12a9
#@md:gesture tap button:f12a8
#@md:gesture tap hold:f0d77
#@md:gesture two double tap:f0742
#@md:gesture two tap:f0743
#@md:ghost:f02a0
#@md:ghost off:f09f5
#@md:ghost off outline:f165c
#@md:ghost outline:f165d
#@md:gift:f0e44
#@md:gift off:f16ef
#@md:gift off outline:f16f0
#@md:gift open:f16f1
#@md:gift open outline:f16f2
#@md:gift outline:f02a1
#@md:git:f02a2
#@md:github:f02a4
#@md:gitlab:f0ba0
#@md:glass cocktail:f0356
#@md:glass cocktail off:f15e6
#@md:glass flute:f02a5
#@md:glass fragile:f1873
#@md:glass mug:f02a6
#@md:glass mug off:f15e7
#@md:glass mug variant:f1116
#@md:glass mug variant off:f15e8
#@md:glass pint outline:f130d
#@md:glass stange:f02a7
#@md:glass tulip:f02a8
#@md:glass wine:f0876
#@md:glasses:f02aa
#@md:globe light:f12d7
#@md:globe model:f08e9
#@md:gmail:f02ab
#@md:gnome:f02ac
#@md:go kart:f0d79
#@md:go kart track:f0d7a
#@md:gog:f0ba1
#@md:gold:f124f
#@md:golf:f0823
#@md:golf cart:f11a4
#@md:golf tee:f1083
#@md:gondola:f0686
#@md:goodreads:f0d7b
#@md:google:f02ad
#@md:google ads:f0c87
#@md:google analytics:f07cc
#@md:google assistant:f07cd
#@md:google cardboard:f02ae
#@md:google chrome:f02af
#@md:google circles:f02b0
#@md:google circles communities:f02b1
#@md:google circles extended:f02b2
#@md:google circles group:f02b3
#@md:google classroom:f02c0
#@md:google cloud:f11f6
#@md:google controller:f02b4
#@md:google controller off:f02b5
#@md:google downasaur:f1362
#@md:google drive:f02b6
#@md:google earth:f02b7
#@md:google fit:f096c
#@md:google glass:f02b8
#@md:google hangouts:f02c9
#@md:google home:f0824
#@md:google keep:f06dc
#@md:google lens:f09f6
#@md:google maps:f05f5
#@md:google my business:f1048
#@md:google nearby:f02b9
#@md:google play:f02bc
#@md:google plus:f02bd
#@md:google podcast:f0eb9
#@md:google spreadsheet:f09f7
#@md:google street view:f0c88
#@md:google translate:f02bf
#@md:gradient horizontal:f174a
#@md:gradient vertical:f06a0
#@md:grain:f0d7c
#@md:graph:f1049
#@md:graph outline:f104a
#@md:graphql:f0877
#@md:grass:f1510
#@md:grave stone:f0ba2
#@md:grease pencil:f0648
#@md:greater than:f096d
#@md:greater than or equal:f096e
#@md:greenhouse:f002d
#@md:grid:f02c1
#@md:grid large:f0758
#@md:grid off:f02c2
#@md:grill:f0e45
#@md:grill outline:f118a
#@md:group:f02c3
#@md:guitar acoustic:f0771
#@md:guitar electric:f02c4
#@md:guitar pick:f02c5
#@md:guitar pick outline:f02c6
#@md:guy fawkes mask:f0825
#@md:gymnastics:f1a41
#@md:hail:f0ac1
#@md:hair dryer:f10ef
#@md:hair dryer outline:f10f0
#@md:halloween:f0ba3
#@md:hamburger:f0685
#@md:hamburger check:f1776
#@md:hamburger minus:f1777
#@md:hamburger off:f1778
#@md:hamburger plus:f1779
#@md:hamburger remove:f177a
#@md:hammer:f08ea
#@md:hammer screwdriver:f1322
#@md:hammer sickle:f1887
#@md:hammer wrench:f1323
#@md:hand back left:f0e46
#@md:hand back left off:f1830
#@md:hand back left off outline:f1832
#@md:hand back left outline:f182c
#@md:hand back right:f0e47
#@md:hand back right off:f1831
#@md:hand back right off outline:f1833
#@md:hand back right outline:f182d
#@md:hand clap:f194b
#@md:hand clap off:f1a42
#@md:hand coin:f188f
#@md:hand coin outline:f1890
#@md:hand extended:f18b6
#@md:hand extended outline:f18b7
#@md:hand front left:f182b
#@md:hand front left outline:f182e
#@md:hand front right:f0a4f
#@md:hand front right outline:f182f
#@md:hand heart:f10f1
#@md:hand heart outline:f157e
#@md:hand okay:f0a50
#@md:hand peace:f0a51
#@md:hand peace variant:f0a52
#@md:hand pointing down:f0a53
#@md:hand pointing left:f0a54
#@md:hand pointing right:f02c7
#@md:hand pointing up:f0a55
#@md:hand saw:f0e48
#@md:hand wash:f157f
#@md:hand wash outline:f1580
#@md:hand water:f139f
#@md:hand wave:f1821
#@md:hand wave outline:f1822
#@md:handball:f0f53
#@md:handcuffs:f113e
#@md:hands pray:f0579
#@md:handshake:f1218
#@md:handshake outline:f15a1
#@md:hanger:f02c8
#@md:hard hat:f096f
#@md:harddisk:f02ca
#@md:harddisk plus:f104b
#@md:harddisk remove:f104c
#@md:hat fedora:f0ba4
#@md:hazard lights:f0c89
#@md:hdr:f0d7d
#@md:hdr off:f0d7e
#@md:head:f135e
#@md:head alert:f1338
#@md:head alert outline:f1339
#@md:head check:f133a
#@md:head check outline:f133b
#@md:head cog:f133c
#@md:head cog outline:f133d
#@md:head dots horizontal:f133e
#@md:head dots horizontal outline:f133f
#@md:head flash:f1340
#@md:head flash outline:f1341
#@md:head heart:f1342
#@md:head heart outline:f1343
#@md:head lightbulb:f1344
#@md:head lightbulb outline:f1345
#@md:head minus:f1346
#@md:head minus outline:f1347
#@md:head outline:f135f
#@md:head plus:f1348
#@md:head plus outline:f1349
#@md:head question:f134a
#@md:head question outline:f134b
#@md:head remove:f134c
#@md:head remove outline:f134d
#@md:head snowflake:f134e
#@md:head snowflake outline:f134f
#@md:head sync:f1350
#@md:head sync outline:f1351
#@md:headphones:f02cb
#@md:headphones bluetooth:f0970
#@md:headphones box:f02cc
#@md:headphones off:f07ce
#@md:headphones settings:f02cd
#@md:headset:f02ce
#@md:headset dock:f02cf
#@md:headset off:f02d0
#@md:heart:f02d1
#@md:heart box:f02d2
#@md:heart box outline:f02d3
#@md:heart broken:f02d4
#@md:heart broken outline:f0d14
#@md:heart circle:f0971
#@md:heart circle outline:f0972
#@md:heart cog:f1663
#@md:heart cog outline:f1664
#@md:heart flash:f0ef9
#@md:heart half:f06df
#@md:heart half full:f06de
#@md:heart half outline:f06e0
#@md:heart minus:f142f
#@md:heart minus outline:f1432
#@md:heart multiple:f0a56
#@md:heart multiple outline:f0a57
#@md:heart off:f0759
#@md:heart off outline:f1434
#@md:heart outline:f02d5
#@md:heart plus:f142e
#@md:heart plus outline:f1431
#@md:heart pulse:f05f6
#@md:heart remove:f1430
#@md:heart remove outline:f1433
#@md:heart settings:f1665
#@md:heart settings outline:f1666
#@md:heat pump:f1a43
#@md:heat pump outline:f1a44
#@md:heat wave:f1a45
#@md:heating coil:f1aaf
#@md:helicopter:f0ac2
#@md:help:f02d6
#@md:help box:f078b
#@md:help circle:f02d7
#@md:help circle outline:f0625
#@md:help network:f06f5
#@md:help network outline:f0c8a
#@md:help rhombus:f0ba5
#@md:help rhombus outline:f0ba6
#@md:hexadecimal:f12a7
#@md:hexagon:f02d8
#@md:hexagon multiple:f06e1
#@md:hexagon multiple outline:f10f2
#@md:hexagon outline:f02d9
#@md:hexagon slice 1:f0ac3
#@md:hexagon slice 2:f0ac4
#@md:hexagon slice 3:f0ac5
#@md:hexagon slice 4:f0ac6
#@md:hexagon slice 5:f0ac7
#@md:hexagon slice 6:f0ac8
#@md:hexagram:f0ac9
#@md:hexagram outline:f0aca
#@md:high definition:f07cf
#@md:high definition box:f0878
#@md:highway:f05f7
#@md:hiking:f0d7f
#@md:history:f02da
#@md:hockey puck:f0879
#@md:hockey sticks:f087a
#@md:hololens:f02db
#@md:home:f02dc
#@md:home account:f0826
#@md:home alert:f087b
#@md:home alert outline:f15d0
#@md:home analytics:f0eba
#@md:home assistant:f07d0
#@md:home automation:f07d1
#@md:home battery:f1901
#@md:home battery outline:f1902
#@md:home circle:f07d2
#@md:home circle outline:f104d
#@md:home city:f0d15
#@md:home city outline:f0d16
#@md:home clock:f1a12
#@md:home clock outline:f1a13
#@md:home edit:f1159
#@md:home edit outline:f115a
#@md:home export outline:f0f9b
#@md:home flood:f0efa
#@md:home floor 0:f0dd2
#@md:home floor 1:f0d80
#@md:home floor 2:f0d81
#@md:home floor 3:f0d82
#@md:home floor a:f0d83
#@md:home floor b:f0d84
#@md:home floor g:f0d85
#@md:home floor l:f0d86
#@md:home floor negative 1:f0dd3
#@md:home group:f0dd4
#@md:home group minus:f19c1
#@md:home group plus:f19c0
#@md:home group remove:f19c2
#@md:home heart:f0827
#@md:home import outline:f0f9c
#@md:home lightbulb:f1251
#@md:home lightbulb outline:f1252
#@md:home lightning bolt:f1903
#@md:home lightning bolt outline:f1904
#@md:home lock:f08eb
#@md:home lock open:f08ec
#@md:home map marker:f05f8
#@md:home minus:f0974
#@md:home minus outline:f13d5
#@md:home modern:f02dd
#@md:home off:f1a46
#@md:home off outline:f1a47
#@md:home outline:f06a1
#@md:home plus:f0975
#@md:home plus outline:f13d6
#@md:home remove:f1247
#@md:home remove outline:f13d7
#@md:home roof:f112b
#@md:home search:f13b0
#@md:home search outline:f13b1
#@md:home switch:f1794
#@md:home switch outline:f1795
#@md:home thermometer:f0f54
#@md:home thermometer outline:f0f55
#@md:home variant:f02de
#@md:home variant outline:f0ba7
#@md:hook:f06e2
#@md:hook off:f06e3
#@md:hoop house:f0e56
#@md:hops:f02df
#@md:horizontal rotate clockwise:f10f3
#@md:horizontal rotate counterclockwise:f10f4
#@md:horse:f15bf
#@md:horse human:f15c0
#@md:horse variant:f15c1
#@md:horse variant fast:f186e
#@md:horseshoe:f0a58
#@md:hospital:f0ff6
#@md:hospital box:f02e0
#@md:hospital box outline:f0ff7
#@md:hospital building:f02e1
#@md:hospital marker:f02e2
#@md:hot tub:f0828
#@md:hours 24:f1478
#@md:hubspot:f0d17
#@md:hulu:f0829
#@md:human:f02e6
#@md:human baby changing table:f138b
#@md:human cane:f1581
#@md:human capacity decrease:f159b
#@md:human capacity increase:f159c
#@md:human child:f02e7
#@md:human dolly:f1980
#@md:human edit:f14e8
#@md:human female:f0649
#@md:human female boy:f0a59
#@md:human female dance:f15c9
#@md:human female female:f0a5a
#@md:human female girl:f0a5b
#@md:human greeting:f17c4
#@md:human greeting proximity:f159d
#@md:human greeting variant:f064a
#@md:human handsdown:f064b
#@md:human handsup:f064c
#@md:human male:f064d
#@md:human male board:f0890
#@md:human male board poll:f0846
#@md:human male boy:f0a5c
#@md:human male child:f138c
#@md:human male female:f02e8
#@md:human male female child:f1823
#@md:human male girl:f0a5d
#@md:human male height:f0efb
#@md:human male height variant:f0efc
#@md:human male male:f0a5e
#@md:human non binary:f1848
#@md:human pregnant:f05cf
#@md:human queue:f1571
#@md:human scooter:f11e9
#@md:human wheelchair:f138d
#@md:human white cane:f1981
#@md:humble bundle:f0744
#@md:hvac:f1352
#@md:hvac off:f159e
#@md:hydraulic oil level:f1324
#@md:hydraulic oil temperature:f1325
#@md:hydro power:f12e5
#@md:hydrogen station:f1894
#@md:ice cream:f082a
#@md:ice cream off:f0e52
#@md:ice pop:f0efd
#@md:id card:f0fc0
#@md:identifier:f0efe
#@md:ideogram cjk:f1331
#@md:ideogram cjk variant:f1332
#@md:image:f02e9
#@md:image album:f02ea
#@md:image area:f02eb
#@md:image area close:f02ec
#@md:image auto adjust:f0fc1
#@md:image broken:f02ed
#@md:image broken variant:f02ee
#@md:image edit:f11e3
#@md:image edit outline:f11e4
#@md:image filter black white:f02f0
#@md:image filter center focus:f02f1
#@md:image filter center focus strong:f0eff
#@md:image filter center focus strong outline:f0f00
#@md:image filter center focus weak:f02f2
#@md:image filter drama:f02f3
#@md:image filter frames:f02f4
#@md:image filter hdr:f02f5
#@md:image filter none:f02f6
#@md:image filter tilt shift:f02f7
#@md:image filter vintage:f02f8
#@md:image frame:f0e49
#@md:image lock:f1ab0
#@md:image lock outline:f1ab1
#@md:image marker:f177b
#@md:image marker outline:f177c
#@md:image minus:f1419
#@md:image move:f09f8
#@md:image multiple:f02f9
#@md:image multiple outline:f02ef
#@md:image off:f082b
#@md:image off outline:f11d1
#@md:image outline:f0976
#@md:image plus:f087c
#@md:image refresh:f19fe
#@md:image refresh outline:f19ff
#@md:image remove:f1418
#@md:image search:f0977
#@md:image search outline:f0978
#@md:image size select actual:f0c8d
#@md:image size select large:f0c8e
#@md:image size select small:f0c8f
#@md:image sync:f1a00
#@md:image sync outline:f1a01
#@md:image text:f160d
#@md:import:f02fa
#@md:inbox:f0687
#@md:inbox arrow down:f02fb
#@md:inbox arrow down outline:f1270
#@md:inbox arrow up:f03d1
#@md:inbox arrow up outline:f1271
#@md:inbox full:f1272
#@md:inbox full outline:f1273
#@md:inbox multiple:f08b0
#@md:inbox multiple outline:f0ba8
#@md:inbox outline:f1274
#@md:inbox remove:f159f
#@md:inbox remove outline:f15a0
#@md:incognito:f05f9
#@md:incognito circle:f1421
#@md:incognito circle off:f1422
#@md:incognito off:f0075
#@md:induction:f184c
#@md:infinity:f06e4
#@md:information:f02fc
#@md:information off:f178c
#@md:information off outline:f178d
#@md:information outline:f02fd
#@md:information variant:f064e
#@md:instagram:f02fe
#@md:instrument triangle:f104e
#@md:integrated circuit chip:f1913
#@md:invert colors:f0301
#@md:invert colors off:f0e4a
#@md:iobroker:f12e8
#@md:ip:f0a5f
#@md:ip network:f0a60
#@md:ip network outline:f0c90
#@md:ip outline:f1982
#@md:ipod:f0c91
#@md:iron:f1824
#@md:iron board:f1838
#@md:iron outline:f1825
#@md:island:f104f
#@md:iv bag:f10b9
#@md:jabber:f0dd5
#@md:jeepney:f0302
#@md:jellyfish:f0f01
#@md:jellyfish outline:f0f02
#@md:jira:f0303
#@md:jquery:f087d
#@md:jsfiddle:f0304
#@md:jump rope:f12ff
#@md:kabaddi:f0d87
#@md:kangaroo:f1558
#@md:karate:f082c
#@md:kayaking:f08af
#@md:keg:f0305
#@md:kettle:f05fa
#@md:kettle alert:f1317
#@md:kettle alert outline:f1318
#@md:kettle off:f131b
#@md:kettle off outline:f131c
#@md:kettle outline:f0f56
#@md:kettle pour over:f173c
#@md:kettle steam:f1319
#@md:kettle steam outline:f131a
#@md:kettlebell:f1300
#@md:key:f0306
#@md:key alert:f1983
#@md:key alert outline:f1984
#@md:key arrow right:f1312
#@md:key chain:f1574
#@md:key chain variant:f1575
#@md:key change:f0307
#@md:key link:f119f
#@md:key minus:f0308
#@md:key outline:f0dd6
#@md:key plus:f0309
#@md:key remove:f030a
#@md:key star:f119e
#@md:key variant:f030b
#@md:key wireless:f0fc2
#@md:keyboard:f030c
#@md:keyboard backspace:f030d
#@md:keyboard caps:f030e
#@md:keyboard close:f030f
#@md:keyboard esc:f12b7
#@md:keyboard f1:f12ab
#@md:keyboard f10:f12b4
#@md:keyboard f11:f12b5
#@md:keyboard f12:f12b6
#@md:keyboard f2:f12ac
#@md:keyboard f3:f12ad
#@md:keyboard f4:f12ae
#@md:keyboard f5:f12af
#@md:keyboard f6:f12b0
#@md:keyboard f7:f12b1
#@md:keyboard f8:f12b2
#@md:keyboard f9:f12b3
#@md:keyboard off:f0310
#@md:keyboard off outline:f0e4b
#@md:keyboard outline:f097b
#@md:keyboard return:f0311
#@md:keyboard settings:f09f9
#@md:keyboard settings outline:f09fa
#@md:keyboard space:f1050
#@md:keyboard tab:f0312
#@md:keyboard tab reverse:f0325
#@md:keyboard variant:f0313
#@md:khanda:f10fd
#@md:kickstarter:f0745
#@md:kite:f1985
#@md:kite outline:f1986
#@md:kitesurfing:f1744
#@md:klingon:f135b
#@md:knife:f09fb
#@md:knife military:f09fc
#@md:koala:f173f
#@md:kodi:f0314
#@md:kubernetes:f10fe
#@md:label:f0315
#@md:label multiple:f1375
#@md:label multiple outline:f1376
#@md:label off:f0acb
#@md:label off outline:f0acc
#@md:label outline:f0316
#@md:label percent:f12ea
#@md:label percent outline:f12eb
#@md:label variant:f0acd
#@md:label variant outline:f0ace
#@md:ladder:f15a2
#@md:ladybug:f082d
#@md:lambda:f0627
#@md:lamp:f06b5
#@md:lamp outline:f17d0
#@md:lamps:f1576
#@md:lamps outline:f17d1
#@md:lan:f0317
#@md:lan check:f12aa
#@md:lan connect:f0318
#@md:lan disconnect:f0319
#@md:lan pending:f031a
#@md:land fields:f1ab2
#@md:land plots:f1ab3
#@md:land plots circle:f1ab4
#@md:land plots circle variant:f1ab5
#@md:land rows horizontal:f1ab6
#@md:land rows vertical:f1ab7
#@md:landslide:f1a48
#@md:landslide outline:f1a49
#@md:language c:f0671
#@md:language cpp:f0672
#@md:language csharp:f031b
#@md:language css3:f031c
#@md:language fortran:f121a
#@md:language go:f07d3
#@md:language haskell:f0c92
#@md:language html5:f031d
#@md:language java:f0b37
#@md:language javascript:f031e
#@md:language kotlin:f1219
#@md:language lua:f08b1
#@md:language markdown:f0354
#@md:language markdown outline:f0f5b
#@md:language php:f031f
#@md:language python:f0320
#@md:language r:f07d4
#@md:language ruby:f0d2d
#@md:language ruby on rails:f0acf
#@md:language rust:f1617
#@md:language swift:f06e5
#@md:language typescript:f06e6
#@md:language xaml:f0673
#@md:laptop:f0322
#@md:laptop account:f1a4a
#@md:laptop off:f06e7
#@md:laravel:f0ad0
#@md:laser pointer:f1484
#@md:lasso:f0f03
#@md:lastpass:f0446
#@md:latitude:f0f57
#@md:launch:f0327
#@md:lava lamp:f07d5
#@md:layers:f0328
#@md:layers edit:f1892
#@md:layers minus:f0e4c
#@md:layers off:f0329
#@md:layers off outline:f09fd
#@md:layers outline:f09fe
#@md:layers plus:f0e4d
#@md:layers remove:f0e4e
#@md:layers search:f1206
#@md:layers search outline:f1207
#@md:layers triple:f0f58
#@md:layers triple outline:f0f59
#@md:lead pencil:f064f
#@md:leaf:f032a
#@md:leaf circle:f1905
#@md:leaf circle outline:f1906
#@md:leaf maple:f0c93
#@md:leaf maple off:f12da
#@md:leaf off:f12d9
#@md:leak:f0dd7
#@md:leak off:f0dd8
#@md:lecturn:f1af0
#@md:led off:f032b
#@md:led on:f032c
#@md:led outline:f032d
#@md:led strip:f07d6
#@md:led strip variant:f1051
#@md:led strip variant off:f1a4b
#@md:led variant off:f032e
#@md:led variant on:f032f
#@md:led variant outline:f0330
#@md:leek:f117d
#@md:less than:f097c
#@md:less than or equal:f097d
#@md:library:f0331
#@md:library outline:f1a22
#@md:library shelves:f0ba9
#@md:license:f0fc3
#@md:lifebuoy:f087e
#@md:light flood down:f1987
#@md:light flood up:f1988
#@md:light recessed:f179b
#@md:light switch:f097e
#@md:light switch off:f1a24
#@md:lightbulb:f0335
#@md:lightbulb alert:f19e1
#@md:lightbulb alert outline:f19e2
#@md:lightbulb auto:f1800
#@md:lightbulb auto outline:f1801
#@md:lightbulb cfl:f1208
#@md:lightbulb cfl off:f1209
#@md:lightbulb cfl spiral:f1275
#@md:lightbulb cfl spiral off:f12c3
#@md:lightbulb fluorescent tube:f1804
#@md:lightbulb fluorescent tube outline:f1805
#@md:lightbulb group:f1253
#@md:lightbulb group off:f12cd
#@md:lightbulb group off outline:f12ce
#@md:lightbulb group outline:f1254
#@md:lightbulb multiple:f1255
#@md:lightbulb multiple off:f12cf
#@md:lightbulb multiple off outline:f12d0
#@md:lightbulb multiple outline:f1256
#@md:lightbulb night:f1a4c
#@md:lightbulb night outline:f1a4d
#@md:lightbulb off:f0e4f
#@md:lightbulb off outline:f0e50
#@md:lightbulb on:f06e8
#@md:lightbulb on 10:f1a4e
#@md:lightbulb on 20:f1a4f
#@md:lightbulb on 30:f1a50
#@md:lightbulb on 40:f1a51
#@md:lightbulb on 50:f1a52
#@md:lightbulb on 60:f1a53
#@md:lightbulb on 70:f1a54
#@md:lightbulb on 80:f1a55
#@md:lightbulb on 90:f1a56
#@md:lightbulb on outline:f06e9
#@md:lightbulb outline:f0336
#@md:lightbulb question:f19e3
#@md:lightbulb question outline:f19e4
#@md:lightbulb spot:f17f4
#@md:lightbulb spot off:f17f5
#@md:lightbulb variant:f1802
#@md:lightbulb variant outline:f1803
#@md:lighthouse:f09ff
#@md:lighthouse on:f0a00
#@md:lightning bolt:f140b
#@md:lightning bolt circle:f0820
#@md:lightning bolt outline:f140c
#@md:line scan:f0624
#@md:lingerie:f1476
#@md:link:f0337
#@md:link box:f0d1a
#@md:link box outline:f0d1b
#@md:link box variant:f0d1c
#@md:link box variant outline:f0d1d
#@md:link lock:f10ba
#@md:link off:f0338
#@md:link plus:f0c94
#@md:link variant:f0339
#@md:link variant minus:f10ff
#@md:link variant off:f033a
#@md:link variant plus:f1100
#@md:link variant remove:f1101
#@md:linkedin:f033b
#@md:linux:f033d
#@md:linux mint:f08ed
#@md:lipstick:f13b5
#@md:liquid spot:f1826
#@md:liquor:f191e
#@md:list status:f15ab
#@md:litecoin:f0a61
#@md:loading:f0772
#@md:location enter:f0fc4
#@md:location exit:f0fc5
#@md:lock:f033e
#@md:lock alert:f08ee
#@md:lock alert outline:f15d1
#@md:lock check:f139a
#@md:lock check outline:f16a8
#@md:lock clock:f097f
#@md:lock minus:f16a9
#@md:lock minus outline:f16aa
#@md:lock off:f1671
#@md:lock off outline:f1672
#@md:lock open:f033f
#@md:lock open alert:f139b
#@md:lock open alert outline:f15d2
#@md:lock open check:f139c
#@md:lock open check outline:f16ab
#@md:lock open minus:f16ac
#@md:lock open minus outline:f16ad
#@md:lock open outline:f0340
#@md:lock open plus:f16ae
#@md:lock open plus outline:f16af
#@md:lock open remove:f16b0
#@md:lock open remove outline:f16b1
#@md:lock open variant:f0fc6
#@md:lock open variant outline:f0fc7
#@md:lock outline:f0341
#@md:lock pattern:f06ea
#@md:lock plus:f05fb
#@md:lock plus outline:f16b2
#@md:lock question:f08ef
#@md:lock remove:f16b3
#@md:lock remove outline:f16b4
#@md:lock reset:f0773
#@md:lock smart:f08b2
#@md:locker:f07d7
#@md:locker multiple:f07d8
#@md:login:f0342
#@md:logout:f0343
#@md:logout variant:f05fd
#@md:logout variant 2:f05fc
#@md:longitude:f0f5a
#@md:looks:f0344
#@md:lotion:f1582
#@md:lotion outline:f1583
#@md:lotion plus:f1584
#@md:lotion plus outline:f1585
#@md:loupe:f0345
#@md:lumx:f0346
#@md:lungs:f1084
#@md:mace:f1843
#@md:magazine pistol:f0324
#@md:magazine rifle:f0323
#@md:magic staff:f1844
#@md:magnet:f0347
#@md:magnet on:f0348
#@md:magnify:f0349
#@md:magnify close:f0980
#@md:magnify expand:f1874
#@md:magnify minus:f034a
#@md:magnify minus cursor:f0a62
#@md:magnify minus outline:f06ec
#@md:magnify plus:f034b
#@md:magnify plus cursor:f0a63
#@md:magnify plus outline:f06ed
#@md:magnify remove cursor:f120c
#@md:magnify remove outline:f120d
#@md:magnify scan:f1276
#@md:mail:f0ebb
#@md:mailbox:f06ee
#@md:mailbox open:f0d88
#@md:mailbox open outline:f0d89
#@md:mailbox open up:f0d8a
#@md:mailbox open up outline:f0d8b
#@md:mailbox outline:f0d8c
#@md:mailbox up:f0d8d
#@md:mailbox up outline:f0d8e
#@md:manjaro:f160a
#@md:map:f034d
#@md:map check:f0ebc
#@md:map check outline:f0ebd
#@md:map clock:f0d1e
#@md:map clock outline:f0d1f
#@md:map legend:f0a01
#@md:map marker:f034e
#@md:map marker account:f18e3
#@md:map marker account outline:f18e4
#@md:map marker alert:f0f05
#@md:map marker alert outline:f0f06
#@md:map marker check:f0c95
#@md:map marker check outline:f12fb
#@md:map marker circle:f034f
#@md:map marker distance:f08f0
#@md:map marker down:f1102
#@md:map marker left:f12db
#@md:map marker left outline:f12dd
#@md:map marker minus:f0650
#@md:map marker minus outline:f12f9
#@md:map marker multiple:f0350
#@md:map marker multiple outline:f1277
#@md:map marker off:f0351
#@md:map marker off outline:f12fd
#@md:map marker outline:f07d9
#@md:map marker path:f0d20
#@md:map marker plus:f0651
#@md:map marker plus outline:f12f8
#@md:map marker question:f0f07
#@md:map marker question outline:f0f08
#@md:map marker radius:f0352
#@md:map marker radius outline:f12fc
#@md:map marker remove:f0f09
#@md:map marker remove outline:f12fa
#@md:map marker remove variant:f0f0a
#@md:map marker right:f12dc
#@md:map marker right outline:f12de
#@md:map marker star:f1608
#@md:map marker star outline:f1609
#@md:map marker up:f1103
#@md:map minus:f0981
#@md:map outline:f0982
#@md:map plus:f0983
#@md:map search:f0984
#@md:map search outline:f0985
#@md:mapbox:f0baa
#@md:margin:f0353
#@md:marker:f0652
#@md:marker cancel:f0dd9
#@md:marker check:f0355
#@md:mastodon:f0ad1
#@md:material design:f0986
#@md:material ui:f0357
#@md:math compass:f0358
#@md:math cos:f0c96
#@md:math integral:f0fc8
#@md:math integral box:f0fc9
#@md:math log:f1085
#@md:math norm:f0fca
#@md:math norm box:f0fcb
#@md:math sin:f0c97
#@md:math tan:f0c98
#@md:matrix:f0628
#@md:medal:f0987
#@md:medal outline:f1326
#@md:medical bag:f06ef
#@md:medical cotton swab:f1ab8
#@md:meditation:f117b
#@md:memory:f035b
#@md:menorah:f17d4
#@md:menorah fire:f17d5
#@md:menu:f035c
#@md:menu down:f035d
#@md:menu down outline:f06b6
#@md:menu left:f035e
#@md:menu left outline:f0a02
#@md:menu open:f0bab
#@md:menu right:f035f
#@md:menu right outline:f0a03
#@md:menu swap:f0a64
#@md:menu swap outline:f0a65
#@md:menu up:f0360
#@md:menu up outline:f06b7
#@md:merge:f0f5c
#@md:message:f0361
#@md:message alert:f0362
#@md:message alert outline:f0a04
#@md:message arrow left:f12f2
#@md:message arrow left outline:f12f3
#@md:message arrow right:f12f4
#@md:message arrow right outline:f12f5
#@md:message badge:f1941
#@md:message badge outline:f1942
#@md:message bookmark:f15ac
#@md:message bookmark outline:f15ad
#@md:message bulleted:f06a2
#@md:message bulleted off:f06a3
#@md:message cog:f06f1
#@md:message cog outline:f1172
#@md:message draw:f0363
#@md:message fast:f19cc
#@md:message fast outline:f19cd
#@md:message flash:f15a9
#@md:message flash outline:f15aa
#@md:message image:f0364
#@md:message image outline:f116c
#@md:message lock:f0fcc
#@md:message lock outline:f116d
#@md:message minus:f116e
#@md:message minus outline:f116f
#@md:message off:f164d
#@md:message off outline:f164e
#@md:message outline:f0365
#@md:message plus:f0653
#@md:message plus outline:f10bb
#@md:message processing:f0366
#@md:message processing outline:f1170
#@md:message question:f173a
#@md:message question outline:f173b
#@md:message reply:f0367
#@md:message reply outline:f173d
#@md:message reply text:f0368
#@md:message reply text outline:f173e
#@md:message settings:f06f0
#@md:message settings outline:f1171
#@md:message star:f069a
#@md:message star outline:f1250
#@md:message text:f0369
#@md:message text clock:f1173
#@md:message text clock outline:f1174
#@md:message text fast:f19ce
#@md:message text fast outline:f19cf
#@md:message text lock:f0fcd
#@md:message text lock outline:f1175
#@md:message text outline:f036a
#@md:message video:f036b
#@md:meteor:f0629
#@md:meter electric:f1a57
#@md:meter electric outline:f1a58
#@md:meter gas:f1a59
#@md:meter gas outline:f1a5a
#@md:metronome:f07da
#@md:metronome tick:f07db
#@md:micro sd:f07dc
#@md:microphone:f036c
#@md:microphone minus:f08b3
#@md:microphone off:f036d
#@md:microphone outline:f036e
#@md:microphone plus:f08b4
#@md:microphone question:f1989
#@md:microphone question outline:f198a
#@md:microphone settings:f036f
#@md:microphone variant:f0370
#@md:microphone variant off:f0371
#@md:microscope:f0654
#@md:microsoft:f0372
#@md:microsoft access:f138e
#@md:microsoft azure:f0805
#@md:microsoft azure devops:f0fd5
#@md:microsoft bing:f00a4
#@md:microsoft dynamics 365:f0988
#@md:microsoft edge:f01e9
#@md:microsoft excel:f138f
#@md:microsoft internet explorer:f0300
#@md:microsoft office:f03c6
#@md:microsoft onedrive:f03ca
#@md:microsoft onenote:f0747
#@md:microsoft outlook:f0d22
#@md:microsoft powerpoint:f1390
#@md:microsoft sharepoint:f1391
#@md:microsoft teams:f02bb
#@md:microsoft visual studio:f0610
#@md:microsoft visual studio code:f0a1e
#@md:microsoft windows:f05b3
#@md:microsoft windows classic:f0a21
#@md:microsoft word:f1392
#@md:microsoft xbox:f05b9
#@md:microsoft xbox controller:f05ba
#@md:microsoft xbox controller battery alert:f074b
#@md:microsoft xbox controller battery charging:f0a22
#@md:microsoft xbox controller battery empty:f074c
#@md:microsoft xbox controller battery full:f074d
#@md:microsoft xbox controller battery low:f074e
#@md:microsoft xbox controller battery medium:f074f
#@md:microsoft xbox controller battery unknown:f0750
#@md:microsoft xbox controller menu:f0e6f
#@md:microsoft xbox controller off:f05bb
#@md:microsoft xbox controller view:f0e70
#@md:microwave:f0c99
#@md:microwave off:f1423
#@md:middleware:f0f5d
#@md:middleware outline:f0f5e
#@md:midi:f08f1
#@md:midi port:f08f2
#@md:mine:f0dda
#@md:minecraft:f0373
#@md:mini sd:f0a05
#@md:minidisc:f0a06
#@md:minus:f0374
#@md:minus box:f0375
#@md:minus box multiple:f1141
#@md:minus box multiple outline:f1142
#@md:minus box outline:f06f2
#@md:minus circle:f0376
#@md:minus circle multiple:f035a
#@md:minus circle multiple outline:f0ad3
#@md:minus circle off:f1459
#@md:minus circle off outline:f145a
#@md:minus circle outline:f0377
#@md:minus network:f0378
#@md:minus network outline:f0c9a
#@md:minus thick:f1639
#@md:mirror:f11fd
#@md:mirror rectangle:f179f
#@md:mirror variant:f17a0
#@md:mixed martial arts:f0d8f
#@md:mixed reality:f087f
#@md:molecule:f0bac
#@md:molecule co:f12fe
#@md:molecule co2:f07e4
#@md:monitor:f0379
#@md:monitor account:f1a5b
#@md:monitor arrow down:f19d0
#@md:monitor arrow down variant:f19d1
#@md:monitor cellphone:f0989
#@md:monitor cellphone star:f098a
#@md:monitor dashboard:f0a07
#@md:monitor edit:f12c6
#@md:monitor eye:f13b4
#@md:monitor lock:f0ddb
#@md:monitor multiple:f037a
#@md:monitor off:f0d90
#@md:monitor screenshot:f0e51
#@md:monitor share:f1483
#@md:monitor shimmer:f1104
#@md:monitor small:f1876
#@md:monitor speaker:f0f5f
#@md:monitor speaker off:f0f60
#@md:monitor star:f0ddc
#@md:moon first quarter:f0f61
#@md:moon full:f0f62
#@md:moon last quarter:f0f63
#@md:moon new:f0f64
#@md:moon waning crescent:f0f65
#@md:moon waning gibbous:f0f66
#@md:moon waxing crescent:f0f67
#@md:moon waxing gibbous:f0f68
#@md:moped:f1086
#@md:moped electric:f15b7
#@md:moped electric outline:f15b8
#@md:moped outline:f15b9
#@md:more:f037b
#@md:mortar pestle:f1748
#@md:mortar pestle plus:f03f1
#@md:mosque:f1827
#@md:mother heart:f1314
#@md:mother nurse:f0d21
#@md:motion:f15b2
#@md:motion outline:f15b3
#@md:motion pause:f1590
#@md:motion pause outline:f1592
#@md:motion play:f158f
#@md:motion play outline:f1591
#@md:motion sensor:f0d91
#@md:motion sensor off:f1435
#@md:motorbike:f037c
#@md:motorbike electric:f15ba
#@md:mountains:f0509
#@md:mouse:f037d
#@md:mouse bluetooth:f098b
#@md:mouse move down:f1550
#@md:mouse move up:f1551
#@md:mouse move vertical:f1552
#@md:mouse off:f037e
#@md:mouse variant:f037f
#@md:mouse variant off:f0380
#@md:move resize:f0655
#@md:move resize variant:f0656
#@md:movie:f0381
#@md:movie check:f16f3
#@md:movie check outline:f16f4
#@md:movie cog:f16f5
#@md:movie cog outline:f16f6
#@md:movie edit:f1122
#@md:movie edit outline:f1123
#@md:movie filter:f1124
#@md:movie filter outline:f1125
#@md:movie minus:f16f7
#@md:movie minus outline:f16f8
#@md:movie off:f16f9
#@md:movie off outline:f16fa
#@md:movie open:f0fce
#@md:movie open check:f16fb
#@md:movie open check outline:f16fc
#@md:movie open cog:f16fd
#@md:movie open cog outline:f16fe
#@md:movie open edit:f16ff
#@md:movie open edit outline:f1700
#@md:movie open minus:f1701
#@md:movie open minus outline:f1702
#@md:movie open off:f1703
#@md:movie open off outline:f1704
#@md:movie open outline:f0fcf
#@md:movie open play:f1705
#@md:movie open play outline:f1706
#@md:movie open plus:f1707
#@md:movie open plus outline:f1708
#@md:movie open remove:f1709
#@md:movie open remove outline:f170a
#@md:movie open settings:f170b
#@md:movie open settings outline:f170c
#@md:movie open star:f170d
#@md:movie open star outline:f170e
#@md:movie outline:f0ddd
#@md:movie play:f170f
#@md:movie play outline:f1710
#@md:movie plus:f1711
#@md:movie plus outline:f1712
#@md:movie remove:f1713
#@md:movie remove outline:f1714
#@md:movie roll:f07de
#@md:movie search:f11d2
#@md:movie search outline:f11d3
#@md:movie settings:f1715
#@md:movie settings outline:f1716
#@md:movie star:f1717
#@md:movie star outline:f1718
#@md:mower:f166f
#@md:mower bag:f1670
#@md:muffin:f098c
#@md:multicast:f1893
#@md:multiplication:f0382
#@md:multiplication box:f0383
#@md:mushroom:f07df
#@md:mushroom off:f13fa
#@md:mushroom off outline:f13fb
#@md:mushroom outline:f07e0
#@md:music:f075a
#@md:music accidental double flat:f0f69
#@md:music accidental double sharp:f0f6a
#@md:music accidental flat:f0f6b
#@md:music accidental natural:f0f6c
#@md:music accidental sharp:f0f6d
#@md:music box:f0384
#@md:music box multiple:f0333
#@md:music box multiple outline:f0f04
#@md:music box outline:f0385
#@md:music circle:f0386
#@md:music circle outline:f0ad4
#@md:music clef alto:f0f6e
#@md:music clef bass:f0f6f
#@md:music clef treble:f0f70
#@md:music note:f0387
#@md:music note 2:f0388
#@md:music note bluetooth:f05fe
#@md:music note bluetooth off:f05ff
#@md:music note eighth dotted:f0f71
#@md:music note half:f0389
#@md:music note half dotted:f0f72
#@md:music note off:f038a
#@md:music note off outline:f0f73
#@md:music note outline:f0f74
#@md:music note plus:f0dde
#@md:music note quarter:f038b
#@md:music note quarter dotted:f0f75
#@md:music note sixteenth:f038c
#@md:music note sixteenth dotted:f0f76
#@md:music note whole:f038d
#@md:music note whole dotted:f0f77
#@md:music off:f075b
#@md:music rest eighth:f0f78
#@md:music rest half:f0f79
#@md:music rest quarter:f0f7a
#@md:music rest sixteenth:f0f7b
#@md:music rest whole:f0f7c
#@md:mustache:f15de
#@md:nail:f0ddf
#@md:nas:f08f3
#@md:nativescript:f0880
#@md:nature:f038e
#@md:nature people:f038f
#@md:navigation:f0390
#@md:navigation outline:f1607
#@md:navigation variant:f18f0
#@md:navigation variant outline:f18f1
#@md:near me:f05cd
#@md:necklace:f0f0b
#@md:needle:f0391
#@md:needle off:f19d2
#@md:netflix:f0746
#@md:network:f06f3
#@md:network off:f0c9b
#@md:network off outline:f0c9c
#@md:network outline:f0c9d
#@md:network pos:f1acb
#@md:network strength 1:f08f4
#@md:network strength 1 alert:f08f5
#@md:network strength 2:f08f6
#@md:network strength 2 alert:f08f7
#@md:network strength 3:f08f8
#@md:network strength 3 alert:f08f9
#@md:network strength 4:f08fa
#@md:network strength 4 alert:f08fb
#@md:network strength 4 cog:f191a
#@md:network strength off:f08fc
#@md:network strength off outline:f08fd
#@md:network strength outline:f08fe
#@md:new box:f0394
#@md:newspaper:f0395
#@md:newspaper check:f1943
#@md:newspaper minus:f0f0c
#@md:newspaper plus:f0f0d
#@md:newspaper remove:f1944
#@md:newspaper variant:f1001
#@md:newspaper variant multiple:f1002
#@md:newspaper variant multiple outline:f1003
#@md:newspaper variant outline:f1004
#@md:nfc:f0396
#@md:nfc search variant:f0e53
#@md:nfc tap:f0397
#@md:nfc variant:f0398
#@md:nfc variant off:f0e54
#@md:ninja:f0774
#@md:nintendo game boy:f1393
#@md:nintendo switch:f07e1
#@md:nintendo wii:f05ab
#@md:nintendo wiiu:f072d
#@md:nix:f1105
#@md:nodejs:f0399
#@md:noodles:f117e
#@md:not equal:f098d
#@md:not equal variant:f098e
#@md:note:f039a
#@md:note alert:f177d
#@md:note alert outline:f177e
#@md:note check:f177f
#@md:note check outline:f1780
#@md:note edit:f1781
#@md:note edit outline:f1782
#@md:note minus:f164f
#@md:note minus outline:f1650
#@md:note multiple:f06b8
#@md:note multiple outline:f06b9
#@md:note off:f1783
#@md:note off outline:f1784
#@md:note outline:f039b
#@md:note plus:f039c
#@md:note plus outline:f039d
#@md:note remove:f1651
#@md:note remove outline:f1652
#@md:note search:f1653
#@md:note search outline:f1654
#@md:note text:f039e
#@md:note text outline:f11d7
#@md:notebook:f082e
#@md:notebook check:f14f5
#@md:notebook check outline:f14f6
#@md:notebook edit:f14e7
#@md:notebook edit outline:f14e9
#@md:notebook heart:f1a0b
#@md:notebook heart outline:f1a0c
#@md:notebook minus:f1610
#@md:notebook minus outline:f1611
#@md:notebook multiple:f0e55
#@md:notebook outline:f0ebf
#@md:notebook plus:f1612
#@md:notebook plus outline:f1613
#@md:notebook remove:f1614
#@md:notebook remove outline:f1615
#@md:notification clear all:f039f
#@md:npm:f06f7
#@md:nuke:f06a4
#@md:null:f07e2
#@md:numeric:f03a0
#@md:numeric 0:f0b39
#@md:numeric 0 box:f03a1
#@md:numeric 0 box multiple:f0f0e
#@md:numeric 0 box multiple outline:f03a2
#@md:numeric 0 box outline:f03a3
#@md:numeric 0 circle:f0c9e
#@md:numeric 0 circle outline:f0c9f
#@md:numeric 1:f0b3a
#@md:numeric 10:f0fe9
#@md:numeric 10 box:f0f7d
#@md:numeric 10 box multiple:f0fea
#@md:numeric 10 box multiple outline:f0feb
#@md:numeric 10 box outline:f0f7e
#@md:numeric 10 circle:f0fec
#@md:numeric 10 circle outline:f0fed
#@md:numeric 1 box:f03a4
#@md:numeric 1 box multiple:f0f0f
#@md:numeric 1 box multiple outline:f03a5
#@md:numeric 1 box outline:f03a6
#@md:numeric 1 circle:f0ca0
#@md:numeric 1 circle outline:f0ca1
#@md:numeric 2:f0b3b
#@md:numeric 2 box:f03a7
#@md:numeric 2 box multiple:f0f10
#@md:numeric 2 box multiple outline:f03a8
#@md:numeric 2 box outline:f03a9
#@md:numeric 2 circle:f0ca2
#@md:numeric 2 circle outline:f0ca3
#@md:numeric 3:f0b3c
#@md:numeric 3 box:f03aa
#@md:numeric 3 box multiple:f0f11
#@md:numeric 3 box multiple outline:f03ab
#@md:numeric 3 box outline:f03ac
#@md:numeric 3 circle:f0ca4
#@md:numeric 3 circle outline:f0ca5
#@md:numeric 4:f0b3d
#@md:numeric 4 box:f03ad
#@md:numeric 4 box multiple:f0f12
#@md:numeric 4 box multiple outline:f03b2
#@md:numeric 4 box outline:f03ae
#@md:numeric 4 circle:f0ca6
#@md:numeric 4 circle outline:f0ca7
#@md:numeric 5:f0b3e
#@md:numeric 5 box:f03b1
#@md:numeric 5 box multiple:f0f13
#@md:numeric 5 box multiple outline:f03af
#@md:numeric 5 box outline:f03b0
#@md:numeric 5 circle:f0ca8
#@md:numeric 5 circle outline:f0ca9
#@md:numeric 6:f0b3f
#@md:numeric 6 box:f03b3
#@md:numeric 6 box multiple:f0f14
#@md:numeric 6 box multiple outline:f03b4
#@md:numeric 6 box outline:f03b5
#@md:numeric 6 circle:f0caa
#@md:numeric 6 circle outline:f0cab
#@md:numeric 7:f0b40
#@md:numeric 7 box:f03b6
#@md:numeric 7 box multiple:f0f15
#@md:numeric 7 box multiple outline:f03b7
#@md:numeric 7 box outline:f03b8
#@md:numeric 7 circle:f0cac
#@md:numeric 7 circle outline:f0cad
#@md:numeric 8:f0b41
#@md:numeric 8 box:f03b9
#@md:numeric 8 box multiple:f0f16
#@md:numeric 8 box multiple outline:f03ba
#@md:numeric 8 box outline:f03bb
#@md:numeric 8 circle:f0cae
#@md:numeric 8 circle outline:f0caf
#@md:numeric 9:f0b42
#@md:numeric 9 box:f03bc
#@md:numeric 9 box multiple:f0f17
#@md:numeric 9 box multiple outline:f03bd
#@md:numeric 9 box outline:f03be
#@md:numeric 9 circle:f0cb0
#@md:numeric 9 circle outline:f0cb1
#@md:numeric 9 plus:f0fee
#@md:numeric 9 plus box:f03bf
#@md:numeric 9 plus box multiple:f0f18
#@md:numeric 9 plus box multiple outline:f03c0
#@md:numeric 9 plus box outline:f03c1
#@md:numeric 9 plus circle:f0cb2
#@md:numeric 9 plus circle outline:f0cb3
#@md:numeric negative 1:f1052
#@md:numeric off:f19d3
#@md:numeric positive 1:f15cb
#@md:nut:f06f8
#@md:nutrition:f03c2
#@md:nuxt:f1106
#@md:oar:f067c
#@md:ocarina:f0de0
#@md:oci:f12e9
#@md:ocr:f113a
#@md:octagon:f03c3
#@md:octagon outline:f03c4
#@md:octagram:f06f9
#@md:octagram outline:f0775
#@md:octahedron:f1950
#@md:octahedron off:f1951
#@md:odnoklassniki:f03c5
#@md:offer:f121b
#@md:office building:f0991
#@md:office building cog:f1949
#@md:office building cog outline:f194a
#@md:office building marker:f1520
#@md:office building marker outline:f1521
#@md:office building outline:f151f
#@md:oil:f03c7
#@md:oil lamp:f0f19
#@md:oil level:f1053
#@md:oil temperature:f0ff8
#@md:om:f0973
#@md:omega:f03c9
#@md:one up:f0bad
#@md:onepassword:f0881
#@md:opacity:f05cc
#@md:open in app:f03cb
#@md:open in new:f03cc
#@md:open source initiative:f0bae
#@md:openid:f03cd
#@md:opera:f03ce
#@md:orbit:f0018
#@md:orbit variant:f15db
#@md:order alphabetical ascending:f020d
#@md:order alphabetical descending:f0d07
#@md:order bool ascending:f02be
#@md:order bool ascending variant:f098f
#@md:order bool descending:f1384
#@md:order bool descending variant:f0990
#@md:order numeric ascending:f0545
#@md:order numeric descending:f0546
#@md:origin:f0b43
#@md:ornament:f03cf
#@md:ornament variant:f03d0
#@md:outdoor lamp:f1054
#@md:overscan:f1005
#@md:owl:f03d2
#@md:pac man:f0baf
#@md:package:f03d3
#@md:package down:f03d4
#@md:package up:f03d5
#@md:package variant:f03d6
#@md:package variant closed:f03d7
#@md:package variant closed minus:f19d4
#@md:package variant closed plus:f19d5
#@md:package variant closed remove:f19d6
#@md:package variant minus:f19d7
#@md:package variant plus:f19d8
#@md:package variant remove:f19d9
#@md:page first:f0600
#@md:page last:f0601
#@md:page layout body:f06fa
#@md:page layout footer:f06fb
#@md:page layout header:f06fc
#@md:page layout header footer:f0f7f
#@md:page layout sidebar left:f06fd
#@md:page layout sidebar right:f06fe
#@md:page next:f0bb0
#@md:page next outline:f0bb1
#@md:page previous:f0bb2
#@md:page previous outline:f0bb3
#@md:pail:f1417
#@md:pail minus:f1437
#@md:pail minus outline:f143c
#@md:pail off:f1439
#@md:pail off outline:f143e
#@md:pail outline:f143a
#@md:pail plus:f1436
#@md:pail plus outline:f143b
#@md:pail remove:f1438
#@md:pail remove outline:f143d
#@md:palette:f03d8
#@md:palette advanced:f03d9
#@md:palette outline:f0e0c
#@md:palette swatch:f08b5
#@md:palette swatch outline:f135c
#@md:palette swatch variant:f195a
#@md:palm tree:f1055
#@md:pan:f0bb4
#@md:pan bottom left:f0bb5
#@md:pan bottom right:f0bb6
#@md:pan down:f0bb7
#@md:pan horizontal:f0bb8
#@md:pan left:f0bb9
#@md:pan right:f0bba
#@md:pan top left:f0bbb
#@md:pan top right:f0bbc
#@md:pan up:f0bbd
#@md:pan vertical:f0bbe
#@md:panda:f03da
#@md:pandora:f03db
#@md:panorama:f03dc
#@md:panorama fisheye:f03dd
#@md:panorama horizontal:f1928
#@md:panorama horizontal outline:f03de
#@md:panorama outline:f198c
#@md:panorama sphere:f198d
#@md:panorama sphere outline:f198e
#@md:panorama variant:f198f
#@md:panorama variant outline:f1990
#@md:panorama vertical:f1929
#@md:panorama vertical outline:f03df
#@md:panorama wide angle:f195f
#@md:panorama wide angle outline:f03e0
#@md:paper cut vertical:f03e1
#@md:paper roll:f1157
#@md:paper roll outline:f1158
#@md:paperclip:f03e2
#@md:paperclip check:f1ac6
#@md:paperclip lock:f19da
#@md:paperclip minus:f1ac7
#@md:paperclip off:f1ac8
#@md:paperclip plus:f1ac9
#@md:paperclip remove:f1aca
#@md:parachute:f0cb4
#@md:parachute outline:f0cb5
#@md:paragliding:f1745
#@md:parking:f03e3
#@md:party popper:f1056
#@md:passport:f07e3
#@md:passport biometric:f0de1
#@md:pasta:f1160
#@md:patio heater:f0f80
#@md:patreon:f0882
#@md:pause:f03e4
#@md:pause circle:f03e5
#@md:pause circle outline:f03e6
#@md:pause octagon:f03e7
#@md:pause octagon outline:f03e8
#@md:paw:f03e9
#@md:paw off:f0657
#@md:paw off outline:f1676
#@md:paw outline:f1675
#@md:peace:f0884
#@md:peanut:f0ffc
#@md:peanut off:f0ffd
#@md:peanut off outline:f0fff
#@md:peanut outline:f0ffe
#@md:pen:f03ea
#@md:pen lock:f0de2
#@md:pen minus:f0de3
#@md:pen off:f0de4
#@md:pen plus:f0de5
#@md:pen remove:f0de6
#@md:pencil:f03eb
#@md:pencil box:f03ec
#@md:pencil box multiple:f1144
#@md:pencil box multiple outline:f1145
#@md:pencil box outline:f03ed
#@md:pencil circle:f06ff
#@md:pencil circle outline:f0776
#@md:pencil lock:f03ee
#@md:pencil lock outline:f0de7
#@md:pencil minus:f0de8
#@md:pencil minus outline:f0de9
#@md:pencil off:f03ef
#@md:pencil off outline:f0dea
#@md:pencil outline:f0cb6
#@md:pencil plus:f0deb
#@md:pencil plus outline:f0dec
#@md:pencil remove:f0ded
#@md:pencil remove outline:f0dee
#@md:pencil ruler:f1353
#@md:penguin:f0ec0
#@md:pentagon:f0701
#@md:pentagon outline:f0700
#@md:pentagram:f1667
#@md:percent:f03f0
#@md:percent box:f1a02
#@md:percent box outline:f1a03
#@md:percent circle:f1a04
#@md:percent circle outline:f1a05
#@md:percent outline:f1278
#@md:periodic table:f08b6
#@md:perspective less:f0d23
#@md:perspective more:f0d24
#@md:ph:f17c5
#@md:phone:f03f2
#@md:phone alert:f0f1a
#@md:phone alert outline:f118e
#@md:phone bluetooth:f03f3
#@md:phone bluetooth outline:f118f
#@md:phone cancel:f10bc
#@md:phone cancel outline:f1190
#@md:phone check:f11a9
#@md:phone check outline:f11aa
#@md:phone classic:f0602
#@md:phone classic off:f1279
#@md:phone clock:f19db
#@md:phone dial:f1559
#@md:phone dial outline:f155a
#@md:phone forward:f03f4
#@md:phone forward outline:f1191
#@md:phone hangup:f03f5
#@md:phone hangup outline:f1192
#@md:phone in talk:f03f6
#@md:phone in talk outline:f1182
#@md:phone incoming:f03f7
#@md:phone incoming outline:f1193
#@md:phone lock:f03f8
#@md:phone lock outline:f1194
#@md:phone log:f03f9
#@md:phone log outline:f1195
#@md:phone message:f1196
#@md:phone message outline:f1197
#@md:phone minus:f0658
#@md:phone minus outline:f1198
#@md:phone missed:f03fa
#@md:phone missed outline:f11a5
#@md:phone off:f0def
#@md:phone off outline:f11a6
#@md:phone outgoing:f03fb
#@md:phone outgoing outline:f1199
#@md:phone outline:f0df0
#@md:phone paused:f03fc
#@md:phone paused outline:f119a
#@md:phone plus:f0659
#@md:phone plus outline:f119b
#@md:phone refresh:f1993
#@md:phone refresh outline:f1994
#@md:phone remove:f152f
#@md:phone remove outline:f1530
#@md:phone return:f082f
#@md:phone return outline:f119c
#@md:phone ring:f11ab
#@md:phone ring outline:f11ac
#@md:phone rotate landscape:f0885
#@md:phone rotate portrait:f0886
#@md:phone settings:f03fd
#@md:phone settings outline:f119d
#@md:phone sync:f1995
#@md:phone sync outline:f1996
#@md:phone voip:f03fe
#@md:pi:f03ff
#@md:pi box:f0400
#@md:pi hole:f0df1
#@md:piano:f067d
#@md:piano off:f0698
#@md:pickaxe:f08b7
#@md:picture in picture bottom right:f0e57
#@md:picture in picture bottom right outline:f0e58
#@md:picture in picture top right:f0e59
#@md:picture in picture top right outline:f0e5a
#@md:pier:f0887
#@md:pier crane:f0888
#@md:pig:f0401
#@md:pig variant:f1006
#@md:pig variant outline:f1678
#@md:piggy bank:f1007
#@md:piggy bank outline:f1679
#@md:pill:f0402
#@md:pill off:f1a5c
#@md:pillar:f0702
#@md:pin:f0403
#@md:pin off:f0404
#@md:pin off outline:f0930
#@md:pin outline:f0931
#@md:pine tree:f0405
#@md:pine tree box:f0406
#@md:pine tree fire:f141a
#@md:pinterest:f0407
#@md:pinwheel:f0ad5
#@md:pinwheel outline:f0ad6
#@md:pipe:f07e5
#@md:pipe disconnected:f07e6
#@md:pipe leak:f0889
#@md:pipe valve:f184d
#@md:pipe wrench:f1354
#@md:pirate:f0a08
#@md:pistol:f0703
#@md:piston:f088a
#@md:pitchfork:f1553
#@md:pizza:f0409
#@md:play:f040a
#@md:play box:f127a
#@md:play box lock:f1a16
#@md:play box lock open:f1a17
#@md:play box lock open outline:f1a18
#@md:play box lock outline:f1a19
#@md:play box multiple:f0d19
#@md:play box multiple outline:f13e6
#@md:play box outline:f040b
#@md:play circle:f040c
#@md:play circle outline:f040d
#@md:play network:f088b
#@md:play network outline:f0cb7
#@md:play outline:f0f1b
#@md:play pause:f040e
#@md:play protected content:f040f
#@md:play speed:f08ff
#@md:playlist check:f05c7
#@md:playlist edit:f0900
#@md:playlist minus:f0410
#@md:playlist music:f0cb8
#@md:playlist music outline:f0cb9
#@md:playlist play:f0411
#@md:playlist plus:f0412
#@md:playlist remove:f0413
#@md:playlist star:f0df2
#@md:plex:f06ba
#@md:pliers:f19a4
#@md:plus:f0415
#@md:plus box:f0416
#@md:plus box multiple:f0334
#@md:plus box multiple outline:f1143
#@md:plus box outline:f0704
#@md:plus circle:f0417
#@md:plus circle multiple:f034c
#@md:plus circle multiple outline:f0418
#@md:plus circle outline:f0419
#@md:plus lock:f1a5d
#@md:plus lock open:f1a5e
#@md:plus minus:f0992
#@md:plus minus box:f0993
#@md:plus minus variant:f14c9
#@md:plus network:f041a
#@md:plus network outline:f0cba
#@md:plus outline:f0705
#@md:plus thick:f11ec
#@md:podcast:f0994
#@md:podium:f0d25
#@md:podium bronze:f0d26
#@md:podium gold:f0d27
#@md:podium silver:f0d28
#@md:point of sale:f0d92
#@md:pokeball:f041d
#@md:pokemon go:f0a09
#@md:poker chip:f0830
#@md:polaroid:f041e
#@md:police badge:f1167
#@md:police badge outline:f1168
#@md:police station:f1839
#@md:poll:f041f
#@md:polo:f14c3
#@md:polymer:f0421
#@md:pool:f0606
#@md:pool thermometer:f1a5f
#@md:popcorn:f0422
#@md:post:f1008
#@md:post lamp:f1a60
#@md:post outline:f1009
#@md:postage stamp:f0cbb
#@md:pot:f02e5
#@md:pot mix:f065b
#@md:pot mix outline:f0677
#@md:pot outline:f02ff
#@md:pot steam:f065a
#@md:pot steam outline:f0326
#@md:pound:f0423
#@md:pound box:f0424
#@md:pound box outline:f117f
#@md:power:f0425
#@md:power cycle:f0901
#@md:power off:f0902
#@md:power on:f0903
#@md:power plug:f06a5
#@md:power plug off:f06a6
#@md:power plug off outline:f1424
#@md:power plug outline:f1425
#@md:power settings:f0426
#@md:power sleep:f0904
#@md:power socket:f0427
#@md:power socket au:f0905
#@md:power socket ch:f0fb3
#@md:power socket de:f1107
#@md:power socket eu:f07e7
#@md:power socket fr:f1108
#@md:power socket it:f14ff
#@md:power socket jp:f1109
#@md:power socket uk:f07e8
#@md:power socket us:f07e9
#@md:power standby:f0906
#@md:powershell:f0a0a
#@md:prescription:f0706
#@md:presentation:f0428
#@md:presentation play:f0429
#@md:pretzel:f1562
#@md:printer:f042a
#@md:printer 3d:f042b
#@md:printer 3d nozzle:f0e5b
#@md:printer 3d nozzle alert:f11c0
#@md:printer 3d nozzle alert outline:f11c1
#@md:printer 3d nozzle heat:f18b8
#@md:printer 3d nozzle heat outline:f18b9
#@md:printer 3d nozzle outline:f0e5c
#@md:printer alert:f042c
#@md:printer check:f1146
#@md:printer eye:f1458
#@md:printer off:f0e5d
#@md:printer off outline:f1785
#@md:printer outline:f1786
#@md:printer pos:f1057
#@md:printer search:f1457
#@md:printer settings:f0707
#@md:printer wireless:f0a0b
#@md:priority high:f0603
#@md:priority low:f0604
#@md:professional hexagon:f042d
#@md:progress alert:f0cbc
#@md:progress check:f0995
#@md:progress clock:f0996
#@md:progress close:f110a
#@md:progress download:f0997
#@md:progress pencil:f1787
#@md:progress question:f1522
#@md:progress star:f1788
#@md:progress upload:f0998
#@md:progress wrench:f0cbd
#@md:projector:f042e
#@md:projector off:f1a23
#@md:projector screen:f042f
#@md:projector screen off:f180d
#@md:projector screen off outline:f180e
#@md:projector screen outline:f1724
#@md:projector screen variant:f180f
#@md:projector screen variant off:f1810
#@md:projector screen variant off outline:f1811
#@md:projector screen variant outline:f1812
#@md:propane tank:f1357
#@md:propane tank outline:f1358
#@md:protocol:f0fd8
#@md:publish:f06a7
#@md:publish off:f1945
#@md:pulse:f0430
#@md:pump:f1402
#@md:pumpkin:f0bbf
#@md:purse:f0f1c
#@md:purse outline:f0f1d
#@md:puzzle:f0431
#@md:puzzle check:f1426
#@md:puzzle check outline:f1427
#@md:puzzle edit:f14d3
#@md:puzzle edit outline:f14d9
#@md:puzzle heart:f14d4
#@md:puzzle heart outline:f14da
#@md:puzzle minus:f14d1
#@md:puzzle minus outline:f14d7
#@md:puzzle outline:f0a66
#@md:puzzle plus:f14d0
#@md:puzzle plus outline:f14d6
#@md:puzzle remove:f14d2
#@md:puzzle remove outline:f14d8
#@md:puzzle star:f14d5
#@md:puzzle star outline:f14db
#@md:pyramid:f1952
#@md:pyramid off:f1953
#@md:qi:f0999
#@md:qqchat:f0605
#@md:qrcode:f0432
#@md:qrcode edit:f08b8
#@md:qrcode minus:f118c
#@md:qrcode plus:f118b
#@md:qrcode remove:f118d
#@md:qrcode scan:f0433
#@md:quadcopter:f0434
#@md:quality high:f0435
#@md:quality low:f0a0c
#@md:quality medium:f0a0d
#@md:quora:f0d29
#@md:rabbit:f0907
#@md:rabbit variant:f1a61
#@md:rabbit variant outline:f1a62
#@md:racing helmet:f0d93
#@md:racquetball:f0d94
#@md:radar:f0437
#@md:radiator:f0438
#@md:radiator disabled:f0ad7
#@md:radiator off:f0ad8
#@md:radio:f0439
#@md:radio am:f0cbe
#@md:radio fm:f0cbf
#@md:radio handheld:f043a
#@md:radio off:f121c
#@md:radio tower:f043b
#@md:radioactive:f043c
#@md:radioactive circle:f185d
#@md:radioactive circle outline:f185e
#@md:radioactive off:f0ec1
#@md:radiobox blank:f043d
#@md:radiobox marked:f043e
#@md:radiology box:f14c5
#@md:radiology box outline:f14c6
#@md:radius:f0cc0
#@md:radius outline:f0cc1
#@md:railroad light:f0f1e
#@md:rake:f1544
#@md:raspberry pi:f043f
#@md:raw:f1a0f
#@md:raw off:f1a10
#@md:ray end:f0440
#@md:ray end arrow:f0441
#@md:ray start:f0442
#@md:ray start arrow:f0443
#@md:ray start end:f0444
#@md:ray start vertex end:f15d8
#@md:ray vertex:f0445
#@md:razor double edge:f1997
#@md:razor single edge:f1998
#@md:react:f0708
#@md:read:f0447
#@md:receipt:f0449
#@md:receipt outline:f19dc
#@md:receipt text check:f1a63
#@md:receipt text check outline:f1a64
#@md:receipt text minus:f1a65
#@md:receipt text minus outline:f1a66
#@md:receipt text plus:f1a67
#@md:receipt text plus outline:f1a68
#@md:receipt text remove:f1a69
#@md:receipt text remove outline:f1a6a
#@md:record:f044a
#@md:record circle:f0ec2
#@md:record circle outline:f0ec3
#@md:record player:f099a
#@md:record rec:f044b
#@md:rectangle:f0e5e
#@md:rectangle outline:f0e5f
#@md:recycle:f044c
#@md:recycle variant:f139d
#@md:reddit:f044d
#@md:redhat:f111b
#@md:redo:f044e
#@md:redo variant:f044f
#@md:reflect horizontal:f0a0e
#@md:reflect vertical:f0a0f
#@md:refresh:f0450
#@md:refresh auto:f18f2
#@md:refresh circle:f1377
#@md:regex:f0451
#@md:registered trademark:f0a67
#@md:reiterate:f1588
#@md:relation many to many:f1496
#@md:relation many to one:f1497
#@md:relation many to one or many:f1498
#@md:relation many to only one:f1499
#@md:relation many to zero or many:f149a
#@md:relation many to zero or one:f149b
#@md:relation one or many to many:f149c
#@md:relation one or many to one:f149d
#@md:relation one or many to one or many:f149e
#@md:relation one or many to only one:f149f
#@md:relation one or many to zero or many:f14a0
#@md:relation one or many to zero or one:f14a1
#@md:relation one to many:f14a2
#@md:relation one to one:f14a3
#@md:relation one to one or many:f14a4
#@md:relation one to only one:f14a5
#@md:relation one to zero or many:f14a6
#@md:relation one to zero or one:f14a7
#@md:relation only one to many:f14a8
#@md:relation only one to one:f14a9
#@md:relation only one to one or many:f14aa
#@md:relation only one to only one:f14ab
#@md:relation only one to zero or many:f14ac
#@md:relation only one to zero or one:f14ad
#@md:relation zero or many to many:f14ae
#@md:relation zero or many to one:f14af
#@md:relation zero or many to one or many:f14b0
#@md:relation zero or many to only one:f14b1
#@md:relation zero or many to zero or many:f14b2
#@md:relation zero or many to zero or one:f14b3
#@md:relation zero or one to many:f14b4
#@md:relation zero or one to one:f14b5
#@md:relation zero or one to one or many:f14b6
#@md:relation zero or one to only one:f14b7
#@md:relation zero or one to zero or many:f14b8
#@md:relation zero or one to zero or one:f14b9
#@md:relative scale:f0452
#@md:reload:f0453
#@md:reload alert:f110b
#@md:reminder:f088c
#@md:remote:f0454
#@md:remote desktop:f08b9
#@md:remote off:f0ec4
#@md:remote tv:f0ec5
#@md:remote tv off:f0ec6
#@md:rename box:f0455
#@md:reorder horizontal:f0688
#@md:reorder vertical:f0689
#@md:repeat:f0456
#@md:repeat off:f0457
#@md:repeat once:f0458
#@md:repeat variant:f0547
#@md:replay:f0459
#@md:reply:f045a
#@md:reply all:f045b
#@md:reply all outline:f0f1f
#@md:reply circle:f11ae
#@md:reply outline:f0f20
#@md:reproduction:f045c
#@md:resistor:f0b44
#@md:resistor nodes:f0b45
#@md:resize:f0a68
#@md:resize bottom right:f045d
#@md:responsive:f045e
#@md:restart:f0709
#@md:restart alert:f110c
#@md:restart off:f0d95
#@md:restore:f099b
#@md:restore alert:f110d
#@md:rewind:f045f
#@md:rewind 10:f0d2a
#@md:rewind 15:f1946
#@md:rewind 30:f0d96
#@md:rewind 5:f11f9
#@md:rewind 60:f160c
#@md:rewind outline:f070a
#@md:rhombus:f070b
#@md:rhombus medium:f0a10
#@md:rhombus medium outline:f14dc
#@md:rhombus outline:f070c
#@md:rhombus split:f0a11
#@md:rhombus split outline:f14dd
#@md:ribbon:f0460
#@md:rice:f07ea
#@md:rickshaw:f15bb
#@md:rickshaw electric:f15bc
#@md:ring:f07eb
#@md:rivet:f0e60
#@md:road:f0461
#@md:road variant:f0462
#@md:robber:f1058
#@md:robot:f06a9
#@md:robot angry:f169d
#@md:robot angry outline:f169e
#@md:robot confused:f169f
#@md:robot confused outline:f16a0
#@md:robot dead:f16a1
#@md:robot dead outline:f16a2
#@md:robot excited:f16a3
#@md:robot excited outline:f16a4
#@md:robot happy:f1719
#@md:robot happy outline:f171a
#@md:robot industrial:f0b46
#@md:robot industrial outline:f1a1a
#@md:robot love:f16a5
#@md:robot love outline:f16a6
#@md:robot mower:f11f7
#@md:robot mower outline:f11f3
#@md:robot off:f16a7
#@md:robot off outline:f167b
#@md:robot outline:f167a
#@md:robot vacuum:f070d
#@md:robot vacuum variant:f0908
#@md:rocket:f0463
#@md:rocket launch:f14de
#@md:rocket launch outline:f14df
#@md:rocket outline:f13af
#@md:rodent:f1327
#@md:roller shade:f1a6b
#@md:roller shade closed:f1a6c
#@md:roller skate:f0d2b
#@md:roller skate off:f0145
#@md:rollerblade:f0d2c
#@md:rollerblade off:f002e
#@md:rollupjs:f0bc0
#@md:rolodex:f1ab9
#@md:rolodex outline:f1aba
#@md:roman numeral 1:f1088
#@md:roman numeral 10:f1091
#@md:roman numeral 2:f1089
#@md:roman numeral 3:f108a
#@md:roman numeral 4:f108b
#@md:roman numeral 5:f108c
#@md:roman numeral 6:f108d
#@md:roman numeral 7:f108e
#@md:roman numeral 8:f108f
#@md:roman numeral 9:f1090
#@md:room service:f088d
#@md:room service outline:f0d97
#@md:rotate 360:f1999
#@md:rotate 3d:f0ec7
#@md:rotate 3d variant:f0464
#@md:rotate left:f0465
#@md:rotate left variant:f0466
#@md:rotate orbit:f0d98
#@md:rotate right:f0467
#@md:rotate right variant:f0468
#@md:rounded corner:f0607
#@md:router:f11e2
#@md:router network:f1087
#@md:router wireless:f0469
#@md:router wireless off:f15a3
#@md:router wireless settings:f0a69
#@md:routes:f046a
#@md:routes clock:f1059
#@md:rowing:f0608
#@md:rss:f046b
#@md:rss box:f046c
#@md:rss off:f0f21
#@md:rug:f1475
#@md:rugby:f0d99
#@md:ruler:f046d
#@md:ruler square:f0cc2
#@md:ruler square compass:f0ebe
#@md:run:f070e
#@md:run fast:f046e
#@md:rv truck:f11d4
#@md:sack:f0d2e
#@md:sack percent:f0d2f
#@md:safe:f0a6a
#@md:safe square:f127c
#@md:safe square outline:f127d
#@md:safety goggles:f0d30
#@md:sail boat:f0ec8
#@md:sail boat sink:f1aef
#@md:sale:f046f
#@md:sale outline:f1a06
#@md:salesforce:f088e
#@md:sass:f07ec
#@md:satellite:f0470
#@md:satellite uplink:f0909
#@md:satellite variant:f0471
#@md:sausage:f08ba
#@md:sausage off:f1789
#@md:saw blade:f0e61
#@md:sawtooth wave:f147a
#@md:saxophone:f0609
#@md:scale:f0472
#@md:scale balance:f05d1
#@md:scale bathroom:f0473
#@md:scale off:f105a
#@md:scale unbalanced:f19b8
#@md:scan helper:f13d8
#@md:scanner:f06ab
#@md:scanner off:f090a
#@md:scatter plot:f0ec9
#@md:scatter plot outline:f0eca
#@md:scent:f1958
#@md:scent off:f1959
#@md:school:f0474
#@md:school outline:f1180
#@md:scissors cutting:f0a6b
#@md:scooter:f15bd
#@md:scooter electric:f15be
#@md:scoreboard:f127e
#@md:scoreboard outline:f127f
#@md:screen rotation:f0475
#@md:screen rotation lock:f0478
#@md:screw flat top:f0df3
#@md:screw lag:f0df4
#@md:screw machine flat top:f0df5
#@md:screw machine round top:f0df6
#@md:screw round top:f0df7
#@md:screwdriver:f0476
#@md:script:f0bc1
#@md:script outline:f0477
#@md:script text:f0bc2
#@md:script text key:f1725
#@md:script text key outline:f1726
#@md:script text outline:f0bc3
#@md:script text play:f1727
#@md:script text play outline:f1728
#@md:sd:f0479
#@md:seal:f047a
#@md:seal variant:f0fd9
#@md:search web:f070f
#@md:seat:f0cc3
#@md:seat flat:f047b
#@md:seat flat angled:f047c
#@md:seat individual suite:f047d
#@md:seat legroom extra:f047e
#@md:seat legroom normal:f047f
#@md:seat legroom reduced:f0480
#@md:seat outline:f0cc4
#@md:seat passenger:f1249
#@md:seat recline extra:f0481
#@md:seat recline normal:f0482
#@md:seatbelt:f0cc5
#@md:security:f0483
#@md:security network:f0484
#@md:seed:f0e62
#@md:seed off:f13fd
#@md:seed off outline:f13fe
#@md:seed outline:f0e63
#@md:seed plus:f1a6d
#@md:seed plus outline:f1a6e
#@md:seesaw:f15a4
#@md:segment:f0ecb
#@md:select:f0485
#@md:select all:f0486
#@md:select color:f0d31
#@md:select compare:f0ad9
#@md:select drag:f0a6c
#@md:select group:f0f82
#@md:select inverse:f0487
#@md:select marker:f1280
#@md:select multiple:f1281
#@md:select multiple marker:f1282
#@md:select off:f0488
#@md:select place:f0fda
#@md:select remove:f17c1
#@md:select search:f1204
#@md:selection:f0489
#@md:selection drag:f0a6d
#@md:selection ellipse:f0d32
#@md:selection ellipse arrow inside:f0f22
#@md:selection ellipse remove:f17c2
#@md:selection marker:f1283
#@md:selection multiple:f1285
#@md:selection multiple marker:f1284
#@md:selection off:f0777
#@md:selection remove:f17c3
#@md:selection search:f1205
#@md:semantic web:f1316
#@md:send:f048a
#@md:send check:f1161
#@md:send check outline:f1162
#@md:send circle:f0df8
#@md:send circle outline:f0df9
#@md:send clock:f1163
#@md:send clock outline:f1164
#@md:send lock:f07ed
#@md:send lock outline:f1166
#@md:send outline:f1165
#@md:serial port:f065c
#@md:server:f048b
#@md:server minus:f048c
#@md:server network:f048d
#@md:server network off:f048e
#@md:server off:f048f
#@md:server plus:f0490
#@md:server remove:f0491
#@md:server security:f0492
#@md:set all:f0778
#@md:set center:f0779
#@md:set center right:f077a
#@md:set left:f077b
#@md:set left center:f077c
#@md:set left right:f077d
#@md:set merge:f14e0
#@md:set none:f077e
#@md:set right:f077f
#@md:set split:f14e1
#@md:set square:f145d
#@md:set top box:f099f
#@md:settings helper:f0a6e
#@md:shaker:f110e
#@md:shaker outline:f110f
#@md:shape:f0831
#@md:shape circle plus:f065d
#@md:shape outline:f0832
#@md:shape oval plus:f11fa
#@md:shape plus:f0495
#@md:shape polygon plus:f065e
#@md:shape rectangle plus:f065f
#@md:shape square plus:f0660
#@md:shape square rounded plus:f14fa
#@md:share:f0496
#@md:share all:f11f4
#@md:share all outline:f11f5
#@md:share circle:f11ad
#@md:share off:f0f23
#@md:share off outline:f0f24
#@md:share outline:f0932
#@md:share variant:f0497
#@md:share variant outline:f1514
#@md:shark:f18ba
#@md:shark fin:f1673
#@md:shark fin outline:f1674
#@md:shark off:f18bb
#@md:sheep:f0cc6
#@md:shield:f0498
#@md:shield account:f088f
#@md:shield account outline:f0a12
#@md:shield account variant:f15a7
#@md:shield account variant outline:f15a8
#@md:shield airplane:f06bb
#@md:shield airplane outline:f0cc7
#@md:shield alert:f0ecc
#@md:shield alert outline:f0ecd
#@md:shield bug:f13da
#@md:shield bug outline:f13db
#@md:shield car:f0f83
#@md:shield check:f0565
#@md:shield check outline:f0cc8
#@md:shield cross:f0cc9
#@md:shield cross outline:f0cca
#@md:shield crown:f18bc
#@md:shield crown outline:f18bd
#@md:shield edit:f11a0
#@md:shield edit outline:f11a1
#@md:shield half:f1360
#@md:shield half full:f0780
#@md:shield home:f068a
#@md:shield home outline:f0ccb
#@md:shield key:f0bc4
#@md:shield key outline:f0bc5
#@md:shield link variant:f0d33
#@md:shield link variant outline:f0d34
#@md:shield lock:f099d
#@md:shield lock open:f199a
#@md:shield lock open outline:f199b
#@md:shield lock outline:f0ccc
#@md:shield moon:f1828
#@md:shield moon outline:f1829
#@md:shield off:f099e
#@md:shield off outline:f099c
#@md:shield outline:f0499
#@md:shield plus:f0ada
#@md:shield plus outline:f0adb
#@md:shield refresh:f00aa
#@md:shield refresh outline:f01e0
#@md:shield remove:f0adc
#@md:shield remove outline:f0add
#@md:shield search:f0d9a
#@md:shield star:f113b
#@md:shield star outline:f113c
#@md:shield sun:f105d
#@md:shield sun outline:f105e
#@md:shield sword:f18be
#@md:shield sword outline:f18bf
#@md:shield sync:f11a2
#@md:shield sync outline:f11a3
#@md:shimmer:f1545
#@md:ship wheel:f0833
#@md:shipping pallet:f184e
#@md:shoe ballet:f15ca
#@md:shoe cleat:f15c7
#@md:shoe formal:f0b47
#@md:shoe heel:f0b48
#@md:shoe print:f0dfa
#@md:shoe sneaker:f15c8
#@md:shopping:f049a
#@md:shopping music:f049b
#@md:shopping outline:f11d5
#@md:shopping search:f0f84
#@md:shopping search outline:f1a6f
#@md:shore:f14f9
#@md:shovel:f0710
#@md:shovel off:f0711
#@md:shower:f09a0
#@md:shower head:f09a1
#@md:shredder:f049c
#@md:shuffle:f049d
#@md:shuffle disabled:f049e
#@md:shuffle variant:f049f
#@md:shuriken:f137f
#@md:sickle:f18c0
#@md:sigma:f04a0
#@md:sigma lower:f062b
#@md:sign caution:f04a1
#@md:sign direction:f0781
#@md:sign direction minus:f1000
#@md:sign direction plus:f0fdc
#@md:sign direction remove:f0fdd
#@md:sign pole:f14f8
#@md:sign real estate:f1118
#@md:sign text:f0782
#@md:signal:f04a2
#@md:signal 2g:f0712
#@md:signal 3g:f0713
#@md:signal 4g:f0714
#@md:signal 5g:f0a6f
#@md:signal cellular 1:f08bc
#@md:signal cellular 2:f08bd
#@md:signal cellular 3:f08be
#@md:signal cellular outline:f08bf
#@md:signal distance variant:f0e64
#@md:signal hspa:f0715
#@md:signal hspa plus:f0716
#@md:signal off:f0783
#@md:signal variant:f060a
#@md:signature:f0dfb
#@md:signature freehand:f0dfc
#@md:signature image:f0dfd
#@md:signature text:f0dfe
#@md:silo:f0b49
#@md:silverware:f04a3
#@md:silverware clean:f0fde
#@md:silverware fork:f04a4
#@md:silverware fork knife:f0a70
#@md:silverware spoon:f04a5
#@md:silverware variant:f04a6
#@md:sim:f04a7
#@md:sim alert:f04a8
#@md:sim alert outline:f15d3
#@md:sim off:f04a9
#@md:sim off outline:f15d4
#@md:sim outline:f15d5
#@md:simple icons:f131d
#@md:sina weibo:f0adf
#@md:sine wave:f095b
#@md:sitemap:f04aa
#@md:sitemap outline:f199c
#@md:size l:f13a6
#@md:size m:f13a5
#@md:size s:f13a4
#@md:size xl:f13a7
#@md:size xs:f13a3
#@md:size xxl:f13a8
#@md:size xxs:f13a2
#@md:size xxxl:f13a9
#@md:skate:f0d35
#@md:skate off:f0699
#@md:skateboard:f14c2
#@md:skateboarding:f0501
#@md:skew less:f0d36
#@md:skew more:f0d37
#@md:ski:f1304
#@md:ski cross country:f1305
#@md:ski water:f1306
#@md:skip backward:f04ab
#@md:skip backward outline:f0f25
#@md:skip forward:f04ac
#@md:skip forward outline:f0f26
#@md:skip next:f04ad
#@md:skip next circle:f0661
#@md:skip next circle outline:f0662
#@md:skip next outline:f0f27
#@md:skip previous:f04ae
#@md:skip previous circle:f0663
#@md:skip previous circle outline:f0664
#@md:skip previous outline:f0f28
#@md:skull:f068c
#@md:skull crossbones:f0bc6
#@md:skull crossbones outline:f0bc7
#@md:skull outline:f0bc8
#@md:skull scan:f14c7
#@md:skull scan outline:f14c8
#@md:skype:f04af
#@md:skype business:f04b0
#@md:slack:f04b1
#@md:slash forward:f0fdf
#@md:slash forward box:f0fe0
#@md:sledding:f041b
#@md:sleep:f04b2
#@md:sleep off:f04b3
#@md:slide:f15a5
#@md:slope downhill:f0dff
#@md:slope uphill:f0e00
#@md:slot machine:f1114
#@md:slot machine outline:f1115
#@md:smart card:f10bd
#@md:smart card off:f18f7
#@md:smart card off outline:f18f8
#@md:smart card outline:f10be
#@md:smart card reader:f10bf
#@md:smart card reader outline:f10c0
#@md:smog:f0a71
#@md:smoke:f1799
#@md:smoke detector:f0392
#@md:smoke detector alert:f192e
#@md:smoke detector alert outline:f192f
#@md:smoke detector off:f1809
#@md:smoke detector off outline:f180a
#@md:smoke detector outline:f1808
#@md:smoke detector variant:f180b
#@md:smoke detector variant alert:f1930
#@md:smoke detector variant off:f180c
#@md:smoking:f04b4
#@md:smoking off:f04b5
#@md:smoking pipe:f140d
#@md:smoking pipe off:f1428
#@md:snail:f1677
#@md:snake:f150e
#@md:snapchat:f04b6
#@md:snowboard:f1307
#@md:snowflake:f0717
#@md:snowflake alert:f0f29
#@md:snowflake check:f1a70
#@md:snowflake melt:f12cb
#@md:snowflake off:f14e3
#@md:snowflake thermometer:f1a71
#@md:snowflake variant:f0f2a
#@md:snowman:f04b7
#@md:snowmobile:f06dd
#@md:snowshoeing:f1a72
#@md:soccer:f04b8
#@md:soccer field:f0834
#@md:social distance 2 meters:f1579
#@md:social distance 6 feet:f157a
#@md:sofa:f04b9
#@md:sofa outline:f156d
#@md:sofa single:f156e
#@md:sofa single outline:f156f
#@md:solar panel:f0d9b
#@md:solar panel large:f0d9c
#@md:solar power:f0a72
#@md:solar power variant:f1a73
#@md:solar power variant outline:f1a74
#@md:soldering iron:f1092
#@md:solid:f068d
#@md:sony playstation:f0414
#@md:sort:f04ba
#@md:sort alphabetical ascending:f05bd
#@md:sort alphabetical ascending variant:f1148
#@md:sort alphabetical descending:f05bf
#@md:sort alphabetical descending variant:f1149
#@md:sort alphabetical variant:f04bb
#@md:sort ascending:f04bc
#@md:sort bool ascending:f1385
#@md:sort bool ascending variant:f1386
#@md:sort bool descending:f1387
#@md:sort bool descending variant:f1388
#@md:sort calendar ascending:f1547
#@md:sort calendar descending:f1548
#@md:sort clock ascending:f1549
#@md:sort clock ascending outline:f154a
#@md:sort clock descending:f154b
#@md:sort clock descending outline:f154c
#@md:sort descending:f04bd
#@md:sort numeric ascending:f1389
#@md:sort numeric ascending variant:f090d
#@md:sort numeric descending:f138a
#@md:sort numeric descending variant:f0ad2
#@md:sort numeric variant:f04be
#@md:sort reverse variant:f033c
#@md:sort variant:f04bf
#@md:sort variant lock:f0ccd
#@md:sort variant lock open:f0cce
#@md:sort variant off:f1abb
#@md:sort variant remove:f1147
#@md:soundbar:f17db
#@md:soundcloud:f04c0
#@md:source branch:f062c
#@md:source branch check:f14cf
#@md:source branch minus:f14cb
#@md:source branch plus:f14ca
#@md:source branch refresh:f14cd
#@md:source branch remove:f14cc
#@md:source branch sync:f14ce
#@md:source commit:f0718
#@md:source commit end:f0719
#@md:source commit end local:f071a
#@md:source commit local:f071b
#@md:source commit next local:f071c
#@md:source commit start:f071d
#@md:source commit start next local:f071e
#@md:source fork:f04c1
#@md:source merge:f062d
#@md:source pull:f04c2
#@md:source repository:f0ccf
#@md:source repository multiple:f0cd0
#@md:soy sauce:f07ee
#@md:soy sauce off:f13fc
#@md:spa:f0cd1
#@md:spa outline:f0cd2
#@md:space invaders:f0bc9
#@md:space station:f1383
#@md:spade:f0e65
#@md:speaker:f04c3
#@md:speaker bluetooth:f09a2
#@md:speaker multiple:f0d38
#@md:speaker off:f04c4
#@md:speaker wireless:f071f
#@md:spear:f1845
#@md:speedometer:f04c5
#@md:speedometer medium:f0f85
#@md:speedometer slow:f0f86
#@md:spellcheck:f04c6
#@md:sphere:f1954
#@md:sphere off:f1955
#@md:spider:f11ea
#@md:spider thread:f11eb
#@md:spider web:f0bca
#@md:spirit level:f14f1
#@md:spoon sugar:f1429
#@md:spotify:f04c7
#@md:spotlight:f04c8
#@md:spotlight beam:f04c9
#@md:spray:f0665
#@md:spray bottle:f0ae0
#@md:sprinkler:f105f
#@md:sprinkler fire:f199d
#@md:sprinkler variant:f1060
#@md:sprout:f0e66
#@md:sprout outline:f0e67
#@md:square:f0764
#@md:square circle:f1500
#@md:square edit outline:f090c
#@md:square medium:f0a13
#@md:square medium outline:f0a14
#@md:square off:f12ee
#@md:square off outline:f12ef
#@md:square opacity:f1854
#@md:square outline:f0763
#@md:square root:f0784
#@md:square root box:f09a3
#@md:square rounded:f14fb
#@md:square rounded badge:f1a07
#@md:square rounded badge outline:f1a08
#@md:square rounded outline:f14fc
#@md:square small:f0a15
#@md:square wave:f147b
#@md:squeegee:f0ae1
#@md:ssh:f08c0
#@md:stack exchange:f060b
#@md:stack overflow:f04cc
#@md:stackpath:f0359
#@md:stadium:f0ff9
#@md:stadium variant:f0720
#@md:stairs:f04cd
#@md:stairs box:f139e
#@md:stairs down:f12be
#@md:stairs up:f12bd
#@md:stamper:f0d39
#@md:standard definition:f07ef
#@md:star:f04ce
#@md:star box:f0a73
#@md:star box multiple:f1286
#@md:star box multiple outline:f1287
#@md:star box outline:f0a74
#@md:star check:f1566
#@md:star check outline:f156a
#@md:star circle:f04cf
#@md:star circle outline:f09a4
#@md:star cog:f1668
#@md:star cog outline:f1669
#@md:star crescent:f0979
#@md:star david:f097a
#@md:star face:f09a5
#@md:star four points:f0ae2
#@md:star four points outline:f0ae3
#@md:star half:f0246
#@md:star half full:f04d0
#@md:star minus:f1564
#@md:star minus outline:f1568
#@md:star off:f04d1
#@md:star off outline:f155b
#@md:star outline:f04d2
#@md:star plus:f1563
#@md:star plus outline:f1567
#@md:star remove:f1565
#@md:star remove outline:f1569
#@md:star settings:f166a
#@md:star settings outline:f166b
#@md:star shooting:f1741
#@md:star shooting outline:f1742
#@md:star three points:f0ae4
#@md:star three points outline:f0ae5
#@md:state machine:f11ef
#@md:steam:f04d3
#@md:steering:f04d4
#@md:steering off:f090e
#@md:step backward:f04d5
#@md:step backward 2:f04d6
#@md:step forward:f04d7
#@md:step forward 2:f04d8
#@md:stethoscope:f04d9
#@md:sticker:f1364
#@md:sticker alert:f1365
#@md:sticker alert outline:f1366
#@md:sticker check:f1367
#@md:sticker check outline:f1368
#@md:sticker circle outline:f05d0
#@md:sticker emoji:f0785
#@md:sticker minus:f1369
#@md:sticker minus outline:f136a
#@md:sticker outline:f136b
#@md:sticker plus:f136c
#@md:sticker plus outline:f136d
#@md:sticker remove:f136e
#@md:sticker remove outline:f136f
#@md:sticker text:f178e
#@md:sticker text outline:f178f
#@md:stocking:f04da
#@md:stomach:f1093
#@md:stool:f195d
#@md:stool outline:f195e
#@md:stop:f04db
#@md:stop circle:f0666
#@md:stop circle outline:f0667
#@md:storage tank:f1a75
#@md:storage tank outline:f1a76
#@md:store:f04dc
#@md:store 24 hour:f04dd
#@md:store alert:f18c1
#@md:store alert outline:f18c2
#@md:store check:f18c3
#@md:store check outline:f18c4
#@md:store clock:f18c5
#@md:store clock outline:f18c6
#@md:store cog:f18c7
#@md:store cog outline:f18c8
#@md:store edit:f18c9
#@md:store edit outline:f18ca
#@md:store marker:f18cb
#@md:store marker outline:f18cc
#@md:store minus:f165e
#@md:store minus outline:f18cd
#@md:store off:f18ce
#@md:store off outline:f18cf
#@md:store outline:f1361
#@md:store plus:f165f
#@md:store plus outline:f18d0
#@md:store remove:f1660
#@md:store remove outline:f18d1
#@md:store search:f18d2
#@md:store search outline:f18d3
#@md:store settings:f18d4
#@md:store settings outline:f18d5
#@md:storefront:f07c7
#@md:storefront outline:f10c1
#@md:stove:f04de
#@md:strategy:f11d6
#@md:stretch to page:f0f2b
#@md:stretch to page outline:f0f2c
#@md:string lights:f12ba
#@md:string lights off:f12bb
#@md:subdirectory arrow left:f060c
#@md:subdirectory arrow right:f060d
#@md:submarine:f156c
#@md:subtitles:f0a16
#@md:subtitles outline:f0a17
#@md:subway:f06ac
#@md:subway alert variant:f0d9d
#@md:subway variant:f04df
#@md:summit:f0786
#@md:sun clock:f1a77
#@md:sun clock outline:f1a78
#@md:sun compass:f19a5
#@md:sun snowflake:f1796
#@md:sun snowflake variant:f1a79
#@md:sun thermometer:f18d6
#@md:sun thermometer outline:f18d7
#@md:sun wireless:f17fe
#@md:sun wireless outline:f17ff
#@md:sunglasses:f04e0
#@md:surfing:f1746
#@md:surround sound:f05c5
#@md:surround sound 2 0:f07f0
#@md:surround sound 2 1:f1729
#@md:surround sound 3 1:f07f1
#@md:surround sound 5 1:f07f2
#@md:surround sound 5 1 2:f172a
#@md:surround sound 7 1:f07f3
#@md:svg:f0721
#@md:swap horizontal:f04e1
#@md:swap horizontal bold:f0bcd
#@md:swap horizontal circle:f0fe1
#@md:swap horizontal circle outline:f0fe2
#@md:swap horizontal variant:f08c1
#@md:swap vertical:f04e2
#@md:swap vertical bold:f0bce
#@md:swap vertical circle:f0fe3
#@md:swap vertical circle outline:f0fe4
#@md:swap vertical variant:f08c2
#@md:swim:f04e3
#@md:switch:f04e4
#@md:sword:f04e5
#@md:sword cross:f0787
#@md:syllabary hangul:f1333
#@md:syllabary hiragana:f1334
#@md:syllabary katakana:f1335
#@md:syllabary katakana halfwidth:f1336
#@md:symbol:f1501
#@md:symfony:f0ae6
#@md:sync:f04e6
#@md:sync alert:f04e7
#@md:sync circle:f1378
#@md:sync off:f04e8
#@md:tab:f04e9
#@md:tab minus:f0b4b
#@md:tab plus:f075c
#@md:tab remove:f0b4c
#@md:tab search:f199e
#@md:tab unselected:f04ea
#@md:table:f04eb
#@md:table account:f13b9
#@md:table alert:f13ba
#@md:table arrow down:f13bb
#@md:table arrow left:f13bc
#@md:table arrow right:f13bd
#@md:table arrow up:f13be
#@md:table border:f0a18
#@md:table cancel:f13bf
#@md:table chair:f1061
#@md:table check:f13c0
#@md:table clock:f13c1
#@md:table cog:f13c2
#@md:table column:f0835
#@md:table column plus after:f04ec
#@md:table column plus before:f04ed
#@md:table column remove:f04ee
#@md:table column width:f04ef
#@md:table edit:f04f0
#@md:table eye:f1094
#@md:table eye off:f13c3
#@md:table furniture:f05bc
#@md:table headers eye:f121d
#@md:table headers eye off:f121e
#@md:table heart:f13c4
#@md:table key:f13c5
#@md:table large:f04f1
#@md:table large plus:f0f87
#@md:table large remove:f0f88
#@md:table lock:f13c6
#@md:table merge cells:f09a6
#@md:table minus:f13c7
#@md:table multiple:f13c8
#@md:table network:f13c9
#@md:table of contents:f0836
#@md:table off:f13ca
#@md:table picnic:f1743
#@md:table pivot:f183c
#@md:table plus:f0a75
#@md:table refresh:f13a0
#@md:table remove:f0a76
#@md:table row:f0837
#@md:table row height:f04f2
#@md:table row plus after:f04f3
#@md:table row plus before:f04f4
#@md:table row remove:f04f5
#@md:table search:f090f
#@md:table settings:f0838
#@md:table split cell:f142a
#@md:table star:f13cb
#@md:table sync:f13a1
#@md:table tennis:f0e68
#@md:tablet:f04f6
#@md:tablet android:f04f7
#@md:tablet cellphone:f09a7
#@md:tablet dashboard:f0ece
#@md:taco:f0762
#@md:tag:f04f9
#@md:tag arrow down:f172b
#@md:tag arrow down outline:f172c
#@md:tag arrow left:f172d
#@md:tag arrow left outline:f172e
#@md:tag arrow right:f172f
#@md:tag arrow right outline:f1730
#@md:tag arrow up:f1731
#@md:tag arrow up outline:f1732
#@md:tag check:f1a7a
#@md:tag check outline:f1a7b
#@md:tag faces:f04fa
#@md:tag heart:f068b
#@md:tag heart outline:f0bcf
#@md:tag minus:f0910
#@md:tag minus outline:f121f
#@md:tag multiple:f04fb
#@md:tag multiple outline:f12f7
#@md:tag off:f1220
#@md:tag off outline:f1221
#@md:tag outline:f04fc
#@md:tag plus:f0722
#@md:tag plus outline:f1222
#@md:tag remove:f0723
#@md:tag remove outline:f1223
#@md:tag search:f1907
#@md:tag search outline:f1908
#@md:tag text:f1224
#@md:tag text outline:f04fd
#@md:tailwind:f13ff
#@md:tally mark 1:f1abc
#@md:tally mark 2:f1abd
#@md:tally mark 3:f1abe
#@md:tally mark 4:f1abf
#@md:tally mark 5:f1ac0
#@md:tangram:f04f8
#@md:tank:f0d3a
#@md:tanker truck:f0fe5
#@md:tape drive:f16df
#@md:tape measure:f0b4d
#@md:target:f04fe
#@md:target account:f0bd0
#@md:target variant:f0a77
#@md:taxi:f04ff
#@md:tea:f0d9e
#@md:tea outline:f0d9f
#@md:teamviewer:f0500
#@md:teddy bear:f18fb
#@md:telescope:f0b4e
#@md:television:f0502
#@md:television ambient light:f1356
#@md:television box:f0839
#@md:television classic:f07f4
#@md:television classic off:f083a
#@md:television guide:f0503
#@md:television off:f083b
#@md:television pause:f0f89
#@md:television play:f0ecf
#@md:television shimmer:f1110
#@md:television stop:f0f8a
#@md:temperature celsius:f0504
#@md:temperature fahrenheit:f0505
#@md:temperature kelvin:f0506
#@md:tennis:f0da0
#@md:tennis ball:f0507
#@md:tent:f0508
#@md:terraform:f1062
#@md:test tube:f0668
#@md:test tube empty:f0911
#@md:test tube off:f0912
#@md:text:f09a8
#@md:text account:f1570
#@md:text box:f021a
#@md:text box check:f0ea6
#@md:text box check outline:f0ea7
#@md:text box edit:f1a7c
#@md:text box edit outline:f1a7d
#@md:text box minus:f0ea8
#@md:text box minus outline:f0ea9
#@md:text box multiple:f0ab7
#@md:text box multiple outline:f0ab8
#@md:text box outline:f09ed
#@md:text box plus:f0eaa
#@md:text box plus outline:f0eab
#@md:text box remove:f0eac
#@md:text box remove outline:f0ead
#@md:text box search:f0eae
#@md:text box search outline:f0eaf
#@md:text long:f09aa
#@md:text recognition:f113d
#@md:text search:f13b8
#@md:text search variant:f1a7e
#@md:text shadow:f0669
#@md:text short:f09a9
#@md:text to speech:f050a
#@md:text to speech off:f050b
#@md:texture:f050c
#@md:texture box:f0fe6
#@md:theater:f050d
#@md:theme light dark:f050e
#@md:thermometer:f050f
#@md:thermometer alert:f0e01
#@md:thermometer bluetooth:f1895
#@md:thermometer check:f1a7f
#@md:thermometer chevron down:f0e02
#@md:thermometer chevron up:f0e03
#@md:thermometer high:f10c2
#@md:thermometer lines:f0510
#@md:thermometer low:f10c3
#@md:thermometer minus:f0e04
#@md:thermometer off:f1531
#@md:thermometer plus:f0e05
#@md:thermometer water:f1a80
#@md:thermostat:f0393
#@md:thermostat box:f0891
#@md:thought bubble:f07f6
#@md:thought bubble outline:f07f7
#@md:thumb down:f0511
#@md:thumb down outline:f0512
#@md:thumb up:f0513
#@md:thumb up outline:f0514
#@md:thumbs up down:f0515
#@md:thumbs up down outline:f1914
#@md:ticket:f0516
#@md:ticket account:f0517
#@md:ticket confirmation:f0518
#@md:ticket confirmation outline:f13aa
#@md:ticket outline:f0913
#@md:ticket percent:f0724
#@md:ticket percent outline:f142b
#@md:tie:f0519
#@md:tilde:f0725
#@md:tilde off:f18f3
#@md:timelapse:f051a
#@md:timeline:f0bd1
#@md:timeline alert:f0f95
#@md:timeline alert outline:f0f98
#@md:timeline check:f1532
#@md:timeline check outline:f1533
#@md:timeline clock:f11fb
#@md:timeline clock outline:f11fc
#@md:timeline help:f0f99
#@md:timeline help outline:f0f9a
#@md:timeline minus:f1534
#@md:timeline minus outline:f1535
#@md:timeline outline:f0bd2
#@md:timeline plus:f0f96
#@md:timeline plus outline:f0f97
#@md:timeline remove:f1536
#@md:timeline remove outline:f1537
#@md:timeline text:f0bd3
#@md:timeline text outline:f0bd4
#@md:timer:f13ab
#@md:timer 10:f051c
#@md:timer 3:f051d
#@md:timer alert:f1acc
#@md:timer alert outline:f1acd
#@md:timer cancel:f1ace
#@md:timer cancel outline:f1acf
#@md:timer check:f1ad0
#@md:timer check outline:f1ad1
#@md:timer cog:f1925
#@md:timer cog outline:f1926
#@md:timer edit:f1ad2
#@md:timer edit outline:f1ad3
#@md:timer lock:f1ad4
#@md:timer lock open:f1ad5
#@md:timer lock open outline:f1ad6
#@md:timer lock outline:f1ad7
#@md:timer marker:f1ad8
#@md:timer marker outline:f1ad9
#@md:timer minus:f1ada
#@md:timer minus outline:f1adb
#@md:timer music:f1adc
#@md:timer music outline:f1add
#@md:timer off:f13ac
#@md:timer off outline:f051e
#@md:timer outline:f051b
#@md:timer pause:f1ade
#@md:timer pause outline:f1adf
#@md:timer play:f1ae0
#@md:timer play outline:f1ae1
#@md:timer plus:f1ae2
#@md:timer plus outline:f1ae3
#@md:timer refresh:f1ae4
#@md:timer refresh outline:f1ae5
#@md:timer remove:f1ae6
#@md:timer remove outline:f1ae7
#@md:timer sand:f051f
#@md:timer sand complete:f199f
#@md:timer sand empty:f06ad
#@md:timer sand full:f078c
#@md:timer sand paused:f19a0
#@md:timer settings:f1923
#@md:timer settings outline:f1924
#@md:timer star:f1ae8
#@md:timer star outline:f1ae9
#@md:timer stop:f1aea
#@md:timer stop outline:f1aeb
#@md:timer sync:f1aec
#@md:timer sync outline:f1aed
#@md:timetable:f0520
#@md:tire:f1896
#@md:toaster:f1063
#@md:toaster off:f11b7
#@md:toaster oven:f0cd3
#@md:toggle switch:f0521
#@md:toggle switch off:f0522
#@md:toggle switch off outline:f0a19
#@md:toggle switch outline:f0a1a
#@md:toggle switch variant:f1a25
#@md:toggle switch variant off:f1a26
#@md:toilet:f09ab
#@md:toolbox:f09ac
#@md:toolbox outline:f09ad
#@md:tools:f1064
#@md:tooltip:f0523
#@md:tooltip account:f000c
#@md:tooltip cellphone:f183b
#@md:tooltip check:f155c
#@md:tooltip check outline:f155d
#@md:tooltip edit:f0524
#@md:tooltip edit outline:f12c5
#@md:tooltip image:f0525
#@md:tooltip image outline:f0bd5
#@md:tooltip minus:f155e
#@md:tooltip minus outline:f155f
#@md:tooltip outline:f0526
#@md:tooltip plus:f0bd6
#@md:tooltip plus outline:f0527
#@md:tooltip remove:f1560
#@md:tooltip remove outline:f1561
#@md:tooltip text:f0528
#@md:tooltip text outline:f0bd7
#@md:tooth:f08c3
#@md:tooth outline:f0529
#@md:toothbrush:f1129
#@md:toothbrush electric:f112c
#@md:toothbrush paste:f112a
#@md:torch:f1606
#@md:tortoise:f0d3b
#@md:toslink:f12b8
#@md:tournament:f09ae
#@md:tow truck:f083c
#@md:tower beach:f0681
#@md:tower fire:f0682
#@md:town hall:f1875
#@md:toy brick:f1288
#@md:toy brick marker:f1289
#@md:toy brick marker outline:f128a
#@md:toy brick minus:f128b
#@md:toy brick minus outline:f128c
#@md:toy brick outline:f128d
#@md:toy brick plus:f128e
#@md:toy brick plus outline:f128f
#@md:toy brick remove:f1290
#@md:toy brick remove outline:f1291
#@md:toy brick search:f1292
#@md:toy brick search outline:f1293
#@md:track light:f0914
#@md:trackpad:f07f8
#@md:trackpad lock:f0933
#@md:tractor:f0892
#@md:tractor variant:f14c4
#@md:trademark:f0a78
#@md:traffic cone:f137c
#@md:traffic light:f052b
#@md:traffic light outline:f182a
#@md:train:f052c
#@md:train car:f0bd8
#@md:train car passenger:f1733
#@md:train car passenger door:f1734
#@md:train car passenger door open:f1735
#@md:train car passenger variant:f1736
#@md:train variant:f08c4
#@md:tram:f052d
#@md:tram side:f0fe7
#@md:transcribe:f052e
#@md:transcribe close:f052f
#@md:transfer:f1065
#@md:transfer down:f0da1
#@md:transfer left:f0da2
#@md:transfer right:f0530
#@md:transfer up:f0da3
#@md:transit connection:f0d3c
#@md:transit connection horizontal:f1546
#@md:transit connection variant:f0d3d
#@md:transit detour:f0f8b
#@md:transit skip:f1515
#@md:transit transfer:f06ae
#@md:transition:f0915
#@md:transition masked:f0916
#@md:translate:f05ca
#@md:translate off:f0e06
#@md:transmission tower:f0d3e
#@md:transmission tower export:f192c
#@md:transmission tower import:f192d
#@md:transmission tower off:f19dd
#@md:trash can:f0a79
#@md:trash can outline:f0a7a
#@md:tray:f1294
#@md:tray alert:f1295
#@md:tray arrow down:f0120
#@md:tray arrow up:f011d
#@md:tray full:f1296
#@md:tray minus:f1297
#@md:tray plus:f1298
#@md:tray remove:f1299
#@md:treasure chest:f0726
#@md:tree:f0531
#@md:tree outline:f0e69
#@md:trello:f0532
#@md:trending down:f0533
#@md:trending neutral:f0534
#@md:trending up:f0535
#@md:triangle:f0536
#@md:triangle outline:f0537
#@md:triangle small down:f1a09
#@md:triangle small up:f1a0a
#@md:triangle wave:f147c
#@md:triforce:f0bd9
#@md:trophy:f0538
#@md:trophy award:f0539
#@md:trophy broken:f0da4
#@md:trophy outline:f053a
#@md:trophy variant:f053b
#@md:trophy variant outline:f053c
#@md:truck:f053d
#@md:truck alert:f19de
#@md:truck alert outline:f19df
#@md:truck cargo container:f18d8
#@md:truck check:f0cd4
#@md:truck check outline:f129a
#@md:truck delivery:f053e
#@md:truck delivery outline:f129b
#@md:truck fast:f0788
#@md:truck fast outline:f129c
#@md:truck flatbed:f1891
#@md:truck minus:f19ae
#@md:truck minus outline:f19bd
#@md:truck outline:f129d
#@md:truck plus:f19ad
#@md:truck plus outline:f19bc
#@md:truck remove:f19af
#@md:truck remove outline:f19be
#@md:truck snowflake:f19a6
#@md:truck trailer:f0727
#@md:trumpet:f1096
#@md:tshirt crew:f0a7b
#@md:tshirt crew outline:f053f
#@md:tshirt v:f0a7c
#@md:tshirt v outline:f0540
#@md:tsunami:f1a81
#@md:tumble dryer:f0917
#@md:tumble dryer alert:f11ba
#@md:tumble dryer off:f11bb
#@md:tune:f062e
#@md:tune variant:f1542
#@md:tune vertical:f066a
#@md:tune vertical variant:f1543
#@md:tunnel:f183d
#@md:tunnel outline:f183e
#@md:turbine:f1a82
#@md:turkey:f171b
#@md:turnstile:f0cd5
#@md:turnstile outline:f0cd6
#@md:turtle:f0cd7
#@md:twitch:f0543
#@md:twitter:f0544
#@md:two factor authentication:f09af
#@md:typewriter:f0f2d
#@md:ubisoft:f0bda
#@md:ubuntu:f0548
#@md:ufo:f10c4
#@md:ufo outline:f10c5
#@md:ultra high definition:f07f9
#@md:umbraco:f0549
#@md:umbrella:f054a
#@md:umbrella beach:f188a
#@md:umbrella beach outline:f188b
#@md:umbrella closed:f09b0
#@md:umbrella closed outline:f13e2
#@md:umbrella closed variant:f13e1
#@md:umbrella outline:f054b
#@md:undo:f054c
#@md:undo variant:f054d
#@md:unfold less horizontal:f054e
#@md:unfold less vertical:f0760
#@md:unfold more horizontal:f054f
#@md:unfold more vertical:f0761
#@md:ungroup:f0550
#@md:unicode:f0ed0
#@md:unicorn:f15c2
#@md:unicorn variant:f15c3
#@md:unicycle:f15e5
#@md:unity:f06af
#@md:unreal:f09b1
#@md:update:f06b0
#@md:upload:f0552
#@md:upload lock:f1373
#@md:upload lock outline:f1374
#@md:upload multiple:f083d
#@md:upload network:f06f6
#@md:upload network outline:f0cd8
#@md:upload off:f10c6
#@md:upload off outline:f10c7
#@md:upload outline:f0e07
#@md:usb:f0553
#@md:usb flash drive:f129e
#@md:usb flash drive outline:f129f
#@md:usb port:f11f0
#@md:vacuum:f19a1
#@md:vacuum outline:f19a2
#@md:valve:f1066
#@md:valve closed:f1067
#@md:valve open:f1068
#@md:van passenger:f07fa
#@md:van utility:f07fb
#@md:vanish:f07fc
#@md:vanish quarter:f1554
#@md:vanity light:f11e1
#@md:variable:f0ae7
#@md:variable box:f1111
#@md:vector arrange above:f0554
#@md:vector arrange below:f0555
#@md:vector bezier:f0ae8
#@md:vector circle:f0556
#@md:vector circle variant:f0557
#@md:vector combine:f0558
#@md:vector curve:f0559
#@md:vector difference:f055a
#@md:vector difference ab:f055b
#@md:vector difference ba:f055c
#@md:vector ellipse:f0893
#@md:vector intersection:f055d
#@md:vector line:f055e
#@md:vector link:f0fe8
#@md:vector point:f055f
#@md:vector polygon:f0560
#@md:vector polygon variant:f1856
#@md:vector polyline:f0561
#@md:vector polyline edit:f1225
#@md:vector polyline minus:f1226
#@md:vector polyline plus:f1227
#@md:vector polyline remove:f1228
#@md:vector radius:f074a
#@md:vector rectangle:f05c6
#@md:vector selection:f0562
#@md:vector square:f0001
#@md:vector square close:f1857
#@md:vector square edit:f18d9
#@md:vector square minus:f18da
#@md:vector square open:f1858
#@md:vector square plus:f18db
#@md:vector square remove:f18dc
#@md:vector triangle:f0563
#@md:vector union:f0564
#@md:vhs:f0a1b
#@md:vibrate:f0566
#@md:vibrate off:f0cd9
#@md:video:f0567
#@md:video 2d:f1a1c
#@md:video 3d:f07fd
#@md:video 3d off:f13d9
#@md:video 3d variant:f0ed1
#@md:video 4k box:f083e
#@md:video account:f0919
#@md:video box:f00fd
#@md:video box off:f00fe
#@md:video check:f1069
#@md:video check outline:f106a
#@md:video high definition:f152e
#@md:video image:f091a
#@md:video input antenna:f083f
#@md:video input component:f0840
#@md:video input hdmi:f0841
#@md:video input scart:f0f8c
#@md:video input svideo:f0842
#@md:video marker:f19a9
#@md:video marker outline:f19aa
#@md:video minus:f09b2
#@md:video minus outline:f02ba
#@md:video off:f0568
#@md:video off outline:f0bdb
#@md:video outline:f0bdc
#@md:video plus:f09b3
#@md:video plus outline:f01d3
#@md:video stabilization:f091b
#@md:video switch:f0569
#@md:video switch outline:f0790
#@md:video vintage:f0a1c
#@md:video wireless:f0ed2
#@md:video wireless outline:f0ed3
#@md:view agenda:f056a
#@md:view agenda outline:f11d8
#@md:view array:f056b
#@md:view array outline:f1485
#@md:view carousel:f056c
#@md:view carousel outline:f1486
#@md:view column:f056d
#@md:view column outline:f1487
#@md:view comfy:f0e6a
#@md:view comfy outline:f1488
#@md:view compact:f0e6b
#@md:view compact outline:f0e6c
#@md:view dashboard:f056e
#@md:view dashboard edit:f1947
#@md:view dashboard edit outline:f1948
#@md:view dashboard outline:f0a1d
#@md:view dashboard variant:f0843
#@md:view dashboard variant outline:f1489
#@md:view day:f056f
#@md:view day outline:f148a
#@md:view gallery:f1888
#@md:view gallery outline:f1889
#@md:view grid:f0570
#@md:view grid outline:f11d9
#@md:view grid plus:f0f8d
#@md:view grid plus outline:f11da
#@md:view headline:f0571
#@md:view list:f0572
#@md:view list outline:f148b
#@md:view module:f0573
#@md:view module outline:f148c
#@md:view parallel:f0728
#@md:view parallel outline:f148d
#@md:view quilt:f0574
#@md:view quilt outline:f148e
#@md:view sequential:f0729
#@md:view sequential outline:f148f
#@md:view split horizontal:f0bcb
#@md:view split vertical:f0bcc
#@md:view stream:f0575
#@md:view stream outline:f1490
#@md:view week:f0576
#@md:view week outline:f1491
#@md:vimeo:f0577
#@md:violin:f060f
#@md:virtual reality:f0894
#@md:virus:f13b6
#@md:virus off:f18e1
#@md:virus off outline:f18e2
#@md:virus outline:f13b7
#@md:vlc:f057c
#@md:voicemail:f057d
#@md:volcano:f1a83
#@md:volcano outline:f1a84
#@md:volleyball:f09b4
#@md:volume high:f057e
#@md:volume low:f057f
#@md:volume medium:f0580
#@md:volume minus:f075e
#@md:volume mute:f075f
#@md:volume off:f0581
#@md:volume plus:f075d
#@md:volume source:f1120
#@md:volume variant off:f0e08
#@md:volume vibrate:f1121
#@md:vote:f0a1f
#@md:vote outline:f0a20
#@md:vpn:f0582
#@md:vuejs:f0844
#@md:vuetify:f0e6d
#@md:walk:f0583
#@md:wall:f07fe
#@md:wall fire:f1a11
#@md:wall sconce:f091c
#@md:wall sconce flat:f091d
#@md:wall sconce flat outline:f17c9
#@md:wall sconce flat variant:f041c
#@md:wall sconce flat variant outline:f17ca
#@md:wall sconce outline:f17cb
#@md:wall sconce round:f0748
#@md:wall sconce round outline:f17cc
#@md:wall sconce round variant:f091e
#@md:wall sconce round variant outline:f17cd
#@md:wallet:f0584
#@md:wallet giftcard:f0585
#@md:wallet membership:f0586
#@md:wallet outline:f0bdd
#@md:wallet plus:f0f8e
#@md:wallet plus outline:f0f8f
#@md:wallet travel:f0587
#@md:wallpaper:f0e09
#@md:wan:f0588
#@md:wardrobe:f0f90
#@md:wardrobe outline:f0f91
#@md:warehouse:f0f81
#@md:washing machine:f072a
#@md:washing machine alert:f11bc
#@md:washing machine off:f11bd
#@md:watch:f0589
#@md:watch export:f058a
#@md:watch export variant:f0895
#@md:watch import:f058b
#@md:watch import variant:f0896
#@md:watch variant:f0897
#@md:watch vibrate:f06b1
#@md:watch vibrate off:f0cda
#@md:water:f058c
#@md:water alert:f1502
#@md:water alert outline:f1503
#@md:water boiler:f0f92
#@md:water boiler alert:f11b3
#@md:water boiler off:f11b4
#@md:water check:f1504
#@md:water check outline:f1505
#@md:water circle:f1806
#@md:water minus:f1506
#@md:water minus outline:f1507
#@md:water off:f058d
#@md:water off outline:f1508
#@md:water opacity:f1855
#@md:water outline:f0e0a
#@md:water percent:f058e
#@md:water percent alert:f1509
#@md:water plus:f150a
#@md:water plus outline:f150b
#@md:water polo:f12a0
#@md:water pump:f058f
#@md:water pump off:f0f93
#@md:water remove:f150c
#@md:water remove outline:f150d
#@md:water sync:f17c6
#@md:water thermometer:f1a85
#@md:water thermometer outline:f1a86
#@md:water well:f106b
#@md:water well outline:f106c
#@md:waterfall:f1849
#@md:watering can:f1481
#@md:watering can outline:f1482
#@md:watermark:f0612
#@md:wave:f0f2e
#@md:waveform:f147d
#@md:waves:f078d
#@md:waves arrow left:f1859
#@md:waves arrow right:f185a
#@md:waves arrow up:f185b
#@md:waze:f0bde
#@md:weather cloudy:f0590
#@md:weather cloudy alert:f0f2f
#@md:weather cloudy arrow right:f0e6e
#@md:weather cloudy clock:f18f6
#@md:weather fog:f0591
#@md:weather hail:f0592
#@md:weather hazy:f0f30
#@md:weather hurricane:f0898
#@md:weather lightning:f0593
#@md:weather lightning rainy:f067e
#@md:weather night:f0594
#@md:weather night partly cloudy:f0f31
#@md:weather partly cloudy:f0595
#@md:weather partly lightning:f0f32
#@md:weather partly rainy:f0f33
#@md:weather partly snowy:f0f34
#@md:weather partly snowy rainy:f0f35
#@md:weather pouring:f0596
#@md:weather rainy:f0597
#@md:weather snowy:f0598
#@md:weather snowy heavy:f0f36
#@md:weather snowy rainy:f067f
#@md:weather sunny:f0599
#@md:weather sunny alert:f0f37
#@md:weather sunny off:f14e4
#@md:weather sunset:f059a
#@md:weather sunset down:f059b
#@md:weather sunset up:f059c
#@md:weather tornado:f0f38
#@md:weather windy:f059d
#@md:weather windy variant:f059e
#@md:web:f059f
#@md:web box:f0f94
#@md:web cancel:f1790
#@md:web check:f0789
#@md:web clock:f124a
#@md:web minus:f10a0
#@md:web off:f0a8e
#@md:web plus:f0033
#@md:web refresh:f1791
#@md:web remove:f0551
#@md:web sync:f1792
#@md:webcam:f05a0
#@md:webcam off:f1737
#@md:webhook:f062f
#@md:webpack:f072b
#@md:webrtc:f1248
#@md:wechat:f0611
#@md:weight:f05a1
#@md:weight gram:f0d3f
#@md:weight kilogram:f05a2
#@md:weight lifter:f115d
#@md:weight pound:f09b5
#@md:whatsapp:f05a3
#@md:wheel barrow:f14f2
#@md:wheelchair:f1a87
#@md:wheelchair accessibility:f05a4
#@md:whistle:f09b6
#@md:whistle outline:f12bc
#@md:white balance auto:f05a5
#@md:white balance incandescent:f05a6
#@md:white balance iridescent:f05a7
#@md:white balance sunny:f05a8
#@md:widgets:f072c
#@md:widgets outline:f1355
#@md:wifi:f05a9
#@md:wifi alert:f16b5
#@md:wifi arrow down:f16b6
#@md:wifi arrow left:f16b7
#@md:wifi arrow left right:f16b8
#@md:wifi arrow right:f16b9
#@md:wifi arrow up:f16ba
#@md:wifi arrow up down:f16bb
#@md:wifi cancel:f16bc
#@md:wifi check:f16bd
#@md:wifi cog:f16be
#@md:wifi lock:f16bf
#@md:wifi lock open:f16c0
#@md:wifi marker:f16c1
#@md:wifi minus:f16c2
#@md:wifi off:f05aa
#@md:wifi plus:f16c3
#@md:wifi refresh:f16c4
#@md:wifi remove:f16c5
#@md:wifi settings:f16c6
#@md:wifi star:f0e0b
#@md:wifi strength 1:f091f
#@md:wifi strength 1 alert:f0920
#@md:wifi strength 1 lock:f0921
#@md:wifi strength 1 lock open:f16cb
#@md:wifi strength 2:f0922
#@md:wifi strength 2 alert:f0923
#@md:wifi strength 2 lock:f0924
#@md:wifi strength 2 lock open:f16cc
#@md:wifi strength 3:f0925
#@md:wifi strength 3 alert:f0926
#@md:wifi strength 3 lock:f0927
#@md:wifi strength 3 lock open:f16cd
#@md:wifi strength 4:f0928
#@md:wifi strength 4 alert:f0929
#@md:wifi strength 4 lock:f092a
#@md:wifi strength 4 lock open:f16ce
#@md:wifi strength alert outline:f092b
#@md:wifi strength lock open outline:f16cf
#@md:wifi strength lock outline:f092c
#@md:wifi strength off:f092d
#@md:wifi strength off outline:f092e
#@md:wifi strength outline:f092f
#@md:wifi sync:f16c7
#@md:wikipedia:f05ac
#@md:wind power:f1a88
#@md:wind power outline:f1a89
#@md:wind turbine:f0da5
#@md:wind turbine alert:f19ab
#@md:wind turbine check:f19ac
#@md:window close:f05ad
#@md:window closed:f05ae
#@md:window closed variant:f11db
#@md:window maximize:f05af
#@md:window minimize:f05b0
#@md:window open:f05b1
#@md:window open variant:f11dc
#@md:window restore:f05b2
#@md:window shutter:f111c
#@md:window shutter alert:f111d
#@md:window shutter cog:f1a8a
#@md:window shutter open:f111e
#@md:window shutter settings:f1a8b
#@md:windsock:f15fa
#@md:wiper:f0ae9
#@md:wiper wash:f0da6
#@md:wiper wash alert:f18df
#@md:wizard hat:f1477
#@md:wordpress:f05b4
#@md:wrap:f05b6
#@md:wrap disabled:f0bdf
#@md:wrench:f05b7
#@md:wrench clock:f19a3
#@md:wrench outline:f0be0
#@md:xamarin:f0845
#@md:xml:f05c0
#@md:xmpp:f07ff
#@md:yahoo:f0b4f
#@md:yeast:f05c1
#@md:yin yang:f0680
#@md:yoga:f117c
#@md:youtube:f05c3
#@md:youtube gaming:f0848
#@md:youtube studio:f0847
#@md:youtube subscription:f0d40
#@md:youtube tv:f0448
#@md:yurt:f1516
#@md:z wave:f0aea
#@md:zend:f0aeb
#@md:zigbee:f0d41
#@md:zip box:f05c4
#@md:zip box outline:f0ffa
#@md:zip disk:f0a23
#@md:zodiac aquarius:f0a7d
#@md:zodiac aries:f0a7e
#@md:zodiac cancer:f0a7f
#@md:zodiac capricorn:f0a80
#@md:zodiac gemini:f0a81
#@md:zodiac leo:f0a82
#@md:zodiac libra:f0a83
#@md:zodiac pisces:f0a84
#@md:zodiac sagittarius:f0a85
#@md:zodiac scorpio:f0a86
#@md:zodiac taurus:f0a87
#@md:zodiac virgo:f0a88
#@oc:accessibility:f406
#@oc:accessibility inset:f40b
#@oc:alert:f421
#@oc:alert fill:f40c
#@oc:apps:f40e
#@oc:archive:f411
#@oc:arrow both:f416
#@oc:arrow down:f433
#@oc:arrow down left:f424
#@oc:arrow down right:f43e
#@oc:arrow left:f434
#@oc:arrow right:f432
#@oc:arrow switch:f443
#@oc:arrow up:f431
#@oc:arrow up left:f45c
#@oc:arrow up right:f46c
#@oc:beaker:f499
#@oc:bell:f49a
#@oc:bell fill:f476
#@oc:bell slash:f478
#@oc:blocked:f479
#@oc:bold:f49d
#@oc:book:f405
#@oc:bookmark:f461
#@oc:bookmark fill:f47a
#@oc:bookmark slash:f533
#@oc:bookmark slash fill:f493
#@oc:briefcase:f491
#@oc:broadcast:f43c
#@oc:browser:f488
#@oc:bug:f46f
#@oc:cache:f49b
#@oc:calendar:f455
#@oc:check:f42e
#@oc:check circle:f49e
#@oc:check circle fill:f4a4
#@oc:checkbox:f4a7
#@oc:checklist:f45e
#@oc:chevron down:f47c
#@oc:chevron left:f47d
#@oc:chevron right:f460
#@oc:chevron up:f47b
#@oc:circle:f4aa
#@oc:circle slash:f468
#@oc:clock:f43a
#@oc:clock fill:f4ab
#@oc:cloud:f4ac
#@oc:cloud offline:f4ad
#@oc:code:f44f
#@oc:code of conduct:f4ae
#@oc:code review:f4af
#@oc:code square:f4b0
#@oc:codescan:f4b1
#@oc:codescan checkmark:f4b2
#@oc:codespaces:f4b3
#@oc:columns:f4b4
#@oc:command palette:f4b5
#@oc:comment:f41f
#@oc:comment discussion:f442
#@oc:commit:f4b6
#@oc:container:f4b7
#@oc:copilot:f4b8
#@oc:copilot error:f4b9
#@oc:copilot warning:f4ba
#@oc:copy:f4bb
#@oc:cpu:f4bc
#@oc:credit card:f439
#@oc:cross reference:f4bd
#@oc:dash:f48b
#@oc:database:f472
#@oc:dependabot:f4be
#@oc:desktop download:f498
#@oc:device camera:f446
#@oc:device camera video:f447
#@oc:device desktop:f4a9
#@oc:device mobile:f42c
#@oc:diamond:f4bf
#@oc:diff:f440
#@oc:diff added:f457
#@oc:diff ignored:f474
#@oc:diff modified:f459
#@oc:diff removed:f458
#@oc:diff renamed:f45a
#@oc:discussion closed:f4c0
#@oc:discussion duplicate:f4c1
#@oc:discussion outdated:f4c2
#@oc:dot:f4c3
#@oc:dot fill:f444
#@oc:download:f409
#@oc:duplicate:f4c4
#@oc:ellipsis:f475
#@oc:eye:f441
#@oc:eye closed:f4c5
#@oc:feed discussion:f4c6
#@oc:feed forked:f4c7
#@oc:feed heart:f4c8
#@oc:feed merged:f4c9
#@oc:feed person:f4ca
#@oc:feed repo:f4cb
#@oc:feed rocket:f4cc
#@oc:feed star:f4cd
#@oc:feed tag:f4ce
#@oc:feed trophy:f4cf
#@oc:file:f4a5
#@oc:file added:f4d0
#@oc:file badge:f4d1
#@oc:file binary:f471
#@oc:file code:f40d
#@oc:file diff:f4d2
#@oc:file directory:f413
#@oc:file directory fill:f4d3
#@oc:file directory open fill:f4d4
#@oc:file media:f40f
#@oc:file moved:f4d5
#@oc:file removed:f4d6
#@oc:file submodule:f414
#@oc:file symlink directory:f482
#@oc:file symlink file:f481
#@oc:file zip:f410
#@oc:filter:f4d7
#@oc:fiscal host:f4d8
#@oc:flame:f490
#@oc:fold:f48c
#@oc:fold down:f4d9
#@oc:fold up:f4da
#@oc:gear:f423
#@oc:gift:f436
#@oc:git branch:f418
#@oc:git commit:f417
#@oc:git compare:f47f
#@oc:git merge:f419
#@oc:git merge queue:f4db
#@oc:git pull request:f407
#@oc:git pull request closed:f4dc
#@oc:git pull request draft:f4dd
#@oc:globe:f484
#@oc:goal:f4de
#@oc:grabber:f4a6
#@oc:graph:f437
#@oc:hash:f4df
#@oc:heading:f4e0
#@oc:heart:2665
#@oc:heart fill:f4e1
#@oc:history:f464
#@oc:home:f46d
#@oc:home fill:f4e2
#@oc:horizontal rule:f45b
#@oc:hourglass:f4e3
#@oc:hubot:f477
#@oc:id badge:f4e4
#@oc:image:f4e5
#@oc:inbox:f48d
#@oc:infinity:f4e6
#@oc:info:f449
#@oc:issue closed:f41d
#@oc:issue draft:f4e7
#@oc:issue opened:f41b
#@oc:issue reopened:f41c
#@oc:issue tracked by:f4e8
#@oc:issue tracks:f4e9
#@oc:italic:f49f
#@oc:iterations:f4ea
#@oc:kebab horizontal:f4eb
#@oc:key:f43d
#@oc:key asterisk:f4ec
#@oc:law:f495
#@oc:light bulb:f400
#@oc:link:f44c
#@oc:link external:f465
#@oc:list ordered:f452
#@oc:list unordered:f451
#@oc:location:f450
#@oc:lock:f456
#@oc:log:f4ed
#@oc:logo gist:f480
#@oc:logo github:f470
#@oc:mail:f42f
#@oc:mark github:f408
#@oc:markdown:f48a
#@oc:megaphone:f45f
#@oc:mention:f486
#@oc:meter:f463
#@oc:milestone:f45d
#@oc:mirror:f41a
#@oc:moon:f4ee
#@oc:mortar board:f494
#@oc:move to bottom:f4ef
#@oc:move to end:f4f0
#@oc:move to start:f4f1
#@oc:move to top:f4f2
#@oc:multi select:f4f3
#@oc:mute:f466
#@oc:no entry:f4f4
#@oc:north star:f4f5
#@oc:note:f4f6
#@oc:number:f4f7
#@oc:organization:f42b
#@oc:package:f487
#@oc:package dependencies:f4f8
#@oc:package dependents:f4f9
#@oc:paintbrush:f48f
#@oc:paper airplane:f4fa
#@oc:paperclip:f4fb
#@oc:passkey fill:f4fc
#@oc:paste:f429
#@oc:pencil:f448
#@oc:people:f4fd
#@oc:person:f415
#@oc:person add:f4fe
#@oc:person fill:f4ff
#@oc:pin:f435
#@oc:play:f500
#@oc:plug:f492
#@oc:plus:f44d
#@oc:plus circle:f501
#@oc:project:f502
#@oc:project roadmap:f503
#@oc:project symlink:f504
#@oc:project template:f505
#@oc:pulse:f469
#@oc:question:f420
#@oc:quote:f453
#@oc:read:f430
#@oc:rel file path:f506
#@oc:reply:f4a8
#@oc:repo:f401
#@oc:repo clone:f43f
#@oc:repo deleted:f507
#@oc:repo forked:f402
#@oc:repo locked:f508
#@oc:repo pull:f404
#@oc:repo push:f403
#@oc:repo template:f509
#@oc:report:f50a
#@oc:rocket:f427
#@oc:rows:f50b
#@oc:rss:f428
#@oc:ruby:f43b
#@oc:screen full:f50c
#@oc:screen normal:f50d
#@oc:search:f422
#@oc:server:f473
#@oc:share:f50e
#@oc:share android:f50f
#@oc:shield:f49c
#@oc:shield check:f510
#@oc:shield lock:f511
#@oc:shield slash:f512
#@oc:shield x:f513
#@oc:sidebar collapse:f514
#@oc:sidebar expand:f515
#@oc:sign in:f42a
#@oc:sign out:f426
#@oc:single select:f516
#@oc:skip:f517
#@oc:skip fill:f518
#@oc:sliders:f462
#@oc:smiley:f4a2
#@oc:sort asc:f519
#@oc:sort desc:f51a
#@oc:sparkle fill:f51b
#@oc:sponsor tiers:f51c
#@oc:square:f51d
#@oc:square fill:f445
#@oc:squirrel:f483
#@oc:stack:f51e
#@oc:star:f41e
#@oc:star fill:f51f
#@oc:stop:f46e
#@oc:stopwatch:f520
#@oc:strikethrough:f521
#@oc:sun:f522
#@oc:sync:f46a
#@oc:tab:f523
#@oc:tab external:f524
#@oc:table:f525
#@oc:tag:f412
#@oc:tasklist:f4a0
#@oc:telescope:f46b
#@oc:telescope fill:f526
#@oc:terminal:f489
#@oc:three bars:f44e
#@oc:thumbsdown:f497
#@oc:thumbsup:f496
#@oc:tools:f425
#@oc:trash:f48e
#@oc:triangle down:f44b
#@oc:triangle left:f438
#@oc:triangle right:f44a
#@oc:triangle up:f47e
#@oc:trophy:f527
#@oc:typography:f528
#@oc:unfold:f42d
#@oc:unlink:f529
#@oc:unlock:f52a
#@oc:unmute:f485
#@oc:unread:f52b
#@oc:unverified:f4a3
#@oc:upload:f40a
#@oc:verified:f4a1
#@oc:versions:f454
#@oc:video:f52c
#@oc:webhook:f52d
#@oc:workflow:f52e
#@oc:x:f467
#@oc:x circle:f52f
#@oc:x circle fill:f530
#@oc:zap:26a1
#@oc:zoom in:f531
#@oc:zoom out:f532
#@pl:branch:e0a0
#@pl:current line:e0a1
#@pl:hostname:e0a2
#@pl:left hard divider:e0b0
#@pl:left soft divider:e0b1
#@pl:line number:e0a1
#@pl:readonly:e0a2
#@pl:right hard divider:e0b2
#@pl:right soft divider:e0b3
#@ple:backslash separator:e0b9
#@ple:backslash separator redundant:e0bf
#@ple:column number:e0a3
#@ple:current column:e0a3
#@ple:flame thick:e0c0
#@ple:flame thick mirrored:e0c2
#@ple:flame thin:e0c1
#@ple:flame thin mirrored:e0c3
#@ple:forwardslash separator:e0bb
#@ple:forwardslash separator redundant:e0bd
#@ple:honeycomb:e0cc
#@ple:honeycomb outline:e0cd
#@ple:ice waveform:e0c8
#@ple:ice waveform mirrored:e0ca
#@ple:left half circle thick:e0b6
#@ple:left half circle thin:e0b7
#@ple:left hard divider inverse:e0d7
#@ple:lego block facing:e0d0
#@ple:lego block sideways:e0d1
#@ple:lego separator:e0ce
#@ple:lego separator thin:e0cf
#@ple:lower left triangle:e0b8
#@ple:lower right triangle:e0ba
#@ple:pixelated squares big:e0c6
#@ple:pixelated squares big mirrored:e0c7
#@ple:pixelated squares small:e0c4
#@ple:pixelated squares small mirrored:e0c5
#@ple:right half circle thick:e0b4
#@ple:right half circle thin:e0b5
#@ple:right hard divider inverse:e0d6
#@ple:trapezoid top bottom:e0d2
#@ple:trapezoid top bottom mirrored:e0d4
#@ple:upper left triangle:e0bc
#@ple:upper right triangle:e0be
#@po:away:e007
#@po:clean code:e000
#@po:external interruption:e00a
#@po:internal interruption:e009
#@po:long pause:e006
#@po:pair programming:e008
#@po:pomodoro done:e001
#@po:pomodoro estimated:e002
#@po:pomodoro squashed:e004
#@po:pomodoro ticking:e003
#@po:short pause:e005
#@se:apple:e635
#@se:argdown:e636
#@se:asm:e637
#@se:audio:e638
#@se:babel:e639
#@se:bazel:e63a
#@se:bicep:e63b
#@se:bower:e61a
#@se:bsl:e63c
#@se:c:e649
#@se:c sharp:e648
#@se:cake:e63e
#@se:cake php:e63d
#@se:checkbox:e63f
#@se:checkbox unchecked:e640
#@se:cjsx:e61b
#@se:clock:e641
#@se:clojure:e642
#@se:code climate:e643
#@se:code search:e644
#@se:coffee:e61b
#@se:coldfusion:e645
#@se:config:e615
#@se:cpp:e646
#@se:crystal:e62f
#@se:crystal embedded:e647
#@se:css:e614
#@se:csv:e64a
#@se:cu:e64b
#@se:d:e651
#@se:dart:e64c
#@se:db:e64d
#@se:default:e64e
#@se:deprecation cop:e64f
#@se:docker:e650
#@se:editorconfig:e652
#@se:ejs:e618
#@se:elixir:e62d
#@se:elixir script:e653
#@se:elm:e62c
#@se:error:e654
#@se:eslint:e655
#@se:ethereum:e656
#@se:f sharp:e65a
#@se:favicon:e623
#@se:firebase:e657
#@se:firefox:e658
#@se:folder:e613
#@se:font:e659
#@se:git:e65d
#@se:git folder:e65d
#@se:git ignore:e65d
#@se:github:e65b
#@se:gitlab:e65c
#@se:go:e627
#@se:go2:e65e
#@se:godot:e65f
#@se:gradle:e660
#@se:grails:e661
#@se:graphql:e662
#@se:grunt:e611
#@se:gulp:e610
#@se:hacklang:e663
#@se:haml:e664
#@se:happenings:e665
#@se:haskell:e61f
#@se:haxe:e666
#@se:heroku:e607
#@se:hex:e667
#@se:home:e617
#@se:html:e60e
#@se:ignored:e668
#@se:illustrator:e669
#@se:image:e60d
#@se:info:e66a
#@se:ionic:e66b
#@se:jade:e66c
#@se:java:e66d
#@se:javascript:e60c
#@se:jenkins:e66e
#@se:jinja:e66f
#@se:json:e60b
#@se:julia:e624
#@se:karma:e622
#@se:kotlin:e634
#@se:less:e60b
#@se:license:e60a
#@se:liquid:e670
#@se:livescript:e671
#@se:lock:e672
#@se:lua:e620
#@se:makefile:e673
#@se:markdown:e609
#@se:maven:e674
#@se:mdo:e675
#@se:mustache:e60f
#@se:new file:e676
#@se:nim:e677
#@se:notebook:e678
#@se:npm:e616
#@se:npm ignored:e616
#@se:nunjucks:e679
#@se:ocaml:e67a
#@se:odata:e67b
#@se:pddl:e67c
#@se:pdf:e67d
#@se:perl:e67e
#@se:photoshop:e67f
#@se:php:e608
#@se:pipeline:e680
#@se:plan:e681
#@se:platformio:e682
#@se:play arrow:e602
#@se:powershell:e683
#@se:prisma:e684
#@se:project:e601
#@se:prolog:e685
#@se:pug:e686
#@se:puppet:e631
#@se:purescript:e630
#@se:python:e606
#@se:r:e68a
#@se:rails:e604
#@se:react:e625
#@se:reasonml:e687
#@se:rescript:e688
#@se:rollup:e689
#@se:ruby:e605
#@se:rust:e68b
#@se:salesforce:e68c
#@se:sass:e603
#@se:sbt:e68d
#@se:scala:e68e
#@se:search:e68f
#@se:settings:e690
#@se:shell:e691
#@se:slim:e692
#@se:smarty:e693
#@se:spring:e694
#@se:stylelint:e695
#@se:stylus:e600
#@se:sublime:e696
#@se:svelte:e697
#@se:svg:e698
#@se:swift:e699
#@se:terraform:e69a
#@se:tex:e69b
#@se:text:e64e
#@se:time cop:e641
#@se:todo:e69c
#@se:tsconfig:e69d
#@se:twig:e61c
#@se:typescript:e628
#@se:vala:e69e
#@se:video:e69f
#@se:vue:e6a0
#@se:wasm:e6a1
#@se:wat:e6a2
#@se:webpack:e6a3
#@se:wgt:e6a4
#@se:word:e6a5
#@se:xls:e6a6
#@se:xml:e619
#@se:yarn:e6a7
#@se:yml:e6a8
#@se:zig:e6a9
#@se:zip:e6aa
#@we:alien:e36e
#@we:aliens:e345
#@we:barometer:e372
#@we:celsius:e339
#@we:cloud:e33d
#@we:cloud down:e33a
#@we:cloud refresh:e33b
#@we:cloud up:e33c
#@we:cloudy:e312
#@we:cloudy gusts:e310
#@we:cloudy windy:e311
#@we:day cloudy:e302
#@we:day cloudy gusts:e300
#@we:day cloudy high:e376
#@we:day cloudy windy:e301
#@we:day fog:e303
#@we:day hail:e304
#@we:day haze:e3ae
#@we:day light wind:e3bc
#@we:day lightning:e305
#@we:day rain:e308
#@we:day rain mix:e306
#@we:day rain wind:e307
#@we:day showers:e309
#@we:day sleet:e3aa
#@we:day sleet storm:e362
#@we:day snow:e30a
#@we:day snow thunderstorm:e365
#@we:day snow wind:e35f
#@we:day sprinkle:e30b
#@we:day storm showers:e30e
#@we:day sunny:e30d
#@we:day sunny overcast:e30c
#@we:day thunderstorm:e30f
#@we:day windy:e37d
#@we:degrees:e33e
#@we:direction down:e340
#@we:direction down left:e33f
#@we:direction down right:e380
#@we:direction left:e344
#@we:direction right:e349
#@we:direction up:e353
#@we:direction up left:e37f
#@we:direction up right:e352
#@we:dust:e35d
#@we:earthquake:e3be
#@we:fahrenheit:e341
#@we:fire:e3bf
#@we:flood:e375
#@we:fog:e313
#@we:gale warning:e3c5
#@we:hail:e314
#@we:horizon:e343
#@we:horizon alt:e342
#@we:hot:e36b
#@we:humidity:e373
#@we:hurricane:e36c
#@we:hurricane warning:e3c7
#@we:lightning:e315
#@we:lunar eclipse:e369
#@we:meteor:e36a
#@we:moon alt first quarter:e3ce
#@we:moon alt full:e3d5
#@we:moon alt new:e3e3
#@we:moon alt third quarter:e3dc
#@we:moon alt waning crescent 1:e3dd
#@we:moon alt waning crescent 2:e3de
#@we:moon alt waning crescent 3:e3df
#@we:moon alt waning crescent 4:e3e0
#@we:moon alt waning crescent 5:e3e1
#@we:moon alt waning crescent 6:e3e2
#@we:moon alt waning gibbous 1:e3d6
#@we:moon alt waning gibbous 2:e3d7
#@we:moon alt waning gibbous 3:e3d8
#@we:moon alt waning gibbous 4:e3d9
#@we:moon alt waning gibbous 5:e3da
#@we:moon alt waning gibbous 6:e3db
#@we:moon alt waxing crescent 1:e3c8
#@we:moon alt waxing crescent 2:e3c9
#@we:moon alt waxing crescent 3:e3ca
#@we:moon alt waxing crescent 4:e3cb
#@we:moon alt waxing crescent 5:e3cc
#@we:moon alt waxing crescent 6:e3cd
#@we:moon alt waxing gibbous 1:e3cf
#@we:moon alt waxing gibbous 2:e3d0
#@we:moon alt waxing gibbous 3:e3d1
#@we:moon alt waxing gibbous 4:e3d2
#@we:moon alt waxing gibbous 5:e3d3
#@we:moon alt waxing gibbous 6:e3d4
#@we:moon first quarter:e394
#@we:moon full:e39b
#@we:moon new:e38d
#@we:moon third quarter:e3a2
#@we:moon waning crescent 1:e3a3
#@we:moon waning crescent 2:e3a4
#@we:moon waning crescent 3:e3a5
#@we:moon waning crescent 4:e3a6
#@we:moon waning crescent 5:e3a7
#@we:moon waning crescent 6:e3a8
#@we:moon waning gibbous 1:e39c
#@we:moon waning gibbous 2:e39d
#@we:moon waning gibbous 3:e39e
#@we:moon waning gibbous 4:e39f
#@we:moon waning gibbous 5:e3a0
#@we:moon waning gibbous 6:e3a1
#@we:moon waxing crescent 1:e38e
#@we:moon waxing crescent 2:e38f
#@we:moon waxing crescent 3:e390
#@we:moon waxing crescent 4:e391
#@we:moon waxing crescent 5:e392
#@we:moon waxing crescent 6:e393
#@we:moon waxing gibbous 1:e395
#@we:moon waxing gibbous 2:e396
#@we:moon waxing gibbous 3:e397
#@we:moon waxing gibbous 4:e398
#@we:moon waxing gibbous 5:e399
#@we:moon waxing gibbous 6:e39a
#@we:moonrise:e3c1
#@we:moonset:e3c2
#@we:na:e374
#@we:night alt cloudy:e37e
#@we:night alt cloudy gusts:e31f
#@we:night alt cloudy high:e377
#@we:night alt cloudy windy:e320
#@we:night alt hail:e321
#@we:night alt lightning:e322
#@we:night alt partly cloudy:e379
#@we:night alt rain:e325
#@we:night alt rain mix:e323
#@we:night alt rain wind:e324
#@we:night alt showers:e326
#@we:night alt sleet:e3ac
#@we:night alt sleet storm:e364
#@we:night alt snow:e327
#@we:night alt snow thunderstorm:e367
#@we:night alt snow wind:e361
#@we:night alt sprinkle:e328
#@we:night alt storm showers:e329
#@we:night alt thunderstorm:e32a
#@we:night clear:e32b
#@we:night cloudy:e32e
#@we:night cloudy gusts:e32c
#@we:night cloudy high:e378
#@we:night cloudy windy:e32d
#@we:night fog:e346
#@we:night hail:e32f
#@we:night lightning:e330
#@we:night partly cloudy:e37b
#@we:night rain:e333
#@we:night rain mix:e331
#@we:night rain wind:e332
#@we:night showers:e334
#@we:night sleet:e3ab
#@we:night sleet storm:e363
#@we:night snow:e335
#@we:night snow thunderstorm:e366
#@we:night snow wind:e360
#@we:night sprinkle:e336
#@we:night storm showers:e337
#@we:night thunderstorm:e338
#@we:rain:e318
#@we:rain mix:e316
#@we:rain wind:e317
#@we:raindrop:e371
#@we:raindrops:e34a
#@we:refresh:e348
#@we:refresh alt:e347
#@we:sandstorm:e37a
#@we:showers:e319
#@we:sleet:e3ad
#@we:small craft advisory:e3c4
#@we:smog:e36d
#@we:smoke:e35c
#@we:snow:e31a
#@we:snow wind:e35e
#@we:snowflake cold:e36f
#@we:solar eclipse:e368
#@we:sprinkle:e31b
#@we:stars:e370
#@we:storm showers:e31c
#@we:storm warning:e3c6
#@we:strong wind:e34b
#@we:sunrise:e34c
#@we:sunset:e34d
#@we:thermometer:e350
#@we:thermometer exterior:e34e
#@we:thermometer internal:e34f
#@we:thunderstorm:e31d
#@we:time 1:e382
#@we:time 10:e38b
#@we:time 11:e38c
#@we:time 12:e381
#@we:time 2:e383
#@we:time 3:e384
#@we:time 4:e385
#@we:time 5:e386
#@we:time 6:e387
#@we:time 7:e388
#@we:time 8:e389
#@we:time 9:e38a
#@we:tornado:e351
#@we:train:e3c3
#@we:tsunami:e3bd
#@we:umbrella:e37c
#@we:volcano:e3c0
#@we:wind beaufort 0:e3af
#@we:wind beaufort 1:e3b0
#@we:wind beaufort 10:e3b9
#@we:wind beaufort 11:e3ba
#@we:wind beaufort 12:e3bb
#@we:wind beaufort 2:e3b1
#@we:wind beaufort 3:e3b2
#@we:wind beaufort 4:e3b3
#@we:wind beaufort 5:e3b4
#@we:wind beaufort 6:e3b5
#@we:wind beaufort 7:e3b6
#@we:wind beaufort 8:e3b7
#@we:wind beaufort 9:e3b8
#@we:wind direction:e3a9
#@we:wind east:e35b
#@we:wind north:e35a
#@we:wind north east:e359
#@we:wind north west:e358
#@we:wind south:e357
#@we:wind south east:e356
#@we:wind south west:e355
#@we:wind west:e354
#@we:windy:e31e