diff --git a/CHANGELOG.md b/CHANGELOG.md
index bc35f28..4c27816 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,33 @@
# Change Log
All notable changes to this project will be documented in this file.
+## [2.5] - 2023-08-02
+Upgrade to version 2.5 of the T3SF framework for exciting new features, bug fixes, and an enhanced user experience. This release introduces the MSEL Playground, Dark mode, a Database with AI-generated Events, and much more!
+
+### New
+- Introducing the MSEL Playground, providing real-time editing capabilities for MSEL files.
+ - Added support for uploading .xls/.xlsx files and converting them to JSON format.
+ - Implemented the ability to save modified or converted MSEL files.
+- Refreshed the nav-bar style for an improved visual experience.
+- Created a new static folder for local web resources.
+ - Modified the source for certain images used in the application.
+- Added a function to set the Discord server ID.
+- Introduced a Dark mode option.
+- Implemented a Database with AI-generated Events.
+- Included a FAQ section addressing common TTX design questions.
+- Added a Platform indicator on the GUI.
+- Expanded the poll options to support more choices.
+- Added "Resume," "Pause," and "Abort" buttons on the GUI.
+- Swapped the functionality of the "Stop" and "Abort" buttons.
+- Included a random data generator button for the MSEL.
+- Added a Database with comprehensive example scenarios.
+- Improved clarity of script execution explanations.
+
+### Fixes
+- Fixed a bug in the log viewer where the "Framework status" text wouldn't display without available logs.
+- Rewrote the log display to address visual issues when selecting or when logs were too long.
+- Resolved an issue where exception messages were not properly displayed on the GUI.
+
## [2.1] - 2023-06-02
Upgrade to version 2.1 of the T3SF framework to benefit from an array of new features, bug fixes, and enhanced stability. This release brings important updates and automation to streamline various processes within the framework.
diff --git a/README.md b/README.md
index ad9e330..7ef8df4 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,8 @@
- [![Docker Image for Discord](https://github.com/Base4Security/T3SF/actions/workflows/publish_discord.yml/badge.svg)](https://github.com/Base4Security/T3SF/actions/workflows/publish_discord.yml)
- [![Docker Image for Slack](https://github.com/Base4Security/T3SF/actions/workflows/publish_slack.yml/badge.svg)](https://github.com/Base4Security/T3SF/actions/workflows/publish_slack.yml)
+ [![Docker Image for Discord](https://github.com/Base4Security/T3SF/actions/workflows/publish_discord.yml/badge.svg)](https://hub.docker.com/r/base4sec/t3sf)
+ [![Docker Image for Slack](https://github.com/Base4Security/T3SF/actions/workflows/publish_slack.yml/badge.svg)](https://hub.docker.com/r/base4sec/t3sf)
Technical Tabletop Exercises Simulation Framework
diff --git a/T3SF/T3SF.py b/T3SF/T3SF.py
index 1038e2b..d5829a5 100644
--- a/T3SF/T3SF.py
+++ b/T3SF/T3SF.py
@@ -17,12 +17,9 @@ def keyboard_interrupt_handler(signal_num, frame):
# Associate the signal handler function with SIGINT (keyboard interrupt)
signal.signal(signal.SIGINT, keyboard_interrupt_handler)
-
class T3SF(object):
def __init__(self, bot = None, app = None, platform = None):
self.response = None
- self.process_wait = False
- self.process_quit = False
self.regex_ready = None
self.incidents_running = False
self.poll_answered = False
@@ -85,8 +82,6 @@ async def TimeDifference(self, actual_real_time, previous_real_time, itinerator=
await self.NotifyGameMasters(type_info="poll_unanswered", data={'msg_poll':self._inject["Script"]})
except Exception as e:
- print("Get Time Difference")
- print(e)
T3SF_Logger.emit("Get Time Difference", message_type="ERROR")
T3SF_Logger.emit(e, message_type="ERROR")
raise
@@ -113,7 +108,7 @@ async def start(MSEL:str, platform, gui=False):
if gui == True:
T3SF_Logger.emit(message="Starting GUI", message_type="DEBUG")
gui_module = importlib.import_module("T3SF.gui.core")
- gui_module.GUI(platform_run=platform, MSEL=MSEL)
+ gui_module.GUI(platform_run=platform, MSEL=MSEL, static_url_path='/static', static_folder='static')
if platform.lower() == "slack":
bot_module = importlib.import_module("T3SF.slack.bot")
@@ -172,8 +167,6 @@ async def NotifyGameMasters(self, type_info=str, data=None):
return True
except Exception as e:
- print("NotifyGameMasters")
- print(e)
T3SF_Logger.emit("NotifyGameMasters", message_type="ERROR")
T3SF_Logger.emit(e, message_type="ERROR")
raise
@@ -199,12 +192,10 @@ async def ProcessIncidents(self, MSEL:str, ctx, function_type:str=None, itinerat
bypass_time = True
for information in self.data:
- if self.process_quit == True:
+ process_status = await self.check_status()
+
+ if process_status == 'break':
break
-
- if self.process_wait == True:
- while self.process_wait == True:
- await asyncio.sleep(5)
if itinerator == 0: # Set a variable to get the actual timestamp and the past one, after that checks for differences.
itinerator_loop = itinerator
@@ -248,18 +239,34 @@ async def ProcessIncidents(self, MSEL:str, ctx, function_type:str=None, itinerat
itinerator += 1
+ await self.check_status(reset=True)
await self.NotifyGameMasters(type_info="finished_incidents") # Informs that the script is completed and there's no remaining incidents.
- self.process_quit = False
- self.process_wait = False
self.incidents_running = False
except Exception as e:
- print("ProcessIncidents function")
- print(e)
T3SF_Logger.emit("ProcessIncidents function", message_type="ERROR")
T3SF_Logger.emit(e, message_type="ERROR")
raise
+ async def check_status(self, reset:bool = False):
+ from .utils import process_wait, process_quit
+
+ if reset:
+ process_quit = False
+ process_wait = False
+ return True
+
+ if process_quit == True:
+ return 'break'
+
+ if process_wait == True:
+ # print(f"We are waiting, because the variable {process_wait} is set to True")
+ await asyncio.sleep(5)
+ await self.check_status()
+ return False
+
+ return True
+
async def SendIncident(self, inject):
try:
self._inject = inject
@@ -273,8 +280,6 @@ async def SendIncident(self, inject):
return True
except Exception as e:
- print("SendIncident")
- print(e)
T3SF_Logger.emit("SendIncident", message_type="ERROR")
T3SF_Logger.emit(e, message_type="ERROR")
raise
@@ -292,8 +297,6 @@ async def SendPoll(self, inject):
return True
except Exception as e:
- print("SendPoll")
- print(e)
T3SF_Logger.emit("SendPoll", message_type="ERROR")
T3SF_Logger.emit(e, message_type="ERROR")
raise
diff --git a/T3SF/discord/discord.py b/T3SF/discord/discord.py
index e324a52..aa014b4 100644
--- a/T3SF/discord/discord.py
+++ b/T3SF/discord/discord.py
@@ -3,7 +3,7 @@
import random
import json
import re
-from T3SF import utils
+from T3SF import utils, T3SF_Logger
class Discord(object):
def __init__(self, bot):
@@ -62,11 +62,14 @@ async def InboxesAuto(self, T3SF_instance):
past_channel = category.name
pass
+ T3SF_Logger.emit(message=f'Please confirm the Regular Expression for the inboxes on the gm-chat!', message_type="INFO")
+
await T3SF_instance.response_auto.edit(embed=discord.Embed(
title = "ℹ️ Regex detected!",
description = f"Please confirm if the regex detected for the channels, is correct so we can get the inboxes!\n\nExample:\nGroup - Legal\nThe regex should be `Group -`\n\nDetected regex: `{regex}`",
color = 0x77B255).set_image(url=image_example).set_footer(text="Please answer with [Yes(Y)/No(N)]"))
+
def check_regex_channels(msg):
if started_from_gui:
return msg.content.lower() in ["y", "yes", "n", "no"]
@@ -120,6 +123,8 @@ def get_regex_channels(msg_regex_user):
await self.EditMessage(T3SF_instance=T3SF_instance, style="custom", variable="T3SF_instance.response_auto", color="GREEN", title=f"📩 Inboxes fetched! [{len(T3SF_instance.inboxes_all)}]", description=mensaje_inboxes)
+ T3SF_Logger.emit(message=f'Confirmed! Inboxes ready', message_type="INFO")
+
return True
async def InjectHandler(self, T3SF_instance):
@@ -168,8 +173,8 @@ async def PollHandler(self, T3SF_instance):
diff_secs = diff * 60
view = discord.ui.View()
- view.add_item(discord.ui.Button(style=discord.ButtonStyle.primary,label=poll_options[0], custom_id="poll|"+poll_options[0]))
- view.add_item(discord.ui.Button(style=discord.ButtonStyle.primary,label=poll_options[1], custom_id="poll|"+poll_options[1]))
+ for option in poll_options:
+ view.add_item(discord.ui.Button(style=discord.ButtonStyle.primary, label=option, custom_id="poll|" + option))
all_data = all_data+ f"\n\nYou have {diff} minute(s) to answer this poll!"
diff --git a/T3SF/gui/core.py b/T3SF/gui/core.py
index 6e700b4..4b9a599 100644
--- a/T3SF/gui/core.py
+++ b/T3SF/gui/core.py
@@ -1,4 +1,4 @@
-from flask import Flask, render_template, Response, stream_with_context, Blueprint, request
+from flask import Flask, render_template, Response, Blueprint, request, jsonify, after_this_request
import os, signal, time
import threading
import logging
@@ -8,6 +8,8 @@
import json
from T3SF import utils
+import sqlite3
+
bp = Blueprint('t3sf', __name__)
platform = None
@@ -39,9 +41,6 @@ def start(self):
listeners = []
class MessageAnnouncer:
- def __init__(self):
- self.listeners = []
-
def listen(self):
global listeners
listeners.append(queue.Queue(maxsize=10))
@@ -57,6 +56,15 @@ def announce(self, msg):
except queue.Full:
del listeners[i]
+# Global variables for the template engine
+@bp.context_processor
+def actual_platform():
+ def get_platform():
+ # Return the platform value here
+ return platform
+
+ return dict(platform=get_platform())
+
# SSE
@bp.route('/stream', methods=['GET'])
def listen():
@@ -72,6 +80,7 @@ def stream():
yield line
messages = MessageAnnouncer().listen() # returns a queue.Queue
+ messages.put("New client connected\n\n") # Send a message when a client connects
while True:
msg = messages.get() # blocks until a new message arrives
yield msg
@@ -91,11 +100,11 @@ def stream():
# Views
@bp.route('/')
def index():
- return render_template('index.html', active_page="logs_viewer", platform=platform.lower())
+ return render_template('index.html', active_page="logs_viewer")
-@bp.route('/msel-viewer')
-def msel_viewer():
- return render_template('msel_viewer.html', active_page="msel_viewer")
+@bp.route('/msel-playground')
+def msel_playground():
+ return render_template('msel_playground.html', active_page="msel_playground")
@bp.route('/env-creation')
def env_creation():
@@ -114,6 +123,12 @@ async def start_exercise():
from T3SF.discord.bot import run_async_incidents
try:
server_id = int(request.args.get("server"))
+
+ # Setting variables for GUI
+ utils.process_quit = False
+ utils.process_wait = False
+ utils.process_started = True
+
await run_async_incidents(server=server_id)
except (ValueError, TypeError):
@@ -128,26 +143,65 @@ async def start_exercise():
elif platform.lower() == "slack":
from T3SF.slack.bot import run_async_incidents
+
+ # Setting variables for GUI
+ utils.process_quit = False
+ utils.process_wait = False
+ utils.process_started = True
+
await run_async_incidents()
# Return an immediate response
return Response("Started", mimetype='text/plain')
+@bp.route('/pause')
+def pause_exercise():
+ utils.process_wait = True
+
+ return "We are waiting"
+
+@bp.route('/resume')
+def resume_exercise():
+ utils.process_wait = False
+ utils.process_quit = False
+ utils.process_started = True
+
+ return "We are processing again"
+
@bp.route('/stop')
def stop_exercise():
- # Kill the script
- msg = {
- "id" : str(uuid.uuid4()),
- "type" : "INFO",
- "content": "Exiting...",
- "timestamp": datetime.now().strftime("%H:%M:%S")
- }
- MessageAnnouncer().announce(msg=f"data: {json.dumps(msg)}\n\n")
- time.sleep(1)
- os._exit(0)
+ utils.process_quit = True
+
+ return "We are Stoping"
+
+@bp.route('/abort')
+def abort_exercise():
+ # Return a response first
+ response = 'Shutting down...'
- # Return a response that triggers the WSGI server to shutdown the application
- return 'Shutting down...'
+ # Define a function to be executed after the response is sent
+ @after_this_request
+ def shutdown(response):
+ # Start a new thread to kill the script
+ t = threading.Thread(target=kill_script)
+ t.start()
+
+ # Announce the exiting message
+ msg = {
+ "id": str(uuid.uuid4()),
+ "type": "INFO",
+ "content": "Exiting...",
+ "timestamp": datetime.now().strftime("%H:%M:%S")
+ }
+ MessageAnnouncer().announce(msg=f"data: {json.dumps(msg)}\n\n")
+
+ return response
+
+ def kill_script():
+ time.sleep(0.5) # Wait for the client to receive response
+ os._exit(0) # Kill the script
+
+ return response
@bp.route('/create')
async def create_env():
@@ -165,13 +219,13 @@ async def create_env():
"timestamp": datetime.now().strftime("%H:%M:%S")
}
MessageAnnouncer().announce(msg=f"data: {json.dumps(msg)}\n\n")
- return Response("Failed, Token was not provided or is not an integer.", mimetype='text/plain')
+ return jsonify({"status":"error","msg":"Failed, Token was not provided or is not an integer."})
elif platform.lower() == "slack":
from T3SF.slack.bot import create_environment
await create_environment()
- return "Created"
+ return jsonify({"status":"ok","msg":"Environment created!"})
@bp.route('/clear')
def clear_logs():
@@ -179,4 +233,330 @@ def clear_logs():
open('logs.txt', 'w').close()
# Return a response
- return 'Logs cleared...'
\ No newline at end of file
+ return 'Logs cleared...'
+
+# APIs
+@bp.route('/data', methods=['POST'])
+def get_data():
+ # Connect to the SQLite database
+ conn = sqlite3.connect(os.path.join(os.path.dirname(__file__)) + '/t3sf.sqlite3')
+ cursor = conn.cursor()
+
+ # Get the DataTables request parameters
+ draw = int(request.form.get('draw', 0))
+ start = int(request.form.get('start', 0))
+ length = int(request.form.get('length', 0))
+ search_value = request.form.get('search[value]', '')
+
+ # Get the selected filters from the dropdowns
+ filter_phase = request.form.get('phaseFilter', '')
+ filter_sector = request.form.get('sectorFilter', '')
+
+ # Construct the SQL query with search, pagination, and filter
+ # columns = ['id', 'RelatedThreat', 'Receptor', 'Event', 'TypeOfScenario', 'TPP', 'ExercisePhase', Subject', 'Sector', 'Poll'] // Enable this if you want search to be global
+ columns = ['id', 'RelatedThreat', 'Receptor', 'Event']
+ conditions = []
+ params = []
+
+ # Generate the WHERE conditions for each column
+ for column in columns:
+ conditions.append(f"{column} LIKE ?")
+ params.append(f'%{search_value}%')
+
+ # Combine the conditions with OR operator
+ where_clause = " OR ".join(conditions)
+
+ query = f"SELECT id, RelatedThreat, Receptor, Event, TypeOfScenario, TPP, ExercisePhase, Subject, Sector, Poll FROM events WHERE "
+
+ # Add the filters to the query
+ if filter_phase and filter_sector:
+ query += f" ExercisePhase = ? AND Sector LIKE ? AND ( {where_clause} )"
+ params.insert(0, f"%{filter_sector}%")
+ params.insert(0, filter_phase)
+ elif filter_phase:
+ query += f" ExercisePhase = ? AND ( {where_clause} )"
+ params.insert(0, filter_phase)
+ elif filter_sector:
+ query += f" Sector LIKE ? AND ( {where_clause} )"
+ params.insert(0, f"%{filter_sector}%")
+ else:
+ query += f" {where_clause}"
+
+ # Order By
+ column_index = int(request.form.get('order[0][column]', 0))
+ order_direction = request.form.get('order[0][dir]', 'asc')
+
+ columns = ['id', 'RelatedThreat', 'Receptor', 'Event', 'TypeOfScenario', 'TPP', 'ExercisePhase', 'Subject', 'Sector', 'Poll']
+
+ # Validate the column index
+ if column_index >= 0 and column_index < len(columns):
+ column_name = columns[column_index]
+ query += f" ORDER BY {column_name} {order_direction}"
+
+ # Add pagination
+ query += " LIMIT ? OFFSET ?"
+ params.extend([length, start])
+
+ cursor.execute(query, params)
+ rows = cursor.fetchall()
+
+ # Get the total count of filtered records
+ query = f"SELECT COUNT(*) FROM events WHERE "
+
+ # Add the filters to the query
+ if filter_phase and filter_sector:
+ query += f" ExercisePhase = ? AND Sector LIKE ? AND ( {where_clause} )"
+ elif filter_phase:
+ query += f" ExercisePhase = ? AND ( {where_clause} )"
+ elif filter_sector:
+ query += f" Sector LIKE ? AND ( {where_clause} )"
+ else:
+ query += f" {where_clause}"
+
+ cursor.execute(query, params[:-2])
+ total_filtered_records = cursor.fetchone()[0]
+
+ # Get the total count of all records
+ cursor.execute(f"SELECT COUNT(*) FROM events")
+ total_records = cursor.fetchone()[0]
+
+ # Prepare the data in JSON format
+ data = []
+ for row in rows:
+ # Create a dictionary for each row
+ row_dict = dict(zip(columns, row))
+
+ # Append the row dictionary to the data list
+ data.append(row_dict)
+
+ # Close the database connection
+ cursor.close()
+ conn.close()
+
+ # Prepare the response for DataTables
+ response = {
+ "draw": draw,
+ "recordsTotal": total_records,
+ "recordsFiltered": total_filtered_records,
+ "data": data
+ }
+
+ return jsonify(response)
+
+@bp.route('/msels-data', methods=['POST'])
+def get_msels():
+ # Connect to the SQLite database
+ conn = sqlite3.connect(os.path.join(os.path.dirname(__file__)) + '/t3sf.sqlite3')
+ cursor = conn.cursor()
+
+ # Get the DataTables request parameters
+ draw = int(request.form.get('draw', 0))
+ start = int(request.form.get('start', 0))
+ length = int(request.form.get('length', 0))
+ search_value = request.form.get('search[value]', '')
+
+ # Construct the SQL query with search, pagination, and filter
+ columns = ['id', 'Topic', 'Sector', 'Description']
+ conditions = []
+ params = []
+
+ # Generate the WHERE conditions for each column
+ for column in columns:
+ conditions.append(f"{column} LIKE ?")
+ params.append(f'%{search_value}%')
+
+ # Combine the conditions with OR operator
+ where_clause = " OR ".join(conditions)
+
+ query = f"SELECT id, Topic, Sector, Description FROM MSELS_info WHERE {where_clause}"
+
+ # Order By
+ column_index = int(request.form.get('order[0][column]', 0))
+ order_direction = request.form.get('order[0][dir]', 'asc')
+
+ columns = ['id', 'Topic', 'Sector', 'Description']
+
+ # Validate the column index
+ if column_index >= 0 and column_index < len(columns):
+ column_name = columns[column_index]
+ query += f" ORDER BY {column_name} {order_direction}"
+
+ # Add pagination
+ query += " LIMIT ? OFFSET ?"
+ params.extend([length, start])
+
+ cursor.execute(query, params)
+ rows = cursor.fetchall()
+
+ # Get the total count of filtered records
+ query = f"SELECT COUNT(*) FROM MSELS_info WHERE {where_clause}"
+
+ cursor.execute(query, params[:-2])
+ total_filtered_records = cursor.fetchone()[0]
+
+ # Get the total count of all records
+ cursor.execute(f"SELECT COUNT(*) FROM MSELS_info")
+ total_records = cursor.fetchone()[0]
+
+ # Prepare the data in JSON format
+ data = []
+ for row in rows:
+ # Create a dictionary for each row
+ row_dict = dict(zip(columns, row))
+
+ query = f"SELECT COUNT(*), GROUP_CONCAT(id), GROUP_CONCAT(receptor) FROM MSELS_events WHERE MSEL_ID = ?"
+
+ cursor.execute(query, [row[0]])
+ results = cursor.fetchall()
+
+ events_amount = [option[0] for option in results]
+ events_ids = [option[1] for option in results]
+ receptors_dirt = [option[2] for option in results]
+
+ receptors = ", ".join(list(set(receptors_dirt[0].split(","))))
+
+ row_dict['EventsAmount'] = events_amount
+ row_dict['EventsIDs'] = events_ids
+ row_dict['Receptors'] = receptors
+
+ # Append the row dictionary to the data list
+ data.append(row_dict)
+
+ # Close the database connection
+ cursor.close()
+ conn.close()
+
+ # Prepare the response for DataTables
+ response = {
+ "draw": draw,
+ "recordsTotal": total_records,
+ "recordsFiltered": total_filtered_records,
+ "data": data
+ }
+
+ return jsonify(response)
+
+@bp.route('/get-injects', methods=['POST'])
+def get_injects():
+ ids = request.json.get('ids', []) # Get the IDs from the request body
+ source = request.json.get('from', "") # Get the source/from from the request body
+
+ table = "events"
+
+ if source == "MSEL":
+ table = "MSELS_events"
+
+ # Connect to the SQLite database
+ conn = sqlite3.connect(os.path.join(os.path.dirname(__file__)) + '/t3sf.sqlite3')
+ conn.row_factory = sqlite3.Row # Set row_factory to sqlite3.Row
+
+ cursor = conn.cursor()
+
+ injects = []
+
+ for id in ids:
+ # Create a JSON object for each ID based on the data on the DB
+ query = f"SELECT Receptor, Event, Subject, Poll FROM {table} WHERE id = ?"
+
+ try:
+ # Convert the input to an integer and avoid SQLi
+ sanitized_input = int(id)
+ except ValueError:
+ break
+ return None
+
+ cursor.execute(query, [sanitized_input])
+
+ rows = cursor.fetchone()
+
+ if rows is not None:
+ inject = {
+ '#': '',
+ 'Real Time': '', # We will not provide this info
+ 'Date': '', # We will not provide this info
+ 'Subject': rows['Subject'],
+ 'From': '', # We will not provide this info
+ 'Player': rows['Receptor'],
+ 'Script': rows['Event'],
+ 'Photo': '', # We will not provide this info for now
+ 'Picture Name': '', # We will not provide this info for now
+ 'Profile': '', # We will not provide this info for now
+ 'Poll': rows['Poll']
+ }
+ injects.append(inject)
+
+ # Close the database connection
+ cursor.close()
+ conn.close()
+
+ return Response(json.dumps(injects), mimetype='application/json')
+
+@bp.route('/get-filters', methods=['GET'])
+def get_data_for_dropdowns():
+ conn = sqlite3.connect(os.path.join(os.path.dirname(__file__)) + '/t3sf.sqlite3')
+ cursor = conn.cursor()
+
+ # Execute the query to retrieve the options for ExercisePhase
+ cursor.execute("SELECT DISTINCT ExercisePhase FROM events")
+
+ # Fetch all the options for ExercisePhase
+ phases_options = cursor.fetchall()
+
+ # Execute the query to retrieve the options for Sector
+ cursor.execute("SELECT DISTINCT Sector FROM events")
+
+ # Fetch all the options for Sector
+ sector_options = cursor.fetchall()
+
+ # Close the database connection
+ cursor.close()
+ conn.close()
+
+ # Convert the options to a list of strings
+ phases_options = [option[0] for option in phases_options]
+
+ # Convert the comma-separated sectors to individual sectors
+ sector_options = [sector[0].split(", ") for sector in sector_options]
+ sector_options = [sector for sublist in sector_options for sector in sublist]
+
+ # Logical Order for Phases
+ phases_order = [
+ "Initial Events",
+ "Detection Events",
+ "Details Events",
+ "Exposure Events",
+ "Business Events",
+ "Communication Events",
+ "Decision Events",
+ "Resolution Events"
+ ]
+
+ # Remove duplicates and sort the options
+ phases_options = sorted(list(set(phases_options)), key=lambda x: phases_order.index(x))
+ sector_options = sorted(list(set(sector_options)))
+
+
+
+ # Return the options as a JSON response
+ return jsonify({'ExercisePhase': phases_options, 'Sector': sector_options})
+
+@bp.route('/framework-status', methods=['GET'])
+def framework_status():
+ stopped = utils.process_quit
+ paused = utils.process_wait
+ started = utils.process_started
+
+ if(stopped):
+ status = "stop"
+
+ elif(paused):
+ status = "pause"
+
+ elif(started):
+ status = "start"
+
+ else:
+ status = "active"
+
+ # Return the status as a JSON response
+ return jsonify({'status': status})
\ No newline at end of file
diff --git a/T3SF/gui/static/imgs/icon.png b/T3SF/gui/static/imgs/icon.png
new file mode 100644
index 0000000..c5598de
Binary files /dev/null and b/T3SF/gui/static/imgs/icon.png differ
diff --git a/T3SF/gui/static/imgs/logo-dark.png b/T3SF/gui/static/imgs/logo-dark.png
new file mode 100644
index 0000000..dc065ee
Binary files /dev/null and b/T3SF/gui/static/imgs/logo-dark.png differ
diff --git a/T3SF/gui/static/imgs/logo-light.png b/T3SF/gui/static/imgs/logo-light.png
new file mode 100644
index 0000000..abf6909
Binary files /dev/null and b/T3SF/gui/static/imgs/logo-light.png differ
diff --git a/T3SF/gui/static/js/bootstrap_toasts.js b/T3SF/gui/static/js/bootstrap_toasts.js
new file mode 100644
index 0000000..242cabe
--- /dev/null
+++ b/T3SF/gui/static/js/bootstrap_toasts.js
@@ -0,0 +1,38 @@
+const b5toastContainerElement = document.getElementById("toast-container");
+
+const b5toast = {
+ delayInMilliseconds: 5000,
+ htmlToElement: function (html) {
+ const template = document.createElement("template");
+ html = html.trim();
+ template.innerHTML = html;
+ return template.content.firstChild;
+ },
+ show: function (color, title, message, delay) {
+ title = title ? title : "";
+ if (color == "warning") {
+ txt_color = "black";
+ }
+ else{
+ txt_color = "white";
+ }
+ const html = `
+
+
+
+
${title}
+
${message}
+
+
+
+
`;
+ const toastElement = b5toast.htmlToElement(html);
+ b5toastContainerElement.appendChild(toastElement);
+ const toast = new bootstrap.Toast(toastElement, {
+ delay: delay?delay:b5toastdelayInMilliseconds,
+ animation: true
+ });
+ toast.show();
+ setTimeout(() => toastElement.remove(), delay?delay:b5toastdelayInMilliseconds + 3000); // let a certain margin to allow the "hiding toast animation"
+ },
+};
\ No newline at end of file
diff --git a/T3SF/gui/static/js/copy.js b/T3SF/gui/static/js/copy.js
new file mode 100644
index 0000000..a07458a
--- /dev/null
+++ b/T3SF/gui/static/js/copy.js
@@ -0,0 +1,28 @@
+export default function copyToClipBoard(text) {
+ if (navigator.clipboard) {
+ return navigator.clipboard.writeText(text)
+ }
+ // Compatible with old browsers such as Chrome <=65, Edge <=18 & IE
+ // Compatible with HTTP
+ else if (document.queryCommandSupported?.("copy")) {
+ const textarea = document.createElement("textarea")
+ textarea.value = text
+
+ textarea.style.position = "fixed" // Avoid scrolling to bottom
+ textarea.style.opacity = "0"
+
+ document.body.appendChild(textarea)
+ textarea.select()
+
+ // Security exception may be thrown by some browsers
+ try {
+ document.execCommand("copy")
+ } catch (e) {
+ console.error(e)
+ } finally {
+ document.body.removeChild(textarea)
+ }
+ } else {
+ console.error("Copy failed.")
+ }
+}
diff --git a/T3SF/gui/static/js/theme_switcher.js b/T3SF/gui/static/js/theme_switcher.js
new file mode 100644
index 0000000..8a57c26
--- /dev/null
+++ b/T3SF/gui/static/js/theme_switcher.js
@@ -0,0 +1,53 @@
+// Check the initial theme preference and set it
+const themePreference = localStorage.getItem('theme');
+const prefersDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
+
+if (themePreference === 'dark' || (themePreference === null && prefersDarkMode)) {
+ enableDarkMode();
+} else {
+ enableLightMode();
+}
+
+// Toggle the theme when the button is clicked
+const themeToggle = document.getElementById('theme-toggle');
+
+themeToggle.addEventListener('click', () => {
+ if (document.documentElement.getAttribute('data-bs-theme') === 'dark') {
+ enableLightMode();
+ } else {
+ enableDarkMode();
+ }
+});
+
+// Enable dark mode
+function enableDarkMode() {
+ document.documentElement.setAttribute('data-bs-theme', 'dark');
+ localStorage.setItem('theme', 'dark');
+ replaceClassNames('bg-light', 'bg-darkmode');
+ replaceClassNames('bg-white', 'bg-dark');
+ document.getElementById('theme-icon').classList.replace('bi-moon-fill', 'bi-sun-fill');
+ document.getElementById('theme-text').textContent = 'Light mode';
+ document.querySelectorAll('#logo-image').forEach((image) => {image.src = "/static/imgs/logo-dark.png";});
+ document.getElementById('json-editor-container')?.classList.replace('jse-theme-light', 'jse-theme-dark');
+}
+
+// Enable light mode
+function enableLightMode() {
+ document.documentElement.setAttribute('data-bs-theme', 'light');
+ localStorage.setItem('theme', 'light');
+ replaceClassNames('bg-darkmode', 'bg-light');
+ replaceClassNames('bg-dark', 'bg-white');
+ document.getElementById('theme-icon').classList.replace('bi-sun-fill', 'bi-moon-fill');
+ document.getElementById('theme-text').textContent = 'Dark mode';
+ document.querySelectorAll('#logo-image').forEach((image) => {image.src = "/static/imgs/logo-light.png"; });
+ document.getElementById('json-editor-container')?.classList.replace('jse-theme-dark', 'jse-theme-light');
+}
+
+// Replace class names
+function replaceClassNames(oldClassName, newClassName) {
+ const elements = document.querySelectorAll(`.${oldClassName}`);
+ elements.forEach((element) => {
+ element.classList.remove(oldClassName);
+ element.classList.add(newClassName);
+ });
+}
\ No newline at end of file
diff --git a/T3SF/gui/static/js/vanilla-jsoneditor/CHANGELOG.md b/T3SF/gui/static/js/vanilla-jsoneditor/CHANGELOG.md
new file mode 100644
index 0000000..0d9b558
--- /dev/null
+++ b/T3SF/gui/static/js/vanilla-jsoneditor/CHANGELOG.md
@@ -0,0 +1,1472 @@
+# Changelog
+
+All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+
+### [0.17.8](https://github.com/josdejong/svelte-jsoneditor/compare/v0.17.7...v0.17.8) (2023-06-21)
+
+
+### Bug Fixes
+
+* method `scrollTo` not always expanding an invisible section of an array ([bda3922](https://github.com/josdejong/svelte-jsoneditor/commit/bda39222fdcd9ec58a4c077dea4245c6fa6fe133))
+* update dependencies (`codemirror`, `jsonrepair`, `sass`, and others) ([3054f96](https://github.com/josdejong/svelte-jsoneditor/commit/3054f964c52ddeb44b486dabb1a804c95c5395e7))
+
+### [0.17.7](https://github.com/josdejong/svelte-jsoneditor/compare/v0.17.6...v0.17.7) (2023-06-13)
+
+
+### Bug Fixes
+
+* [#278](https://github.com/josdejong/svelte-jsoneditor/issues/278) cannot filter debugging output ([b2317a5](https://github.com/josdejong/svelte-jsoneditor/commit/b2317a5db900b77644d992f2f14c97e1de31c3c5))
+
+### [0.17.6](https://github.com/josdejong/svelte-jsoneditor/compare/v0.17.5...v0.17.6) (2023-06-12)
+
+
+### Features
+
+* update dependencies and devDependencies ([fc8ef83](https://github.com/josdejong/svelte-jsoneditor/commit/fc8ef8340e1a6f825bf335000a7f4b70ce2c8182))
+
+
+### Bug Fixes
+
+* let `createAjvValidator` throw an error when the JSON schema contains an error ([7cfb233](https://github.com/josdejong/svelte-jsoneditor/commit/7cfb233d92862a34557537cef7840926976b40e1))
+* unused CSS selector `".jse-column-header span.jse-column-sort-icon"` ([51c1d54](https://github.com/josdejong/svelte-jsoneditor/commit/51c1d5441085581402cc916e9479c2c91d5c068e))
+
+### [0.17.5](https://github.com/josdejong/svelte-jsoneditor/compare/v0.17.4...v0.17.5) (2023-06-08)
+
+
+### Bug Fixes
+
+* keep focus on the editor after clicking a message action button ([aeb5d8f](https://github.com/josdejong/svelte-jsoneditor/commit/aeb5d8f9da13054cdd61cc866edad7b3f128eb66))
+* start typing in an empty document in tree mode throwing an error ([747f2b4](https://github.com/josdejong/svelte-jsoneditor/commit/747f2b4d78c5c30c0f08ac6fea4823ba6d537be2))
+* throw an error when a custom Ajv instance provided via `onCreateAjv` is configured wrongly ([78771cd](https://github.com/josdejong/svelte-jsoneditor/commit/78771cd3a3326bbdb56f400648bafe3c306f6b65))
+
+### [0.17.4](https://github.com/josdejong/svelte-jsoneditor/compare/v0.17.3...v0.17.4) (2023-05-18)
+
+
+### Bug Fixes
+
+* [#275](https://github.com/josdejong/svelte-jsoneditor/issues/275) flush debounced changes in `text` mode before blur and destroy ([e8270e9](https://github.com/josdejong/svelte-jsoneditor/commit/e8270e99354cc965dea209a23f60dd5c9000ca57))
+
+### [0.17.3](https://github.com/josdejong/svelte-jsoneditor/compare/v0.17.2...v0.17.3) (2023-05-05)
+
+
+### Features
+
+* update dependencies (jsonrepair and dev dependencies) ([d2c424a](https://github.com/josdejong/svelte-jsoneditor/commit/d2c424a14997d515b1cee4d26d0e30b7bbae1c1e))
+
+### [0.17.2](https://github.com/josdejong/svelte-jsoneditor/compare/v0.17.1...v0.17.2) (2023-05-03)
+
+
+### Features
+
+* update dependencies (codemirror, sass) ([aeb9af5](https://github.com/josdejong/svelte-jsoneditor/commit/aeb9af585753a6847e5239afefbbf6b985d3e6c6))
+
+
+### Bug Fixes
+
+* [#238](https://github.com/josdejong/svelte-jsoneditor/issues/238) editor scrolls the browser page to top on Safari when getting focus ([20129f8](https://github.com/josdejong/svelte-jsoneditor/commit/20129f87e43e639c75b70383771d11e2df6431e7))
+
+### [0.17.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.17.0...v0.17.1) (2023-04-17)
+
+
+### Features
+
+* make the option `askToFormat` configurable (fix [#252](https://github.com/josdejong/svelte-jsoneditor/issues/252)) ([5e5494f](https://github.com/josdejong/svelte-jsoneditor/commit/5e5494f97da667dc5c8295665dc263b48867f077))
+
+
+### Bug Fixes
+
+* [#142](https://github.com/josdejong/svelte-jsoneditor/issues/142) cannot select contents in readOnly text mode ([99922dc](https://github.com/josdejong/svelte-jsoneditor/commit/99922dc3f5f981a742bb2a2b31151bfe1c09ecb3))
+* [#251](https://github.com/josdejong/svelte-jsoneditor/issues/251) enable search in text mode when readOnly ([50f8889](https://github.com/josdejong/svelte-jsoneditor/commit/50f8889597466ec8027c07dda3d4e613684aa9dc))
+* update dependencies (`jsonrepair` and `@codemirror/view`) ([5ff1306](https://github.com/josdejong/svelte-jsoneditor/commit/5ff130610867d69832722cd3b9b4b9ac40d4e57d))
+
+## [0.17.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.16.1...v0.17.0) (2023-04-17)
+
+
+### ⚠ BREAKING CHANGES
+
+* The pointers to entry files and the exports map in the package.json file have been changed. This is just an under-the-hood change for most use cases.
+
+### Features
+
+* change `stringifyJSONPath` and `parseJSONPath` to have a more human friendly output ([f0f8b80](https://github.com/josdejong/svelte-jsoneditor/commit/f0f8b805873c6c0ba48340df236755963eacf93e))
+* update dependencies and devDependencies ([f32281f](https://github.com/josdejong/svelte-jsoneditor/commit/f32281f37c1780a8bca047a16d31e4b2083542e9))
+* update dependencies including @sveltejs/package, changing the package structure ([#258](https://github.com/josdejong/svelte-jsoneditor/issues/258)) ([78603d4](https://github.com/josdejong/svelte-jsoneditor/commit/78603d4e47549c45530c4763b95a1364d7144f94))
+
+### [0.16.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.16.0...v0.16.1) (2023-03-24)
+
+
+### Bug Fixes
+
+* change the row numbering in table mode to zero based for consistency ([d923268](https://github.com/josdejong/svelte-jsoneditor/commit/d923268b2d550e2779051bb43b08d3daee8f91fe))
+* give the optional `rootPath` option of `transform` a default value ([b38db6c](https://github.com/josdejong/svelte-jsoneditor/commit/b38db6c1e3b3b7ff87a92bd61049a5a193ac713a))
+
+## [0.16.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.15.1...v0.16.0) (2023-03-15)
+
+
+### ⚠ BREAKING CHANGES
+
+* Methods `set`, `update`, `patch`, `expand`, `acceptAutoRepair`, `scrollTo`, `focus`, `refresh`,
+`updateProps` and `destroy` are now async and return a Promise.
+
+### Features
+
+* implement the public method `scrollTo` for mode `table` ([a615548](https://github.com/josdejong/svelte-jsoneditor/commit/a615548aa26470d0535d1e1ddb781654b44f3315))
+* update dependencies `svelte-awesome` and `svelte-select` and some devDependencies ([05acdcf](https://github.com/josdejong/svelte-jsoneditor/commit/05acdcfaf03b69aae3a82f10bf2bc3532ebe61c1))
+
+
+### Bug Fixes
+
+* [#189](https://github.com/josdejong/svelte-jsoneditor/issues/189) setup eslint to enforce `.js` file extensions on all imports ([cf37451](https://github.com/josdejong/svelte-jsoneditor/commit/cf37451e46c56e637924095ab11d6883ade08289))
+* [#236](https://github.com/josdejong/svelte-jsoneditor/issues/236) change the public methods to return a Promise`, resolving after the editor is re-rendered ([dbfb1a6](https://github.com/josdejong/svelte-jsoneditor/commit/dbfb1a68a3104b38dbb45338fc1fdae075038930))
+* [#237](https://github.com/josdejong/svelte-jsoneditor/issues/237) parse error in case of empty text, and parse error not cleared on change ([31e9e50](https://github.com/josdejong/svelte-jsoneditor/commit/31e9e50f461cc8bd21d746df1948d645f7d5e118))
+
+### [0.15.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.15.0...v0.15.1) (2023-03-01)
+
+
+### Bug Fixes
+
+* missing .js extension on import ([ae66310](https://github.com/josdejong/svelte-jsoneditor/commit/ae663106b68fa880c47fbdbed33032c696d8aa28))
+
+## [0.15.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.14.10...v0.15.0) (2023-03-01)
+
+
+### ⚠ BREAKING CHANGES
+
+* when there are no validation errors, the return value of
+method `validate()` and parameter `contentErrors` in callback `onChange` is
+now `null` instead of `{ validationErrors: [] }`.
+
+### Features
+
+* faster `getColumns` without sampling ([0937718](https://github.com/josdejong/svelte-jsoneditor/commit/0937718fb5c30b996a955aa24ca336163d92877c))
+* sample the array to detect headers (fast) and have a button to enforce checking all items ([452d168](https://github.com/josdejong/svelte-jsoneditor/commit/452d168595eef1b24d38d9c97f7d74eadb5ee243))
+
+
+### Bug Fixes
+
+* [#226](https://github.com/josdejong/svelte-jsoneditor/issues/226) return `null` instead of `{ validationErrors: [] }` when there are no validation errors ([395dbd1](https://github.com/josdejong/svelte-jsoneditor/commit/395dbd10b0fac21876b500295668bc0b5ef94010))
+* [#231](https://github.com/josdejong/svelte-jsoneditor/issues/231) code mode grabbing focus on creation ([5df57ee](https://github.com/josdejong/svelte-jsoneditor/commit/5df57eea7a8c6600efb4f8f1a41ad338fce77e0a))
+* update dependencies and devDependencies ([9275c34](https://github.com/josdejong/svelte-jsoneditor/commit/9275c3494e4fcf45bd370f9ff77554d9193db4ac))
+
+### [0.14.10](https://github.com/josdejong/svelte-jsoneditor/compare/v0.14.9...v0.14.10) (2023-02-24)
+
+
+### Features
+
+* implement an "Edit row" action in the context menu of table mode ([4211a14](https://github.com/josdejong/svelte-jsoneditor/commit/4211a14ffaa4b64b58ff4ecbbde18e232bf9c48e))
+
+
+### Bug Fixes
+
+* [#226](https://github.com/josdejong/svelte-jsoneditor/issues/226) export typeguards `isContentParseError` and `isContentValidationErrors` ([0c8189f](https://github.com/josdejong/svelte-jsoneditor/commit/0c8189fadd74af83a3a17aa7b6efdf0c95ef1561))
+* table mode broken due to a wrong import (regression since v0.14.6) ([1e48fe5](https://github.com/josdejong/svelte-jsoneditor/commit/1e48fe50ac2ed613682330e628b1dcfbc224c0c5))
+
+### [0.14.9](https://github.com/josdejong/svelte-jsoneditor/compare/v0.14.8...v0.14.9) (2023-02-22)
+
+
+### Bug Fixes
+
+* throw an error when forgetting to end a Lodash `_.chain(...)` with `.value()` ([f76e4e8](https://github.com/josdejong/svelte-jsoneditor/commit/f76e4e8bf047680835a34cc5236e3b19d4df9f73))
+
+### [0.14.8](https://github.com/josdejong/svelte-jsoneditor/compare/v0.14.7...v0.14.8) (2023-02-22)
+
+
+### Bug Fixes
+
+* ensure dark indentation markers when using dark theme ([f7b936e](https://github.com/josdejong/svelte-jsoneditor/commit/f7b936ef65293813a9e744b12123101d80a08e78))
+
+### [0.14.7](https://github.com/josdejong/svelte-jsoneditor/compare/v0.14.6...v0.14.7) (2023-02-22)
+
+
+### Bug Fixes
+
+* some imports missing a .js extension ([5493931](https://github.com/josdejong/svelte-jsoneditor/commit/5493931681b49ade593777561b52da24213adfcd))
+
+### [0.14.6](https://github.com/josdejong/svelte-jsoneditor/compare/v0.14.5...v0.14.6) (2023-02-22)
+
+
+### Features
+
+* add indentation guide line in text mode (fixes [#225](https://github.com/josdejong/svelte-jsoneditor/issues/225)) ([09f2575](https://github.com/josdejong/svelte-jsoneditor/commit/09f257568567eb1b01ff68b955d69bebe54cff95))
+* change the JavaScript and Lodash query languages to generate immutable, chained queries ([3e92c10](https://github.com/josdejong/svelte-jsoneditor/commit/3e92c1048791f44d58c8b1636bb0e1bfeb914c74))
+
+
+### Bug Fixes
+
+* jmespathQueryLanguage not working with non-native JSON data types like LosslessNumber ([e2c8e3d](https://github.com/josdejong/svelte-jsoneditor/commit/e2c8e3dfc9242f4883dd3f1261a0b5a0b6abd71c))
+
+### [0.14.5](https://github.com/josdejong/svelte-jsoneditor/compare/v0.14.4...v0.14.5) (2023-02-15)
+
+
+### Features
+
+* update dependencies and devDependencies ([d0e2568](https://github.com/josdejong/svelte-jsoneditor/commit/d0e2568540efcc7d2066044bbd2d3673902fe6c6))
+
+
+### Bug Fixes
+
+* styling issues of the selection dropdown in dark mode ([886330e](https://github.com/josdejong/svelte-jsoneditor/commit/886330e75879ccdd383a9f324646b96ae9406019))
+* the "Pick" field in the Transform Wizard not restoring the previously selected fields correctly ([635f662](https://github.com/josdejong/svelte-jsoneditor/commit/635f6624c21a194b5ce96805c9c3a12f1238b234))
+
+### [0.14.4](https://github.com/josdejong/svelte-jsoneditor/compare/v0.14.3...v0.14.4) (2023-02-03)
+
+
+### Features
+
+* add a "Show me" button to the message of the parse error ([347910a](https://github.com/josdejong/svelte-jsoneditor/commit/347910a675578f724b7188a8ff901611944cbafe))
+* show a message "Do you want to format the JSON?" when loading compact JSON ([42c6c95](https://github.com/josdejong/svelte-jsoneditor/commit/42c6c95ecdc8a8856e67d7ef1753693627aee8de))
+
+
+### Bug Fixes
+
+* [#219](https://github.com/josdejong/svelte-jsoneditor/issues/219) horizontal scrollbar visible in search box ([d3ffdef](https://github.com/josdejong/svelte-jsoneditor/commit/d3ffdef065e2dcb98fe1cae981e741fbfa136d08))
+* improve styling of the message text ([e8a86d9](https://github.com/josdejong/svelte-jsoneditor/commit/e8a86d97792993306700bdb447724a287993da7f))
+
+### [0.14.3](https://github.com/josdejong/svelte-jsoneditor/compare/v0.14.2...v0.14.3) (2023-01-27)
+
+
+### Bug Fixes
+
+* creating a new object or array by typing `{` or `]` broken (regression since `v0.14.1`) ([f7b5f92](https://github.com/josdejong/svelte-jsoneditor/commit/f7b5f925d7ae64aadad34007b82abc239127f537))
+
+### [0.14.2](https://github.com/josdejong/svelte-jsoneditor/compare/v0.14.1...v0.14.2) (2023-01-26)
+
+
+### Features
+
+* expose utility actions `resizeObserver` and `onEscape` ([c705ea2](https://github.com/josdejong/svelte-jsoneditor/commit/c705ea2bb8fa22797b9078de9cadec726c85ab4a))
+
+### [0.14.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.14.0...v0.14.1) (2023-01-26)
+
+
+### Features
+
+* implement duplicating, inserting, and removing rows in table mode ([9b691d1](https://github.com/josdejong/svelte-jsoneditor/commit/9b691d1536ba2d52b42e6da24b28a89b6bfb17ca))
+
+
+### Bug Fixes
+
+* close only the top modal instead of all modals on Escape ([b102843](https://github.com/josdejong/svelte-jsoneditor/commit/b102843dcc7ae411944ea745c4edd868a593dbde))
+* editor cannot get focus by clicking selected key or value ([7e83a36](https://github.com/josdejong/svelte-jsoneditor/commit/7e83a36b1c9301ce965ba6cc874fe575f6525a75))
+* improve detection of column names in large arrays with non-homogeneous data ([5704325](https://github.com/josdejong/svelte-jsoneditor/commit/5704325cfc2759e879a34de3e075cd0610d8f75c))
+* maintain order of columns after sorting the contents ([23bbf56](https://github.com/josdejong/svelte-jsoneditor/commit/23bbf56db274062e5d03906963e7e24bbcaab78c))
+* multi-select via Shift+Click not working in tree mode ([aafd933](https://github.com/josdejong/svelte-jsoneditor/commit/aafd933d48672cd2f37a9811183ca4f093fcd4d7))
+
+## [0.14.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.13.1...v0.14.0) (2023-01-20)
+
+
+### ⚠ BREAKING CHANGES
+
+* Callback changed from `onRenderMenu(mode, items)` to `onRenderMenu(items, { mode, modal })`.
+
+### Features
+
+* add more context information to `onRenderMenu`: `mode` and `modal` ([fbbdb87](https://github.com/josdejong/svelte-jsoneditor/commit/fbbdb87548fa0e2d163fc5ad39367af54a13b4cc))
+
+### [0.13.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.13.0...v0.13.1) (2023-01-20)
+
+
+### Bug Fixes
+
+* inserting a new character uppercase ([d836096](https://github.com/josdejong/svelte-jsoneditor/commit/d8360968d35b8469c51fa73f5af765b86bc55321))
+
+## [0.13.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.12.0...v0.13.0) (2023-01-20)
+
+
+### ⚠ BREAKING CHANGES
+
+* CSS variable `--jse-selection-background-light-color` is renamed to `--jse-selection-background-inactive-color`
+
+### Features
+
+* more flexible styling for contents in tree mode with new CSS variables ([e29f85e](https://github.com/josdejong/svelte-jsoneditor/commit/e29f85e1d5ac77993117225c862b8c056ad9a4ad))
+
+
+### Bug Fixes
+
+* update dependencies and devDependencies ([008dcd6](https://github.com/josdejong/svelte-jsoneditor/commit/008dcd655b8e680cebff7d163daa19b0327c9662))
+
+## [0.12.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.11.8...v0.12.0) (2023-01-18)
+
+
+### ⚠ BREAKING CHANGES
+
+* The TypeScript definitions of `createAjvValidator` and `renderJSONSchemaEnum` are
+changed: passing `JSONSchema` and `JSONSchemaDefinitions` instead of `JSONValue`.
+
+### Bug Fixes
+
+* [#210](https://github.com/josdejong/svelte-jsoneditor/issues/210) `renderJSONSchemaEnum` not working enums inside an array ([887bf23](https://github.com/josdejong/svelte-jsoneditor/commit/887bf23c6aeb63de3a75b677f0545a51efc3c449))
+* cannot click the bottom right quarter of the context menu pointer ([b176f01](https://github.com/josdejong/svelte-jsoneditor/commit/b176f0101d3f860d54faa7c433050f69d28daa72))
+* minor updates of dependencies and devDependencies ([c654ed7](https://github.com/josdejong/svelte-jsoneditor/commit/c654ed7074ea01335f8a5db0e2fd447793a03bf4))
+* remove test files from the `svelte-jsoneditor` npm package ([fe21ffb](https://github.com/josdejong/svelte-jsoneditor/commit/fe21ffb8195417531e6f2103ffd0e9b2ff7e392c))
+* switch from `ajv-dist` to `ajv` again (works ok now with rollup and vite) ([f43a5fb](https://github.com/josdejong/svelte-jsoneditor/commit/f43a5fb364c161daea507693110d67b96bb19b67))
+* update dependencies and dev dependencies ([7229ae6](https://github.com/josdejong/svelte-jsoneditor/commit/7229ae62d7495614739de4593963707cbdd88e58))
+
+### [0.11.8](https://github.com/josdejong/svelte-jsoneditor/compare/v0.11.7...v0.11.8) (2023-01-07)
+
+### [0.11.7](https://github.com/josdejong/svelte-jsoneditor/compare/v0.11.6...v0.11.7) (2023-01-07)
+
+### [0.11.6](https://github.com/josdejong/svelte-jsoneditor/compare/v0.11.5...v0.11.6) (2023-01-07)
+
+
+### Bug Fixes
+
+* upgrade to jsonrepair@3.0.2 and lossless-json@2.0.5 containing an issue with unicode characters ([22cb40e](https://github.com/josdejong/svelte-jsoneditor/commit/22cb40e6972c3e8a93a3bad8730b6e8e82b374b3))
+
+### [0.11.5](https://github.com/josdejong/svelte-jsoneditor/compare/v0.11.4...v0.11.5) (2022-12-20)
+
+
+### Features
+
+* upgrade all dependencies, most notably `svelte-select@5, `@sveltejs/kit@1.0.0`, `vite@4.0.2` ([be135ee](https://github.com/josdejong/svelte-jsoneditor/commit/be135ee77c147e7dc59948955370973aa6c232db))
+* upgrade to `jsonrepair@3.0.0`, improving performance and repairing more cases ([8a315cf](https://github.com/josdejong/svelte-jsoneditor/commit/8a315cf8bee311fc2fcf46d37954a26568e5765f))
+
+### [0.11.4](https://github.com/josdejong/svelte-jsoneditor/compare/v0.11.3...v0.11.4) (2022-12-14)
+
+
+### Bug Fixes
+
+* method `scrollTo` not returning a promise anymore (regression since v0.11.0) ([524799f](https://github.com/josdejong/svelte-jsoneditor/commit/524799f8126f6b0f4bb36f5c81087b57d8af7496))
+
+### [0.11.3](https://github.com/josdejong/svelte-jsoneditor/compare/v0.11.2...v0.11.3) (2022-12-13)
+
+
+### Bug Fixes
+
+* [#206](https://github.com/josdejong/svelte-jsoneditor/issues/206) remove the fixed width of the mode toggle buttons ([8e0cda3](https://github.com/josdejong/svelte-jsoneditor/commit/8e0cda3c1c91e97b1c41ff28c5b0ac80cf8c26ab))
+* [#96](https://github.com/josdejong/svelte-jsoneditor/issues/96) add missing properties to `JSONEditorPropsOptional` ([410fd80](https://github.com/josdejong/svelte-jsoneditor/commit/410fd801297faa46afef201569bfd79792de17e1))
+* [#96](https://github.com/josdejong/svelte-jsoneditor/issues/96) make all properties of JSONEditorPropsOptional optional ([4bc33e8](https://github.com/josdejong/svelte-jsoneditor/commit/4bc33e88450396a1860db43baabe15986bfc7cd1))
+* cannot edit values of non-existing nested objects in table mode ([8127571](https://github.com/josdejong/svelte-jsoneditor/commit/8127571d74864587788811e08a64a5345d11ae19))
+* improve landing page message in table mode when opening an array without values ([f238a92](https://github.com/josdejong/svelte-jsoneditor/commit/f238a9236740d261456a5f7841ef0de2ecc7fb74))
+
+### [0.11.2](https://github.com/josdejong/svelte-jsoneditor/compare/v0.11.1...v0.11.2) (2022-12-09)
+
+
+### Bug Fixes
+
+* [#204](https://github.com/josdejong/svelte-jsoneditor/issues/204) unresolvable imports with `.ts` extension ([d45828b](https://github.com/josdejong/svelte-jsoneditor/commit/d45828b1d1f370ff25322ef1f5204c1050d4f60c))
+
+### [0.11.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.11.0...v0.11.1) (2022-12-07)
+
+
+### Bug Fixes
+
+* table mode landing page not handling an empty array correctly ([4b4d039](https://github.com/josdejong/svelte-jsoneditor/commit/4b4d0398333d59d95d6fd3e28a67038c3b8781ac))
+
+## [0.11.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.10.4...v0.11.0) (2022-12-07)
+
+
+### ⚠ BREAKING CHANGES
+
+* In the `TransformModalCallback`, the property `selectedPath` is renamed to `rootPath`. The css variables `--jse-context-menu-button-*` are renamed to `--jse-context-menu-pointer-*`.
+
+### Features
+
+* create a landing page for non-array content in table mode ([558d8c1](https://github.com/josdejong/svelte-jsoneditor/commit/558d8c1321b08de038623f158eab90d4875747f0))
+* implement table mode [#156](https://github.com/josdejong/svelte-jsoneditor/issues/156) ([#202](https://github.com/josdejong/svelte-jsoneditor/issues/202)) ([6fde147](https://github.com/josdejong/svelte-jsoneditor/commit/6fde14780624888e648b807207346d11437ef9ba))
+
+
+### Bug Fixes
+
+* [#187](https://github.com/josdejong/svelte-jsoneditor/issues/187) duplicate id's of svg's ([b95ac82](https://github.com/josdejong/svelte-jsoneditor/commit/b95ac82f56f9565d9779bf8bd9186c9adfb3565d))
+* support opening Sort and Transform modals from a JSONEditor modal ([4652c1f](https://github.com/josdejong/svelte-jsoneditor/commit/4652c1fe3b29b37638a2b2692099b58f49ae84a4))
+* unnecessary z-index on the context menu pointer ([5a6b2f6](https://github.com/josdejong/svelte-jsoneditor/commit/5a6b2f65fb5b17e7306cafbf19f1c50003759dae))
+* z-index issue with the table header ([8f6a7c7](https://github.com/josdejong/svelte-jsoneditor/commit/8f6a7c77fca5076152841da518a64c5f91652c60))
+
+### [0.10.4](https://github.com/josdejong/svelte-jsoneditor/compare/v0.10.3...v0.10.4) (2022-12-05)
+
+
+### Bug Fixes
+
+* repair modal accidentally showing a mode toggle ([798f668](https://github.com/josdejong/svelte-jsoneditor/commit/798f668a63c4534ad008b209b9e0c03b31040fd3))
+* update to `lossless-json@2.0.3`, fix throwing an error in case of bad characters like a newline ([7f7b59e](https://github.com/josdejong/svelte-jsoneditor/commit/7f7b59eac6a965b3c5238f934a4ab4d1b3af152c))
+
+### [0.10.2](https://github.com/josdejong/svelte-jsoneditor/compare/v0.10.1...v0.10.2) (2022-11-17)
+
+
+### Bug Fixes
+
+* limit the number of rendered validation errors in the overview list ([b0ae546](https://github.com/josdejong/svelte-jsoneditor/commit/b0ae5461e8d69b7336bf1f1d8c4072c49280b15d))
+* reset the selection instead of clearing it when the selected contents are removed ([7c937f5](https://github.com/josdejong/svelte-jsoneditor/commit/7c937f534fd625aca481a22138fc55c9a30b7d5f))
+
+### [0.10.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.10.0...v0.10.1) (2022-11-10)
+
+
+### Bug Fixes
+
+* improve highlighting color of search matches in dark mode ([fb7bdd9](https://github.com/josdejong/svelte-jsoneditor/commit/fb7bdd93ee35c752711a9420a441d99981062983))
+
+## [0.10.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.9.2...v0.10.0) (2022-11-10)
+
+
+### ⚠ BREAKING CHANGES
+
+* The signature of `createAjvValidator` is changed from up to three unnamed arguments
+`createAjvValidator(schema, schemaDefinitions, ajvOptions)` to a single object with options
+`createAjvValidator({ schema, schemaDefinitions, ajvOptions })`.
+
+### Features
+
+* implement `onCreateAjv` callback for the `createAjvValidator` plugin ([da3d76c](https://github.com/josdejong/svelte-jsoneditor/commit/da3d76ce4087464a0d66566f9239498bbff710fd))
+
+
+### Bug Fixes
+
+* [#188](https://github.com/josdejong/svelte-jsoneditor/issues/188) selected text not visible in text mode when in dark mode ([41856da](https://github.com/josdejong/svelte-jsoneditor/commit/41856da229912db510090049b47bae3543f996a3))
+* improve highlighting color of search matches in dark mode ([b85c260](https://github.com/josdejong/svelte-jsoneditor/commit/b85c26002c376fd15b340e71b1e2225747785365))
+* negative numbers like `-4.1` not highlighted with the right color in tree mode ([071c3f9](https://github.com/josdejong/svelte-jsoneditor/commit/071c3f9d248e18c5638c5352ca4a60fb227f639e))
+
+### [0.9.2](https://github.com/josdejong/svelte-jsoneditor/compare/v0.9.1...v0.9.2) (2022-11-04)
+
+
+### Bug Fixes
+
+* incorrect cursor style for ColorPicker & BooleanToggle ([#184](https://github.com/josdejong/svelte-jsoneditor/issues/184)) ([12e60e5](https://github.com/josdejong/svelte-jsoneditor/commit/12e60e5b836f9294ea4a0b3bfe2384745c0509cf))
+* remove root `$` prefix from the path in the Sort and Transform modal ([50ce3f0](https://github.com/josdejong/svelte-jsoneditor/commit/50ce3f04980a02164a4fa897afec942933e21db9))
+* when switching to a different JSON parser, stringify and parse the contents again ([2cece4e](https://github.com/josdejong/svelte-jsoneditor/commit/2cece4ebc7dbd75dc28f743c5b3ea12470848e7d))
+
+### [0.9.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.9.0...v0.9.1) (2022-11-02)
+
+
+### Bug Fixes
+
+* export and document all selection utility functions again (reverting their removal in `v0.9.0`) ([0dd1dee](https://github.com/josdejong/svelte-jsoneditor/commit/0dd1dee55983cb261911814870410a57be87590c))
+* update codemirror dependencies and all devDependencies ([77cbb6d](https://github.com/josdejong/svelte-jsoneditor/commit/77cbb6d4fc95f3d0867a1117af682d6d534903f8))
+
+## [0.9.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.8.0...v0.9.0) (2022-10-25)
+
+
+### ⚠ BREAKING CHANGES
+
+* Not exporting a set of undocumented utility functions anymore: `isValueSelection`,
+`isKeySelection`, `isInsideSelection`, `isAfterSelection`, `isMultiSelection`,
+`isEditingSelection`, `createValueSelection`, `createKeySelection`, `createInsideSelection`,
+`createAfterSelection`, `createMultiSelection`. And not exporting components `SortModal` and
+`TransformModal` anymore.
+
+### Features
+
+* export utility functions `isContent`, `isTextContent`, `isJSONContent`, `toTextContent`, ([d21fc6d](https://github.com/josdejong/svelte-jsoneditor/commit/d21fc6d09c731ad10702db58893ebce7aeadd744)), closes [#173](https://github.com/josdejong/svelte-jsoneditor/issues/173)
+
+
+### Bug Fixes
+
+* [#174](https://github.com/josdejong/svelte-jsoneditor/issues/174) the `OnChange` signature containing an `any` type instead of `OnChangeStatus` ([c2d626f](https://github.com/josdejong/svelte-jsoneditor/commit/c2d626f7204790cc86954dc535949dad50822cbd))
+* `any` type in `JSONPathParser.parse` type definition ([19363b4](https://github.com/josdejong/svelte-jsoneditor/commit/19363b42cc98f702b04bb5cbaaa0a3b0b2edee4b))
+
+## [0.8.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.11...v0.8.0) (2022-10-24)
+
+
+### ⚠ BREAKING CHANGES
+
+* The custom `FontAwesomeIcon` is now replaced with `IconDefinition` from FontAwesome
+
+### Bug Fixes
+
+* [#169](https://github.com/josdejong/svelte-jsoneditor/issues/169) use `IconDefinition` from FontAwesome instead of a custom interface `FontAwesomeIcon` ([9d693f9](https://github.com/josdejong/svelte-jsoneditor/commit/9d693f94ebeffa187a2f3ab8f85998b987be8b94))
+
+### [0.7.11](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.10...v0.7.11) (2022-10-18)
+
+
+### Features
+
+* convert primitive values like a string into an object or array holding the value ([67d78f0](https://github.com/josdejong/svelte-jsoneditor/commit/67d78f09744f0ff4d879728f2d1b3aaa92fa5e8c)), closes [#160](https://github.com/josdejong/svelte-jsoneditor/issues/160)
+
+
+### Bug Fixes
+
+* correctly handle property names containing spaces and special characters in JMESPath ([8e7d3e8](https://github.com/josdejong/svelte-jsoneditor/commit/8e7d3e89dbd00edc045147b203f606171e0486b8))
+* errors not displayed at the right position in text mode when `escapeUnicodeCharacters=true` ([8e7be40](https://github.com/josdejong/svelte-jsoneditor/commit/8e7be40778eb31f4fea51bf52e79803c411c1ebf))
+* improve error message when using `content.text` wrongly (see [#166](https://github.com/josdejong/svelte-jsoneditor/issues/166)) ([cdad5fb](https://github.com/josdejong/svelte-jsoneditor/commit/cdad5fb8712cd45ca14333ded75adc5877410476))
+* revert dev dependency `rollup-plugin-dts` to v4 too to have it work with rollup v2 ([2b183c7](https://github.com/josdejong/svelte-jsoneditor/commit/2b183c7bbb3003a7dfaa19404e1f76d005558236))
+
+### [0.7.10](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.9...v0.7.10) (2022-10-13)
+
+
+### Features
+
+* implement a path editor in the Navigation Bar ([#164](https://github.com/josdejong/svelte-jsoneditor/issues/164)) ([9692634](https://github.com/josdejong/svelte-jsoneditor/commit/969263447d080eef830755744363d547365ef1d4))
+
+
+### Bug Fixes
+
+* [#162](https://github.com/josdejong/svelte-jsoneditor/issues/162) clicking the color picker causes a form submit ([42f2586](https://github.com/josdejong/svelte-jsoneditor/commit/42f25865e8dd61b574d663a72ac6ba643f21bd1a))
+* show paths in Sort modal as a JSONPath (dot separated) instead of JSONPointer ([3cde53d](https://github.com/josdejong/svelte-jsoneditor/commit/3cde53d6e34d195eb050dc1bdc35d383f06a0f7d))
+
+### [0.7.9](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.8...v0.7.9) (2022-09-30)
+
+
+### Bug Fixes
+
+* [#123](https://github.com/josdejong/svelte-jsoneditor/issues/123) use the main `parser` instead of `validationParser` to determine any parse errors ([c18ede3](https://github.com/josdejong/svelte-jsoneditor/commit/c18ede30070f27a612b8019a77feaca97500e1bf))
+
+### [0.7.8](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.7...v0.7.8) (2022-09-29)
+
+
+### Bug Fixes
+
+* [#153](https://github.com/josdejong/svelte-jsoneditor/issues/153) code using a missing dependency `lossless-json` ([4a34214](https://github.com/josdejong/svelte-jsoneditor/commit/4a34214703843f0af6a0253652649cc33083b746))
+
+### [0.7.7](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.6...v0.7.7) (2022-09-29)
+
+
+### Features
+
+* implemented options `parser` and `validationParser` to support alternative JSON parsers like lossless-json ([#151](https://github.com/josdejong/svelte-jsoneditor/issues/151)) ([b47368b](https://github.com/josdejong/svelte-jsoneditor/commit/b47368b7de4c90bab89572210c869eaba64348a7))
+
+### [0.7.6](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.5...v0.7.6) (2022-09-28)
+
+
+### Bug Fixes
+
+* [#149](https://github.com/josdejong/svelte-jsoneditor/issues/149) double quote and unicode characters of control characters not being escaped correctly ([ab213e6](https://github.com/josdejong/svelte-jsoneditor/commit/ab213e6cf276d5556f675ccfd73d8b8265b40283))
+* escaping unicode characters not triggered when loading a document in text mode ([9dedca0](https://github.com/josdejong/svelte-jsoneditor/commit/9dedca039faa887805bd4b0755276c09d3671a45))
+
+### [0.7.5](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.4...v0.7.5) (2022-09-21)
+
+
+### Bug Fixes
+
+* [#98](https://github.com/josdejong/svelte-jsoneditor/issues/98) make copy compatible on non-secure origins and older browser ([#144](https://github.com/josdejong/svelte-jsoneditor/issues/144)) ([d43a646](https://github.com/josdejong/svelte-jsoneditor/commit/d43a6465cd01f91fe8d1634038dfcf67fa578c81))
+
+### [0.7.4](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.3...v0.7.4) (2022-09-12)
+
+
+### Bug Fixes
+
+* [#130](https://github.com/josdejong/svelte-jsoneditor/issues/130) do not open mobile keyboard when the editor is readonly ([1c669fa](https://github.com/josdejong/svelte-jsoneditor/commit/1c669fa731468bcabdcd72935fff468511a6fe5b))
+* [#138](https://github.com/josdejong/svelte-jsoneditor/issues/138) text of tooltip in text mode not readable when using a dark theme ([5e7790e](https://github.com/josdejong/svelte-jsoneditor/commit/5e7790e6fec93b9a8f6646ab4a064d12f9f74762))
+* [#139](https://github.com/josdejong/svelte-jsoneditor/issues/139) cannot use numpad keyboard to enter numbers in tree mode ([e2383d9](https://github.com/josdejong/svelte-jsoneditor/commit/e2383d94d2e51dc8d774122deb05ef0092095851))
+* inserting non capital case characters ([861f36d](https://github.com/josdejong/svelte-jsoneditor/commit/861f36db8a5f725e7716a34d72c7743659b8c823))
+* let `text` mode not change json contents directly into text contents, and prevent freezing when loading a large document ([#141](https://github.com/josdejong/svelte-jsoneditor/issues/141)) ([28b2b56](https://github.com/josdejong/svelte-jsoneditor/commit/28b2b5687d899533e45248eb76afef6aa8d10594))
+
+### [0.7.3](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.2...v0.7.3) (2022-09-09)
+
+
+### Bug Fixes
+
+* circular dependency caused by an unused import ([65a4f5d](https://github.com/josdejong/svelte-jsoneditor/commit/65a4f5d6041b3fd5de0eebc57b9603a0112c01f2))
+
+### [0.7.2](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.1...v0.7.2) (2022-09-09)
+
+
+### Features
+
+* update all dependencies ([dff38e3](https://github.com/josdejong/svelte-jsoneditor/commit/dff38e3ad7ec490e6fe34ef584f1622e8cae7b2f))
+
+
+### Bug Fixes
+
+* mark the package as side-effects free, allowing better optimization in bundlers ([23c1816](https://github.com/josdejong/svelte-jsoneditor/commit/23c1816ea3518360f3f0fd13ebf7acd9abb6d5a5))
+
+### [0.7.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.7.0...v0.7.1) (2022-09-05)
+
+
+### Bug Fixes
+
+* `onChange` event being fired when creating the editor in tree mode ([83e22f7](https://github.com/josdejong/svelte-jsoneditor/commit/83e22f74ab73260df0352235c0528b34a3ca5b19))
+
+## [0.7.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.6.6...v0.7.0) (2022-09-01)
+
+
+### ⚠ BREAKING CHANGES
+
+* Formerly, `onChange` did only fire after a change made by a user. Now, `onChange` also fires
+after programmatic changes: when changing props or calling `patch`, `set`, `update`.
+
+### Features
+
+* always fire onChange, and let onPatch return a PatchResult (fixes [#128](https://github.com/josdejong/svelte-jsoneditor/issues/128)) ([fb45518](https://github.com/josdejong/svelte-jsoneditor/commit/fb4551805c796137ea85b90f6e00603a6244eeaa))
+* update dependencies ([#135](https://github.com/josdejong/svelte-jsoneditor/issues/135)) ([c2e8e0a](https://github.com/josdejong/svelte-jsoneditor/commit/c2e8e0a29d01ad848518cce7dd1226bc7509f499))
+
+
+### Bug Fixes
+
+* expanded state sometimes being reset when syncing content ([a6cce69](https://github.com/josdejong/svelte-jsoneditor/commit/a6cce69df27921d015a19957152a447ad1ea52b0))
+
+### [0.6.6](https://github.com/josdejong/svelte-jsoneditor/compare/v0.6.5...v0.6.6) (2022-08-29)
+
+
+### Bug Fixes
+
+* mobile keyboard opening all the time when selecting something in the editor on a touch device ([c2a0937](https://github.com/josdejong/svelte-jsoneditor/commit/c2a0937b6928388c82c76af3e57f1f3a2bc18fdb))
+
+### [0.6.5](https://github.com/josdejong/svelte-jsoneditor/compare/v0.6.4...v0.6.5) (2022-08-29)
+
+
+### Features
+
+* [#129](https://github.com/josdejong/svelte-jsoneditor/issues/129) allow passing additional options to `createAjvValidator` ([a66f230](https://github.com/josdejong/svelte-jsoneditor/commit/a66f230998a4e8c52a65d7cc5ce124968dec600f))
+
+
+### Bug Fixes
+
+* [#131](https://github.com/josdejong/svelte-jsoneditor/issues/131) backslash character not being escaped when `escapeControlCharacters: true` ([#133](https://github.com/josdejong/svelte-jsoneditor/issues/133)) ([1657d9a](https://github.com/josdejong/svelte-jsoneditor/commit/1657d9abe9568f76119275c8808f81a2805a1f73))
+
+### [0.6.4](https://github.com/josdejong/svelte-jsoneditor/compare/v0.6.3...v0.6.4) (2022-08-19)
+
+
+### Bug Fixes
+
+* [#124](https://github.com/josdejong/svelte-jsoneditor/issues/124) view jumping up when editor gets focus ([b94f531](https://github.com/josdejong/svelte-jsoneditor/commit/b94f5317cfba8f7dbe6debf915b9852949f6196f))
+
+### [0.6.3](https://github.com/josdejong/svelte-jsoneditor/compare/v0.6.2...v0.6.3) (2022-08-16)
+
+
+### Bug Fixes
+
+* minor update of all dependencies ([b61778a](https://github.com/josdejong/svelte-jsoneditor/commit/b61778a70a1df6a1073db0a52c86d10773201bc6))
+
+### [0.6.2](https://github.com/josdejong/svelte-jsoneditor/compare/v0.6.1...v0.6.2) (2022-07-28)
+
+
+### Bug Fixes
+
+* revert the ES workaround for `[@fortawesome](https://github.com/fortawesome)` again, it doesn't work anymore ([69533af](https://github.com/josdejong/svelte-jsoneditor/commit/69533af086d512d830804bbc1fd2cbd6d9e1aec8))
+
+### [0.6.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.6.0...v0.6.1) (2022-07-28)
+
+
+### Bug Fixes
+
+* make sure all imports in index.ts have a .js extension ([52431f6](https://github.com/josdejong/svelte-jsoneditor/commit/52431f61f13a7e7f8ad886d9dd10ca42d944accd))
+* re-introduce the ES workaround for `[@fortawesome](https://github.com/fortawesome)` again ([2a7284c](https://github.com/josdejong/svelte-jsoneditor/commit/2a7284c23b20bad7930198f530a84dbdea361b5c))
+
+## [0.6.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.5.0...v0.6.0) (2022-07-28)
+
+
+### ⚠ BREAKING CHANGES
+
+* The signature of `onChange` is changed from `onChange(updatedContent, previousContent, patchResult)`
+to `onChange(updatedContent, previousContent, { contentErrors, patchResult })`.
+
+### Features
+
+* implement validate method and pass contentErrors via onChange, fixes [#56](https://github.com/josdejong/svelte-jsoneditor/issues/56) ([#119](https://github.com/josdejong/svelte-jsoneditor/issues/119)) ([9847382](https://github.com/josdejong/svelte-jsoneditor/commit/9847382396fe5f853f8ecfde4d5227175c498bf4))
+
+
+### Bug Fixes
+
+* [#118](https://github.com/josdejong/svelte-jsoneditor/issues/118) cursor position in TextMode being reset after changing `validator` ([e580e26](https://github.com/josdejong/svelte-jsoneditor/commit/e580e26e3c4d82935a9fed9804666c986d1c3b21))
+
+## [0.5.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.4.0...v0.5.0) (2022-07-11)
+
+
+### ⚠ BREAKING CHANGES
+
+* The bundled file has been moved into a separate npm package named `vanilla-jsoneditor`. Please replace: `import { JSONEditor} from "svelte-jsoneditor/dist/jsoneditor.js"` with `import { JSONEditor} from "vanilla-jsoneditor"`. Read more about v0.5.0: https://github.com/josdejong/svelte-jsoneditor/blob/main/CHANGELOG.md
+
+### Features
+
+* move bundle into a separate npm package vanilla-jsoneditor ([#114](https://github.com/josdejong/svelte-jsoneditor/issues/114)) ([e865be3](https://github.com/josdejong/svelte-jsoneditor/commit/e865be31e29417d5d5d4fbbd9ebdf9472a94e4f8))
+
+## [0.4.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.60...v0.4.0) (2022-07-08)
+
+
+### ⚠ BREAKING CHANGES
+
+* The 'code' mode has been renamed to 'text' mode.
+* The type `JSONPath` is changed from `Array` to `Array`,
+and some TypeScript types now come from `immutable-json-patch`.
+
+### Features
+
+* rename code mode to text mode ([#113](https://github.com/josdejong/svelte-jsoneditor/issues/113)) ([769fb8f](https://github.com/josdejong/svelte-jsoneditor/commit/769fb8ff5e913e61cceae0c074ebea34f15610b7))
+* state refactor ([#111](https://github.com/josdejong/svelte-jsoneditor/issues/111)) ([a58b4c3](https://github.com/josdejong/svelte-jsoneditor/commit/a58b4c33368f2d0ef39c2aba1a45498f4065c7b5))
+
+
+### Bug Fixes
+
+* [#105](https://github.com/josdejong/svelte-jsoneditor/issues/105) disable dropdown button when all items are disabled ([8698606](https://github.com/josdejong/svelte-jsoneditor/commit/86986066e965b1710e0d15e87e79fd0d958d39df))
+* [#107](https://github.com/josdejong/svelte-jsoneditor/issues/107) dependency issue with fortawesome building svelte-kit ([7ad8e95](https://github.com/josdejong/svelte-jsoneditor/commit/7ad8e95d3acfd69377c172f735b5f6d7e1cda47d))
+* [#110](https://github.com/josdejong/svelte-jsoneditor/issues/110) ContextMenu closes when hovering a validation error ([#112](https://github.com/josdejong/svelte-jsoneditor/issues/112)) ([46424bb](https://github.com/josdejong/svelte-jsoneditor/commit/46424bb3fd4353fc541f3d537eda803218ca63f2))
+* generate a valid sourcemap again ([7981a99](https://github.com/josdejong/svelte-jsoneditor/commit/7981a991f9e34183d4f1d94790d341fb5f6d0cde))
+* make `svelte` a dependency, its type definitions are needed in TypeScript projects (see [#19](https://github.com/josdejong/svelte-jsoneditor/issues/19)) ([acb3acf](https://github.com/josdejong/svelte-jsoneditor/commit/acb3acfa14ea7eb01e4140e799bd6a490f6fd0ef))
+* remove the "powered by CodeMirror" text, is listed in readme and webapp footer instead ([89d661a](https://github.com/josdejong/svelte-jsoneditor/commit/89d661ac5c9c6b01f374a654e9016af4e7ad6035))
+* truncate text preview of invalid JSON in tree mode ([67f5790](https://github.com/josdejong/svelte-jsoneditor/commit/67f57908456c9daa89258af095ace61b2fd9f47e))
+
+
+* make sure the next version will be marked as a breaking change ([0737b6c](https://github.com/josdejong/svelte-jsoneditor/commit/0737b6c7db31c1421f903a1dc1ef090b358633f1))
+
+### [0.3.60](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.59...v0.3.60) (2022-06-09)
+
+
+### Bug Fixes
+
+* [#55](https://github.com/josdejong/svelte-jsoneditor/issues/55) support tabs for indentation, introduce new option `tabSize` ([7e96e9a](https://github.com/josdejong/svelte-jsoneditor/commit/7e96e9a231a0fd69c28b7825423a21d9c94a15bc))
+
+### [0.3.59](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.58...v0.3.59) (2022-06-08)
+
+
+### Bug Fixes
+
+* [#91](https://github.com/josdejong/svelte-jsoneditor/issues/91) interface OptionalJSONEditorProps missing in npm package ([23bd690](https://github.com/josdejong/svelte-jsoneditor/commit/23bd690265dd213775e4163e28b79380aeb0a119))
+* invert the color of warning text to make it better readable ([410d91e](https://github.com/josdejong/svelte-jsoneditor/commit/410d91eb21700f55c8ac914486e62b500929d24d))
+* render the status bar of code mode above parse errors and validation warnings ([d765cb0](https://github.com/josdejong/svelte-jsoneditor/commit/d765cb02851bb2b89bc648d21582a313106f9cfa))
+* update dependencies and devDependencies ([9aa49b6](https://github.com/josdejong/svelte-jsoneditor/commit/9aa49b6ee63f92712241ab6aa8c6da7987e1b607))
+
+### [0.3.58](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.57...v0.3.58) (2022-05-31)
+
+
+### Features
+
+* implement StatusBar in code mode ([4bf271a](https://github.com/josdejong/svelte-jsoneditor/commit/4bf271a32ea24fb069bc91cf567a5102ee29e5d2))
+
+### [0.3.57](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.56...v0.3.57) (2022-05-31)
+
+
+### Bug Fixes
+
+* make active line color a lighter than the selection color in code mode ([1d26fc7](https://github.com/josdejong/svelte-jsoneditor/commit/1d26fc7a4ee95be7f3698c3b0894a85800557f71))
+
+### [0.3.56](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.55...v0.3.56) (2022-05-30)
+
+
+### Bug Fixes
+
+* disable broken sourcemap for the time being ([8239683](https://github.com/josdejong/svelte-jsoneditor/commit/82396830d781c3e2246636c5ac73893fccecc4fb))
+
+### [0.3.55](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.54...v0.3.55) (2022-05-30)
+
+
+### Bug Fixes
+
+* editor not having a border when welcome screen is displayed ([87e5da9](https://github.com/josdejong/svelte-jsoneditor/commit/87e5da92b67e82e5e6fca7594fdd1ff5d8760a74))
+* expanded state being reset when updating the contents ([27f61f2](https://github.com/josdejong/svelte-jsoneditor/commit/27f61f2f66b7b572e2d4bc8276bb79b3640c83ed))
+
+### [0.3.54](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.53...v0.3.54) (2022-05-27)
+
+
+### Bug Fixes
+
+* do not throw an exception when using `.refresh()` in tree mode ([6d5646d](https://github.com/josdejong/svelte-jsoneditor/commit/6d5646d9562d76a88e26ed19d4fd714597d209fe))
+* improve typescript definitions ([#86](https://github.com/josdejong/svelte-jsoneditor/issues/86)) ([a7d759a](https://github.com/josdejong/svelte-jsoneditor/commit/a7d759a6c3fca6cf28ad9f440c5ddcbbdd1dc362))
+
+### [0.3.53](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.52...v0.3.53) (2022-05-23)
+
+
+### Bug Fixes
+
+* index.js files containing broken imports to ts files ([0c4a9f0](https://github.com/josdejong/svelte-jsoneditor/commit/0c4a9f0c2dea2a45aa5dd5b2176ad7802a4e5206))
+
+### [0.3.52](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.51...v0.3.52) (2022-05-23)
+
+
+### Bug Fixes
+
+* index.js file containing broken references to .ts files (regression since v0.3.51) ([36959ee](https://github.com/josdejong/svelte-jsoneditor/commit/36959ee0e2ea8cbbefcbb63f193d83b556404dbc))
+
+### [0.3.51](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.50...v0.3.51) (2022-05-23)
+
+
+### Features
+
+* implement a method `.refresh()` to force rerendering of the code editor ([545426a](https://github.com/josdejong/svelte-jsoneditor/commit/545426aa7d8718e05f57cb83c71d035f37b33dc8))
+
+
+### Bug Fixes
+
+* improve the behavior of the arrow quickkeys to navigate the context menu ([#83](https://github.com/josdejong/svelte-jsoneditor/issues/83)) ([76b177f](https://github.com/josdejong/svelte-jsoneditor/commit/76b177f03b68097c7e521bf07ed753a5a1acf931))
+* maintain the enforceString status after replacing a value ([4d1e9e3](https://github.com/josdejong/svelte-jsoneditor/commit/4d1e9e3b8eb57215650a586740f59d6390bf0981))
+
+### [0.3.50](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.49...v0.3.50) (2022-05-20)
+
+
+### Bug Fixes
+
+* [#79](https://github.com/josdejong/svelte-jsoneditor/issues/79) browser scrolling the editor into view on load ([42fe818](https://github.com/josdejong/svelte-jsoneditor/commit/42fe8188e9248a0191d39e8e991217d5dec5a54c))
+* [#81](https://github.com/josdejong/svelte-jsoneditor/issues/81) clear navigation path when iterating through search results ([434c66d](https://github.com/josdejong/svelte-jsoneditor/commit/434c66d7abc92b6d0f1a38e454a0e7ab9d6c8450))
+* cannot start typing characters to insert a value from the welcome screen ([2bc34e2](https://github.com/josdejong/svelte-jsoneditor/commit/2bc34e224a33219c0ea73515bc04d569d832a0a9))
+* editor losing focus after selecting a color with the color picker ([8cb912a](https://github.com/josdejong/svelte-jsoneditor/commit/8cb912a55d77dca9d298ba9a6bf41d44b0262064))
+* editor losing focus after toggling a boolean value ([ea52484](https://github.com/josdejong/svelte-jsoneditor/commit/ea524847db5927d7c7283d5a8b2aaa3703bf025a))
+* give editor focus when the user starts dragging the selection ([9bd28db](https://github.com/josdejong/svelte-jsoneditor/commit/9bd28dbfb6f5a2bc3ee9ad30d50bd8521ade9b40))
+* give navigation bar text a brighter color in dark theme ([42be0e7](https://github.com/josdejong/svelte-jsoneditor/commit/42be0e7fdd2e7315980e235d43e92cae57cfea7e))
+* improve Transform Wizard to work better with numbers, booleans, and null ([ebc076a](https://github.com/josdejong/svelte-jsoneditor/commit/ebc076a80abc7e561b5518373c2b8530d0413e92))
+* keep focus in editor when closing color picker via ESC ([0b75001](https://github.com/josdejong/svelte-jsoneditor/commit/0b7500171df513fd804051eefc6a7abbbe28ffb4))
+* paste as JSON helper message not working ([0f803b2](https://github.com/josdejong/svelte-jsoneditor/commit/0f803b21a7fc4eaab6e0bb04a108f51d8c0f69a6))
+
+### [0.3.49](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.48...v0.3.49) (2022-05-13)
+
+### Features
+
+* Support for custom styling using css variables
+
+### Bug Fixes
+
+* [#69](https://github.com/josdejong/svelte-jsoneditor/issues/69) cannot build the library after a clean install ([32a9b73](https://github.com/josdejong/svelte-jsoneditor/commit/32a9b737db60a9aee35d276b65f5d5b54bd5cd0c))
+* [#70](https://github.com/josdejong/svelte-jsoneditor/issues/70) implement quickkey Shift+Enter to go to the previous search result ([8f1917f](https://github.com/josdejong/svelte-jsoneditor/commit/8f1917fc5b100eaa7dfadd0f88f765a70de7bd4c))
+* [#71](https://github.com/josdejong/svelte-jsoneditor/issues/71) describe the differences with josdejong/jsoneditor in the README.md ([b9a54e9](https://github.com/josdejong/svelte-jsoneditor/commit/b9a54e974daa0a1e9a6575ddfcb5658e45bbc2ae))
+* context menu button jumping around whilst selecting multiple expanded objects ([d4a3cbf](https://github.com/josdejong/svelte-jsoneditor/commit/d4a3cbfc44ea14b36a0c1d8df2b36495d1f8d2d9))
+* exception thrown when clicking left from a selection ([e7e8094](https://github.com/josdejong/svelte-jsoneditor/commit/e7e8094ad34c4d8ecc9a3d855fe315a448e3bf20))
+* expandAll not working ([37c6256](https://github.com/josdejong/svelte-jsoneditor/commit/37c6256dd4ad60400f7c0ebad75b3d2f534db9e7))
+* right click in welcome screen did not open the context menu ([7934e9a](https://github.com/josdejong/svelte-jsoneditor/commit/7934e9ac7184a84e17d8bcbdfdaa48e9aa210bb7))
+* selection and expanded state not always stored correctly in history ([#73](https://github.com/josdejong/svelte-jsoneditor/issues/73)) ([702fba1](https://github.com/josdejong/svelte-jsoneditor/commit/702fba1d07620008d33f7c0c2ad00e05cbd5954f))
+
+### [0.3.48](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.47...v0.3.48) (2022-04-26)
+
+
+### Bug Fixes
+
+* quickkeys `[` and `{` not working in welcome screen (regression since v0.3.47) ([8a808a4](https://github.com/josdejong/svelte-jsoneditor/commit/8a808a412497e2bfbe4ba01f29eed363cdbc7303))
+
+### [0.3.47](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.46...v0.3.47) (2022-04-26)
+
+
+### Bug Fixes
+
+* allow defining multiple functions in the query of the Transform modal ([31e9b8b](https://github.com/josdejong/svelte-jsoneditor/commit/31e9b8b50ea35dfd6b58145c602ff01a59a66fc2))
+* be able to right-click on top of a property/item tag to open the context menu ([a033abf](https://github.com/josdejong/svelte-jsoneditor/commit/a033abf535c146ca76b38113ccce6a03917ab884))
+* context menu button of insert area sometimes flickering ([282e31d](https://github.com/josdejong/svelte-jsoneditor/commit/282e31d8a52bc43b8d2fba25347d7ec9f040ffc8))
+* full document being selected when clicking scrollbar or main menu when there is no selection ([5109de1](https://github.com/josdejong/svelte-jsoneditor/commit/5109de1bf4d5b7a9399b1180f7e09f8777f67447))
+* fully expand an inserted structure ([a22f405](https://github.com/josdejong/svelte-jsoneditor/commit/a22f405765692abb3b66deae9d92fb89f9a085a6))
+* improve the Javascript and Lodash queries generated via the wizard ([9666120](https://github.com/josdejong/svelte-jsoneditor/commit/9666120ce8cbad2508fe190926601772ae0ff741))
+* sort/transform the contents of the key instead of the parent when a key is selected ([e761a79](https://github.com/josdejong/svelte-jsoneditor/commit/e761a79a2a9bc5cf3615bfe49c2f9832c3569c22))
+
+### [0.3.46](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.45...v0.3.46) (2022-04-22)
+
+
+### Features
+
+* show tip in ContextMenu when it is opened via the ContextMenuButton or the main menu ([b9c38d2](https://github.com/josdejong/svelte-jsoneditor/commit/b9c38d275396ce00dcc61c4c34d4ecb523c9915c))
+
+
+### Bug Fixes
+
+* floating context menu button not rendered when a key is selected ([1ec4ed9](https://github.com/josdejong/svelte-jsoneditor/commit/1ec4ed9ba8af197856ce33e1e42b78dadf8de416))
+
+### [0.3.45](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.44...v0.3.45) (2022-04-21)
+
+
+### Bug Fixes
+
+* expose method `findElement(path)` ([3930137](https://github.com/josdejong/svelte-jsoneditor/commit/39301376ab2f0786a76c22c51c549de125ffa76f))
+
+### [0.3.44](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.43...v0.3.44) (2022-04-21)
+
+
+### Features
+
+* expose method `findElement(path)` ([655a790](https://github.com/josdejong/svelte-jsoneditor/commit/655a790e662180d41207072a25748d76aa69ec6b))
+
+### [0.3.43](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.42...v0.3.43) (2022-04-20)
+
+
+### Bug Fixes
+
+* disable insert buttons in ContextMenu when root is selected (regression introduced in v0.3.41) ([1fe6f48](https://github.com/josdejong/svelte-jsoneditor/commit/1fe6f488ae7b7d8d83952e4f00ca2e55fa6a4a09))
+
+### [0.3.42](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.41...v0.3.42) (2022-04-20)
+
+
+### Bug Fixes
+
+* right-click right from a value did not select the insert area before opening the context menu ([215eb04](https://github.com/josdejong/svelte-jsoneditor/commit/215eb04b82f4eacb66972041476a740de7f18451))
+
+### [0.3.41](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.40...v0.3.41) (2022-04-20)
+
+
+### Features
+
+* change insert buttons into convert buttons, converting between objects/arrays/text (see [#61](https://github.com/josdejong/svelte-jsoneditor/issues/61)) ([f413066](https://github.com/josdejong/svelte-jsoneditor/commit/f413066509b9167af9751218df30922ae5d9ffac))
+
+
+### Bug Fixes
+
+* change button text to "Copy compacted" for consistency ([396a274](https://github.com/josdejong/svelte-jsoneditor/commit/396a274219cb20e682d5b83c9317b99b3346b098))
+* change styling of the mode toggle button (code/tree) ([28b9c6c](https://github.com/josdejong/svelte-jsoneditor/commit/28b9c6c671f282832ece219a7c2f60cc2b0c5fa5))
+* use flex-start and flex-end to fix warnings in environments like tailwindcss ([#43](https://github.com/josdejong/svelte-jsoneditor/issues/43)) ([e1e0ddd](https://github.com/josdejong/svelte-jsoneditor/commit/e1e0dddfc6593197bf618a87af94d5a19a8945f9))
+
+### [0.3.40](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.39...v0.3.40) (2022-04-15)
+
+
+### Bug Fixes
+
+* importing vanilla-picker wrongly ([ddecbf1](https://github.com/josdejong/svelte-jsoneditor/commit/ddecbf1fd3d87a53e574374b581c1eabcd9c54b8))
+
+### [0.3.39](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.38...v0.3.39) (2022-04-15)
+
+
+### Bug Fixes
+
+* [#66](https://github.com/josdejong/svelte-jsoneditor/issues/66) import color picker dynamically since it cannot render server side ([b6041bb](https://github.com/josdejong/svelte-jsoneditor/commit/b6041bb3df4b8d74927cd65ef7343c63b04d8299))
+
+### [0.3.38](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.37...v0.3.38) (2022-04-13)
+
+
+### Features
+
+* select contents within brackets using double-click ([#65](https://github.com/josdejong/svelte-jsoneditor/issues/65)) ([e73970f](https://github.com/josdejong/svelte-jsoneditor/commit/e73970ff9b168d57ad53b5d56ac25e98794abf56))
+
+
+### Bug Fixes
+
+* show `prop` and `item` instead of plural when there is only one property or item ([1f1725f](https://github.com/josdejong/svelte-jsoneditor/commit/1f1725feda64c70c5ba305f1aa02ad1468a0d226))
+
+### [0.3.37](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.36...v0.3.37) (2022-04-12)
+
+
+### Bug Fixes
+
+* clicking a button to switch mode did toggle instead of selecting the clicked mode ([0451001](https://github.com/josdejong/svelte-jsoneditor/commit/045100141855a5f91c47205a8e735500584b3120))
+
+### [0.3.36](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.35...v0.3.36) (2022-04-12)
+
+
+### Bug Fixes
+
+* change code mode toggle into group buttons [tree|code] (see [#59](https://github.com/josdejong/svelte-jsoneditor/issues/59)) ([ad33b26](https://github.com/josdejong/svelte-jsoneditor/commit/ad33b2671b08442f54daa477ec40dcb594f6afe8))
+* expand all extracted contents (when not too large) ([d4ae8f4](https://github.com/josdejong/svelte-jsoneditor/commit/d4ae8f473c66b1c912454d20590277a5b3503524))
+* position search box in code mode on top ([#62](https://github.com/josdejong/svelte-jsoneditor/issues/62)) ([f0a1feb](https://github.com/josdejong/svelte-jsoneditor/commit/f0a1feb28b034ce847abdf73890968759423847a))
+* update all devDependencies ([13331c7](https://github.com/josdejong/svelte-jsoneditor/commit/13331c7550a630fa26faa853d04394d6fdaf624a))
+
+### [0.3.35](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.34...v0.3.35) (2022-04-11)
+
+
+### Bug Fixes
+
+* improve the rendering performance ([#58](https://github.com/josdejong/svelte-jsoneditor/issues/58)) ([84c6eb3](https://github.com/josdejong/svelte-jsoneditor/commit/84c6eb30e4df744670adbb92b8c3543d3a60bba5))
+
+### [0.3.34](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.33...v0.3.34) (2022-04-08)
+
+
+### Features
+
+* implement method `acceptAutoRepair` ([d037a7e](https://github.com/josdejong/svelte-jsoneditor/commit/d037a7e73869751bd408191a217c734b4fce9be0))
+
+### [0.3.33](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.32...v0.3.33) (2022-04-07)
+
+
+### Bug Fixes
+
+* make sure JavaScript and Lodash queries return null and never undefined ([73ae90c](https://github.com/josdejong/svelte-jsoneditor/commit/73ae90c4d3f50d500d47fc5cb87a0d0b91686301))
+
+### [0.3.32](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.31...v0.3.32) (2022-04-06)
+
+### [0.3.31](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.30...v0.3.31) (2022-04-06)
+
+
+### Bug Fixes
+
+* styling tweaks in the vertical sizing of the TransformModal ([3f87a8a](https://github.com/josdejong/svelte-jsoneditor/commit/3f87a8ab477d88e155697bc6edc047028da555f7))
+
+### [0.3.30](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.29...v0.3.30) (2022-04-06)
+
+
+### Bug Fixes
+
+* be resilient against missing or disabled localStorage ([52f76b7](https://github.com/josdejong/svelte-jsoneditor/commit/52f76b73b8d26ffcfca4e8391a55273f5b1d9b22))
+* disable Search menu item when there is no contents ([e687229](https://github.com/josdejong/svelte-jsoneditor/commit/e687229a33518356c65850d57a729c2ea6e9637f))
+* do not show welcome options when editor is readOnly ([eb92d75](https://github.com/josdejong/svelte-jsoneditor/commit/eb92d75ad608aa6df05b7633dd7cba9bb5008876))
+* method `editor.transform()` broken (regression since v0.3.29) ([299dc78](https://github.com/josdejong/svelte-jsoneditor/commit/299dc78fdfce1c327cb54efc97d6dc8fd34f00d9))
+* styling tweaks in the TransformModal ([3983918](https://github.com/josdejong/svelte-jsoneditor/commit/3983918d125249535211a0228b9444cd6d9bc8f3))
+
+### [0.3.29](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.28...v0.3.29) (2022-04-06)
+
+
+### Features
+
+* reorganize Tranform modal, show original data alongside the preview ([#54](https://github.com/josdejong/svelte-jsoneditor/issues/54)) ([9b6b79e](https://github.com/josdejong/svelte-jsoneditor/commit/9b6b79e487d79057522ecbeca41fade01b7bbd79))
+
+
+### Bug Fixes
+
+* cannot select a key or value when clicking inside the selection ([331254a](https://github.com/josdejong/svelte-jsoneditor/commit/331254ad9a458ef9889ea22acc9c02cb6ef50e8a))
+* disable Auto repair buttons when the editor is readOnly ([0a5eca4](https://github.com/josdejong/svelte-jsoneditor/commit/0a5eca4c26bcb1818815bf1e24bc18e0888c9d02))
+* dragging selection not disabled in readOnly mode ([eac069a](https://github.com/josdejong/svelte-jsoneditor/commit/eac069ae0f0df2711bd5991778d4e25545f765a4))
+* solve circular dependency to TreeMode in the Transform modal ([71f3511](https://github.com/josdejong/svelte-jsoneditor/commit/71f3511ffc3cb6eab2ef2d6fd9f1abae18c2f3e4))
+* some styling fixes in the Sort modal ([4366a0f](https://github.com/josdejong/svelte-jsoneditor/commit/4366a0fa1d460def432b3a1900f530c0a63dc2d2))
+* undo/redo buttons in code mode not updated when contents changed externally ([5778540](https://github.com/josdejong/svelte-jsoneditor/commit/5778540560c3ce6b7d62346e4a9ef302881bc373))
+* use ajv-dist instead of ajv to solve rollup issues ([a663a1b](https://github.com/josdejong/svelte-jsoneditor/commit/a663a1bf7748b3332f9e8ddcd12c6c760e953f7f))
+
+### [0.3.28](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.27...v0.3.28) (2022-04-04)
+
+
+### Bug Fixes
+
+* could not select items when starting to drag right from an item ([c5de4d5](https://github.com/josdejong/svelte-jsoneditor/commit/c5de4d5ac84675c0a6292f439c845f3ee51e2a4b))
+* insert area visible whilst selecting or dragging ([5d1e68f](https://github.com/josdejong/svelte-jsoneditor/commit/5d1e68f248d1ad9a7f898a50b4945f50eacc1488))
+
+### [0.3.27](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.26...v0.3.27) (2022-04-04)
+
+
+### Bug Fixes
+
+* when pasting, expand all pasted contents by default when small ([ec9703c](https://github.com/josdejong/svelte-jsoneditor/commit/ec9703c741bf0575864ce699a4c3ea708acdf57a))
+
+### [0.3.26](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.25...v0.3.26) (2022-04-04)
+
+
+### Bug Fixes
+
+* fully expand small JSON documents by default ([d94701b](https://github.com/josdejong/svelte-jsoneditor/commit/d94701b9d40cc0eefbf6865d3cfb76526c6fdd8e))
+* pasted or replaced contents not being expanded ([4e86440](https://github.com/josdejong/svelte-jsoneditor/commit/4e864405a70676038b0da6816ae4679f5078cf1e))
+* update dependencies ([d9eb233](https://github.com/josdejong/svelte-jsoneditor/commit/d9eb233c24c958cabd41ad58df372ca6bbb15cf7))
+
+### [0.3.25](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.24...v0.3.25) (2022-03-22)
+
+
+### Features
+
+* drag selected contents up and down ([#50](https://github.com/josdejong/svelte-jsoneditor/issues/50)) ([c3c4113](https://github.com/josdejong/svelte-jsoneditor/commit/c3c4113441c2a2df111da5e74b312a9146900927))
+
+
+### Bug Fixes
+
+* validate in code mode not always triggering ([246cf67](https://github.com/josdejong/svelte-jsoneditor/commit/246cf670259393c56934f0955df31ec957e3f863))
+
+### [0.3.24](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.23...v0.3.24) (2022-03-16)
+
+
+### Bug Fixes
+
+* component EditableDiv did not close when losing focus to another element on the same page ([a8abe71](https://github.com/josdejong/svelte-jsoneditor/commit/a8abe710f5e2d10bf31f7272f709d53665a1eb88))
+* define font for linting messages ([8a5456f](https://github.com/josdejong/svelte-jsoneditor/commit/8a5456f3de474c58e49b637617d1694b515e1055))
+* editor layout does overflow when opening a large minified document in code mode ([#48](https://github.com/josdejong/svelte-jsoneditor/issues/48)) ([5574d38](https://github.com/josdejong/svelte-jsoneditor/commit/5574d38164f48610842a0707be81cf9ca12bd53b))
+* implement quick keys Ctrl+F and Ctrl+H to open the find dialog whilst editing a key or value ([e608486](https://github.com/josdejong/svelte-jsoneditor/commit/e608486a53c59cb53b3cf1240884d7d2147fd345))
+* minor styling fix ([1399dd8](https://github.com/josdejong/svelte-jsoneditor/commit/1399dd8272de55f22d77b1633bd124632064606f))
+* styling tweaks ([1d15f2b](https://github.com/josdejong/svelte-jsoneditor/commit/1d15f2b2675922d4c566cdd6cec53caac70dcd7e))
+* wrapping line in Copy dropdown menu ([61b10ac](https://github.com/josdejong/svelte-jsoneditor/commit/61b10ac1d4a50b7d9b7e68b9316adbedd47ffd02))
+
+### [0.3.23](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.22...v0.3.23) (2022-03-08)
+
+
+### Bug Fixes
+
+* do not use dynamic imports ([b5ca813](https://github.com/josdejong/svelte-jsoneditor/commit/b5ca813ef1c5a4dbd5527c496afe824986e3a45e))
+
+### [0.3.22](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.21...v0.3.22) (2022-03-08)
+
+
+### Bug Fixes
+
+* publish missing generated/* folder on npm too ([ec391b2](https://github.com/josdejong/svelte-jsoneditor/commit/ec391b28b7c12bed81f65ff8b35a9fabba88d349))
+* publish missing generated/* folder on npm too ([a0195cd](https://github.com/josdejong/svelte-jsoneditor/commit/a0195cde8e77850a431eb0a77219d644c80af1d7))
+
+### [0.3.21](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.20...v0.3.21) (2022-03-08)
+
+
+### Features
+
+* replace Ace with CodeMirror 6 ([#46](https://github.com/josdejong/svelte-jsoneditor/issues/46)) ([71cc856](https://github.com/josdejong/svelte-jsoneditor/commit/71cc856c81456dbb788b14d847e30a289bf2a129))
+
+### [0.3.20](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.19...v0.3.20) (2022-03-07)
+
+
+### Bug Fixes
+
+* drop `viteOptimizeDeps` (in `src/config.js`) and remove it from the docs: not needed anymore ([1c64009](https://github.com/josdejong/svelte-jsoneditor/commit/1c64009469c7914f5daffa93c4402c4643072a03))
+
+### [0.3.19](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.18...v0.3.19) (2022-03-07)
+
+
+### Bug Fixes
+
+* add `generated` folder to .prettierignore ([e15ee93](https://github.com/josdejong/svelte-jsoneditor/commit/e15ee931eab2a4e273a3dae188ecdf6ab284351f))
+* diff-sequences export not playing nice with Vite ([f87a7b3](https://github.com/josdejong/svelte-jsoneditor/commit/f87a7b379e9204bc835de87125371f709f77dc3c))
+
+### [0.3.18](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.17...v0.3.18) (2022-02-09)
+
+
+### Bug Fixes
+
+* race condition when toggling mode ([2a97ab5](https://github.com/josdejong/svelte-jsoneditor/commit/2a97ab55191ddb5e9a79591a74bf342a0e89e9e8))
+* update all dependencies ([f083d2c](https://github.com/josdejong/svelte-jsoneditor/commit/f083d2c1c9570e91b24ee037d1d988c9e733722f))
+
+### [0.3.17](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.16...v0.3.17) (2022-02-09)
+
+
+### Bug Fixes
+
+* improve explanatory titles on color picker and boolean toggle when readOnly ([aac632b](https://github.com/josdejong/svelte-jsoneditor/commit/aac632bcb9ceeb9a9ab4358aefdea2523c0adb4e))
+* only show explanatory titles on color picker and boolean toggle when editable ([4971138](https://github.com/josdejong/svelte-jsoneditor/commit/49711385d97ba10499285a02b9c365b7719f7c55))
+* rename schemaRefs to schemaDefinitions (not breaking, just a renamed function argument) ([0e7d653](https://github.com/josdejong/svelte-jsoneditor/commit/0e7d65335212188011d7ba0c3ce8438a99b22ee5))
+* shortcut Shift+Enter to create a newline not working on Chrome ([48a10a6](https://github.com/josdejong/svelte-jsoneditor/commit/48a10a667ce1d19258bb09f7cb23e8931ba9f39f))
+* update dependencies ([4bc6d53](https://github.com/josdejong/svelte-jsoneditor/commit/4bc6d5356c5f401bf5a0e0ff60a67a046b346e5a))
+
+### [0.3.16](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.15...v0.3.16) (2022-01-20)
+
+
+### Features
+
+* implement support for enforcing a value to stay a string when it contains a numeric value.
+ This can be toggled via the button "Enforce string" in ContextMenu, under "Edit value".
+
+
+### Bug Fixes
+
+* [#45](https://github.com/josdejong/svelte-jsoneditor/issues/45) invoke onChangeMode after re-rendering instead of before ([c8894ce](https://github.com/josdejong/svelte-jsoneditor/commit/c8894ce2b618df3cadf5cc8a6ac8a3cc44c15c9f))
+
+
+### [0.3.15](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.14...v0.3.15) (2022-01-12)
+
+
+### Bug Fixes
+
+* regression in clicking the context menu button on an insert area ([f5bcc71](https://github.com/josdejong/svelte-jsoneditor/commit/f5bcc7166720bac94b7ea222f5e95e8a39368d46))
+
+### [0.3.14](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.13...v0.3.14) (2022-01-08)
+
+
+### Bug Fixes
+
+* expand contents when pasting in an empty document ([a3c8021](https://github.com/josdejong/svelte-jsoneditor/commit/a3c80216370dfa176b0eafd6afa9e88a0f9d579f))
+* shift-click not working when selecting an area in between two nodes ([c21f1f3](https://github.com/josdejong/svelte-jsoneditor/commit/c21f1f310382b39c4ca4b27725b982feeb48acbf))
+* shift-click to select multiple items broken ([a28bbdf](https://github.com/josdejong/svelte-jsoneditor/commit/a28bbdf8c8a3354a9f6e32efd2cb7b44656f91dd))
+
+### [0.3.13](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.12...v0.3.13) (2022-01-05)
+
+
+### Bug Fixes
+
+* clicking on another node whilst editing did not move the focus there ([b2fe3d7](https://github.com/josdejong/svelte-jsoneditor/commit/b2fe3d7e558358d4aa7f0400d90da366b56bbb6c))
+* fix too large padding for expanded array bracket ([0963960](https://github.com/josdejong/svelte-jsoneditor/commit/09639609d9b642a9df0caa663caaad6903816cd8))
+* issue in encode/decode datapath ([a56cb1b](https://github.com/josdejong/svelte-jsoneditor/commit/a56cb1ba867c336f8ee72b7c505ba669024beb28))
+* make the code robust against missing refContents ([360de5e](https://github.com/josdejong/svelte-jsoneditor/commit/360de5e9e01b6008f5062fec70ffb621b66f70ed))
+* scrollTo throwing exception when contents is empty ([68fcb6a](https://github.com/josdejong/svelte-jsoneditor/commit/68fcb6aaa59490130e528b25bdea014a315e7285))
+* styling tweak for the readonly item count tag ([5bbb679](https://github.com/josdejong/svelte-jsoneditor/commit/5bbb679efccb235a17fafcc82919ea14cb62c66d))
+* when opening edit mode, sometimes the first typed character was lost ([22b5577](https://github.com/josdejong/svelte-jsoneditor/commit/22b5577f3432501776b56abdedda5c1854f5d809))
+
+### [0.3.12](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.11...v0.3.12) (2022-01-05)
+
+
+### Bug Fixes
+
+* revert "fix: upgrade to the latest version of sveltekit and vite, removing the need for viteOptimizeDeps"
+
+### [0.3.11](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.10...v0.3.11) (2022-01-05)
+
+
+### Bug Fixes
+
+* property `normalization` missing the docs and in development application ([002b7e9](https://github.com/josdejong/svelte-jsoneditor/commit/002b7e995decc602962a4b74c5cd6847477df405))
+* tweak font for ubuntu and mac ([b05009c](https://github.com/josdejong/svelte-jsoneditor/commit/b05009c4b41b200ec8703c85373f55f96138f96f))
+* upgrade to the latest version of sveltekit and vite, removing the need for viteOptimizeDeps ([c7211a3](https://github.com/josdejong/svelte-jsoneditor/commit/c7211a30981a453ee0a86ac2594bf0cca3431436))
+
+### [0.3.10](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.9...v0.3.10) (2021-12-22)
+
+
+### Features
+
+* implement options escapeControlCharacters and escapeUnicodeCharacters ([#42](https://github.com/josdejong/svelte-jsoneditor/issues/42)) ([cfdd8cc](https://github.com/josdejong/svelte-jsoneditor/commit/cfdd8cca0639a93ca5bb62cca84b31e7b3c9ee6f))
+* show tag with array item count also when expanded ([b427fe7](https://github.com/josdejong/svelte-jsoneditor/commit/b427fe7f4618a633882b241ee771d05ce3daa092))
+
+
+### Bug Fixes
+
+* add property `type` to `` where missing (see [#39](https://github.com/josdejong/svelte-jsoneditor/issues/39)) ([880795f](https://github.com/josdejong/svelte-jsoneditor/commit/880795f751ffa18f2f5fe63958a880e1d80de165))
+* clicking outside the editor should stop editing a key/value (see [#40](https://github.com/josdejong/svelte-jsoneditor/issues/40)) ([b67de42](https://github.com/josdejong/svelte-jsoneditor/commit/b67de420fd0be2057c85c175f0e1bc0d8ee2b3e5))
+* escape special characters in keys ([10fdedd](https://github.com/josdejong/svelte-jsoneditor/commit/10fdedd2d422020c6fb2e3f81ae96a1db5156381))
+* make sure editor blur when clicking outside ([aef0d57](https://github.com/josdejong/svelte-jsoneditor/commit/aef0d57899ef0c3683b9cfda1255c926b937551a))
+* partial fix for [#40](https://github.com/josdejong/svelte-jsoneditor/issues/40), clicking outside the editor should stop editing a key/value ([70eab0c](https://github.com/josdejong/svelte-jsoneditor/commit/70eab0c5f6204c844396d19f048e86a20b56ad38))
+
+### [0.3.9](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.8...v0.3.9) (2021-12-04)
+
+
+### Bug Fixes
+
+* remember state of TransformModal and SortModal on every change instead of only after submit ([caa4364](https://github.com/josdejong/svelte-jsoneditor/commit/caa4364eba8c3db06b265e55bc0e0d6bc35c828e))
+
+### [0.3.8](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.7...v0.3.8) (2021-12-04)
+
+
+### Bug Fixes
+
+* add current value to the enum dropdown if needed ([8f11bac](https://github.com/josdejong/svelte-jsoneditor/commit/8f11baca5b5613250b7d60ddfcaaf7f13b12fdc7))
+
+### [0.3.7](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.6...v0.3.7) (2021-12-04)
+
+
+### Features
+
+* custom rendering with onRenderValue, performance improvements, and fixes ([635f542](https://github.com/josdejong/svelte-jsoneditor/commit/635f542d92b21350100d2333764657d60650d167))
+
+### [0.3.6](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.5...v0.3.6) (2021-11-27)
+
+
+### Bug Fixes
+
+* merge [#32](https://github.com/josdejong/svelte-jsoneditor/issues/32) adding rollup to the devDependencies ([f292c2f](https://github.com/josdejong/svelte-jsoneditor/commit/f292c2f057a46f4c0d7b3e4c65637bc1e9463327))
+* replace `debug` with a util debug function ([#34](https://github.com/josdejong/svelte-jsoneditor/issues/34)) ([ddf608a](https://github.com/josdejong/svelte-jsoneditor/commit/ddf608aa77ddf04b3e31db70f1719e90a94664fa))
+* update dependencies ([f87572e](https://github.com/josdejong/svelte-jsoneditor/commit/f87572e2827ec325f3f55318cdd595f762477fbb))
+* use debug instead of console.log ([b2478b8](https://github.com/josdejong/svelte-jsoneditor/commit/b2478b86b4382e75400036fab542db17cc874f3e))
+
+### [0.3.5](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.4...v0.3.5) (2021-11-17)
+
+
+### Features
+
+* extend the `onChange` callback to pass previousJson and patchResult ([8e5aecf](https://github.com/josdejong/svelte-jsoneditor/commit/8e5aecf4b0ac29c97d545098f037d7f027182558))
+* implement `javascriptQueryLanguage` ([6568afe](https://github.com/josdejong/svelte-jsoneditor/commit/6568afee6f5dd28f3167dcf46bfeb78b6376bee8))
+* implement a configuration dropdown to select a query language ([871ac5c](https://github.com/josdejong/svelte-jsoneditor/commit/871ac5ce6b95033aa7caa1a4aa4d92b886b89345))
+* support multiple query languages in the transform modal (WIP) ([030d3ca](https://github.com/josdejong/svelte-jsoneditor/commit/030d3ca9601f28a788998d88f7975c1180e190f2))
+
+
+### Bug Fixes
+
+* edge case in jmespath selecting whole item as projection ([ef2a4cf](https://github.com/josdejong/svelte-jsoneditor/commit/ef2a4cf0995cab3f418c7c8f1b2ed16878bb679b))
+* improve the performance of replacing returns with enclosing whitespaces ([de05b10](https://github.com/josdejong/svelte-jsoneditor/commit/de05b103d511140669f12c0f180436fc86cb4ec9))
+* robustness fix ([54c6586](https://github.com/josdejong/svelte-jsoneditor/commit/54c6586a0f7c286c71789b8698a2affe3c5411bb))
+* show arrow down icon on the right side of the select boxes ([c0375b1](https://github.com/josdejong/svelte-jsoneditor/commit/c0375b1888ac5e7341bd559a458d7802854a5151))
+* small styling fix ([ec83c32](https://github.com/josdejong/svelte-jsoneditor/commit/ec83c3263eb8bf7c55f57b90d564e56b0aa17624))
+* styling fix of the scrollbar in the TransformModal ([5adc31d](https://github.com/josdejong/svelte-jsoneditor/commit/5adc31d23635e8eac94ffc8c2479adf3cab439ad))
+* write unit tests and fixes for all query languages ([a6af472](https://github.com/josdejong/svelte-jsoneditor/commit/a6af4728ff6695d872489e4f305dae16ab75a908))
+
+### [0.3.4](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.3...v0.3.4) (2021-11-03)
+
+
+### Features
+
+* implement search and replace ([#30](https://github.com/josdejong/svelte-jsoneditor/issues/30)) ([3fb89d4](https://github.com/josdejong/svelte-jsoneditor/commit/3fb89d474f600dd2962a5a48497961a40196fe88))
+
+### [0.3.3](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.2...v0.3.3) (2021-10-13)
+
+
+### Bug Fixes
+
+* debounce changes in code mode, fixing a race condition in React (see [#23](https://github.com/josdejong/svelte-jsoneditor/issues/23)) ([bc2c559](https://github.com/josdejong/svelte-jsoneditor/commit/bc2c559194209ec7cb179a6e89e6f6cab14339a0))
+
+### [0.3.2](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.1...v0.3.2) (2021-09-25)
+
+### [0.3.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.3.0...v0.3.1) (2021-09-22)
+
+
+### Bug Fixes
+
+* clearing the complete document not working (regression since v0.3.0) ([352b110](https://github.com/josdejong/svelte-jsoneditor/commit/352b110b64d5f0563c319cf10278792f2eb994ab))
+* do not lose focus and fire a focus/blur event when opening a modal inside the editor ([cbb0c79](https://github.com/josdejong/svelte-jsoneditor/commit/cbb0c79f338972fc36edaa830c13e3a844342490))
+* fix formatting of the breaking changes list in CHANGELOG.md ([05d5995](https://github.com/josdejong/svelte-jsoneditor/commit/05d5995700483d581f969d1e343c450b29bf5ec8))
+* improve inefficient regex to replace return characters ([f3ae485](https://github.com/josdejong/svelte-jsoneditor/commit/f3ae4855004d6c3cc8db88a2c93ebae03d07cacc))
+* scroll cursor into view when moving with arrows left/right ([7ffd586](https://github.com/josdejong/svelte-jsoneditor/commit/7ffd586fbf50dfec16ac519bdba494e1ae36981e))
+* show selection with a lighter gray when the editor doesn't have focus ([a57268b](https://github.com/josdejong/svelte-jsoneditor/commit/a57268b317cde564273e57a9daa27f52af038cd8))
+
+## [0.3.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.2.8...v0.3.0) (2021-09-11)
+
+
+### ⚠ BREAKING CHANGES
+
+* Properties `json` and `text` are replaced by `content: { json, text }`
+* Methods `getText`, `setText`, and `updateText` are removed, use `get`, `set` and `update` instead.
+* Methods `get` `set`, and `update` now expect and return a content object `{ json: JSON } | { text: string }` instead of the json data.
+
+### Features
+
+* change the API methods to consistently work with `content` instead of `json` and `text` ([6b810b7](https://github.com/josdejong/svelte-jsoneditor/commit/6b810b7f852d6fe6ecfa1b558e2ccf23cf66a265))
+* unify properties `json` and `text` inside `content` ([f93ce2d](https://github.com/josdejong/svelte-jsoneditor/commit/f93ce2d053d9515ddcd8bc779106c054348d5254))
+* update all dependencies ([2332413](https://github.com/josdejong/svelte-jsoneditor/commit/233241301e8d41fbacc537c89117a0943e3d622d))
+* validate content type ([9885ff1](https://github.com/josdejong/svelte-jsoneditor/commit/9885ff109b67c5be088c35b21b5d63083a393585))
+
+
+### Bug Fixes
+
+* code mode throwing an exception when trying to validate an empty document ([412172b](https://github.com/josdejong/svelte-jsoneditor/commit/412172b11d626d6e1f8f9563fadcf0d88ec78589))
+* disable opening of color picker when editor is readOnly ([236ec7a](https://github.com/josdejong/svelte-jsoneditor/commit/236ec7a220f4465d8c8924e1ff854b176f2446a0))
+* tooltip font and size not defined ([a9fa438](https://github.com/josdejong/svelte-jsoneditor/commit/a9fa4385e001e4162393f2778fbfde9184b1c372))
+
+### [0.2.8](https://github.com/josdejong/svelte-jsoneditor/compare/v0.2.7...v0.2.8) (2021-08-20)
+
+
+### Features
+
+* create a Svelte examples section ([908d0c4](https://github.com/josdejong/svelte-jsoneditor/commit/908d0c4d4299c467aff84271eca5ad013ced8f88))
+* implement color picker ([652e3ac](https://github.com/josdejong/svelte-jsoneditor/commit/652e3ac702328b70e9795b10071338d7ab3f43d3))
+* implement method `editor.updateProps(props)` to change properties after creation ([b596155](https://github.com/josdejong/svelte-jsoneditor/commit/b59615531602dfb8b5beae1ad4cb7890dce06007))
+* show a time icon with human-readable time in case of unix timestamps ([7d73846](https://github.com/josdejong/svelte-jsoneditor/commit/7d73846c2c986ae3e69f8be143d944c90cd0fd1a))
+* update dependencies (`svelte-select`, `sass`) and devDependencies ([be32856](https://github.com/josdejong/svelte-jsoneditor/commit/be3285629fb984131ec6f126f121267a5cf0ebe8))
+
+
+### Bug Fixes
+
+* display collapsed items sections as selected ([f276863](https://github.com/josdejong/svelte-jsoneditor/commit/f2768638070bf6c011279584d54d26b37948884d))
+* upgrade `svelte-select` to `4.3.1` ([c92310a](https://github.com/josdejong/svelte-jsoneditor/commit/c92310a0c3474ac7476056f12b57d1ecf4d9f39c))
+
+### [0.2.7](https://github.com/josdejong/svelte-jsoneditor/compare/v0.2.6...v0.2.7) (2021-08-06)
+
+
+### Features
+
+* sort the navigation bar dropdown items alphabetically ([d85ecb2](https://github.com/josdejong/svelte-jsoneditor/commit/d85ecb29cfcef79751b7ece0e107b555eb4c6093))
+
+
+### Bug Fixes
+
+* insert before not working when the first item of the root array/object is selected ([8e0043f](https://github.com/josdejong/svelte-jsoneditor/commit/8e0043fb489c1756f81c1b64093942a76aeb1bcd))
+* insert before/after not reckoning with multi selection ([c66b2f7](https://github.com/josdejong/svelte-jsoneditor/commit/c66b2f7ca25b5a8f8b96bb599d76aa2394e19f3a))
+* navigation bar keys not being unique ([b7bbc5b](https://github.com/josdejong/svelte-jsoneditor/commit/b7bbc5b5b2b771770b47d13c849055db73b3887b))
+* position the search box below the navigation bar ([86e50d5](https://github.com/josdejong/svelte-jsoneditor/commit/86e50d5b931ad21811e2be3f53c0c565c12491fe))
+* redo of inserting an Array/Object does not correctly restore selection ([148c8fd](https://github.com/josdejong/svelte-jsoneditor/commit/148c8fd87d7c57a1896fc955fa1eac1a7898b263))
+* validation error popup not visible when on the first line ([3a6f0be](https://github.com/josdejong/svelte-jsoneditor/commit/3a6f0beb2f3cc4d529e740786eaf7fea74ec0955))
+
+### [0.2.6](https://github.com/josdejong/svelte-jsoneditor/compare/v0.2.5...v0.2.6) (2021-08-06)
+
+
+### Features
+
+* navigation bar implemented in tree mode ([ff93e7b](https://github.com/josdejong/svelte-jsoneditor/commit/ff93e7b23122fbdbb509dc61a0f6204fb31bc1cd))
+
+
+### Bug Fixes
+
+* when json is changed, clear selection when it refers to a non-existing path ([65c20f0](https://github.com/josdejong/svelte-jsoneditor/commit/65c20f07014241f41225a178d006577a874dd62f))
+
+### [0.2.5](https://github.com/josdejong/svelte-jsoneditor/compare/v0.2.4...v0.2.5) (2021-08-04)
+
+
+### Bug Fixes
+
+* minor styling tweak in the cut/copy dropdown buttons to visualize when dropdown is open ([d2d9561](https://github.com/josdejong/svelte-jsoneditor/commit/d2d956161ccda6d74674304b7f1143dd9cdbae64))
+
+### [0.2.4](https://github.com/josdejong/svelte-jsoneditor/compare/v0.2.3...v0.2.4) (2021-08-04)
+
+
+### Features
+
+* auto scroll up/down when dragging to select multiple nodes ([9e96957](https://github.com/josdejong/svelte-jsoneditor/commit/9e96957855a63002084d40d8a8aa901cb31abbba))
+* implement menu options and quick keys to cut/copy without indentation ([1dcbc41](https://github.com/josdejong/svelte-jsoneditor/commit/1dcbc41c8e8c4fdf4c70e66802237538759ca54b))
+
+### [0.2.3](https://github.com/josdejong/svelte-jsoneditor/compare/v0.2.2...v0.2.3) (2021-08-04)
+
+
+### Bug Fixes
+
+* method `transform()` throwing an error ([73e35c1](https://github.com/josdejong/svelte-jsoneditor/commit/73e35c1fecf8f86862b9960dac2e829fa082dcd3))
+
+### [0.2.2](https://github.com/josdejong/svelte-jsoneditor/compare/v0.2.1...v0.2.2) (2021-08-04)
+
+
+### Features
+
+* extend the `transform` method with a callback `onTransform` ([90e8427](https://github.com/josdejong/svelte-jsoneditor/commit/90e8427efe76a36f22a921cf7cf08ed49e51ac53))
+* implement method `transform()` and callback `onTransform(operations)` ([08c0f61](https://github.com/josdejong/svelte-jsoneditor/commit/08c0f61b1ef5e23f7268cf1ea44e910ab48b6c51))
+
+
+### Bug Fixes
+
+* do not expand all contents after extracting some contents ([bb98201](https://github.com/josdejong/svelte-jsoneditor/commit/bb98201e7c3324137972f282371b9a04adf19852))
+* do wrap only values anywhere, do not wrap keys anywhere ([5879826](https://github.com/josdejong/svelte-jsoneditor/commit/5879826dd08c9350ec3d381e846b4a150559409c))
+
+### [0.2.1](https://github.com/josdejong/svelte-jsoneditor/compare/v0.2.0...v0.2.1) (2021-08-02)
+
+
+### Bug Fixes
+
+* file `generated/worker-json-data-url.js` missing in npm package ([861efd2](https://github.com/josdejong/svelte-jsoneditor/commit/861efd2a8d926f28c6b3e64ab0cf8e571c173877))
+
+## [0.2.0](https://github.com/josdejong/svelte-jsoneditor/compare/v0.1.6...v0.2.0) (2021-08-02)
+
+
+### ⚠ BREAKING CHANGES
+
+* Svelte setup is changed (see readme), ES bundle renamed, UMD bundle removed
+
+### Features
+
+* add search button to main menu of code mode ([0df0f9a](https://github.com/josdejong/svelte-jsoneditor/commit/0df0f9ac2fe3bfc1ea17f0609a32abe2675315e0))
+* implement a Cancel to cancel loading a large document in code mode ([ab28a0c](https://github.com/josdejong/svelte-jsoneditor/commit/ab28a0c7f9dea5e8b22a6cd3d7d7b84cb1121d8b))
+* migrate to SvelteKit ([c11551d](https://github.com/josdejong/svelte-jsoneditor/commit/c11551da2e4f3f8b40c78f2a9fae225b7ba54773))
+* update dependencies (`ajv`, `svelte-select`, `svelte-simple-modal`) ([f9ca5cd](https://github.com/josdejong/svelte-jsoneditor/commit/f9ca5cd709d476a125888c336c7706976e0ab282))
+* use quick-key `Backspace` to delete selected contents too (alongside `Delete`) ([f021959](https://github.com/josdejong/svelte-jsoneditor/commit/f0219597e575f8891c8ba8252c22877ddbd57198))
+
+
+### Bug Fixes
+
+* extract not working when extracting an item from an Array ([5251fb6](https://github.com/josdejong/svelte-jsoneditor/commit/5251fb6d4ff9b7ac92b737a88564f1ef8cddf2f1))
+* line height of a single line sometimes being larger than 18px due to icons and tooltip styling ([1431160](https://github.com/josdejong/svelte-jsoneditor/commit/14311609f5e4f38bad9527c4826bcaeaf2e4d099))
+* vertical positioning of expand button when selected was a bit off ([d93e4af](https://github.com/josdejong/svelte-jsoneditor/commit/d93e4af7bda6607ddc60670f51dccd1e184ed041))
+* wrap long lines ([1792525](https://github.com/josdejong/svelte-jsoneditor/commit/17925255a70dc6ae5a7bdfc58b676aa2377e88b7))
+
+### [0.1.6](https://github.com/josdejong/svelte-jsoneditor/compare/v0.1.5...v0.1.6) (2021-06-30)
+
+### Features
+
+- faster, more robust search ([5e4c3ed](https://github.com/josdejong/svelte-jsoneditor/commit/5e4c3ed8f4c08a19b944172a4089546acc7eab3f))
+- implement `readOnly` mode ([31c438f](https://github.com/josdejong/svelte-jsoneditor/commit/31c438fcfb2ce2da76597b6f68efbd5ccddd751e))
+- limit the maximum number of search results ([952adb6](https://github.com/josdejong/svelte-jsoneditor/commit/952adb606a3a08867dd12ab533758b70954ec4e1))
+- upgrade dependencies (ajv, diff-sequences, svelte-awesome, svelte-select, svelte-simple-modal) ([4469695](https://github.com/josdejong/svelte-jsoneditor/commit/44696953406c697e63477c3f6f13df44c29d2e03))
+
+### Bug Fixes
+
+- color styling issue with selected collapsed items ([720946e](https://github.com/josdejong/svelte-jsoneditor/commit/720946ea51b8357febeb7e0446d6152cf2e010c8))
+- do not create selection area inside when in readOnly mode ([03c5b6c](https://github.com/josdejong/svelte-jsoneditor/commit/03c5b6c0fa68b6ca497d5a666bf6760a29ddc895))
+- give the user a hint when pasted JSON contents as text ([813a9ca](https://github.com/josdejong/svelte-jsoneditor/commit/813a9ca7f082692edd83cf389420199a3de23f30))
+- layout overflowing in case of long unbroken lines ([4d4f15c](https://github.com/josdejong/svelte-jsoneditor/commit/4d4f15cc17f3fe86d265df376783fca7070c51b9))
+- prevent submitting parent form when clicking a button in the editor, see [#11](https://github.com/josdejong/svelte-jsoneditor/issues/11) ([64d873a](https://github.com/josdejong/svelte-jsoneditor/commit/64d873afe501d498d753a5e125d2f4f960338e78))
+- select area inside array/object after inserting a new array/object ([0d9a1b7](https://github.com/josdejong/svelte-jsoneditor/commit/0d9a1b78c11dc43b4e1190b0f32796e72ae5046a))
+- select whole array/object after sorting or transforming it ([0b20741](https://github.com/josdejong/svelte-jsoneditor/commit/0b20741aa7429f7ed74883fc0dda6b97396615a0))
+- upgrade to jsonrepair@2.2.1, which has some nice improvements ([a34a558](https://github.com/josdejong/svelte-jsoneditor/commit/a34a55858b292c0a0d47709e3b0cf20992089898))
+
+### [0.1.5](https://github.com/josdejong/svelte-jsoneditor/compare/v0.1.4...v0.1.5) (2021-06-02)
+
+### Features
+
+- refactor TreeMode such that it can hold an empty document, make undo/redo working ([19f18ec](https://github.com/josdejong/svelte-jsoneditor/commit/19f18ec05cbdfb4c25ff81fa1b271cc11222c6d0))
+- update dependencies ([f4931c8](https://github.com/josdejong/svelte-jsoneditor/commit/f4931c84d019f1e0d5156d07add2f7978f36e38f))
+
+### Bug Fixes
+
+- "Ok" message after auto repair not working anymore ([e5b6e01](https://github.com/josdejong/svelte-jsoneditor/commit/e5b6e01c6aedb676925ebd97a77666f4d549e8ce))
+- editor not getting focus when clicking inside the repair preview ([913ef17](https://github.com/josdejong/svelte-jsoneditor/commit/913ef17a331356aa641c73ec896209cb428aaaaa))
+- properly handle repaired/unrepaired text with undo/redo ([1259e48](https://github.com/josdejong/svelte-jsoneditor/commit/1259e488b2e712a27d1a0189154c217b5c5029af))
+- solve SCSS warnings ([02854e6](https://github.com/josdejong/svelte-jsoneditor/commit/02854e6e1c8b9a730d66f84434ab8fba463f2e7d))
+- solve some SCSS warnings ([2832337](https://github.com/josdejong/svelte-jsoneditor/commit/28323370f1a710cfccc8deec544c0cc87a36fd9a))
+- some fixes in ensuring a selection in case of an empty document ([ed14a8c](https://github.com/josdejong/svelte-jsoneditor/commit/ed14a8ca95b47ac2dbcef9f7809e48615befb0bc))
+- transform and sort not triggering a change event ([3b16a21](https://github.com/josdejong/svelte-jsoneditor/commit/3b16a2158e5d925e3abfa80030858ccb44dacff4))
+
+### [0.1.4](https://github.com/josdejong/svelte-jsoneditor/compare/v0.1.3...v0.1.4) (2021-05-26)
+
+### Bug Fixes
+
+- clear old files from `dist` folder before bundling ([59d1ec0](https://github.com/josdejong/svelte-jsoneditor/commit/59d1ec080fd6eb70401424ffee0b27452c24114c))
+
+### [0.1.3](https://github.com/josdejong/svelte-jsoneditor/compare/v0.1.2...v0.1.3) (2021-05-26)
+
+### Bug Fixes
+
+- generated files missing in published npm package ([c63b1c1](https://github.com/josdejong/svelte-jsoneditor/commit/c63b1c11d6cfd7d98e8cfe65c00a34b17f061da6))
+
+### [0.1.2](https://github.com/josdejong/svelte-jsoneditor/compare/v0.0.21...v0.1.2) (2021-05-26)
+
+### Features
+
+- link to source code for Svelte component usage, describe how to setup required preprocessors ([72f04b4](https://github.com/josdejong/svelte-jsoneditor/commit/72f04b4e053398c189101d174ae501eae964bdef))
+
+### Bug Fixes
+
+- changing validator not triggering an update in CodeMode ([5b4866e](https://github.com/josdejong/svelte-jsoneditor/commit/5b4866eb64c199b4f5a1cb4ba911edc737ba7ae5))
+
+### [0.0.21](https://github.com/josdejong/svelte-jsoneditor/compare/v0.0.20...v0.0.21) (2021-05-13)
+
+### Features
+
+- implement validation errors overview and validation error annotations in code mode ([#6](https://github.com/josdejong/svelte-jsoneditor/issues/6)) ([b206f10](https://github.com/josdejong/svelte-jsoneditor/commit/b206f10330bb7eae5db25dbdb5c45c25a55c1869))
+
+### Bug Fixes
+
+- validation errors on an object/array not visible when expanded ([d77ae5b](https://github.com/josdejong/svelte-jsoneditor/commit/d77ae5bad3ecccc0dd3609d20e89984d7ec14585))
+
+### [0.0.20](https://github.com/josdejong/svelte-jsoneditor/compare/v0.0.19...v0.0.20) (2021-05-12)
+
+### Bug Fixes
+
+- alignment of context menu when clicking the context menu button of the main menu ([f4c0c5e](https://github.com/josdejong/svelte-jsoneditor/commit/f4c0c5e675ccb5800d1281c346c732ff25e1f6d9))
+- let "Remove" remove the whole item/entry when a key or value is selected ([ca1bcec](https://github.com/josdejong/svelte-jsoneditor/commit/ca1bcece14ffe173c73cfc1fad70d0cdcf99230e))
+
+### [0.0.19](https://github.com/josdejong/svelte-jsoneditor/compare/v0.0.18...v0.0.19) (2021-04-28)
+
+### Bug Fixes
+
+- fix empty changelog ([090003a](https://github.com/josdejong/svelte-jsoneditor/commit/090003a8bcc3b3c7068a61210cc87f06ded7d284))
+- fix linting issues ([6ab1fc1](https://github.com/josdejong/svelte-jsoneditor/commit/6ab1fc1f57a688468940690c5fc91dcae9808e9e))
+
+### [0.0.18](https://github.com/josdejong/svelte-jsoneditor/compare/v0.0.17...v0.0.18) (2021-04-28)
+
+- Setup tooling for releases (standard-version, commitlint, husky)
+
+### [0.0.17](https://github.com/josdejong/svelte-jsoneditor/compare/v0.0.16...v0.0.17) (2021-04-28)
+
+- Setup tooling for releases (standard-version, commitlint, husky)
+
+### 0.0.16 (2021-04-28)
+
+- Implemented context menu.
+- Many small refinements.
diff --git a/T3SF/gui/static/js/vanilla-jsoneditor/LICENSE.md b/T3SF/gui/static/js/vanilla-jsoneditor/LICENSE.md
new file mode 100644
index 0000000..df63b6c
--- /dev/null
+++ b/T3SF/gui/static/js/vanilla-jsoneditor/LICENSE.md
@@ -0,0 +1,7 @@
+The ISC License
+
+Copyright (c) 2020-2023 by Jos de Jong
+
+Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/T3SF/gui/static/js/vanilla-jsoneditor/README.md b/T3SF/gui/static/js/vanilla-jsoneditor/README.md
new file mode 100644
index 0000000..a9c6bb2
--- /dev/null
+++ b/T3SF/gui/static/js/vanilla-jsoneditor/README.md
@@ -0,0 +1,253 @@
+# vanilla-jsoneditor
+
+A web-based tool to view, edit, format, transform, and validate JSON.
+
+Try it out: https://jsoneditoronline.org
+
+This is the vanilla variant of `svelte-jsoneditor`, which can be used in vanilla JavaScript or frameworks like SolidJS, React, Vue, Angular.
+
+![JSONEditor tree mode screenshot](https://raw.githubusercontent.com/josdejong/svelte-jsoneditor/main/misc/jsoneditor_tree_mode_screenshot.png)
+![JSONEditor text mode screenshot](https://raw.githubusercontent.com/josdejong/svelte-jsoneditor/main/misc/jsoneditor_text_mode_screenshot.png)
+![JSONEditor table mode screenshot](https://raw.githubusercontent.com/josdejong/svelte-jsoneditor/main/misc/jsoneditor_table_mode_screenshot.png)
+
+## Features
+
+- View and edit JSON
+- Has a low level text editor and high level tree view and table view
+- Format (beautify) and compact JSON
+- Sort, query, filter, and transform JSON
+- Repair JSON
+- JSON schema validation and pluggable custom validation
+- Color highlighting, undo/redo, search and replace
+- Utilities like a color picker and timestamp tag
+- Handles large JSON documents up to 512 MB
+
+## Install
+
+Install using npm:
+
+```
+npm install vanilla-jsoneditor
+```
+
+Remark: for usage in a Svelte project, install `svelte-jsoneditor` instead.
+
+## Use (Browser example loading the ES module):
+
+```html
+
+
+
+ JSONEditor
+
+
+
+
+
+
+
+```
+
+## Use (React example, including NextJS)
+
+### First, create a React component to wrap the vanilla-jsoneditor
+
+Depending on whether you are using JavaScript of TypeScript, create either a JSX or TSX file:
+
+### TypeScript:
+
+```typescript
+//
+// JSONEditorReact.tsx
+//
+import { useEffect, useRef } from 'react'
+import { JSONEditor, JSONEditorPropsOptional } from 'vanilla-jsoneditor'
+
+const JSONEditorReact: React.FC = (props) => {
+ const refContainer = useRef(null)
+ const refEditor = useRef(null)
+
+ useEffect(() => {
+ // create editor
+ refEditor.current = new JSONEditor({
+ target: refContainer.current!,
+ props: {}
+ })
+
+ return () => {
+ // destroy editor
+ if (refEditor.current) {
+ refEditor.current.destroy()
+ refEditor.current = null
+ }
+ }
+ }, [])
+
+ useEffect(() => {
+ // update props
+ if (refEditor.current) {
+ refEditor.current.updateProps(props)
+ }
+ }, [props])
+
+ return
+}
+
+export default JSONEditorReact
+```
+
+### JavaScript
+
+```javascript
+//
+// JSONEditorReact.jsx
+//
+import { useEffect, useRef } from 'react'
+import { JSONEditor, JSONEditorPropsOptional } from 'vanilla-jsoneditor'
+
+const JSONEditorReact = (props) => {
+ const refContainer = useRef(null)
+ const refEditor = useRef(null)
+
+ useEffect(() => {
+ // create editor
+ refEditor.current = new JSONEditor({
+ target: refContainer.current,
+ props: {}
+ })
+
+ return () => {
+ // destroy editor
+ if (refEditor.current) {
+ refEditor.current.destroy()
+ refEditor.current = null
+ }
+ }
+ }, [])
+
+ // update props
+ useEffect(() => {
+ if (refEditor.current) {
+ refEditor.current.updateProps(props)
+ }
+ }, [props])
+
+ return
+}
+
+export default JSONEditorReact
+```
+
+### Import and use the React component
+
+If you are using NextJS, you will need to use a dynamic import to only render the component in the browser (disabling server-side rendering of the wrapper), as shown below in a NextJS TypeScript example.
+
+If you are using React in an conventional non-NextJS browser app, you can import the component using a standard import statement like `import JSONEditorReact from '../JSONEditorReact'`
+
+```typescript
+//
+// demo.tsx for use with NextJS
+//
+import dynamic from 'next/dynamic'
+import { useCallback, useState } from 'react'
+
+//
+// In NextJS, when using TypeScript, type definitions
+// can be imported from 'vanilla-jsoneditor' using a
+// conventional import statement (prefixed with 'type',
+// as shown below), but only types can be imported this
+// way. When using NextJS, React components and helper
+// functions must be imported dynamically using { ssr: false }
+// as shown elsewhere in this example.
+//
+import type { Content, OnChangeStatus } from 'vanilla-jsoneditor'
+
+//
+// In NextJS, the JSONEditor component must be wrapped in
+// a component that is dynamically in order to turn off
+// server-side rendering of the component. This is neccessary
+// because the vanilla-jsoneditor code attempts to use
+// browser-only JavaScript capabilities not available
+// during server-side rendering. Any helper functions
+// provided by vanilla-jsoneditor, such as toTextContent,
+// must also only be used in dynamically imported,
+// ssr: false components when using NextJS.
+//
+const JSONEditorReact = dynamic(() => import('../JSONEditorReact'), { ssr: false })
+const TextContent = dynamic(() => import('../TextContent'), { ssr: false })
+
+const initialContent = {
+ hello: 'world',
+ count: 1,
+ foo: ['bar', 'car']
+}
+
+export default function Demo() {
+ const [jsonContent, setJsonContent] = useState({ json: initialContent })
+ const handler = useCallback(
+ (content: Content, previousContent: Content, status: OnChangeStatus) => {
+ setJsonContent(content)
+ },
+ [jsonContent]
+ )
+
+ return (
+
+
+
+
+ )
+}
+```
+
+```typescript
+//
+// TextContent.tsx
+//
+// (wrapper around toTextContent for use with NextJS)
+//
+import { Content, toTextContent } from 'vanilla-jsoneditor'
+
+interface IOwnProps {
+ content: Content
+}
+const TextContent = (props: IOwnProps) => {
+ const { content } = props
+
+ return (
+
+ The contents of the editor, converted to a text string, are: {toTextContent(content).text}
+
+ )
+}
+
+export default TextContent
+```
diff --git a/T3SF/gui/static/js/vanilla-jsoneditor/SECURITY.md b/T3SF/gui/static/js/vanilla-jsoneditor/SECURITY.md
new file mode 100644
index 0000000..5608b7d
--- /dev/null
+++ b/T3SF/gui/static/js/vanilla-jsoneditor/SECURITY.md
@@ -0,0 +1,5 @@
+# Security Policy
+
+## Reporting a Vulnerability
+
+Please report (suspected) security vulnerabilities privately to one of the maintainers of the library, for example to Jos de Jong: https://github.com/josdejong.
diff --git a/T3SF/gui/static/js/vanilla-jsoneditor/index.d.ts b/T3SF/gui/static/js/vanilla-jsoneditor/index.d.ts
new file mode 100644
index 0000000..0a34324
--- /dev/null
+++ b/T3SF/gui/static/js/vanilla-jsoneditor/index.d.ts
@@ -0,0 +1,36175 @@
+
+declare function noop(): void;
+
+/**
+ * INTERNAL, DO NOT USE. Code may change at any time.
+ */
+interface Fragment {
+ key: string | null;
+ first: null;
+ c: () => void;
+ l: (nodes: any) => void;
+ h: () => void;
+ m: (target: HTMLElement, anchor: any) => void;
+ p: (ctx: T$$['ctx'], dirty: T$$['dirty']) => void;
+ r: () => void;
+ f: () => void;
+ a: () => void;
+ i: (local: any) => void;
+ o: (local: any) => void;
+ d: (detaching: 0 | 1) => void;
+}
+interface T$$ {
+ dirty: number[];
+ ctx: any[];
+ bound: any;
+ update: () => void;
+ callbacks: any;
+ after_update: any[];
+ props: Record;
+ fragment: null | false | Fragment;
+ not_equal: any;
+ before_update: any[];
+ context: Map;
+ on_mount: any[];
+ on_destroy: any[];
+ skip_bound: boolean;
+ on_disconnect: any[];
+ root: Element | ShadowRoot;
+}
+
+/**
+ * Base class for Svelte components. Used when dev=false.
+ */
+declare class SvelteComponent {
+ $$: T$$;
+ $$set?: ($$props: any) => void;
+ $destroy(): void;
+ $on(type: any, callback: any): typeof noop;
+ $set($$props: any): void;
+}
+
+declare type Props = Record;
+interface ComponentConstructorOptions = Record> {
+ target: Element | Document | ShadowRoot;
+ anchor?: Element;
+ props?: Props;
+ context?: Map;
+ hydrate?: boolean;
+ intro?: boolean;
+ $$inline?: boolean;
+}
+interface SvelteComponentDev$1 {
+ $set(props?: Props): void;
+ $on(event: string, callback: ((event: any) => void) | null | undefined): () => void;
+ $destroy(): void;
+ [accessor: string]: any;
+}
+/**
+ * Base class for Svelte components with some minor dev-enhancements. Used when dev=true.
+ */
+declare class SvelteComponentDev$1 extends SvelteComponent {
+ /**
+ * @private
+ * For type checking capabilities only.
+ * Does not exist at runtime.
+ * ### DO NOT USE!
+ */
+ $$prop_def: Props;
+ /**
+ * @private
+ * For type checking capabilities only.
+ * Does not exist at runtime.
+ * ### DO NOT USE!
+ */
+ $$events_def: any;
+ /**
+ * @private
+ * For type checking capabilities only.
+ * Does not exist at runtime.
+ * ### DO NOT USE!
+ */
+ $$slot_def: any;
+ constructor(options: ComponentConstructorOptions);
+ $capture_state(): void;
+ $inject_state(): void;
+}
+interface SvelteComponentTyped = any, Events extends Record = any, Slots extends Record = any> {
+ $set(props?: Partial): void;
+ $on>(type: K, callback: ((e: Events[K]) => void) | null | undefined): () => void;
+ $destroy(): void;
+ [accessor: string]: any;
+}
+/**
+ * Base class to create strongly typed Svelte components.
+ * This only exists for typing purposes and should be used in `.d.ts` files.
+ *
+ * ### Example:
+ *
+ * You have component library on npm called `component-library`, from which
+ * you export a component called `MyComponent`. For Svelte+TypeScript users,
+ * you want to provide typings. Therefore you create a `index.d.ts`:
+ * ```ts
+ * import { SvelteComponentTyped } from "svelte";
+ * export class MyComponent extends SvelteComponentTyped<{foo: string}> {}
+ * ```
+ * Typing this makes it possible for IDEs like VS Code with the Svelte extension
+ * to provide intellisense and to use the component like this in a Svelte file
+ * with TypeScript:
+ * ```svelte
+ *
+ *
+ * ```
+ *
+ * #### Why not make this part of `SvelteComponent(Dev)`?
+ * Because
+ * ```ts
+ * class ASubclassOfSvelteComponent extends SvelteComponent<{foo: string}> {}
+ * const component: typeof SvelteComponent = ASubclassOfSvelteComponent;
+ * ```
+ * will throw a type error, so we need to separate the more strictly typed class.
+ */
+declare class SvelteComponentTyped = any, Events extends Record = any, Slots extends Record = any> extends SvelteComponentDev$1 {
+ /**
+ * @private
+ * For type checking capabilities only.
+ * Does not exist at runtime.
+ * ### DO NOT USE!
+ */
+ $$prop_def: Props;
+ /**
+ * @private
+ * For type checking capabilities only.
+ * Does not exist at runtime.
+ * ### DO NOT USE!
+ */
+ $$events_def: Events;
+ /**
+ * @private
+ * For type checking capabilities only.
+ * Does not exist at runtime.
+ * ### DO NOT USE!
+ */
+ $$slot_def: Slots;
+ constructor(options: ComponentConstructorOptions);
+}
+
+type JSONPointer = string;
+type JSONPath = string[];
+type JSONPrimitive = string | number | boolean | null;
+type JSONValue = {
+ [key: string]: JSONValue;
+} | JSONValue[] | JSONPrimitive;
+type JSONObject = {
+ [key: string]: JSONValue;
+};
+type JSONArray = JSONValue[];
+interface JSONPatchAdd {
+ op: 'add';
+ path: JSONPointer;
+ value: JSONValue;
+}
+interface JSONPatchRemove {
+ op: 'remove';
+ path: JSONPointer;
+}
+interface JSONPatchReplace {
+ op: 'replace';
+ path: JSONPointer;
+ value: JSONValue;
+}
+interface JSONPatchCopy {
+ op: 'copy';
+ path: JSONPointer;
+ from: JSONPointer;
+}
+interface JSONPatchMove {
+ op: 'move';
+ path: JSONPointer;
+ from: JSONPointer;
+}
+interface JSONPatchTest {
+ op: 'test';
+ path: JSONPointer;
+ value: JSONValue;
+}
+type JSONPatchOperation = JSONPatchAdd | JSONPatchRemove | JSONPatchReplace | JSONPatchCopy | JSONPatchMove | JSONPatchTest;
+type JSONPatchDocument = JSONPatchOperation[];
+type JSONPatchOptions = {
+ before?: (document: JSONValue, operation: JSONPatchOperation) => {
+ document?: JSONValue;
+ operation?: JSONPatchOperation;
+ };
+ after?: (document: JSONValue, operation: JSONPatchOperation, previousDocument: JSONValue) => JSONValue;
+};
+type RevertJSONPatchOptions = {
+ before?: (document: JSONValue, operation: JSONPatchOperation, revertOperations: JSONPatchOperation[]) => {
+ document?: JSONValue;
+ revertOperations?: JSONPatchOperation[];
+ };
+};
+
+/**
+ * Apply a patch to a JSON object
+ * The original JSON object will not be changed,
+ * instead, the patch is applied in an immutable way
+ */
+declare function immutableJSONPatch(document: JSONValue, operations: JSONPatchDocument, options?: JSONPatchOptions): JSONValue;
+declare function parsePath(document: JSONValue, pointer: JSONPointer): JSONPath;
+declare function parseFrom(fromPointer: JSONPointer): JSONPath;
+
+/**
+ * Create the inverse of a set of json patch operations
+ * @param document
+ * @param operations Array with JSON patch actions
+ * @param [options]
+ * @return Returns the operations to revert the changes
+ */
+declare function revertJSONPatch(document: JSONValue, operations: JSONPatchDocument, options?: RevertJSONPatchOptions): JSONPatchDocument;
+
+/**
+ * Parse a JSON Pointer
+ */
+declare function parseJSONPointer(pointer: JSONPointer): string[];
+/**
+ * Compile a JSON Pointer
+ */
+declare function compileJSONPointer(path: JSONPath): JSONPointer;
+/**
+ * Compile a single path property from a JSONPath
+ */
+declare function compileJSONPointerProp(pathProp: string | number): JSONPointer;
+
+/**
+ * helper function to get a nested property in an object or array
+ *
+ * @return Returns the field when found, or undefined when the path doesn't exist
+ */
+declare function getIn(object: JSONValue, path: JSONPath): JSONValue | undefined;
+/**
+ * helper function to replace a nested property in an object with a new value
+ * without mutating the object itself.
+ *
+ * @param object
+ * @param path
+ * @param value
+ * @param [createPath=false]
+ * If true, `path` will be created when (partly) missing in
+ * the object. For correctly creating nested Arrays or
+ * Objects, the function relies on `path` containing number
+ * in case of array indexes.
+ * If false (default), an error will be thrown when the
+ * path doesn't exist.
+ * @return Returns a new, updated object or array
+ */
+declare function setIn(object: JSONValue, path: JSONPath, value: JSONValue, createPath?: boolean): JSONValue;
+/**
+ * helper function to replace a nested property in an object with a new value
+ * without mutating the object itself.
+ *
+ * @return Returns a new, updated object or array
+ */
+declare function updateIn(object: JSONValue, path: JSONPath, callback: (value: JSONValue) => JSONValue): JSONValue;
+/**
+ * helper function to delete a nested property in an object
+ * without mutating the object itself.
+ *
+ * @return Returns a new, updated object or array
+ */
+declare function deleteIn(object: T, path: JSONPath): T;
+/**
+ * Insert a new item in an array at a specific index.
+ * Example usage:
+ *
+ * insertAt({arr: [1,2,3]}, ['arr', '2'], 'inserted') // [1,2,'inserted',3]
+ */
+declare function insertAt(document: JSONObject | JSONArray, path: JSONPath, value: JSONValue): JSONValue;
+/**
+ * Test whether a path exists in a JSON object
+ * @return Returns true if the path exists, else returns false
+ */
+declare function existsIn(document: JSONValue, path: JSONPath): boolean;
+
+type IconPrefix = "fas" | "far" | "fal" | "fat" | "fad" | "fab" | "fak" | "fass" | "fasr" | "fasl" ;
+type IconPathData = string | string[]
+
+interface IconLookup {
+ prefix: IconPrefix;
+ // IconName is defined in the code that will be generated at build time and bundled with this file.
+ iconName: IconName;
+}
+
+interface IconDefinition extends IconLookup {
+ icon: [
+ number, // width
+ number, // height
+ string[], // ligatures
+ string, // unicode
+ IconPathData // svgPathData
+ ];
+}
+
+type IconName = 'monero' |
+ 'hooli' |
+ 'yelp' |
+ 'cc-visa' |
+ 'lastfm' |
+ 'shopware' |
+ 'creative-commons-nc' |
+ 'aws' |
+ 'redhat' |
+ 'yoast' |
+ 'cloudflare' |
+ 'ups' |
+ 'wpexplorer' |
+ 'dyalog' |
+ 'bity' |
+ 'stackpath' |
+ 'buysellads' |
+ 'first-order' |
+ 'modx' |
+ 'guilded' |
+ 'vnv' |
+ 'square-js' |
+ 'js-square' |
+ 'microsoft' |
+ 'qq' |
+ 'orcid' |
+ 'java' |
+ 'invision' |
+ 'creative-commons-pd-alt' |
+ 'centercode' |
+ 'glide-g' |
+ 'drupal' |
+ 'hire-a-helper' |
+ 'creative-commons-by' |
+ 'unity' |
+ 'whmcs' |
+ 'rocketchat' |
+ 'vk' |
+ 'untappd' |
+ 'mailchimp' |
+ 'css3-alt' |
+ 'square-reddit' |
+ 'reddit-square' |
+ 'vimeo-v' |
+ 'contao' |
+ 'square-font-awesome' |
+ 'deskpro' |
+ 'sistrix' |
+ 'square-instagram' |
+ 'instagram-square' |
+ 'battle-net' |
+ 'the-red-yeti' |
+ 'square-hacker-news' |
+ 'hacker-news-square' |
+ 'edge' |
+ 'napster' |
+ 'square-snapchat' |
+ 'snapchat-square' |
+ 'google-plus-g' |
+ 'artstation' |
+ 'markdown' |
+ 'sourcetree' |
+ 'google-plus' |
+ 'diaspora' |
+ 'foursquare' |
+ 'stack-overflow' |
+ 'github-alt' |
+ 'phoenix-squadron' |
+ 'pagelines' |
+ 'algolia' |
+ 'red-river' |
+ 'creative-commons-sa' |
+ 'safari' |
+ 'google' |
+ 'square-font-awesome-stroke' |
+ 'font-awesome-alt' |
+ 'atlassian' |
+ 'linkedin-in' |
+ 'digital-ocean' |
+ 'nimblr' |
+ 'chromecast' |
+ 'evernote' |
+ 'hacker-news' |
+ 'creative-commons-sampling' |
+ 'adversal' |
+ 'creative-commons' |
+ 'watchman-monitoring' |
+ 'fonticons' |
+ 'weixin' |
+ 'shirtsinbulk' |
+ 'codepen' |
+ 'git-alt' |
+ 'lyft' |
+ 'rev' |
+ 'windows' |
+ 'wizards-of-the-coast' |
+ 'square-viadeo' |
+ 'viadeo-square' |
+ 'meetup' |
+ 'centos' |
+ 'adn' |
+ 'cloudsmith' |
+ 'pied-piper-alt' |
+ 'square-dribbble' |
+ 'dribbble-square' |
+ 'codiepie' |
+ 'node' |
+ 'mix' |
+ 'steam' |
+ 'cc-apple-pay' |
+ 'scribd' |
+ 'openid' |
+ 'instalod' |
+ 'expeditedssl' |
+ 'sellcast' |
+ 'square-twitter' |
+ 'twitter-square' |
+ 'r-project' |
+ 'delicious' |
+ 'freebsd' |
+ 'vuejs' |
+ 'accusoft' |
+ 'ioxhost' |
+ 'fonticons-fi' |
+ 'app-store' |
+ 'cc-mastercard' |
+ 'itunes-note' |
+ 'golang' |
+ 'kickstarter' |
+ 'grav' |
+ 'weibo' |
+ 'uncharted' |
+ 'firstdraft' |
+ 'square-youtube' |
+ 'youtube-square' |
+ 'wikipedia-w' |
+ 'wpressr' |
+ 'rendact' |
+ 'angellist' |
+ 'galactic-republic' |
+ 'nfc-directional' |
+ 'skype' |
+ 'joget' |
+ 'fedora' |
+ 'stripe-s' |
+ 'meta' |
+ 'laravel' |
+ 'hotjar' |
+ 'bluetooth-b' |
+ 'sticker-mule' |
+ 'creative-commons-zero' |
+ 'hips' |
+ 'behance' |
+ 'reddit' |
+ 'discord' |
+ 'chrome' |
+ 'app-store-ios' |
+ 'cc-discover' |
+ 'wpbeginner' |
+ 'confluence' |
+ 'mdb' |
+ 'dochub' |
+ 'accessible-icon' |
+ 'ebay' |
+ 'amazon' |
+ 'unsplash' |
+ 'yarn' |
+ 'square-steam' |
+ 'steam-square' |
+ '500px' |
+ 'square-vimeo' |
+ 'vimeo-square' |
+ 'asymmetrik' |
+ 'font-awesome' |
+ 'font-awesome-flag' |
+ 'font-awesome-logo-full' |
+ 'gratipay' |
+ 'apple' |
+ 'hive' |
+ 'gitkraken' |
+ 'keybase' |
+ 'apple-pay' |
+ 'padlet' |
+ 'amazon-pay' |
+ 'square-github' |
+ 'github-square' |
+ 'stumbleupon' |
+ 'fedex' |
+ 'phoenix-framework' |
+ 'shopify' |
+ 'neos' |
+ 'hackerrank' |
+ 'researchgate' |
+ 'swift' |
+ 'angular' |
+ 'speakap' |
+ 'angrycreative' |
+ 'y-combinator' |
+ 'empire' |
+ 'envira' |
+ 'square-gitlab' |
+ 'gitlab-square' |
+ 'studiovinari' |
+ 'pied-piper' |
+ 'wordpress' |
+ 'product-hunt' |
+ 'firefox' |
+ 'linode' |
+ 'goodreads' |
+ 'square-odnoklassniki' |
+ 'odnoklassniki-square' |
+ 'jsfiddle' |
+ 'sith' |
+ 'themeisle' |
+ 'page4' |
+ 'hashnode' |
+ 'react' |
+ 'cc-paypal' |
+ 'squarespace' |
+ 'cc-stripe' |
+ 'creative-commons-share' |
+ 'bitcoin' |
+ 'keycdn' |
+ 'opera' |
+ 'itch-io' |
+ 'umbraco' |
+ 'galactic-senate' |
+ 'ubuntu' |
+ 'draft2digital' |
+ 'stripe' |
+ 'houzz' |
+ 'gg' |
+ 'dhl' |
+ 'square-pinterest' |
+ 'pinterest-square' |
+ 'xing' |
+ 'blackberry' |
+ 'creative-commons-pd' |
+ 'playstation' |
+ 'quinscape' |
+ 'less' |
+ 'blogger-b' |
+ 'opencart' |
+ 'vine' |
+ 'paypal' |
+ 'gitlab' |
+ 'typo3' |
+ 'reddit-alien' |
+ 'yahoo' |
+ 'dailymotion' |
+ 'affiliatetheme' |
+ 'pied-piper-pp' |
+ 'bootstrap' |
+ 'odnoklassniki' |
+ 'nfc-symbol' |
+ 'ethereum' |
+ 'speaker-deck' |
+ 'creative-commons-nc-eu' |
+ 'patreon' |
+ 'avianex' |
+ 'ello' |
+ 'gofore' |
+ 'bimobject' |
+ 'facebook-f' |
+ 'square-google-plus' |
+ 'google-plus-square' |
+ 'mandalorian' |
+ 'first-order-alt' |
+ 'osi' |
+ 'google-wallet' |
+ 'd-and-d-beyond' |
+ 'periscope' |
+ 'fulcrum' |
+ 'cloudscale' |
+ 'forumbee' |
+ 'mizuni' |
+ 'schlix' |
+ 'square-xing' |
+ 'xing-square' |
+ 'bandcamp' |
+ 'wpforms' |
+ 'cloudversify' |
+ 'usps' |
+ 'megaport' |
+ 'magento' |
+ 'spotify' |
+ 'optin-monster' |
+ 'fly' |
+ 'aviato' |
+ 'itunes' |
+ 'cuttlefish' |
+ 'blogger' |
+ 'flickr' |
+ 'viber' |
+ 'soundcloud' |
+ 'digg' |
+ 'tencent-weibo' |
+ 'symfony' |
+ 'maxcdn' |
+ 'etsy' |
+ 'facebook-messenger' |
+ 'audible' |
+ 'think-peaks' |
+ 'bilibili' |
+ 'erlang' |
+ 'cotton-bureau' |
+ 'dashcube' |
+ '42-group' |
+ 'innosoft' |
+ 'stack-exchange' |
+ 'elementor' |
+ 'square-pied-piper' |
+ 'pied-piper-square' |
+ 'creative-commons-nd' |
+ 'palfed' |
+ 'superpowers' |
+ 'resolving' |
+ 'xbox' |
+ 'searchengin' |
+ 'tiktok' |
+ 'square-facebook' |
+ 'facebook-square' |
+ 'renren' |
+ 'linux' |
+ 'glide' |
+ 'linkedin' |
+ 'hubspot' |
+ 'deploydog' |
+ 'twitch' |
+ 'ravelry' |
+ 'mixer' |
+ 'square-lastfm' |
+ 'lastfm-square' |
+ 'vimeo' |
+ 'mendeley' |
+ 'uniregistry' |
+ 'figma' |
+ 'creative-commons-remix' |
+ 'cc-amazon-pay' |
+ 'dropbox' |
+ 'instagram' |
+ 'cmplid' |
+ 'facebook' |
+ 'gripfire' |
+ 'jedi-order' |
+ 'uikit' |
+ 'fort-awesome-alt' |
+ 'phabricator' |
+ 'ussunnah' |
+ 'earlybirds' |
+ 'trade-federation' |
+ 'autoprefixer' |
+ 'whatsapp' |
+ 'slideshare' |
+ 'google-play' |
+ 'viadeo' |
+ 'line' |
+ 'google-drive' |
+ 'servicestack' |
+ 'simplybuilt' |
+ 'bitbucket' |
+ 'imdb' |
+ 'deezer' |
+ 'raspberry-pi' |
+ 'jira' |
+ 'docker' |
+ 'screenpal' |
+ 'bluetooth' |
+ 'gitter' |
+ 'd-and-d' |
+ 'microblog' |
+ 'cc-diners-club' |
+ 'gg-circle' |
+ 'pied-piper-hat' |
+ 'kickstarter-k' |
+ 'yandex' |
+ 'readme' |
+ 'html5' |
+ 'sellsy' |
+ 'sass' |
+ 'wirsindhandwerk' |
+ 'wsh' |
+ 'buromobelexperte' |
+ 'salesforce' |
+ 'octopus-deploy' |
+ 'medapps' |
+ 'ns8' |
+ 'pinterest-p' |
+ 'apper' |
+ 'fort-awesome' |
+ 'waze' |
+ 'cc-jcb' |
+ 'snapchat' |
+ 'snapchat-ghost' |
+ 'fantasy-flight-games' |
+ 'rust' |
+ 'wix' |
+ 'square-behance' |
+ 'behance-square' |
+ 'supple' |
+ 'rebel' |
+ 'css3' |
+ 'staylinked' |
+ 'kaggle' |
+ 'space-awesome' |
+ 'deviantart' |
+ 'cpanel' |
+ 'goodreads-g' |
+ 'square-git' |
+ 'git-square' |
+ 'square-tumblr' |
+ 'tumblr-square' |
+ 'trello' |
+ 'creative-commons-nc-jp' |
+ 'get-pocket' |
+ 'perbyte' |
+ 'grunt' |
+ 'weebly' |
+ 'connectdevelop' |
+ 'leanpub' |
+ 'black-tie' |
+ 'themeco' |
+ 'python' |
+ 'android' |
+ 'bots' |
+ 'free-code-camp' |
+ 'hornbill' |
+ 'js' |
+ 'ideal' |
+ 'git' |
+ 'dev' |
+ 'sketch' |
+ 'yandex-international' |
+ 'cc-amex' |
+ 'uber' |
+ 'github' |
+ 'php' |
+ 'alipay' |
+ 'youtube' |
+ 'skyatlas' |
+ 'firefox-browser' |
+ 'replyd' |
+ 'suse' |
+ 'jenkins' |
+ 'twitter' |
+ 'rockrms' |
+ 'pinterest' |
+ 'buffer' |
+ 'npm' |
+ 'yammer' |
+ 'btc' |
+ 'dribbble' |
+ 'stumbleupon-circle' |
+ 'internet-explorer' |
+ 'stubber' |
+ 'telegram' |
+ 'telegram-plane' |
+ 'old-republic' |
+ 'odysee' |
+ 'square-whatsapp' |
+ 'whatsapp-square' |
+ 'node-js' |
+ 'edge-legacy' |
+ 'slack' |
+ 'slack-hash' |
+ 'medrt' |
+ 'usb' |
+ 'tumblr' |
+ 'vaadin' |
+ 'quora' |
+ 'reacteurope' |
+ 'medium' |
+ 'medium-m' |
+ 'amilia' |
+ 'mixcloud' |
+ 'flipboard' |
+ 'viacoin' |
+ 'critical-role' |
+ 'sitrox' |
+ 'discourse' |
+ 'joomla' |
+ 'mastodon' |
+ 'airbnb' |
+ 'wolf-pack-battalion' |
+ 'buy-n-large' |
+ 'gulp' |
+ 'creative-commons-sampling-plus' |
+ 'strava' |
+ 'ember' |
+ 'canadian-maple-leaf' |
+ 'teamspeak' |
+ 'pushed' |
+ 'wordpress-simple' |
+ 'nutritionix' |
+ 'wodu' |
+ 'google-pay' |
+ 'intercom' |
+ 'zhihu' |
+ 'korvue' |
+ 'pix' |
+ 'steam-symbol' |
+ '0' |
+ '1' |
+ '2' |
+ '3' |
+ '4' |
+ '5' |
+ '6' |
+ '7' |
+ '8' |
+ '9' |
+ 'fill-drip' |
+ 'arrows-to-circle' |
+ 'circle-chevron-right' |
+ 'chevron-circle-right' |
+ 'wagon-covered' |
+ 'line-height' |
+ 'bagel' |
+ 'transporter-7' |
+ 'at' |
+ 'rectangles-mixed' |
+ 'phone-arrow-up-right' |
+ 'phone-arrow-up' |
+ 'phone-outgoing' |
+ 'trash-can' |
+ 'trash-alt' |
+ 'circle-l' |
+ 'head-side-goggles' |
+ 'head-vr' |
+ 'text-height' |
+ 'user-xmark' |
+ 'user-times' |
+ 'face-hand-yawn' |
+ 'gauge-simple-min' |
+ 'tachometer-slowest' |
+ 'stethoscope' |
+ 'coffin' |
+ 'message' |
+ 'comment-alt' |
+ 'salad' |
+ 'bowl-salad' |
+ 'info' |
+ 'robot-astromech' |
+ 'ring-diamond' |
+ 'fondue-pot' |
+ 'theta' |
+ 'face-hand-peeking' |
+ 'square-user' |
+ 'down-left-and-up-right-to-center' |
+ 'compress-alt' |
+ 'explosion' |
+ 'file-lines' |
+ 'file-alt' |
+ 'file-text' |
+ 'wave-square' |
+ 'ring' |
+ 'building-un' |
+ 'dice-three' |
+ 'tire-pressure-warning' |
+ 'wifi-fair' |
+ 'wifi2' |
+ 'calendar-days' |
+ 'calendar-alt' |
+ 'mp3-player' |
+ 'anchor-circle-check' |
+ 'tally-4' |
+ 'rectangle-history' |
+ 'building-circle-arrow-right' |
+ 'volleyball' |
+ 'volleyball-ball' |
+ 'sun-haze' |
+ 'text-size' |
+ 'ufo' |
+ 'fork' |
+ 'utensil-fork' |
+ 'arrows-up-to-line' |
+ 'mobile-signal' |
+ 'barcode-scan' |
+ 'sort-down' |
+ 'sort-desc' |
+ 'folder-arrow-down' |
+ 'folder-download' |
+ 'circle-minus' |
+ 'minus-circle' |
+ 'face-icicles' |
+ 'shovel' |
+ 'door-open' |
+ 'films' |
+ 'right-from-bracket' |
+ 'sign-out-alt' |
+ 'face-glasses' |
+ 'nfc' |
+ 'atom' |
+ 'soap' |
+ 'icons' |
+ 'heart-music-camera-bolt' |
+ 'microphone-lines-slash' |
+ 'microphone-alt-slash' |
+ 'closed-captioning-slash' |
+ 'calculator-simple' |
+ 'calculator-alt' |
+ 'bridge-circle-check' |
+ 'sliders-up' |
+ 'sliders-v' |
+ 'location-minus' |
+ 'map-marker-minus' |
+ 'pump-medical' |
+ 'fingerprint' |
+ 'ski-boot' |
+ 'standard-definition' |
+ 'rectangle-sd' |
+ 'h1' |
+ 'hand-point-right' |
+ 'magnifying-glass-location' |
+ 'search-location' |
+ 'message-bot' |
+ 'forward-step' |
+ 'step-forward' |
+ 'face-smile-beam' |
+ 'smile-beam' |
+ 'light-ceiling' |
+ 'message-exclamation' |
+ 'comment-alt-exclamation' |
+ 'bowl-scoop' |
+ 'bowl-shaved-ice' |
+ 'square-x' |
+ 'utility-pole-double' |
+ 'flag-checkered' |
+ 'chevrons-up' |
+ 'chevron-double-up' |
+ 'football' |
+ 'football-ball' |
+ 'user-vneck' |
+ 'school-circle-exclamation' |
+ 'crop' |
+ 'angles-down' |
+ 'angle-double-down' |
+ 'users-rectangle' |
+ 'people-roof' |
+ 'square-arrow-right' |
+ 'arrow-square-right' |
+ 'location-plus' |
+ 'map-marker-plus' |
+ 'lightbulb-exclamation-on' |
+ 'people-line' |
+ 'beer-mug-empty' |
+ 'beer' |
+ 'crate-empty' |
+ 'diagram-predecessor' |
+ 'transporter' |
+ 'calendar-circle-user' |
+ 'arrow-up-long' |
+ 'long-arrow-up' |
+ 'person-carry-box' |
+ 'person-carry' |
+ 'fire-flame-simple' |
+ 'burn' |
+ 'person' |
+ 'male' |
+ 'laptop' |
+ 'file-csv' |
+ 'menorah' |
+ 'union' |
+ 'chevrons-left' |
+ 'chevron-double-left' |
+ 'circle-heart' |
+ 'heart-circle' |
+ 'truck-plane' |
+ 'record-vinyl' |
+ 'bring-forward' |
+ 'square-p' |
+ 'face-grin-stars' |
+ 'grin-stars' |
+ 'sigma' |
+ 'camera-movie' |
+ 'bong' |
+ 'clarinet' |
+ 'truck-flatbed' |
+ 'spaghetti-monster-flying' |
+ 'pastafarianism' |
+ 'arrow-down-up-across-line' |
+ 'leaf-heart' |
+ 'house-building' |
+ 'cheese-swiss' |
+ 'spoon' |
+ 'utensil-spoon' |
+ 'jar-wheat' |
+ 'envelopes-bulk' |
+ 'mail-bulk' |
+ 'file-circle-exclamation' |
+ 'bow-arrow' |
+ 'cart-xmark' |
+ 'hexagon-xmark' |
+ 'times-hexagon' |
+ 'xmark-hexagon' |
+ 'circle-h' |
+ 'hospital-symbol' |
+ 'merge' |
+ 'pager' |
+ 'cart-minus' |
+ 'address-book' |
+ 'contact-book' |
+ 'pan-frying' |
+ 'grid' |
+ 'grid3' |
+ 'football-helmet' |
+ 'hand-love' |
+ 'trees' |
+ 'strikethrough' |
+ 'page' |
+ 'k' |
+ 'diagram-previous' |
+ 'gauge-min' |
+ 'tachometer-alt-slowest' |
+ 'folder-grid' |
+ 'eggplant' |
+ 'ram' |
+ 'landmark-flag' |
+ 'lips' |
+ 'pencil' |
+ 'pencil-alt' |
+ 'backward' |
+ 'caret-right' |
+ 'comments' |
+ 'paste' |
+ 'file-clipboard' |
+ 'desktop-arrow-down' |
+ 'code-pull-request' |
+ 'pumpkin' |
+ 'clipboard-list' |
+ 'pen-field' |
+ 'blueberries' |
+ 'truck-ramp-box' |
+ 'truck-loading' |
+ 'note' |
+ 'arrow-down-to-square' |
+ 'user-check' |
+ 'cloud-xmark' |
+ 'vial-virus' |
+ 'book-blank' |
+ 'book-alt' |
+ 'golf-flag-hole' |
+ 'message-arrow-down' |
+ 'comment-alt-arrow-down' |
+ 'face-unamused' |
+ 'sheet-plastic' |
+ 'circle-9' |
+ 'blog' |
+ 'user-ninja' |
+ 'pencil-slash' |
+ 'bowling-pins' |
+ 'person-arrow-up-from-line' |
+ 'down-right' |
+ 'scroll-torah' |
+ 'torah' |
+ 'webhook' |
+ 'blinds-open' |
+ 'fence' |
+ 'up' |
+ 'arrow-alt-up' |
+ 'broom-ball' |
+ 'quidditch' |
+ 'quidditch-broom-ball' |
+ 'drumstick' |
+ 'square-v' |
+ 'face-awesome' |
+ 'gave-dandy' |
+ 'dial-off' |
+ 'toggle-off' |
+ 'face-smile-horns' |
+ 'box-archive' |
+ 'archive' |
+ 'grapes' |
+ 'person-drowning' |
+ 'dial-max' |
+ 'circle-m' |
+ 'calendar-image' |
+ 'circle-caret-down' |
+ 'caret-circle-down' |
+ 'arrow-down-9-1' |
+ 'sort-numeric-desc' |
+ 'sort-numeric-down-alt' |
+ 'face-grin-tongue-squint' |
+ 'grin-tongue-squint' |
+ 'shish-kebab' |
+ 'spray-can' |
+ 'alarm-snooze' |
+ 'scarecrow' |
+ 'truck-monster' |
+ 'gift-card' |
+ 'w' |
+ 'code-pull-request-draft' |
+ 'square-b' |
+ 'elephant' |
+ 'earth-africa' |
+ 'globe-africa' |
+ 'rainbow' |
+ 'circle-notch' |
+ 'tablet-screen-button' |
+ 'tablet-alt' |
+ 'paw' |
+ 'message-question' |
+ 'cloud' |
+ 'trowel-bricks' |
+ 'square-3' |
+ 'face-flushed' |
+ 'flushed' |
+ 'hospital-user' |
+ 'microwave' |
+ 'chf-sign' |
+ 'tent-arrow-left-right' |
+ 'cart-circle-arrow-up' |
+ 'trash-clock' |
+ 'gavel' |
+ 'legal' |
+ 'sprinkler-ceiling' |
+ 'browsers' |
+ 'trillium' |
+ 'music-slash' |
+ 'truck-ramp' |
+ 'binoculars' |
+ 'microphone-slash' |
+ 'box-tissue' |
+ 'circle-c' |
+ 'star-christmas' |
+ 'chart-bullet' |
+ 'motorcycle' |
+ 'tree-christmas' |
+ 'tire-flat' |
+ 'sunglasses' |
+ 'badge' |
+ 'message-pen' |
+ 'comment-alt-edit' |
+ 'message-edit' |
+ 'bell-concierge' |
+ 'concierge-bell' |
+ 'pen-ruler' |
+ 'pencil-ruler' |
+ 'arrow-progress' |
+ 'chess-rook-piece' |
+ 'chess-rook-alt' |
+ 'square-root' |
+ 'album-collection-circle-plus' |
+ 'people-arrows' |
+ 'people-arrows-left-right' |
+ 'face-angry-horns' |
+ 'mars-and-venus-burst' |
+ 'tombstone' |
+ 'square-caret-right' |
+ 'caret-square-right' |
+ 'scissors' |
+ 'cut' |
+ 'list-music' |
+ 'sun-plant-wilt' |
+ 'toilets-portable' |
+ 'hockey-puck' |
+ 'mustache' |
+ 'hyphen' |
+ 'table' |
+ 'user-chef' |
+ 'message-image' |
+ 'comment-alt-image' |
+ 'users-medical' |
+ 'sensor-triangle-exclamation' |
+ 'sensor-alert' |
+ 'magnifying-glass-arrow-right' |
+ 'tachograph-digital' |
+ 'digital-tachograph' |
+ 'face-mask' |
+ 'pickleball' |
+ 'star-sharp-half' |
+ 'users-slash' |
+ 'clover' |
+ 'meat' |
+ 'reply' |
+ 'mail-reply' |
+ 'star-and-crescent' |
+ 'empty-set' |
+ 'house-fire' |
+ 'square-minus' |
+ 'minus-square' |
+ 'helicopter' |
+ 'bird' |
+ 'compass' |
+ 'square-caret-down' |
+ 'caret-square-down' |
+ 'heart-half-stroke' |
+ 'heart-half-alt' |
+ 'file-circle-question' |
+ 'laptop-code' |
+ 'joystick' |
+ 'grill-fire' |
+ 'rectangle-vertical-history' |
+ 'swatchbook' |
+ 'prescription-bottle' |
+ 'bars' |
+ 'navicon' |
+ 'keyboard-left' |
+ 'people-group' |
+ 'hourglass-end' |
+ 'hourglass3' |
+ 'heart-crack' |
+ 'heart-broken' |
+ 'face-beam-hand-over-mouth' |
+ 'droplet-percent' |
+ 'humidity' |
+ 'square-up-right' |
+ 'external-link-square-alt' |
+ 'face-kiss-beam' |
+ 'kiss-beam' |
+ 'corn' |
+ 'roller-coaster' |
+ 'photo-film-music' |
+ 'radar' |
+ 'sickle' |
+ 'film' |
+ 'coconut' |
+ 'ruler-horizontal' |
+ 'shield-cross' |
+ 'cassette-tape' |
+ 'square-terminal' |
+ 'people-robbery' |
+ 'lightbulb' |
+ 'caret-left' |
+ 'comment-middle' |
+ 'trash-can-list' |
+ 'block' |
+ 'circle-exclamation' |
+ 'exclamation-circle' |
+ 'school-circle-xmark' |
+ 'arrow-right-from-bracket' |
+ 'sign-out' |
+ 'face-frown-slight' |
+ 'circle-chevron-down' |
+ 'chevron-circle-down' |
+ 'sidebar-flip' |
+ 'unlock-keyhole' |
+ 'unlock-alt' |
+ 'temperature-list' |
+ 'cloud-showers-heavy' |
+ 'headphones-simple' |
+ 'headphones-alt' |
+ 'sitemap' |
+ 'pipe-section' |
+ 'space-station-moon-construction' |
+ 'space-station-moon-alt' |
+ 'circle-dollar-to-slot' |
+ 'donate' |
+ 'memory' |
+ 'face-sleeping' |
+ 'road-spikes' |
+ 'fire-burner' |
+ 'squirrel' |
+ 'arrow-up-to-line' |
+ 'arrow-to-top' |
+ 'flag' |
+ 'face-cowboy-hat' |
+ 'hanukiah' |
+ 'chart-scatter-3d' |
+ 'display-chart-up' |
+ 'square-code' |
+ 'feather' |
+ 'volume-low' |
+ 'volume-down' |
+ 'xmark-to-slot' |
+ 'times-to-slot' |
+ 'vote-nay' |
+ 'box-taped' |
+ 'box-alt' |
+ 'comment-slash' |
+ 'swords' |
+ 'cloud-sun-rain' |
+ 'album' |
+ 'circle-n' |
+ 'compress' |
+ 'wheat-awn' |
+ 'wheat-alt' |
+ 'ankh' |
+ 'hands-holding-child' |
+ 'asterisk' |
+ 'key-skeleton-left-right' |
+ 'comment-lines' |
+ 'luchador-mask' |
+ 'luchador' |
+ 'mask-luchador' |
+ 'square-check' |
+ 'check-square' |
+ 'shredder' |
+ 'book-open-cover' |
+ 'book-open-alt' |
+ 'sandwich' |
+ 'peseta-sign' |
+ 'square-parking-slash' |
+ 'parking-slash' |
+ 'train-tunnel' |
+ 'heading' |
+ 'header' |
+ 'ghost' |
+ 'face-anguished' |
+ 'hockey-sticks' |
+ 'abacus' |
+ 'film-simple' |
+ 'film-alt' |
+ 'list' |
+ 'list-squares' |
+ 'tree-palm' |
+ 'square-phone-flip' |
+ 'phone-square-alt' |
+ 'cart-plus' |
+ 'gamepad' |
+ 'border-center-v' |
+ 'circle-dot' |
+ 'dot-circle' |
+ 'clipboard-medical' |
+ 'face-dizzy' |
+ 'dizzy' |
+ 'egg' |
+ 'up-to-line' |
+ 'arrow-alt-to-top' |
+ 'house-medical-circle-xmark' |
+ 'watch-fitness' |
+ 'clock-nine-thirty' |
+ 'campground' |
+ 'folder-plus' |
+ 'jug' |
+ 'futbol' |
+ 'futbol-ball' |
+ 'soccer-ball' |
+ 'snow-blowing' |
+ 'paintbrush' |
+ 'paint-brush' |
+ 'lock' |
+ 'arrow-down-from-line' |
+ 'arrow-from-top' |
+ 'gas-pump' |
+ 'signal-bars-slash' |
+ 'signal-alt-slash' |
+ 'monkey' |
+ 'rectangle-pro' |
+ 'pro' |
+ 'house-night' |
+ 'hot-tub-person' |
+ 'hot-tub' |
+ 'blanket' |
+ 'map-location' |
+ 'map-marked' |
+ 'house-flood-water' |
+ 'comments-question-check' |
+ 'tree' |
+ 'arrows-cross' |
+ 'backpack' |
+ 'square-small' |
+ 'folder-arrow-up' |
+ 'folder-upload' |
+ 'bridge-lock' |
+ 'crosshairs-simple' |
+ 'sack-dollar' |
+ 'pen-to-square' |
+ 'edit' |
+ 'square-sliders' |
+ 'sliders-h-square' |
+ 'car-side' |
+ 'message-middle-top' |
+ 'comment-middle-top-alt' |
+ 'lightbulb-on' |
+ 'knife' |
+ 'utensil-knife' |
+ 'share-nodes' |
+ 'share-alt' |
+ 'display-chart-up-circle-dollar' |
+ 'wave-sine' |
+ 'heart-circle-minus' |
+ 'circle-w' |
+ 'circle-calendar' |
+ 'calendar-circle' |
+ 'hourglass-half' |
+ 'hourglass2' |
+ 'microscope' |
+ 'sunset' |
+ 'sink' |
+ 'calendar-exclamation' |
+ 'truck-container-empty' |
+ 'hand-heart' |
+ 'bag-shopping' |
+ 'shopping-bag' |
+ 'arrow-down-z-a' |
+ 'sort-alpha-desc' |
+ 'sort-alpha-down-alt' |
+ 'mitten' |
+ 'reply-clock' |
+ 'reply-time' |
+ 'person-rays' |
+ 'right' |
+ 'arrow-alt-right' |
+ 'circle-f' |
+ 'users' |
+ 'face-pleading' |
+ 'eye-slash' |
+ 'flask-vial' |
+ 'police-box' |
+ 'cucumber' |
+ 'head-side-brain' |
+ 'hand' |
+ 'hand-paper' |
+ 'person-biking-mountain' |
+ 'biking-mountain' |
+ 'utensils-slash' |
+ 'print-magnifying-glass' |
+ 'print-search' |
+ 'folder-bookmark' |
+ 'om' |
+ 'pi' |
+ 'flask-round-potion' |
+ 'flask-potion' |
+ 'face-shush' |
+ 'worm' |
+ 'house-circle-xmark' |
+ 'plug' |
+ 'calendar-circle-exclamation' |
+ 'square-i' |
+ 'chevron-up' |
+ 'face-saluting' |
+ 'gauge-simple-low' |
+ 'tachometer-slow' |
+ 'face-persevering' |
+ 'circle-camera' |
+ 'camera-circle' |
+ 'hand-spock' |
+ 'spider-web' |
+ 'circle-microphone' |
+ 'microphone-circle' |
+ 'book-arrow-up' |
+ 'popsicle' |
+ 'command' |
+ 'blinds' |
+ 'stopwatch' |
+ 'saxophone' |
+ 'square-2' |
+ 'field-hockey-stick-ball' |
+ 'field-hockey' |
+ 'arrow-up-square-triangle' |
+ 'sort-shapes-up-alt' |
+ 'face-scream' |
+ 'square-m' |
+ 'camera-web' |
+ 'webcam' |
+ 'comment-arrow-down' |
+ 'lightbulb-cfl' |
+ 'window-frame-open' |
+ 'face-kiss' |
+ 'kiss' |
+ 'bridge-circle-xmark' |
+ 'period' |
+ 'face-grin-tongue' |
+ 'grin-tongue' |
+ 'up-to-dotted-line' |
+ 'thought-bubble' |
+ 'skeleton-ribs' |
+ 'raygun' |
+ 'flute' |
+ 'acorn' |
+ 'video-arrow-up-right' |
+ 'grate-droplet' |
+ 'seal-exclamation' |
+ 'chess-bishop' |
+ 'message-sms' |
+ 'coffee-beans' |
+ 'hat-witch' |
+ 'face-grin-wink' |
+ 'grin-wink' |
+ 'clock-three-thirty' |
+ 'ear-deaf' |
+ 'deaf' |
+ 'deafness' |
+ 'hard-of-hearing' |
+ 'alarm-clock' |
+ 'eclipse' |
+ 'face-relieved' |
+ 'road-circle-check' |
+ 'dice-five' |
+ 'octagon-minus' |
+ 'minus-octagon' |
+ 'square-rss' |
+ 'rss-square' |
+ 'face-zany' |
+ 'tricycle' |
+ 'land-mine-on' |
+ 'square-arrow-up-left' |
+ 'i-cursor' |
+ 'chart-mixed-up-circle-dollar' |
+ 'salt-shaker' |
+ 'stamp' |
+ 'file-plus' |
+ 'draw-square' |
+ 'toilet-paper-under-slash' |
+ 'toilet-paper-reverse-slash' |
+ 'stairs' |
+ 'drone-front' |
+ 'drone-alt' |
+ 'glass-empty' |
+ 'dial-high' |
+ 'user-helmet-safety' |
+ 'user-construction' |
+ 'user-hard-hat' |
+ 'i' |
+ 'hryvnia-sign' |
+ 'hryvnia' |
+ 'arrow-down-left-and-arrow-up-right-to-center' |
+ 'pills' |
+ 'face-grin-wide' |
+ 'grin-alt' |
+ 'tooth' |
+ 'basketball-hoop' |
+ 'objects-align-bottom' |
+ 'v' |
+ 'sparkles' |
+ 'squid' |
+ 'leafy-green' |
+ 'circle-arrow-up-right' |
+ 'calendars' |
+ 'bangladeshi-taka-sign' |
+ 'bicycle' |
+ 'hammer-war' |
+ 'circle-d' |
+ 'spider-black-widow' |
+ 'staff-snake' |
+ 'rod-asclepius' |
+ 'rod-snake' |
+ 'staff-aesculapius' |
+ 'pear' |
+ 'head-side-cough-slash' |
+ 'triangle' |
+ 'apartment' |
+ 'truck-medical' |
+ 'ambulance' |
+ 'pepper' |
+ 'piano' |
+ 'gun-squirt' |
+ 'wheat-awn-circle-exclamation' |
+ 'snowman' |
+ 'user-alien' |
+ 'shield-check' |
+ 'mortar-pestle' |
+ 'road-barrier' |
+ 'chart-candlestick' |
+ 'briefcase-blank' |
+ 'school' |
+ 'igloo' |
+ 'bracket-round' |
+ 'parenthesis' |
+ 'joint' |
+ 'horse-saddle' |
+ 'mug-marshmallows' |
+ 'filters' |
+ 'bell-on' |
+ 'angle-right' |
+ 'dial-med' |
+ 'horse' |
+ 'q' |
+ 'monitor-waveform' |
+ 'monitor-heart-rate' |
+ 'link-simple' |
+ 'whistle' |
+ 'g' |
+ 'wine-glass-crack' |
+ 'fragile' |
+ 'slot-machine' |
+ 'notes-medical' |
+ 'car-wash' |
+ 'escalator' |
+ 'comment-image' |
+ 'temperature-half' |
+ 'temperature2' |
+ 'thermometer2' |
+ 'thermometer-half' |
+ 'dong-sign' |
+ 'donut' |
+ 'doughnut' |
+ 'capsules' |
+ 'poo-storm' |
+ 'poo-bolt' |
+ 'tally-1' |
+ 'face-frown-open' |
+ 'frown-open' |
+ 'square-dashed' |
+ 'square-j' |
+ 'hand-point-up' |
+ 'money-bill' |
+ 'arrow-up-big-small' |
+ 'sort-size-up' |
+ 'barcode-read' |
+ 'baguette' |
+ 'bowl-soft-serve' |
+ 'face-holding-back-tears' |
+ 'square-up' |
+ 'arrow-alt-square-up' |
+ 'train-subway-tunnel' |
+ 'subway-tunnel' |
+ 'square-exclamation' |
+ 'exclamation-square' |
+ 'semicolon' |
+ 'bookmark' |
+ 'fan-table' |
+ 'align-justify' |
+ 'battery-low' |
+ 'battery1' |
+ 'credit-card-front' |
+ 'brain-arrow-curved-right' |
+ 'mind-share' |
+ 'umbrella-beach' |
+ 'helmet-un' |
+ 'location-smile' |
+ 'map-marker-smile' |
+ 'arrow-left-to-line' |
+ 'arrow-to-left' |
+ 'bullseye' |
+ 'sushi' |
+ 'nigiri' |
+ 'message-captions' |
+ 'comment-alt-captions' |
+ 'trash-list' |
+ 'bacon' |
+ 'option' |
+ 'hand-point-down' |
+ 'arrow-up-from-bracket' |
+ 'trash-plus' |
+ 'objects-align-top' |
+ 'folder' |
+ 'folder-blank' |
+ 'face-anxious-sweat' |
+ 'credit-card-blank' |
+ 'file-waveform' |
+ 'file-medical-alt' |
+ 'microchip-ai' |
+ 'mug' |
+ 'plane-up-slash' |
+ 'radiation' |
+ 'pen-circle' |
+ 'bag-seedling' |
+ 'chart-simple' |
+ 'crutches' |
+ 'circle-parking' |
+ 'parking-circle' |
+ 'mars-stroke' |
+ 'leaf-oak' |
+ 'square-bolt' |
+ 'vial' |
+ 'gauge' |
+ 'dashboard' |
+ 'gauge-med' |
+ 'tachometer-alt-average' |
+ 'wand-magic-sparkles' |
+ 'magic-wand-sparkles' |
+ 'lambda' |
+ 'e' |
+ 'pizza' |
+ 'bowl-chopsticks-noodles' |
+ 'h3' |
+ 'pen-clip' |
+ 'pen-alt' |
+ 'bridge-circle-exclamation' |
+ 'badge-percent' |
+ 'user' |
+ 'sensor' |
+ 'comma' |
+ 'school-circle-check' |
+ 'toilet-paper-under' |
+ 'toilet-paper-reverse' |
+ 'light-emergency' |
+ 'arrow-down-to-arc' |
+ 'dumpster' |
+ 'van-shuttle' |
+ 'shuttle-van' |
+ 'building-user' |
+ 'light-switch' |
+ 'square-caret-left' |
+ 'caret-square-left' |
+ 'highlighter' |
+ 'wave-pulse' |
+ 'heart-rate' |
+ 'key' |
+ 'hat-santa' |
+ 'tamale' |
+ 'box-check' |
+ 'bullhorn' |
+ 'steak' |
+ 'location-crosshairs-slash' |
+ 'location-slash' |
+ 'person-dolly' |
+ 'globe' |
+ 'synagogue' |
+ 'file-chart-column' |
+ 'file-chart-line' |
+ 'person-half-dress' |
+ 'folder-image' |
+ 'calendar-pen' |
+ 'calendar-edit' |
+ 'road-bridge' |
+ 'face-smile-tear' |
+ 'message-plus' |
+ 'comment-alt-plus' |
+ 'location-arrow' |
+ 'c' |
+ 'tablet-button' |
+ 'rectangle-history-circle-user' |
+ 'building-lock' |
+ 'chart-line-up' |
+ 'mailbox' |
+ 'truck-bolt' |
+ 'pizza-slice' |
+ 'money-bill-wave' |
+ 'chart-area' |
+ 'area-chart' |
+ 'house-flag' |
+ 'circle-three-quarters-stroke' |
+ 'person-circle-minus' |
+ 'scalpel' |
+ 'ban' |
+ 'cancel' |
+ 'bell-exclamation' |
+ 'circle-bookmark' |
+ 'bookmark-circle' |
+ 'egg-fried' |
+ 'face-weary' |
+ 'uniform-martial-arts' |
+ 'camera-rotate' |
+ 'sun-dust' |
+ 'comment-text' |
+ 'spray-can-sparkles' |
+ 'air-freshener' |
+ 'signal-bars' |
+ 'signal-alt' |
+ 'signal-alt4' |
+ 'signal-bars-strong' |
+ 'diamond-exclamation' |
+ 'star' |
+ 'dial-min' |
+ 'repeat' |
+ 'cross' |
+ 'page-caret-down' |
+ 'file-caret-down' |
+ 'box' |
+ 'venus-mars' |
+ 'clock-seven-thirty' |
+ 'arrow-pointer' |
+ 'mouse-pointer' |
+ 'clock-four-thirty' |
+ 'signal-bars-good' |
+ 'signal-alt3' |
+ 'cactus' |
+ 'lightbulb-gear' |
+ 'maximize' |
+ 'expand-arrows-alt' |
+ 'charging-station' |
+ 'shapes' |
+ 'triangle-circle-square' |
+ 'plane-tail' |
+ 'gauge-simple-max' |
+ 'tachometer-fastest' |
+ 'circle-u' |
+ 'shield-slash' |
+ 'square-phone-hangup' |
+ 'phone-square-down' |
+ 'arrow-up-left' |
+ 'transporter-1' |
+ 'peanuts' |
+ 'shuffle' |
+ 'random' |
+ 'person-running' |
+ 'running' |
+ 'mobile-retro' |
+ 'grip-lines-vertical' |
+ 'bin-bottles-recycle' |
+ 'arrow-up-from-square' |
+ 'file-dashed-line' |
+ 'page-break' |
+ 'bracket-curly-right' |
+ 'spider' |
+ 'clock-three' |
+ 'hands-bound' |
+ 'scalpel-line-dashed' |
+ 'scalpel-path' |
+ 'file-invoice-dollar' |
+ 'pipe-smoking' |
+ 'face-astonished' |
+ 'window' |
+ 'plane-circle-exclamation' |
+ 'ear' |
+ 'file-lock' |
+ 'diagram-venn' |
+ 'x-ray' |
+ 'goal-net' |
+ 'coffin-cross' |
+ 'spell-check' |
+ 'location-xmark' |
+ 'map-marker-times' |
+ 'map-marker-xmark' |
+ 'circle-quarter-stroke' |
+ 'lasso' |
+ 'slash' |
+ 'person-to-portal' |
+ 'portal-enter' |
+ 'calendar-star' |
+ 'computer-mouse' |
+ 'mouse' |
+ 'arrow-right-to-bracket' |
+ 'sign-in' |
+ 'pegasus' |
+ 'files-medical' |
+ 'nfc-lock' |
+ 'person-ski-lift' |
+ 'ski-lift' |
+ 'square-6' |
+ 'shop-slash' |
+ 'store-alt-slash' |
+ 'wind-turbine' |
+ 'sliders-simple' |
+ 'grid-round' |
+ 'badge-sheriff' |
+ 'server' |
+ 'virus-covid-slash' |
+ 'intersection' |
+ 'shop-lock' |
+ 'family' |
+ 'hourglass-start' |
+ 'hourglass1' |
+ 'user-hair-buns' |
+ 'blender-phone' |
+ 'hourglass-clock' |
+ 'person-seat-reclined' |
+ 'paper-plane-top' |
+ 'paper-plane-alt' |
+ 'send' |
+ 'message-arrow-up' |
+ 'comment-alt-arrow-up' |
+ 'lightbulb-exclamation' |
+ 'layer-minus' |
+ 'layer-group-minus' |
+ 'chart-pie-simple-circle-currency' |
+ 'circle-e' |
+ 'building-wheat' |
+ 'gauge-max' |
+ 'tachometer-alt-fastest' |
+ 'person-breastfeeding' |
+ 'apostrophe' |
+ 'fire-hydrant' |
+ 'right-to-bracket' |
+ 'sign-in-alt' |
+ 'video-plus' |
+ 'square-right' |
+ 'arrow-alt-square-right' |
+ 'comment-smile' |
+ 'venus' |
+ 'passport' |
+ 'inbox-in' |
+ 'inbox-arrow-down' |
+ 'heart-pulse' |
+ 'heartbeat' |
+ 'circle-8' |
+ 'clouds-moon' |
+ 'clock-ten-thirty' |
+ 'people-carry-box' |
+ 'people-carry' |
+ 'folder-user' |
+ 'trash-can-xmark' |
+ 'temperature-high' |
+ 'microchip' |
+ 'left-long-to-line' |
+ 'crown' |
+ 'weight-hanging' |
+ 'xmarks-lines' |
+ 'file-prescription' |
+ 'calendar-range' |
+ 'flower-daffodil' |
+ 'hand-back-point-up' |
+ 'weight-scale' |
+ 'weight' |
+ 'star-exclamation' |
+ 'books' |
+ 'user-group' |
+ 'user-friends' |
+ 'arrow-up-a-z' |
+ 'sort-alpha-up' |
+ 'layer-plus' |
+ 'layer-group-plus' |
+ 'play-pause' |
+ 'block-question' |
+ 'snooze' |
+ 'zzz' |
+ 'scanner-image' |
+ 'tv-retro' |
+ 'square-t' |
+ 'farm' |
+ 'barn-silo' |
+ 'chess-knight' |
+ 'bars-sort' |
+ 'pallet-boxes' |
+ 'palette-boxes' |
+ 'pallet-alt' |
+ 'face-laugh-squint' |
+ 'laugh-squint' |
+ 'code-simple' |
+ 'bolt-slash' |
+ 'panel-fire' |
+ 'binary-circle-check' |
+ 'comment-minus' |
+ 'burrito' |
+ 'violin' |
+ 'objects-column' |
+ 'square-chevron-down' |
+ 'chevron-square-down' |
+ 'comment-plus' |
+ 'triangle-instrument' |
+ 'triangle-music' |
+ 'wheelchair' |
+ 'user-pilot-tie' |
+ 'piano-keyboard' |
+ 'bed-empty' |
+ 'circle-arrow-up' |
+ 'arrow-circle-up' |
+ 'toggle-on' |
+ 'rectangle-vertical' |
+ 'rectangle-portrait' |
+ 'person-walking' |
+ 'walking' |
+ 'l' |
+ 'signal-stream' |
+ 'down-to-bracket' |
+ 'circle-z' |
+ 'stars' |
+ 'fire' |
+ 'bed-pulse' |
+ 'procedures' |
+ 'house-day' |
+ 'shuttle-space' |
+ 'space-shuttle' |
+ 'shirt-long-sleeve' |
+ 'chart-pie-simple' |
+ 'chart-pie-alt' |
+ 'face-laugh' |
+ 'laugh' |
+ 'folder-open' |
+ 'album-collection-circle-user' |
+ 'candy' |
+ 'bowl-hot' |
+ 'soup' |
+ 'flatbread' |
+ 'heart-circle-plus' |
+ 'code-fork' |
+ 'city' |
+ 'signal-bars-weak' |
+ 'signal-alt1' |
+ 'microphone-lines' |
+ 'microphone-alt' |
+ 'clock-twelve' |
+ 'pepper-hot' |
+ 'citrus-slice' |
+ 'sheep' |
+ 'unlock' |
+ 'colon-sign' |
+ 'headset' |
+ 'badger-honey' |
+ 'h4' |
+ 'store-slash' |
+ 'road-circle-xmark' |
+ 'signal-slash' |
+ 'user-minus' |
+ 'mars-stroke-up' |
+ 'mars-stroke-v' |
+ 'champagne-glasses' |
+ 'glass-cheers' |
+ 'taco' |
+ 'hexagon-plus' |
+ 'plus-hexagon' |
+ 'clipboard' |
+ 'house-circle-exclamation' |
+ 'file-arrow-up' |
+ 'file-upload' |
+ 'wifi' |
+ 'wifi3' |
+ 'wifi-strong' |
+ 'messages' |
+ 'comments-alt' |
+ 'bath' |
+ 'bathtub' |
+ 'umbrella-simple' |
+ 'umbrella-alt' |
+ 'rectangle-history-circle-plus' |
+ 'underline' |
+ 'prescription-bottle-pill' |
+ 'user-pen' |
+ 'user-edit' |
+ 'binary-slash' |
+ 'square-o' |
+ 'signature' |
+ 'stroopwafel' |
+ 'bold' |
+ 'anchor-lock' |
+ 'building-ngo' |
+ 'transporter-3' |
+ 'engine-warning' |
+ 'engine-exclamation' |
+ 'circle-down-right' |
+ 'square-k' |
+ 'manat-sign' |
+ 'money-check-pen' |
+ 'money-check-edit' |
+ 'not-equal' |
+ 'border-top-left' |
+ 'border-style' |
+ 'map-location-dot' |
+ 'map-marked-alt' |
+ 'tilde' |
+ 'jedi' |
+ 'square-poll-vertical' |
+ 'poll' |
+ 'arrow-down-square-triangle' |
+ 'sort-shapes-down-alt' |
+ 'mug-hot' |
+ 'dog-leashed' |
+ 'car-battery' |
+ 'battery-car' |
+ 'face-downcast-sweat' |
+ 'mailbox-flag-up' |
+ 'memo-circle-info' |
+ 'gift' |
+ 'dice-two' |
+ 'volume' |
+ 'volume-medium' |
+ 'transporter-5' |
+ 'gauge-circle-bolt' |
+ 'coin-front' |
+ 'file-slash' |
+ 'message-arrow-up-right' |
+ 'treasure-chest' |
+ 'chess-queen' |
+ 'paintbrush-fine' |
+ 'paint-brush-alt' |
+ 'paint-brush-fine' |
+ 'paintbrush-alt' |
+ 'glasses' |
+ 'hood-cloak' |
+ 'square-quote' |
+ 'up-left' |
+ 'bring-front' |
+ 'chess-board' |
+ 'burger-cheese' |
+ 'cheeseburger' |
+ 'building-circle-check' |
+ 'repeat-1' |
+ 'arrow-down-to-line' |
+ 'arrow-to-bottom' |
+ 'grid-5' |
+ 'right-long-to-line' |
+ 'person-chalkboard' |
+ 'mars-stroke-right' |
+ 'mars-stroke-h' |
+ 'hand-back-fist' |
+ 'hand-rock' |
+ 'grid-round-5' |
+ 'tally' |
+ 'tally5' |
+ 'square-caret-up' |
+ 'caret-square-up' |
+ 'cloud-showers-water' |
+ 'chart-bar' |
+ 'bar-chart' |
+ 'hands-bubbles' |
+ 'hands-wash' |
+ 'less-than-equal' |
+ 'train' |
+ 'up-from-dotted-line' |
+ 'eye-low-vision' |
+ 'low-vision' |
+ 'traffic-light-go' |
+ 'face-exhaling' |
+ 'sensor-fire' |
+ 'user-unlock' |
+ 'hexagon-divide' |
+ '00' |
+ 'crow' |
+ 'cassette-betamax' |
+ 'betamax' |
+ 'sailboat' |
+ 'window-restore' |
+ 'nfc-magnifying-glass' |
+ 'file-binary' |
+ 'circle-v' |
+ 'square-plus' |
+ 'plus-square' |
+ 'bowl-scoops' |
+ 'mistletoe' |
+ 'custard' |
+ 'lacrosse-stick' |
+ 'hockey-mask' |
+ 'sunrise' |
+ 'panel-ews' |
+ 'torii-gate' |
+ 'cloud-exclamation' |
+ 'message-lines' |
+ 'comment-alt-lines' |
+ 'frog' |
+ 'bucket' |
+ 'floppy-disk-pen' |
+ 'image' |
+ 'window-frame' |
+ 'microphone' |
+ 'cow' |
+ 'file-zip' |
+ 'square-ring' |
+ 'down-from-line' |
+ 'arrow-alt-from-top' |
+ 'caret-up' |
+ 'shield-xmark' |
+ 'shield-times' |
+ 'screwdriver' |
+ 'circle-sort-down' |
+ 'sort-circle-down' |
+ 'folder-closed' |
+ 'house-tsunami' |
+ 'square-nfi' |
+ 'forklift' |
+ 'arrow-up-from-ground-water' |
+ 'bracket-square-right' |
+ 'martini-glass' |
+ 'glass-martini-alt' |
+ 'rotate-left' |
+ 'rotate-back' |
+ 'rotate-backward' |
+ 'undo-alt' |
+ 'table-columns' |
+ 'columns' |
+ 'square-a' |
+ 'tick' |
+ 'lemon' |
+ 'head-side-mask' |
+ 'handshake' |
+ 'gem' |
+ 'dolly' |
+ 'dolly-box' |
+ 'smoking' |
+ 'minimize' |
+ 'compress-arrows-alt' |
+ 'refrigerator' |
+ 'monument' |
+ 'octagon-xmark' |
+ 'times-octagon' |
+ 'xmark-octagon' |
+ 'align-slash' |
+ 'snowplow' |
+ 'angles-right' |
+ 'angle-double-right' |
+ 'truck-ramp-couch' |
+ 'truck-couch' |
+ 'cannabis' |
+ 'circle-play' |
+ 'play-circle' |
+ 'arrow-up-right-and-arrow-down-left-from-center' |
+ 'tablets' |
+ '360-degrees' |
+ 'ethernet' |
+ 'euro-sign' |
+ 'eur' |
+ 'euro' |
+ 'chair' |
+ 'circle-check' |
+ 'check-circle' |
+ 'square-dashed-circle-plus' |
+ 'money-simple-from-bracket' |
+ 'bat' |
+ 'circle-stop' |
+ 'stop-circle' |
+ 'head-side-headphones' |
+ 'phone-rotary' |
+ 'compass-drafting' |
+ 'drafting-compass' |
+ 'plate-wheat' |
+ 'calendar-circle-minus' |
+ 'chopsticks' |
+ 'car-wrench' |
+ 'car-mechanic' |
+ 'icicles' |
+ 'person-shelter' |
+ 'neuter' |
+ 'id-badge' |
+ 'kazoo' |
+ 'marker' |
+ 'bin-bottles' |
+ 'face-laugh-beam' |
+ 'laugh-beam' |
+ 'square-arrow-down-left' |
+ 'battery-bolt' |
+ 'tree-large' |
+ 'helicopter-symbol' |
+ 'aperture' |
+ 'universal-access' |
+ 'gear-complex' |
+ 'file-magnifying-glass' |
+ 'file-search' |
+ 'up-right' |
+ 'circle-chevron-up' |
+ 'chevron-circle-up' |
+ 'user-police' |
+ 'lari-sign' |
+ 'volcano' |
+ 'teddy-bear' |
+ 'stocking' |
+ 'person-walking-dashed-line-arrow-right' |
+ 'image-slash' |
+ 'mask-snorkel' |
+ 'smoke' |
+ 'sterling-sign' |
+ 'gbp' |
+ 'pound-sign' |
+ 'battery-exclamation' |
+ 'viruses' |
+ 'square-person-confined' |
+ 'user-tie' |
+ 'arrow-down-long' |
+ 'long-arrow-down' |
+ 'tent-arrow-down-to-line' |
+ 'certificate' |
+ 'crystal-ball' |
+ 'reply-all' |
+ 'mail-reply-all' |
+ 'suitcase' |
+ 'person-skating' |
+ 'skating' |
+ 'star-shooting' |
+ 'binary-lock' |
+ 'filter-circle-dollar' |
+ 'funnel-dollar' |
+ 'camera-retro' |
+ 'circle-arrow-down' |
+ 'arrow-circle-down' |
+ 'comment-pen' |
+ 'comment-edit' |
+ 'file-import' |
+ 'arrow-right-to-file' |
+ 'banjo' |
+ 'square-arrow-up-right' |
+ 'external-link-square' |
+ 'light-emergency-on' |
+ 'kerning' |
+ 'box-open' |
+ 'square-f' |
+ 'scroll' |
+ 'spa' |
+ 'arrow-left-from-line' |
+ 'arrow-from-right' |
+ 'strawberry' |
+ 'location-pin-lock' |
+ 'pause' |
+ 'clock-eight-thirty' |
+ 'plane-engines' |
+ 'plane-alt' |
+ 'hill-avalanche' |
+ 'temperature-empty' |
+ 'temperature0' |
+ 'thermometer0' |
+ 'thermometer-empty' |
+ 'bomb' |
+ 'gauge-low' |
+ 'tachometer-alt-slow' |
+ 'registered' |
+ 'trash-can-plus' |
+ 'address-card' |
+ 'contact-card' |
+ 'vcard' |
+ 'scale-unbalanced-flip' |
+ 'balance-scale-right' |
+ 'globe-snow' |
+ 'subscript' |
+ 'diamond-turn-right' |
+ 'directions' |
+ 'integral' |
+ 'burst' |
+ 'house-laptop' |
+ 'laptop-house' |
+ 'face-tired' |
+ 'tired' |
+ 'money-bills' |
+ 'blinds-raised' |
+ 'smog' |
+ 'ufo-beam' |
+ 'circle-caret-up' |
+ 'caret-circle-up' |
+ 'user-vneck-hair-long' |
+ 'square-a-lock' |
+ 'crutch' |
+ 'gas-pump-slash' |
+ 'font-awesome' |
+ 'font-awesome-flag' |
+ 'font-awesome-logo-full' |
+ 'cloud-arrow-up' |
+ 'cloud-upload' |
+ 'cloud-upload-alt' |
+ 'palette' |
+ 'transporter-4' |
+ 'chart-mixed-up-circle-currency' |
+ 'objects-align-right' |
+ 'arrows-turn-right' |
+ 'vest' |
+ 'pig' |
+ 'inbox-full' |
+ 'circle-envelope' |
+ 'envelope-circle' |
+ 'triangle-person-digging' |
+ 'construction' |
+ 'ferry' |
+ 'bullseye-arrow' |
+ 'arrows-down-to-people' |
+ 'seedling' |
+ 'sprout' |
+ 'clock-seven' |
+ 'left-right' |
+ 'arrows-alt-h' |
+ 'boxes-packing' |
+ 'circle-arrow-left' |
+ 'arrow-circle-left' |
+ 'flashlight' |
+ 'group-arrows-rotate' |
+ 'bowl-food' |
+ 'square-9' |
+ 'candy-cane' |
+ 'arrow-down-wide-short' |
+ 'sort-amount-asc' |
+ 'sort-amount-down' |
+ 'square-dollar' |
+ 'dollar-square' |
+ 'usd-square' |
+ 'phone-arrow-right' |
+ 'hand-holding-seedling' |
+ 'message-check' |
+ 'comment-alt-check' |
+ 'cloud-bolt' |
+ 'thunderstorm' |
+ 'chart-line-up-down' |
+ 'text-slash' |
+ 'remove-format' |
+ 'watch' |
+ 'circle-down-left' |
+ 'text' |
+ 'projector' |
+ 'face-smile-wink' |
+ 'smile-wink' |
+ 'tombstone-blank' |
+ 'tombstone-alt' |
+ 'chess-king-piece' |
+ 'chess-king-alt' |
+ 'circle-6' |
+ 'left' |
+ 'arrow-alt-left' |
+ 'file-word' |
+ 'file-powerpoint' |
+ 'square-down' |
+ 'arrow-alt-square-down' |
+ 'objects-align-center-vertical' |
+ 'arrows-left-right' |
+ 'arrows-h' |
+ 'house-lock' |
+ 'cloud-arrow-down' |
+ 'cloud-download' |
+ 'cloud-download-alt' |
+ 'wreath' |
+ 'children' |
+ 'meter-droplet' |
+ 'chalkboard' |
+ 'blackboard' |
+ 'user-large-slash' |
+ 'user-alt-slash' |
+ 'signal-strong' |
+ 'signal4' |
+ 'lollipop' |
+ 'lollypop' |
+ 'list-tree' |
+ 'envelope-open' |
+ 'draw-circle' |
+ 'cat-space' |
+ 'handshake-simple-slash' |
+ 'handshake-alt-slash' |
+ 'rabbit-running' |
+ 'rabbit-fast' |
+ 'memo-pad' |
+ 'mattress-pillow' |
+ 'alarm-plus' |
+ 'alicorn' |
+ 'comment-question' |
+ 'gingerbread-man' |
+ 'guarani-sign' |
+ 'burger-fries' |
+ 'mug-tea' |
+ 'border-top' |
+ 'arrows-rotate' |
+ 'refresh' |
+ 'sync' |
+ 'circle-book-open' |
+ 'book-circle' |
+ 'arrows-to-dotted-line' |
+ 'fire-extinguisher' |
+ 'garage-open' |
+ 'shelves-empty' |
+ 'cruzeiro-sign' |
+ 'watch-apple' |
+ 'watch-calculator' |
+ 'list-dropdown' |
+ 'cabinet-filing' |
+ 'burger-soda' |
+ 'square-arrow-up' |
+ 'arrow-square-up' |
+ 'greater-than-equal' |
+ 'pallet-box' |
+ 'face-confounded' |
+ 'shield-halved' |
+ 'shield-alt' |
+ 'truck-plow' |
+ 'book-atlas' |
+ 'atlas' |
+ 'virus' |
+ 'grid-round-2' |
+ 'comment-middle-top' |
+ 'envelope-circle-check' |
+ 'layer-group' |
+ 'restroom-simple' |
+ 'arrows-to-dot' |
+ 'border-outer' |
+ 'hashtag-lock' |
+ 'clock-two-thirty' |
+ 'archway' |
+ 'heart-circle-check' |
+ 'house-chimney-crack' |
+ 'house-damage' |
+ 'file-zipper' |
+ 'file-archive' |
+ 'heart-half' |
+ 'comment-check' |
+ 'square' |
+ 'memo' |
+ 'martini-glass-empty' |
+ 'glass-martini' |
+ 'couch' |
+ 'cedi-sign' |
+ 'italic' |
+ 'glass-citrus' |
+ 'calendar-lines-pen' |
+ 'church' |
+ 'person-snowmobiling' |
+ 'snowmobile' |
+ 'face-hushed' |
+ 'comments-dollar' |
+ 'pickaxe' |
+ 'link-simple-slash' |
+ 'democrat' |
+ 'face-confused' |
+ 'pinball' |
+ 'z' |
+ 'person-skiing' |
+ 'skiing' |
+ 'deer' |
+ 'input-pipe' |
+ 'road-lock' |
+ 'a' |
+ 'bookmark-slash' |
+ 'temperature-arrow-down' |
+ 'temperature-down' |
+ 'mace' |
+ 'feather-pointed' |
+ 'feather-alt' |
+ 'sausage' |
+ 'trash-can-clock' |
+ 'p' |
+ 'broom-wide' |
+ 'snowflake' |
+ 'stomach' |
+ 'newspaper' |
+ 'rectangle-ad' |
+ 'ad' |
+ 'guitar-electric' |
+ 'arrow-turn-down-right' |
+ 'moon-cloud' |
+ 'bread-slice-butter' |
+ 'circle-arrow-right' |
+ 'arrow-circle-right' |
+ 'user-group-crown' |
+ 'users-crown' |
+ 'circle-i' |
+ 'toilet-paper-check' |
+ 'filter-circle-xmark' |
+ 'locust' |
+ 'sort' |
+ 'unsorted' |
+ 'list-ol' |
+ 'list12' |
+ 'list-numeric' |
+ 'chart-waterfall' |
+ 'sparkle' |
+ 'face-party' |
+ 'kidneys' |
+ 'wifi-exclamation' |
+ 'chart-network' |
+ 'person-dress-burst' |
+ 'dice-d4' |
+ 'money-check-dollar' |
+ 'money-check-alt' |
+ 'vector-square' |
+ 'bread-slice' |
+ 'language' |
+ 'wheat-awn-slash' |
+ 'face-kiss-wink-heart' |
+ 'kiss-wink-heart' |
+ 'dagger' |
+ 'podium' |
+ 'memo-circle-check' |
+ 'route-highway' |
+ 'down-to-line' |
+ 'arrow-alt-to-bottom' |
+ 'filter' |
+ 'square-g' |
+ 'circle-phone' |
+ 'phone-circle' |
+ 'clipboard-prescription' |
+ 'user-nurse-hair' |
+ 'question' |
+ 'file-signature' |
+ 'toggle-large-on' |
+ 'up-down-left-right' |
+ 'arrows-alt' |
+ 'dryer-heat' |
+ 'dryer-alt' |
+ 'house-chimney-user' |
+ 'hand-holding-heart' |
+ 'arrow-up-small-big' |
+ 'sort-size-up-alt' |
+ 'train-track' |
+ 'puzzle-piece' |
+ 'money-check' |
+ 'star-half-stroke' |
+ 'star-half-alt' |
+ 'file-exclamation' |
+ 'code' |
+ 'whiskey-glass' |
+ 'glass-whiskey' |
+ 'moon-stars' |
+ 'building-circle-exclamation' |
+ 'clothes-hanger' |
+ 'mobile-notch' |
+ 'mobile-iphone' |
+ 'magnifying-glass-chart' |
+ 'arrow-up-right-from-square' |
+ 'external-link' |
+ 'cubes-stacked' |
+ 'images-user' |
+ 'won-sign' |
+ 'krw' |
+ 'won' |
+ 'image-polaroid-user' |
+ 'virus-covid' |
+ 'square-ellipsis' |
+ 'pie' |
+ 'chess-knight-piece' |
+ 'chess-knight-alt' |
+ 'austral-sign' |
+ 'cloud-plus' |
+ 'f' |
+ 'leaf' |
+ 'bed-bunk' |
+ 'road' |
+ 'taxi' |
+ 'cab' |
+ 'person-circle-plus' |
+ 'chart-pie' |
+ 'pie-chart' |
+ 'bolt-lightning' |
+ 'clock-eight' |
+ 'sack-xmark' |
+ 'file-excel' |
+ 'file-contract' |
+ 'fish-fins' |
+ 'circle-q' |
+ 'building-flag' |
+ 'face-grin-beam' |
+ 'grin-beam' |
+ 'object-ungroup' |
+ 'face-disguise' |
+ 'circle-arrow-down-right' |
+ 'alien-8bit' |
+ 'alien-monster' |
+ 'hand-point-ribbon' |
+ 'poop' |
+ 'object-exclude' |
+ 'telescope' |
+ 'location-pin' |
+ 'map-marker' |
+ 'square-list' |
+ 'kaaba' |
+ 'toilet-paper' |
+ 'helmet-safety' |
+ 'hard-hat' |
+ 'hat-hard' |
+ 'comment-code' |
+ 'sim-cards' |
+ 'starship' |
+ 'eject' |
+ 'circle-right' |
+ 'arrow-alt-circle-right' |
+ 'plane-circle-check' |
+ 'seal' |
+ 'user-cowboy' |
+ 'hexagon-vertical-nft' |
+ 'face-rolling-eyes' |
+ 'meh-rolling-eyes' |
+ 'bread-loaf' |
+ 'rings-wedding' |
+ 'object-group' |
+ 'french-fries' |
+ 'chart-line' |
+ 'line-chart' |
+ 'calendar-arrow-down' |
+ 'calendar-download' |
+ 'send-back' |
+ 'mask-ventilator' |
+ 'signature-lock' |
+ 'arrow-right' |
+ 'signs-post' |
+ 'map-signs' |
+ 'octagon-plus' |
+ 'plus-octagon' |
+ 'cash-register' |
+ 'person-circle-question' |
+ 'melon-slice' |
+ 'space-station-moon' |
+ 'message-smile' |
+ 'comment-alt-smile' |
+ 'cup-straw' |
+ 'left-from-line' |
+ 'arrow-alt-from-right' |
+ 'h' |
+ 'basket-shopping-simple' |
+ 'shopping-basket-alt' |
+ 'hands-holding-heart' |
+ 'hands-heart' |
+ 'clock-nine' |
+ 'tarp' |
+ 'face-sleepy' |
+ 'hand-horns' |
+ 'screwdriver-wrench' |
+ 'tools' |
+ 'arrows-to-eye' |
+ 'circle-three-quarters' |
+ 'trophy-star' |
+ 'trophy-alt' |
+ 'plug-circle-bolt' |
+ 'face-thermometer' |
+ 'grid-round-4' |
+ 'shirt-running' |
+ 'book-circle-arrow-up' |
+ 'face-nauseated' |
+ 'heart' |
+ 'file-chart-pie' |
+ 'mars-and-venus' |
+ 'house-user' |
+ 'home-user' |
+ 'circle-arrow-down-left' |
+ 'dumpster-fire' |
+ 'hexagon-minus' |
+ 'minus-hexagon' |
+ 'left-to-line' |
+ 'arrow-alt-to-left' |
+ 'house-crack' |
+ 'paw-simple' |
+ 'paw-alt' |
+ 'arrow-left-long-to-line' |
+ 'brackets-round' |
+ 'parentheses' |
+ 'martini-glass-citrus' |
+ 'cocktail' |
+ 'user-shakespeare' |
+ 'arrow-right-to-arc' |
+ 'face-surprise' |
+ 'surprise' |
+ 'bottle-water' |
+ 'circle-pause' |
+ 'pause-circle' |
+ 'gauge-circle-plus' |
+ 'folders' |
+ 'angel' |
+ 'value-absolute' |
+ 'rabbit' |
+ 'toilet-paper-slash' |
+ 'circle-euro' |
+ 'apple-whole' |
+ 'apple-alt' |
+ 'kitchen-set' |
+ 'diamond-half' |
+ 'lock-keyhole' |
+ 'lock-alt' |
+ 'r' |
+ 'temperature-quarter' |
+ 'temperature1' |
+ 'thermometer1' |
+ 'thermometer-quarter' |
+ 'square-info' |
+ 'info-square' |
+ 'wifi-slash' |
+ 'toilet-paper-xmark' |
+ 'hands-holding-dollar' |
+ 'hands-usd' |
+ 'cube' |
+ 'arrow-down-triangle-square' |
+ 'sort-shapes-down' |
+ 'bitcoin-sign' |
+ 'shutters' |
+ 'shield-dog' |
+ 'solar-panel' |
+ 'lock-open' |
+ 'table-tree' |
+ 'house-chimney-heart' |
+ 'tally-3' |
+ 'elevator' |
+ 'money-bill-transfer' |
+ 'money-bill-trend-up' |
+ 'house-flood-water-circle-arrow-right' |
+ 'square-poll-horizontal' |
+ 'poll-h' |
+ 'circle' |
+ 'cart-circle-exclamation' |
+ 'sword' |
+ 'backward-fast' |
+ 'fast-backward' |
+ 'recycle' |
+ 'user-astronaut' |
+ 'interrobang' |
+ 'plane-slash' |
+ 'circle-dashed' |
+ 'trademark' |
+ 'basketball' |
+ 'basketball-ball' |
+ 'fork-knife' |
+ 'utensils-alt' |
+ 'satellite-dish' |
+ 'badge-check' |
+ 'circle-up' |
+ 'arrow-alt-circle-up' |
+ 'slider' |
+ 'mobile-screen-button' |
+ 'mobile-alt' |
+ 'clock-one-thirty' |
+ 'inbox-out' |
+ 'inbox-arrow-up' |
+ 'cloud-slash' |
+ 'volume-high' |
+ 'volume-up' |
+ 'users-rays' |
+ 'wallet' |
+ 'octagon-check' |
+ 'flatbread-stuffed' |
+ 'clipboard-check' |
+ 'cart-circle-plus' |
+ 'truck-clock' |
+ 'shipping-timed' |
+ 'pool-8-ball' |
+ 'file-audio' |
+ 'turn-down-left' |
+ 'lock-hashtag' |
+ 'chart-radar' |
+ 'staff' |
+ 'burger' |
+ 'hamburger' |
+ 'utility-pole' |
+ 'transporter-6' |
+ 'wrench' |
+ 'bugs' |
+ 'vector-polygon' |
+ 'diagram-nested' |
+ 'rupee-sign' |
+ 'rupee' |
+ 'file-image' |
+ 'circle-question' |
+ 'question-circle' |
+ 'image-user' |
+ 'buoy' |
+ 'plane-departure' |
+ 'handshake-slash' |
+ 'book-bookmark' |
+ 'border-center-h' |
+ 'can-food' |
+ 'typewriter' |
+ 'arrow-right-from-arc' |
+ 'circle-k' |
+ 'face-hand-over-mouth' |
+ 'popcorn' |
+ 'house-water' |
+ 'house-flood' |
+ 'object-subtract' |
+ 'code-branch' |
+ 'warehouse-full' |
+ 'warehouse-alt' |
+ 'hat-cowboy' |
+ 'bridge' |
+ 'phone-flip' |
+ 'phone-alt' |
+ 'arrow-down-from-dotted-line' |
+ 'file-doc' |
+ 'square-quarters' |
+ 'truck-front' |
+ 'cat' |
+ 'trash-xmark' |
+ 'circle-caret-left' |
+ 'caret-circle-left' |
+ 'files' |
+ 'anchor-circle-exclamation' |
+ 'face-clouds' |
+ 'user-crown' |
+ 'truck-field' |
+ 'route' |
+ 'cart-circle-check' |
+ 'clipboard-question' |
+ 'panorama' |
+ 'comment-medical' |
+ 'teeth-open' |
+ 'user-tie-hair-long' |
+ 'file-circle-minus' |
+ 'head-side-medical' |
+ 'tags' |
+ 'wine-glass' |
+ 'forward-fast' |
+ 'fast-forward' |
+ 'face-meh-blank' |
+ 'meh-blank' |
+ 'user-robot' |
+ 'square-parking' |
+ 'parking' |
+ 'card-diamond' |
+ 'face-zipper' |
+ 'face-raised-eyebrow' |
+ 'house-signal' |
+ 'square-chevron-up' |
+ 'chevron-square-up' |
+ 'nfc-symbol' |
+ 'bars-progress' |
+ 'tasks-alt' |
+ 'faucet-drip' |
+ 'arrows-to-line' |
+ 'dolphin' |
+ 'arrow-up-right' |
+ 'circle-r' |
+ 'cart-flatbed' |
+ 'dolly-flatbed' |
+ 'ban-smoking' |
+ 'smoking-ban' |
+ 'circle-sort-up' |
+ 'sort-circle-up' |
+ 'terminal' |
+ 'mobile-button' |
+ 'house-medical-flag' |
+ 'basket-shopping' |
+ 'shopping-basket' |
+ 'tape' |
+ 'chestnut' |
+ 'bus-simple' |
+ 'bus-alt' |
+ 'eye' |
+ 'face-sad-cry' |
+ 'sad-cry' |
+ 'heat' |
+ 'ticket-airline' |
+ 'boot-heeled' |
+ 'arrows-minimize' |
+ 'compress-arrows' |
+ 'audio-description' |
+ 'person-military-to-person' |
+ 'file-shield' |
+ 'hexagon' |
+ 'manhole' |
+ 'user-slash' |
+ 'pen' |
+ 'tower-observation' |
+ 'floppy-disks' |
+ 'toilet-paper-blank-under' |
+ 'toilet-paper-reverse-alt' |
+ 'file-code' |
+ 'signal' |
+ 'signal5' |
+ 'signal-perfect' |
+ 'pump' |
+ 'bus' |
+ 'heart-circle-xmark' |
+ 'arrow-up-left-from-circle' |
+ 'house-chimney' |
+ 'home-lg' |
+ 'window-maximize' |
+ 'dryer' |
+ 'face-frown' |
+ 'frown' |
+ 'chess-bishop-piece' |
+ 'chess-bishop-alt' |
+ 'shirt-tank-top' |
+ 'diploma' |
+ 'scroll-ribbon' |
+ 'screencast' |
+ 'walker' |
+ 'prescription' |
+ 'shop' |
+ 'store-alt' |
+ 'floppy-disk' |
+ 'save' |
+ 'vihara' |
+ 'face-kiss-closed-eyes' |
+ 'scale-unbalanced' |
+ 'balance-scale-left' |
+ 'file-user' |
+ 'user-police-tie' |
+ 'face-tongue-money' |
+ 'tennis-ball' |
+ 'square-l' |
+ 'sort-up' |
+ 'sort-asc' |
+ 'calendar-arrow-up' |
+ 'calendar-upload' |
+ 'comment-dots' |
+ 'commenting' |
+ 'plant-wilt' |
+ 'scarf' |
+ 'album-circle-plus' |
+ 'user-nurse-hair-long' |
+ 'diamond' |
+ 'square-left' |
+ 'arrow-alt-square-left' |
+ 'face-grin-squint' |
+ 'grin-squint' |
+ 'circle-ellipsis-vertical' |
+ 'hand-holding-dollar' |
+ 'hand-holding-usd' |
+ 'grid-dividers' |
+ 'bacterium' |
+ 'hand-pointer' |
+ 'drum-steelpan' |
+ 'hand-scissors' |
+ 'hands-praying' |
+ 'praying-hands' |
+ 'face-pensive' |
+ 'user-music' |
+ 'arrow-rotate-right' |
+ 'arrow-right-rotate' |
+ 'arrow-rotate-forward' |
+ 'redo' |
+ 'messages-dollar' |
+ 'comments-alt-dollar' |
+ 'sensor-on' |
+ 'balloon' |
+ 'biohazard' |
+ 'chess-queen-piece' |
+ 'chess-queen-alt' |
+ 'location-crosshairs' |
+ 'location' |
+ 'mars-double' |
+ 'house-person-leave' |
+ 'house-leave' |
+ 'house-person-depart' |
+ 'ruler-triangle' |
+ 'card-club' |
+ 'child-dress' |
+ 'users-between-lines' |
+ 'lungs-virus' |
+ 'spinner-third' |
+ 'face-grin-tears' |
+ 'grin-tears' |
+ 'phone' |
+ 'computer-mouse-scrollwheel' |
+ 'mouse-alt' |
+ 'calendar-xmark' |
+ 'calendar-times' |
+ 'child-reaching' |
+ 'table-layout' |
+ 'narwhal' |
+ 'ramp-loading' |
+ 'calendar-circle-plus' |
+ 'toothbrush' |
+ 'border-inner' |
+ 'paw-claws' |
+ 'kiwi-fruit' |
+ 'traffic-light-slow' |
+ 'rectangle-code' |
+ 'head-side-virus' |
+ 'keyboard-brightness' |
+ 'books-medical' |
+ 'lightbulb-slash' |
+ 'house-blank' |
+ 'home-blank' |
+ 'square-5' |
+ 'square-heart' |
+ 'heart-square' |
+ 'puzzle' |
+ 'user-gear' |
+ 'user-cog' |
+ 'pipe-circle-check' |
+ 'arrow-up-1-9' |
+ 'sort-numeric-up' |
+ 'octagon-exclamation' |
+ 'dial-low' |
+ 'door-closed' |
+ 'laptop-mobile' |
+ 'phone-laptop' |
+ 'conveyor-belt-boxes' |
+ 'conveyor-belt-alt' |
+ 'shield-virus' |
+ 'starfighter-twin-ion-engine-advanced' |
+ 'starfighter-alt-advanced' |
+ 'dice-six' |
+ 'starfighter-twin-ion-engine' |
+ 'starfighter-alt' |
+ 'rocket-launch' |
+ 'mosquito-net' |
+ 'vent-damper' |
+ 'bridge-water' |
+ 'ban-bug' |
+ 'debug' |
+ 'person-booth' |
+ 'text-width' |
+ 'garage-car' |
+ 'square-kanban' |
+ 'hat-wizard' |
+ 'pen-fancy' |
+ 'coffee-pot' |
+ 'mouse-field' |
+ 'person-digging' |
+ 'digging' |
+ 'shower-down' |
+ 'shower-alt' |
+ 'box-circle-check' |
+ 'brightness' |
+ 'car-side-bolt' |
+ 'ornament' |
+ 'phone-arrow-down-left' |
+ 'phone-arrow-down' |
+ 'phone-incoming' |
+ 'cloud-word' |
+ 'hand-fingers-crossed' |
+ 'trash' |
+ 'gauge-simple' |
+ 'gauge-simple-med' |
+ 'tachometer-average' |
+ 'arrow-down-small-big' |
+ 'sort-size-down-alt' |
+ 'book-medical' |
+ 'face-melting' |
+ 'poo' |
+ 'pen-clip-slash' |
+ 'pen-alt-slash' |
+ 'quote-right' |
+ 'quote-right-alt' |
+ 'scroll-old' |
+ 'guitars' |
+ 'phone-xmark' |
+ 'hose' |
+ 'clock-six' |
+ 'shirt' |
+ 't-shirt' |
+ 'tshirt' |
+ 'billboard' |
+ 'square-r' |
+ 'cubes' |
+ 'envelope-open-dollar' |
+ 'divide' |
+ 'sun-cloud' |
+ 'lamp-floor' |
+ 'square-7' |
+ 'tenge-sign' |
+ 'tenge' |
+ 'headphones' |
+ 'hands-holding' |
+ 'campfire' |
+ 'circle-ampersand' |
+ 'snowflakes' |
+ 'hands-clapping' |
+ 'republican' |
+ 'leaf-maple' |
+ 'arrow-left' |
+ 'person-circle-xmark' |
+ 'ruler' |
+ 'cup-straw-swoosh' |
+ 'temperature-sun' |
+ 'temperature-hot' |
+ 'align-left' |
+ 'dice-d6' |
+ 'restroom' |
+ 'high-definition' |
+ 'rectangle-hd' |
+ 'j' |
+ 'galaxy' |
+ 'users-viewfinder' |
+ 'file-video' |
+ 'cherries' |
+ 'up-right-from-square' |
+ 'external-link-alt' |
+ 'circle-sort' |
+ 'sort-circle' |
+ 'table-cells' |
+ 'th' |
+ 'file-pdf' |
+ 'siren' |
+ 'arrow-up-to-dotted-line' |
+ 'image-landscape' |
+ 'landscape' |
+ 'tank-water' |
+ 'curling-stone' |
+ 'curling' |
+ 'gamepad-modern' |
+ 'gamepad-alt' |
+ 'messages-question' |
+ 'book-bible' |
+ 'bible' |
+ 'o' |
+ 'suitcase-medical' |
+ 'medkit' |
+ 'briefcase-arrow-right' |
+ 'expand-wide' |
+ 'clock-eleven-thirty' |
+ 'rv' |
+ 'user-secret' |
+ 'otter' |
+ 'dreidel' |
+ 'person-dress' |
+ 'female' |
+ 'comment-dollar' |
+ 'business-time' |
+ 'briefcase-clock' |
+ 'flower-tulip' |
+ 'people-pants-simple' |
+ 'cloud-drizzle' |
+ 'table-cells-large' |
+ 'th-large' |
+ 'book-tanakh' |
+ 'tanakh' |
+ 'solar-system' |
+ 'seal-question' |
+ 'phone-volume' |
+ 'volume-control-phone' |
+ 'disc-drive' |
+ 'hat-cowboy-side' |
+ 'table-rows' |
+ 'rows' |
+ 'location-exclamation' |
+ 'map-marker-exclamation' |
+ 'face-fearful' |
+ 'clipboard-user' |
+ 'bus-school' |
+ 'film-slash' |
+ 'square-arrow-down-right' |
+ 'book-sparkles' |
+ 'book-spells' |
+ 'washing-machine' |
+ 'washer' |
+ 'child' |
+ 'lira-sign' |
+ 'user-visor' |
+ 'file-plus-minus' |
+ 'chess-clock-flip' |
+ 'chess-clock-alt' |
+ 'satellite' |
+ 'plane-lock' |
+ 'steering-wheel' |
+ 'tag' |
+ 'stretcher' |
+ 'book-section' |
+ 'book-law' |
+ 'inboxes' |
+ 'coffee-bean' |
+ 'circle-yen' |
+ 'brackets-curly' |
+ 'ellipsis-stroke-vertical' |
+ 'ellipsis-v-alt' |
+ 'comment' |
+ 'square-1' |
+ 'cake-candles' |
+ 'birthday-cake' |
+ 'cake' |
+ 'head-side' |
+ 'envelope' |
+ 'dolly-empty' |
+ 'face-tissue' |
+ 'angles-up' |
+ 'angle-double-up' |
+ 'bin-recycle' |
+ 'paperclip' |
+ 'chart-line-down' |
+ 'arrow-right-to-city' |
+ 'lock-a' |
+ 'ribbon' |
+ 'lungs' |
+ 'person-pinball' |
+ 'arrow-up-9-1' |
+ 'sort-numeric-up-alt' |
+ 'apple-core' |
+ 'circle-y' |
+ 'h6' |
+ 'litecoin-sign' |
+ 'circle-small' |
+ 'border-none' |
+ 'arrow-turn-down-left' |
+ 'circle-nodes' |
+ 'parachute-box' |
+ 'message-medical' |
+ 'comment-alt-medical' |
+ 'rugby-ball' |
+ 'comment-music' |
+ 'indent' |
+ 'tree-deciduous' |
+ 'tree-alt' |
+ 'puzzle-piece-simple' |
+ 'puzzle-piece-alt' |
+ 'truck-field-un' |
+ 'nfc-trash' |
+ 'hourglass' |
+ 'hourglass-empty' |
+ 'mountain' |
+ 'file-xmark' |
+ 'file-times' |
+ 'house-heart' |
+ 'home-heart' |
+ 'house-chimney-blank' |
+ 'meter-bolt' |
+ 'user-doctor' |
+ 'user-md' |
+ 'slash-back' |
+ 'circle-info' |
+ 'info-circle' |
+ 'fishing-rod' |
+ 'hammer-crash' |
+ 'message-heart' |
+ 'cloud-meatball' |
+ 'camera-polaroid' |
+ 'camera' |
+ 'camera-alt' |
+ 'square-virus' |
+ 'cart-arrow-up' |
+ 'meteor' |
+ 'car-on' |
+ 'sleigh' |
+ 'arrow-down-1-9' |
+ 'sort-numeric-asc' |
+ 'sort-numeric-down' |
+ 'buoy-mooring' |
+ 'square-4' |
+ 'hand-holding-droplet' |
+ 'hand-holding-water' |
+ 'tricycle-adult' |
+ 'waveform' |
+ 'water' |
+ 'star-sharp-half-stroke' |
+ 'star-sharp-half-alt' |
+ 'nfc-signal' |
+ 'plane-prop' |
+ 'calendar-check' |
+ 'clock-desk' |
+ 'calendar-clock' |
+ 'calendar-time' |
+ 'braille' |
+ 'prescription-bottle-medical' |
+ 'prescription-bottle-alt' |
+ 'plate-utensils' |
+ 'family-pants' |
+ 'hose-reel' |
+ 'house-window' |
+ 'landmark' |
+ 'truck' |
+ 'crosshairs' |
+ 'cloud-rainbow' |
+ 'person-cane' |
+ 'alien' |
+ 'tent' |
+ 'laptop-binary' |
+ 'vest-patches' |
+ 'people-dress-simple' |
+ 'check-double' |
+ 'arrow-down-a-z' |
+ 'sort-alpha-asc' |
+ 'sort-alpha-down' |
+ 'bowling-ball-pin' |
+ 'bell-school-slash' |
+ 'plus-large' |
+ 'money-bill-wheat' |
+ 'camera-viewfinder' |
+ 'screenshot' |
+ 'message-music' |
+ 'comment-alt-music' |
+ 'car-building' |
+ 'border-bottom-right' |
+ 'border-style-alt' |
+ 'octagon' |
+ 'comment-arrow-up-right' |
+ 'octagon-divide' |
+ 'cookie' |
+ 'arrow-rotate-left' |
+ 'arrow-left-rotate' |
+ 'arrow-rotate-back' |
+ 'arrow-rotate-backward' |
+ 'undo' |
+ 'tv-music' |
+ 'hard-drive' |
+ 'hdd' |
+ 'reel' |
+ 'face-grin-squint-tears' |
+ 'grin-squint-tears' |
+ 'dumbbell' |
+ 'rectangle-list' |
+ 'list-alt' |
+ 'tarp-droplet' |
+ 'alarm-exclamation' |
+ 'house-medical-circle-check' |
+ 'traffic-cone' |
+ 'grate' |
+ 'arrow-down-right' |
+ 'person-skiing-nordic' |
+ 'skiing-nordic' |
+ 'calendar-plus' |
+ 'person-from-portal' |
+ 'portal-exit' |
+ 'plane-arrival' |
+ 'cowbell-circle-plus' |
+ 'cowbell-more' |
+ 'circle-left' |
+ 'arrow-alt-circle-left' |
+ 'distribute-spacing-vertical' |
+ 'signal-bars-fair' |
+ 'signal-alt2' |
+ 'sportsball' |
+ 'game-console-handheld-crank' |
+ 'train-subway' |
+ 'subway' |
+ 'chart-gantt' |
+ 'face-smile-upside-down' |
+ 'ball-pile' |
+ 'badge-dollar' |
+ 'money-bills-simple' |
+ 'money-bills-alt' |
+ 'list-timeline' |
+ 'indian-rupee-sign' |
+ 'indian-rupee' |
+ 'inr' |
+ 'crop-simple' |
+ 'crop-alt' |
+ 'money-bill-1' |
+ 'money-bill-alt' |
+ 'left-long' |
+ 'long-arrow-alt-left' |
+ 'keyboard-down' |
+ 'circle-up-right' |
+ 'cloud-bolt-moon' |
+ 'thunderstorm-moon' |
+ 'dna' |
+ 'virus-slash' |
+ 'bracket-round-right' |
+ 'circle-sterling' |
+ 'circle-5' |
+ 'minus' |
+ 'subtract' |
+ 'fire-flame' |
+ 'flame' |
+ 'right-to-line' |
+ 'arrow-alt-to-right' |
+ 'gif' |
+ 'chess' |
+ 'trash-slash' |
+ 'arrow-left-long' |
+ 'long-arrow-left' |
+ 'plug-circle-check' |
+ 'font-case' |
+ 'street-view' |
+ 'arrow-down-left' |
+ 'franc-sign' |
+ 'flask-round-poison' |
+ 'flask-poison' |
+ 'volume-off' |
+ 'book-circle-arrow-right' |
+ 'chart-user' |
+ 'user-chart' |
+ 'hands-asl-interpreting' |
+ 'american-sign-language-interpreting' |
+ 'asl-interpreting' |
+ 'hands-american-sign-language-interpreting' |
+ 'presentation-screen' |
+ 'presentation' |
+ 'circle-bolt' |
+ 'face-smile-halo' |
+ 'cart-circle-arrow-down' |
+ 'house-person-return' |
+ 'house-person-arrive' |
+ 'house-return' |
+ 'message-xmark' |
+ 'comment-alt-times' |
+ 'message-times' |
+ 'file-certificate' |
+ 'file-award' |
+ 'user-doctor-hair-long' |
+ 'camera-security' |
+ 'camera-home' |
+ 'gear' |
+ 'cog' |
+ 'droplet-slash' |
+ 'tint-slash' |
+ 'book-heart' |
+ 'mosque' |
+ 'duck' |
+ 'mosquito' |
+ 'star-of-david' |
+ 'flag-swallowtail' |
+ 'flag-alt' |
+ 'person-military-rifle' |
+ 'car-garage' |
+ 'cart-shopping' |
+ 'shopping-cart' |
+ 'book-font' |
+ 'shield-plus' |
+ 'vials' |
+ 'eye-dropper-full' |
+ 'distribute-spacing-horizontal' |
+ 'tablet-rugged' |
+ 'temperature-snow' |
+ 'temperature-frigid' |
+ 'moped' |
+ 'face-smile-plus' |
+ 'smile-plus' |
+ 'radio-tuner' |
+ 'radio-alt' |
+ 'face-swear' |
+ 'water-arrow-down' |
+ 'water-lower' |
+ 'scanner-touchscreen' |
+ 'circle-7' |
+ 'plug-circle-plus' |
+ 'person-ski-jumping' |
+ 'ski-jump' |
+ 'place-of-worship' |
+ 'water-arrow-up' |
+ 'water-rise' |
+ 'waveform-lines' |
+ 'waveform-path' |
+ 'split' |
+ 'film-canister' |
+ 'film-cannister' |
+ 'folder-xmark' |
+ 'folder-times' |
+ 'toilet-paper-blank' |
+ 'toilet-paper-alt' |
+ 'tablet-screen' |
+ 'tablet-android-alt' |
+ 'hexagon-vertical-nft-slanted' |
+ 'folder-music' |
+ 'display-medical' |
+ 'desktop-medical' |
+ 'share-all' |
+ 'peapod' |
+ 'chess-clock' |
+ 'axe' |
+ 'square-d' |
+ 'grip-vertical' |
+ 'mobile-signal-out' |
+ 'arrow-turn-up' |
+ 'level-up' |
+ 'u' |
+ 'arrow-up-from-dotted-line' |
+ 'square-root-variable' |
+ 'square-root-alt' |
+ 'light-switch-on' |
+ 'arrow-down-arrow-up' |
+ 'sort-alt' |
+ 'raindrops' |
+ 'dash' |
+ 'minus-large' |
+ 'clock' |
+ 'clock-four' |
+ 'input-numeric' |
+ 'truck-tow' |
+ 'backward-step' |
+ 'step-backward' |
+ 'pallet' |
+ 'car-bolt' |
+ 'arrows-maximize' |
+ 'expand-arrows' |
+ 'faucet' |
+ 'cloud-sleet' |
+ 'lamp-street' |
+ 'list-radio' |
+ 'pen-nib-slash' |
+ 'baseball-bat-ball' |
+ 'square-up-left' |
+ 'overline' |
+ 's' |
+ 'timeline' |
+ 'keyboard' |
+ 'arrows-from-dotted-line' |
+ 'usb-drive' |
+ 'ballot' |
+ 'caret-down' |
+ 'location-dot-slash' |
+ 'map-marker-alt-slash' |
+ 'cards' |
+ 'house-chimney-medical' |
+ 'clinic-medical' |
+ 'boxing-glove' |
+ 'glove-boxing' |
+ 'temperature-three-quarters' |
+ 'temperature3' |
+ 'thermometer3' |
+ 'thermometer-three-quarters' |
+ 'bell-school' |
+ 'mobile-screen' |
+ 'mobile-android-alt' |
+ 'plane-up' |
+ 'folder-heart' |
+ 'circle-location-arrow' |
+ 'location-circle' |
+ 'face-head-bandage' |
+ 'sushi-roll' |
+ 'maki-roll' |
+ 'makizushi' |
+ 'car-bump' |
+ 'piggy-bank' |
+ 'racquet' |
+ 'car-mirrors' |
+ 'industry-windows' |
+ 'industry-alt' |
+ 'bolt-auto' |
+ 'battery-half' |
+ 'battery3' |
+ 'flux-capacitor' |
+ 'mountain-city' |
+ 'coins' |
+ 'honey-pot' |
+ 'olive' |
+ 'khanda' |
+ 'filter-list' |
+ 'outlet' |
+ 'sliders' |
+ 'sliders-h' |
+ 'cauldron' |
+ 'people' |
+ 'folder-tree' |
+ 'network-wired' |
+ 'croissant' |
+ 'map-pin' |
+ 'hamsa' |
+ 'cent-sign' |
+ 'swords-laser' |
+ 'flask' |
+ 'person-pregnant' |
+ 'square-u' |
+ 'wand-sparkles' |
+ 'router' |
+ 'ellipsis-vertical' |
+ 'ellipsis-v' |
+ 'sword-laser-alt' |
+ 'ticket' |
+ 'power-off' |
+ 'coin' |
+ 'laptop-slash' |
+ 'right-long' |
+ 'long-arrow-alt-right' |
+ 'circle-b' |
+ 'person-dress-simple' |
+ 'pipe-collar' |
+ 'lights-holiday' |
+ 'citrus' |
+ 'flag-usa' |
+ 'laptop-file' |
+ 'tty' |
+ 'teletype' |
+ 'chart-tree-map' |
+ 'diagram-next' |
+ 'person-rifle' |
+ 'clock-five-thirty' |
+ 'pipe-valve' |
+ 'arrow-up-from-arc' |
+ 'face-spiral-eyes' |
+ 'compress-wide' |
+ 'circle-phone-hangup' |
+ 'phone-circle-down' |
+ 'gear-complex-code' |
+ 'house-medical-circle-exclamation' |
+ 'badminton' |
+ 'closed-captioning' |
+ 'person-hiking' |
+ 'hiking' |
+ 'right-from-line' |
+ 'arrow-alt-from-left' |
+ 'venus-double' |
+ 'images' |
+ 'calculator' |
+ 'shuttlecock' |
+ 'user-hair' |
+ 'eye-evil' |
+ 'people-pulling' |
+ 'n' |
+ 'garage' |
+ 'cable-car' |
+ 'tram' |
+ 'shovel-snow' |
+ 'cloud-rain' |
+ 'face-lying' |
+ 'sprinkler' |
+ 'building-circle-xmark' |
+ 'person-sledding' |
+ 'sledding' |
+ 'game-console-handheld' |
+ 'ship' |
+ 'clock-six-thirty' |
+ 'battery-slash' |
+ 'tugrik-sign' |
+ 'arrows-down-to-line' |
+ 'download' |
+ 'shelves' |
+ 'inventory' |
+ 'cloud-snow' |
+ 'face-grin' |
+ 'grin' |
+ 'delete-left' |
+ 'backspace' |
+ 'oven' |
+ 'cloud-binary' |
+ 'eye-dropper' |
+ 'eye-dropper-empty' |
+ 'eyedropper' |
+ 'comment-captions' |
+ 'comments-question' |
+ 'scribble' |
+ 'rotate-exclamation' |
+ 'file-circle-check' |
+ 'glass' |
+ 'loader' |
+ 'forward' |
+ 'user-pilot' |
+ 'mobile' |
+ 'mobile-android' |
+ 'mobile-phone' |
+ 'code-pull-request-closed' |
+ 'face-meh' |
+ 'meh' |
+ 'align-center' |
+ 'book-skull' |
+ 'book-dead' |
+ 'id-card' |
+ 'drivers-license' |
+ 'face-dotted' |
+ 'face-worried' |
+ 'outdent' |
+ 'dedent' |
+ 'heart-circle-exclamation' |
+ 'house' |
+ 'home' |
+ 'home-alt' |
+ 'home-lg-alt' |
+ 'vector-circle' |
+ 'car-circle-bolt' |
+ 'calendar-week' |
+ 'flying-disc' |
+ 'laptop-medical' |
+ 'square-down-right' |
+ 'b' |
+ 'seat-airline' |
+ 'moon-over-sun' |
+ 'eclipse-alt' |
+ 'pipe' |
+ 'file-medical' |
+ 'potato' |
+ 'dice-one' |
+ 'circle-a' |
+ 'helmet-battle' |
+ 'butter' |
+ 'blanket-fire' |
+ 'kiwi-bird' |
+ 'castle' |
+ 'golf-club' |
+ 'arrow-right-arrow-left' |
+ 'exchange' |
+ 'rotate-right' |
+ 'redo-alt' |
+ 'rotate-forward' |
+ 'utensils' |
+ 'cutlery' |
+ 'arrow-up-wide-short' |
+ 'sort-amount-up' |
+ 'chart-pie-simple-circle-dollar' |
+ 'balloons' |
+ 'mill-sign' |
+ 'bowl-rice' |
+ 'timeline-arrow' |
+ 'skull' |
+ 'game-board-simple' |
+ 'game-board-alt' |
+ 'circle-video' |
+ 'video-circle' |
+ 'chart-scatter-bubble' |
+ 'house-turret' |
+ 'banana' |
+ 'hand-holding-skull' |
+ 'people-dress' |
+ 'loveseat' |
+ 'couch-small' |
+ 'tower-broadcast' |
+ 'broadcast-tower' |
+ 'truck-pickup' |
+ 'block-quote' |
+ 'up-long' |
+ 'long-arrow-alt-up' |
+ 'stop' |
+ 'code-merge' |
+ 'money-check-dollar-pen' |
+ 'money-check-edit-alt' |
+ 'up-from-line' |
+ 'arrow-alt-from-bottom' |
+ 'upload' |
+ 'hurricane' |
+ 'grid-round-2-plus' |
+ 'people-pants' |
+ 'mound' |
+ 'windsock' |
+ 'circle-half' |
+ 'brake-warning' |
+ 'toilet-portable' |
+ 'compact-disc' |
+ 'file-arrow-down' |
+ 'file-download' |
+ 'saxophone-fire' |
+ 'sax-hot' |
+ 'camera-web-slash' |
+ 'webcam-slash' |
+ 'folder-medical' |
+ 'folder-gear' |
+ 'folder-cog' |
+ 'hand-wave' |
+ 'arrow-up-arrow-down' |
+ 'sort-up-down' |
+ 'caravan' |
+ 'shield-cat' |
+ 'message-slash' |
+ 'comment-alt-slash' |
+ 'bolt' |
+ 'zap' |
+ 'trash-can-check' |
+ 'glass-water' |
+ 'oil-well' |
+ 'person-simple' |
+ 'vault' |
+ 'mars' |
+ 'toilet' |
+ 'plane-circle-xmark' |
+ 'yen-sign' |
+ 'cny' |
+ 'jpy' |
+ 'rmb' |
+ 'yen' |
+ 'gear-code' |
+ 'notes' |
+ 'ruble-sign' |
+ 'rouble' |
+ 'rub' |
+ 'ruble' |
+ 'trash-undo' |
+ 'trash-arrow-turn-left' |
+ 'champagne-glass' |
+ 'glass-champagne' |
+ 'objects-align-center-horizontal' |
+ 'sun' |
+ 'trash-can-slash' |
+ 'trash-alt-slash' |
+ 'screen-users' |
+ 'users-class' |
+ 'guitar' |
+ 'square-arrow-left' |
+ 'arrow-square-left' |
+ 'square-8' |
+ 'face-smile-hearts' |
+ 'brackets-square' |
+ 'brackets' |
+ 'laptop-arrow-down' |
+ 'hockey-stick-puck' |
+ 'house-tree' |
+ 'signal-fair' |
+ 'signal2' |
+ 'face-laugh-wink' |
+ 'laugh-wink' |
+ 'circle-dollar' |
+ 'dollar-circle' |
+ 'usd-circle' |
+ 'horse-head' |
+ 'arrows-repeat' |
+ 'repeat-alt' |
+ 'bore-hole' |
+ 'industry' |
+ 'image-polaroid' |
+ 'wave-triangle' |
+ 'person-running-fast' |
+ 'circle-down' |
+ 'arrow-alt-circle-down' |
+ 'grill' |
+ 'arrows-turn-to-dots' |
+ 'chart-mixed' |
+ 'analytics' |
+ 'florin-sign' |
+ 'arrow-down-short-wide' |
+ 'sort-amount-desc' |
+ 'sort-amount-down-alt' |
+ 'less-than' |
+ 'display-code' |
+ 'desktop-code' |
+ 'face-drooling' |
+ 'oil-temperature' |
+ 'oil-temp' |
+ 'square-question' |
+ 'question-square' |
+ 'air-conditioner' |
+ 'angle-down' |
+ 'mountains' |
+ 'omega' |
+ 'car-tunnel' |
+ 'person-dolly-empty' |
+ 'pan-food' |
+ 'head-side-cough' |
+ 'grip-lines' |
+ 'thumbs-down' |
+ 'user-lock' |
+ 'arrow-right-long' |
+ 'long-arrow-right' |
+ 'tickets-airline' |
+ 'anchor-circle-xmark' |
+ 'ellipsis' |
+ 'ellipsis-h' |
+ 'nfc-slash' |
+ 'chess-pawn' |
+ 'kit-medical' |
+ 'first-aid' |
+ 'grid-2-plus' |
+ 'bells' |
+ 'person-through-window' |
+ 'toolbox' |
+ 'envelope-dot' |
+ 'envelope-badge' |
+ 'hands-holding-circle' |
+ 'bug' |
+ 'bowl-chopsticks' |
+ 'credit-card' |
+ 'credit-card-alt' |
+ 'circle-s' |
+ 'box-ballot' |
+ 'car' |
+ 'automobile' |
+ 'hand-holding-hand' |
+ 'user-tie-hair' |
+ 'podium-star' |
+ 'user-hair-mullet' |
+ 'business-front' |
+ 'party-back' |
+ 'trian-balbot' |
+ 'microphone-stand' |
+ 'book-open-reader' |
+ 'book-reader' |
+ 'family-dress' |
+ 'circle-x' |
+ 'cabin' |
+ 'mountain-sun' |
+ 'chart-simple-horizontal' |
+ 'bluetooth' |
+ 'arrows-left-right-to-line' |
+ 'hand-back-point-left' |
+ 'message-dots' |
+ 'comment-alt-dots' |
+ 'messaging' |
+ 'file-heart' |
+ 'beer-mug' |
+ 'beer-foam' |
+ 'dice-d20' |
+ 'drone' |
+ 'truck-droplet' |
+ 'file-circle-xmark' |
+ 'temperature-arrow-up' |
+ 'temperature-up' |
+ 'medal' |
+ 'bed' |
+ 'book-copy' |
+ 'square-h' |
+ 'h-square' |
+ 'square-c' |
+ 'clock-two' |
+ 'square-ellipsis-vertical' |
+ 'calendar-users' |
+ 'podcast' |
+ 'bee' |
+ 'temperature-full' |
+ 'temperature4' |
+ 'thermometer4' |
+ 'thermometer-full' |
+ 'bell' |
+ 'candy-bar' |
+ 'chocolate-bar' |
+ 'xmark-large' |
+ 'pinata' |
+ 'arrows-from-line' |
+ 'superscript' |
+ 'bowl-spoon' |
+ 'hexagon-check' |
+ 'plug-circle-xmark' |
+ 'star-of-life' |
+ 'phone-slash' |
+ 'traffic-light-stop' |
+ 'paint-roller' |
+ 'accent-grave' |
+ 'handshake-angle' |
+ 'hands-helping' |
+ 'circle-0' |
+ 'dial-med-low' |
+ 'location-dot' |
+ 'map-marker-alt' |
+ 'crab' |
+ 'box-open-full' |
+ 'box-full' |
+ 'file' |
+ 'greater-than' |
+ 'quotes' |
+ 'pretzel' |
+ 'person-swimming' |
+ 'swimmer' |
+ 'arrow-down' |
+ 'user-robot-xmarks' |
+ 'message-quote' |
+ 'comment-alt-quote' |
+ 'candy-corn' |
+ 'folder-magnifying-glass' |
+ 'folder-search' |
+ 'notebook' |
+ 'droplet' |
+ 'tint' |
+ 'bullseye-pointer' |
+ 'eraser' |
+ 'hexagon-image' |
+ 'earth-americas' |
+ 'earth' |
+ 'earth-america' |
+ 'globe-americas' |
+ 'crate-apple' |
+ 'apple-crate' |
+ 'person-burst' |
+ 'game-board' |
+ 'hat-chef' |
+ 'hand-back-point-right' |
+ 'dove' |
+ 'snowflake-droplets' |
+ 'battery-empty' |
+ 'battery0' |
+ 'grid-4' |
+ 'socks' |
+ 'face-sunglasses' |
+ 'inbox' |
+ 'square-0' |
+ 'section' |
+ 'square-this-way-up' |
+ 'box-up' |
+ 'gauge-high' |
+ 'tachometer-alt' |
+ 'tachometer-alt-fast' |
+ 'square-ampersand' |
+ 'envelope-open-text' |
+ 'lamp-desk' |
+ 'hospital' |
+ 'hospital-alt' |
+ 'hospital-wide' |
+ 'poll-people' |
+ 'whiskey-glass-ice' |
+ 'glass-whiskey-rocks' |
+ 'wine-bottle' |
+ 'chess-rook' |
+ 'user-bounty-hunter' |
+ 'bars-staggered' |
+ 'reorder' |
+ 'stream' |
+ 'diagram-sankey' |
+ 'cloud-hail-mixed' |
+ 'circle-up-left' |
+ 'dharmachakra' |
+ 'objects-align-left' |
+ 'oil-can-drip' |
+ 'face-smiling-hands' |
+ 'broccoli' |
+ 'route-interstate' |
+ 'ear-muffs' |
+ 'hotdog' |
+ 'transporter-empty' |
+ 'person-walking-with-cane' |
+ 'blind' |
+ 'angle-90' |
+ 'rectangle-terminal' |
+ 'kite' |
+ 'drum' |
+ 'scrubber' |
+ 'ice-cream' |
+ 'heart-circle-bolt' |
+ 'fish-bones' |
+ 'deer-rudolph' |
+ 'fax' |
+ 'paragraph' |
+ 'head-side-heart' |
+ 'square-e' |
+ 'meter-fire' |
+ 'cloud-hail' |
+ 'check-to-slot' |
+ 'vote-yea' |
+ 'money-from-bracket' |
+ 'star-half' |
+ 'car-bus' |
+ 'speaker' |
+ 'timer' |
+ 'boxes-stacked' |
+ 'boxes' |
+ 'boxes-alt' |
+ 'grill-hot' |
+ 'ballot-check' |
+ 'link' |
+ 'chain' |
+ 'ear-listen' |
+ 'assistive-listening-systems' |
+ 'file-minus' |
+ 'tree-city' |
+ 'play' |
+ 'font' |
+ 'cup-togo' |
+ 'coffee-togo' |
+ 'square-down-left' |
+ 'burger-lettuce' |
+ 'rupiah-sign' |
+ 'magnifying-glass' |
+ 'search' |
+ 'table-tennis-paddle-ball' |
+ 'ping-pong-paddle-ball' |
+ 'table-tennis' |
+ 'person-dots-from-line' |
+ 'diagnoses' |
+ 'chevrons-down' |
+ 'chevron-double-down' |
+ 'trash-can-arrow-up' |
+ 'trash-restore-alt' |
+ 'signal-good' |
+ 'signal3' |
+ 'location-question' |
+ 'map-marker-question' |
+ 'floppy-disk-circle-xmark' |
+ 'floppy-disk-times' |
+ 'save-circle-xmark' |
+ 'save-times' |
+ 'naira-sign' |
+ 'peach' |
+ 'taxi-bus' |
+ 'bracket-curly' |
+ 'bracket-curly-left' |
+ 'lobster' |
+ 'cart-flatbed-empty' |
+ 'dolly-flatbed-empty' |
+ 'colon' |
+ 'cart-arrow-down' |
+ 'wand' |
+ 'walkie-talkie' |
+ 'file-pen' |
+ 'file-edit' |
+ 'receipt' |
+ 'table-picnic' |
+ 'square-pen' |
+ 'pen-square' |
+ 'pencil-square' |
+ 'circle-microphone-lines' |
+ 'microphone-circle-alt' |
+ 'display-slash' |
+ 'desktop-slash' |
+ 'suitcase-rolling' |
+ 'person-circle-exclamation' |
+ 'transporter-2' |
+ 'hands-holding-diamond' |
+ 'hand-receiving' |
+ 'money-bill-simple-wave' |
+ 'chevron-down' |
+ 'battery-full' |
+ 'battery' |
+ 'battery5' |
+ 'bell-plus' |
+ 'book-arrow-right' |
+ 'hospitals' |
+ 'club' |
+ 'skull-crossbones' |
+ 'droplet-degree' |
+ 'dewpoint' |
+ 'code-compare' |
+ 'list-ul' |
+ 'list-dots' |
+ 'hand-holding-magic' |
+ 'watermelon-slice' |
+ 'circle-ellipsis' |
+ 'school-lock' |
+ 'tower-cell' |
+ 'sd-cards' |
+ 'jug-bottle' |
+ 'down-long' |
+ 'long-arrow-alt-down' |
+ 'envelopes' |
+ 'phone-office' |
+ 'ranking-star' |
+ 'chess-king' |
+ 'nfc-pen' |
+ 'person-harassing' |
+ 'hat-winter' |
+ 'brazilian-real-sign' |
+ 'landmark-dome' |
+ 'landmark-alt' |
+ 'bone-break' |
+ 'arrow-up' |
+ 'down-from-dotted-line' |
+ 'tv' |
+ 'television' |
+ 'tv-alt' |
+ 'border-left' |
+ 'circle-divide' |
+ 'shrimp' |
+ 'list-check' |
+ 'tasks' |
+ 'diagram-subtask' |
+ 'jug-detergent' |
+ 'circle-user' |
+ 'user-circle' |
+ 'square-y' |
+ 'user-doctor-hair' |
+ 'planet-ringed' |
+ 'mushroom' |
+ 'user-shield' |
+ 'megaphone' |
+ 'wreath-laurel' |
+ 'circle-exclamation-check' |
+ 'wind' |
+ 'box-dollar' |
+ 'box-usd' |
+ 'car-burst' |
+ 'car-crash' |
+ 'y' |
+ 'user-headset' |
+ 'arrows-retweet' |
+ 'retweet-alt' |
+ 'person-snowboarding' |
+ 'snowboarding' |
+ 'square-chevron-right' |
+ 'chevron-square-right' |
+ 'lacrosse-stick-ball' |
+ 'truck-fast' |
+ 'shipping-fast' |
+ 'user-magnifying-glass' |
+ 'star-sharp' |
+ 'comment-heart' |
+ 'circle-1' |
+ 'circle-star' |
+ 'star-circle' |
+ 'fish' |
+ 'cloud-fog' |
+ 'fog' |
+ 'waffle' |
+ 'music-note' |
+ 'music-alt' |
+ 'hexagon-exclamation' |
+ 'cart-shopping-fast' |
+ 'object-union' |
+ 'user-graduate' |
+ 'starfighter' |
+ 'circle-half-stroke' |
+ 'adjust' |
+ 'arrow-right-long-to-line' |
+ 'square-arrow-down' |
+ 'arrow-square-down' |
+ 'diamond-half-stroke' |
+ 'clapperboard' |
+ 'square-chevron-left' |
+ 'chevron-square-left' |
+ 'phone-intercom' |
+ 'link-horizontal' |
+ 'chain-horizontal' |
+ 'mango' |
+ 'music-note-slash' |
+ 'music-alt-slash' |
+ 'circle-radiation' |
+ 'radiation-alt' |
+ 'face-tongue-sweat' |
+ 'globe-stand' |
+ 'baseball' |
+ 'baseball-ball' |
+ 'circle-p' |
+ 'award-simple' |
+ 'jet-fighter-up' |
+ 'diagram-project' |
+ 'project-diagram' |
+ 'pedestal' |
+ 'chart-pyramid' |
+ 'sidebar' |
+ 'snowman-head' |
+ 'frosty-head' |
+ 'copy' |
+ 'burger-glass' |
+ 'volume-xmark' |
+ 'volume-mute' |
+ 'volume-times' |
+ 'hand-sparkles' |
+ 'bars-filter' |
+ 'paintbrush-pencil' |
+ 'party-bell' |
+ 'user-vneck-hair' |
+ 'jack-o-lantern' |
+ 'grip' |
+ 'grip-horizontal' |
+ 'share-from-square' |
+ 'share-square' |
+ 'keynote' |
+ 'child-combatant' |
+ 'child-rifle' |
+ 'gun' |
+ 'square-phone' |
+ 'phone-square' |
+ 'hat-beach' |
+ 'plus' |
+ 'add' |
+ 'expand' |
+ 'computer' |
+ 'fort' |
+ 'cloud-check' |
+ 'xmark' |
+ 'close' |
+ 'multiply' |
+ 'remove' |
+ 'times' |
+ 'face-smirking' |
+ 'arrows-up-down-left-right' |
+ 'arrows' |
+ 'chalkboard-user' |
+ 'chalkboard-teacher' |
+ 'rhombus' |
+ 'claw-marks' |
+ 'peso-sign' |
+ 'face-smile-tongue' |
+ 'cart-circle-xmark' |
+ 'building-shield' |
+ 'circle-phone-flip' |
+ 'phone-circle-alt' |
+ 'baby' |
+ 'users-line' |
+ 'quote-left' |
+ 'quote-left-alt' |
+ 'tractor' |
+ 'key-skeleton' |
+ 'trash-arrow-up' |
+ 'trash-restore' |
+ 'arrow-down-up-lock' |
+ 'arrow-down-to-bracket' |
+ 'lines-leaning' |
+ 'square-q' |
+ 'ruler-combined' |
+ 'symbols' |
+ 'icons-alt' |
+ 'copyright' |
+ 'flask-gear' |
+ 'highlighter-line' |
+ 'bracket-square' |
+ 'bracket' |
+ 'bracket-left' |
+ 'island-tropical' |
+ 'island-tree-palm' |
+ 'arrow-right-from-line' |
+ 'arrow-from-left' |
+ 'h2' |
+ 'equals' |
+ 'cake-slice' |
+ 'shortcake' |
+ 'peanut' |
+ 'wrench-simple' |
+ 'blender' |
+ 'teeth' |
+ 'tally-2' |
+ 'shekel-sign' |
+ 'ils' |
+ 'shekel' |
+ 'sheqel' |
+ 'sheqel-sign' |
+ 'cars' |
+ 'axe-battle' |
+ 'user-hair-long' |
+ 'map' |
+ 'file-circle-info' |
+ 'face-disappointed' |
+ 'lasso-sparkles' |
+ 'clock-eleven' |
+ 'rocket' |
+ 'siren-on' |
+ 'clock-ten' |
+ 'candle-holder' |
+ 'video-arrow-down-left' |
+ 'photo-film' |
+ 'photo-video' |
+ 'floppy-disk-circle-arrow-right' |
+ 'save-circle-arrow-right' |
+ 'folder-minus' |
+ 'planet-moon' |
+ 'face-eyes-xmarks' |
+ 'chart-scatter' |
+ 'display-arrow-down' |
+ 'store' |
+ 'arrow-trend-up' |
+ 'plug-circle-minus' |
+ 'olive-branch' |
+ 'angle' |
+ 'vacuum-robot' |
+ 'sign-hanging' |
+ 'sign' |
+ 'square-divide' |
+ 'signal-stream-slash' |
+ 'bezier-curve' |
+ 'eye-dropper-half' |
+ 'store-lock' |
+ 'bell-slash' |
+ 'cloud-bolt-sun' |
+ 'thunderstorm-sun' |
+ 'camera-slash' |
+ 'comment-quote' |
+ 'tablet' |
+ 'tablet-android' |
+ 'school-flag' |
+ 'message-code' |
+ 'glass-half' |
+ 'glass-half-empty' |
+ 'glass-half-full' |
+ 'fill' |
+ 'message-minus' |
+ 'comment-alt-minus' |
+ 'angle-up' |
+ 'dinosaur' |
+ 'drumstick-bite' |
+ 'link-horizontal-slash' |
+ 'chain-horizontal-slash' |
+ 'holly-berry' |
+ 'nose' |
+ 'chevron-left' |
+ 'bacteria' |
+ 'clouds' |
+ 'money-bill-simple' |
+ 'hand-lizard' |
+ 'table-pivot' |
+ 'filter-slash' |
+ 'trash-can-undo' |
+ 'trash-can-arrow-turn-left' |
+ 'trash-undo-alt' |
+ 'notdef' |
+ 'disease' |
+ 'person-to-door' |
+ 'turntable' |
+ 'briefcase-medical' |
+ 'genderless' |
+ 'chevron-right' |
+ 'signal-weak' |
+ 'signal1' |
+ 'clock-five' |
+ 'retweet' |
+ 'car-rear' |
+ 'car-alt' |
+ 'pump-soap' |
+ 'computer-classic' |
+ 'frame' |
+ 'video-slash' |
+ 'battery-quarter' |
+ 'battery2' |
+ 'ellipsis-stroke' |
+ 'ellipsis-h-alt' |
+ 'radio' |
+ 'baby-carriage' |
+ 'carriage-baby' |
+ 'face-expressionless' |
+ 'down-to-dotted-line' |
+ 'cloud-music' |
+ 'traffic-light' |
+ 'cloud-minus' |
+ 'thermometer' |
+ 'shield-minus' |
+ 'vr-cardboard' |
+ 'car-tilt' |
+ 'gauge-circle-minus' |
+ 'brightness-low' |
+ 'hand-middle-finger' |
+ 'percent' |
+ 'percentage' |
+ 'truck-moving' |
+ 'glass-water-droplet' |
+ 'conveyor-belt' |
+ 'location-check' |
+ 'map-marker-check' |
+ 'coin-vertical' |
+ 'display' |
+ 'person-sign' |
+ 'face-smile' |
+ 'smile' |
+ 'phone-hangup' |
+ 'signature-slash' |
+ 'thumbtack' |
+ 'thumb-tack' |
+ 'wheat-slash' |
+ 'trophy' |
+ 'clouds-sun' |
+ 'person-praying' |
+ 'pray' |
+ 'hammer' |
+ 'face-vomit' |
+ 'speakers' |
+ 'tty-answer' |
+ 'teletype-answer' |
+ 'mug-tea-saucer' |
+ 'diagram-lean-canvas' |
+ 'alt' |
+ 'dial' |
+ 'dial-med-high' |
+ 'hand-peace' |
+ 'circle-trash' |
+ 'trash-circle' |
+ 'rotate' |
+ 'sync-alt' |
+ 'circle-quarters' |
+ 'spinner' |
+ 'tower-control' |
+ 'arrow-up-triangle-square' |
+ 'sort-shapes-up' |
+ 'whale' |
+ 'robot' |
+ 'peace' |
+ 'party-horn' |
+ 'gears' |
+ 'cogs' |
+ 'sun-bright' |
+ 'sun-alt' |
+ 'warehouse' |
+ 'conveyor-belt-arm' |
+ 'lock-keyhole-open' |
+ 'lock-open-alt' |
+ 'square-fragile' |
+ 'box-fragile' |
+ 'square-wine-glass-crack' |
+ 'arrow-up-right-dots' |
+ 'square-n' |
+ 'splotch' |
+ 'face-grin-hearts' |
+ 'grin-hearts' |
+ 'meter' |
+ 'mandolin' |
+ 'dice-four' |
+ 'sim-card' |
+ 'transgender' |
+ 'transgender-alt' |
+ 'mercury' |
+ 'up-from-bracket' |
+ 'knife-kitchen' |
+ 'border-right' |
+ 'arrow-turn-down' |
+ 'level-down' |
+ 'spade' |
+ 'card-spade' |
+ 'line-columns' |
+ 'arrow-right-to-line' |
+ 'arrow-to-right' |
+ 'person-falling-burst' |
+ 'flag-pennant' |
+ 'pennant' |
+ 'conveyor-belt-empty' |
+ 'user-group-simple' |
+ 'award' |
+ 'ticket-simple' |
+ 'ticket-alt' |
+ 'building' |
+ 'angles-left' |
+ 'angle-double-left' |
+ 'camcorder' |
+ 'video-handheld' |
+ 'pancakes' |
+ 'album-circle-user' |
+ 'qrcode' |
+ 'dice-d10' |
+ 'fireplace' |
+ 'browser' |
+ 'pen-paintbrush' |
+ 'pencil-paintbrush' |
+ 'fish-cooked' |
+ 'chair-office' |
+ 'nesting-dolls' |
+ 'clock-rotate-left' |
+ 'history' |
+ 'trumpet' |
+ 'face-grin-beam-sweat' |
+ 'grin-beam-sweat' |
+ 'fire-smoke' |
+ 'phone-missed' |
+ 'file-export' |
+ 'arrow-right-from-file' |
+ 'shield' |
+ 'shield-blank' |
+ 'arrow-up-short-wide' |
+ 'sort-amount-up-alt' |
+ 'arrows-repeat-1' |
+ 'repeat1-alt' |
+ 'gun-slash' |
+ 'avocado' |
+ 'binary' |
+ 'glasses-round' |
+ 'glasses-alt' |
+ 'phone-plus' |
+ 'ditto' |
+ 'person-seat' |
+ 'house-medical' |
+ 'golf-ball-tee' |
+ 'golf-ball' |
+ 'circle-chevron-left' |
+ 'chevron-circle-left' |
+ 'house-chimney-window' |
+ 'scythe' |
+ 'pen-nib' |
+ 'ban-parking' |
+ 'parking-circle-slash' |
+ 'tent-arrow-turn-left' |
+ 'face-diagonal-mouth' |
+ 'diagram-cells' |
+ 'cricket-bat-ball' |
+ 'cricket' |
+ 'tents' |
+ 'wand-magic' |
+ 'magic' |
+ 'dog' |
+ 'pen-line' |
+ 'atom-simple' |
+ 'atom-alt' |
+ 'ampersand' |
+ 'carrot' |
+ 'arrow-up-from-line' |
+ 'arrow-from-bottom' |
+ 'moon' |
+ 'pen-slash' |
+ 'wine-glass-empty' |
+ 'wine-glass-alt' |
+ 'square-star' |
+ 'cheese' |
+ 'send-backward' |
+ 'yin-yang' |
+ 'music' |
+ 'compass-slash' |
+ 'clock-one' |
+ 'file-music' |
+ 'code-commit' |
+ 'temperature-low' |
+ 'person-biking' |
+ 'biking' |
+ 'display-chart-up-circle-currency' |
+ 'skeleton' |
+ 'circle-g' |
+ 'circle-arrow-up-left' |
+ 'coin-blank' |
+ 'broom' |
+ 'vacuum' |
+ 'shield-heart' |
+ 'card-heart' |
+ 'lightbulb-cfl-on' |
+ 'melon' |
+ 'gopuram' |
+ 'earth-oceania' |
+ 'globe-oceania' |
+ 'container-storage' |
+ 'face-pouting' |
+ 'square-xmark' |
+ 'times-square' |
+ 'xmark-square' |
+ 'face-explode' |
+ 'exploding-head' |
+ 'hashtag' |
+ 'up-right-and-down-left-from-center' |
+ 'expand-alt' |
+ 'oil-can' |
+ 't' |
+ 'transformer-bolt' |
+ 'hippo' |
+ 'chart-column' |
+ 'cassette-vhs' |
+ 'vhs' |
+ 'infinity' |
+ 'vial-circle-check' |
+ 'chimney' |
+ 'object-intersect' |
+ 'person-arrow-down-to-line' |
+ 'voicemail' |
+ 'block-brick' |
+ 'wall-brick' |
+ 'fan' |
+ 'bags-shopping' |
+ 'paragraph-left' |
+ 'paragraph-rtl' |
+ 'person-walking-luggage' |
+ 'caravan-simple' |
+ 'caravan-alt' |
+ 'turtle' |
+ 'pencil-mechanical' |
+ 'up-down' |
+ 'arrows-alt-v' |
+ 'cloud-moon-rain' |
+ 'booth-curtain' |
+ 'calendar' |
+ 'box-heart' |
+ 'trailer' |
+ 'user-doctor-message' |
+ 'user-md-chat' |
+ 'bahai' |
+ 'haykal' |
+ 'amp-guitar' |
+ 'sd-card' |
+ 'volume-slash' |
+ 'border-bottom' |
+ 'wifi-weak' |
+ 'wifi1' |
+ 'dragon' |
+ 'shoe-prints' |
+ 'circle-plus' |
+ 'plus-circle' |
+ 'face-grin-tongue-wink' |
+ 'grin-tongue-wink' |
+ 'hand-holding' |
+ 'plug-circle-exclamation' |
+ 'link-slash' |
+ 'chain-broken' |
+ 'chain-slash' |
+ 'unlink' |
+ 'clone' |
+ 'person-walking-arrow-loop-left' |
+ 'arrow-up-z-a' |
+ 'sort-alpha-up-alt' |
+ 'fire-flame-curved' |
+ 'fire-alt' |
+ 'tornado' |
+ 'file-circle-plus' |
+ 'delete-right' |
+ 'book-quran' |
+ 'quran' |
+ 'circle-quarter' |
+ 'anchor' |
+ 'border-all' |
+ 'function' |
+ 'face-angry' |
+ 'angry' |
+ 'people-simple' |
+ 'cookie-bite' |
+ 'arrow-trend-down' |
+ 'rss' |
+ 'feed' |
+ 'face-monocle' |
+ 'draw-polygon' |
+ 'scale-balanced' |
+ 'balance-scale' |
+ 'calendar-lines' |
+ 'calendar-note' |
+ 'arrow-down-big-small' |
+ 'sort-size-down' |
+ 'gauge-simple-high' |
+ 'tachometer' |
+ 'tachometer-fast' |
+ 'do-not-enter' |
+ 'shower' |
+ 'dice-d8' |
+ 'desktop' |
+ 'desktop-alt' |
+ 'm' |
+ 'grip-dots-vertical' |
+ 'face-viewfinder' |
+ 'soft-serve' |
+ 'creemee' |
+ 'h5' |
+ 'hand-back-point-down' |
+ 'table-list' |
+ 'th-list' |
+ 'comment-sms' |
+ 'sms' |
+ 'rectangle' |
+ 'rectangle-landscape' |
+ 'clipboard-list-check' |
+ 'turkey' |
+ 'book' |
+ 'user-plus' |
+ 'ice-skate' |
+ 'check' |
+ 'battery-three-quarters' |
+ 'battery4' |
+ 'tomato' |
+ 'sword-laser' |
+ 'house-circle-check' |
+ 'buildings' |
+ 'angle-left' |
+ 'cart-flatbed-boxes' |
+ 'dolly-flatbed-alt' |
+ 'diagram-successor' |
+ 'truck-arrow-right' |
+ 'square-w' |
+ 'arrows-split-up-and-left' |
+ 'lamp' |
+ 'airplay' |
+ 'hand-fist' |
+ 'fist-raised' |
+ 'shield-quartered' |
+ 'slash-forward' |
+ 'location-pen' |
+ 'map-marker-edit' |
+ 'cloud-moon' |
+ 'pot-food' |
+ 'briefcase' |
+ 'person-falling' |
+ 'image-portrait' |
+ 'portrait' |
+ 'user-tag' |
+ 'rug' |
+ 'print-slash' |
+ 'earth-europe' |
+ 'globe-europe' |
+ 'cart-flatbed-suitcase' |
+ 'luggage-cart' |
+ 'hand-back-point-ribbon' |
+ 'rectangle-xmark' |
+ 'rectangle-times' |
+ 'times-rectangle' |
+ 'window-close' |
+ 'tire-rugged' |
+ 'lightbulb-dollar' |
+ 'cowbell' |
+ 'baht-sign' |
+ 'corner' |
+ 'chevrons-right' |
+ 'chevron-double-right' |
+ 'book-open' |
+ 'book-journal-whills' |
+ 'journal-whills' |
+ 'inhaler' |
+ 'handcuffs' |
+ 'snake' |
+ 'triangle-exclamation' |
+ 'exclamation-triangle' |
+ 'warning' |
+ 'note-medical' |
+ 'database' |
+ 'down-left' |
+ 'share' |
+ 'arrow-turn-right' |
+ 'mail-forward' |
+ 'face-thinking' |
+ 'turn-down-right' |
+ 'bottle-droplet' |
+ 'mask-face' |
+ 'hill-rockslide' |
+ 'scanner-keyboard' |
+ 'circle-o' |
+ 'grid-horizontal' |
+ 'message-dollar' |
+ 'comment-alt-dollar' |
+ 'right-left' |
+ 'exchange-alt' |
+ 'columns-3' |
+ 'paper-plane' |
+ 'road-circle-exclamation' |
+ 'dungeon' |
+ 'hand-holding-box' |
+ 'input-text' |
+ 'window-flip' |
+ 'window-alt' |
+ 'align-right' |
+ 'scanner-gun' |
+ 'scanner' |
+ 'tire' |
+ 'engine' |
+ 'money-bill-1-wave' |
+ 'money-bill-wave-alt' |
+ 'life-ring' |
+ 'hands' |
+ 'sign-language' |
+ 'signing' |
+ 'circle-caret-right' |
+ 'caret-circle-right' |
+ 'wheat' |
+ 'file-spreadsheet' |
+ 'audio-description-slash' |
+ 'calendar-day' |
+ 'water-ladder' |
+ 'ladder-water' |
+ 'swimming-pool' |
+ 'arrows-up-down' |
+ 'arrows-v' |
+ 'chess-pawn-piece' |
+ 'chess-pawn-alt' |
+ 'face-grimace' |
+ 'grimace' |
+ 'wheelchair-move' |
+ 'wheelchair-alt' |
+ 'turn-down' |
+ 'level-down-alt' |
+ 'square-s' |
+ 'rectangle-barcode' |
+ 'barcode-alt' |
+ 'person-walking-arrow-right' |
+ 'square-envelope' |
+ 'envelope-square' |
+ 'dice' |
+ 'unicorn' |
+ 'bowling-ball' |
+ 'pompebled' |
+ 'brain' |
+ 'watch-smart' |
+ 'book-user' |
+ 'sensor-cloud' |
+ 'sensor-smoke' |
+ 'clapperboard-play' |
+ 'bandage' |
+ 'band-aid' |
+ 'calendar-minus' |
+ 'circle-xmark' |
+ 'times-circle' |
+ 'xmark-circle' |
+ 'circle-4' |
+ 'gifts' |
+ 'album-collection' |
+ 'hotel' |
+ 'earth-asia' |
+ 'globe-asia' |
+ 'id-card-clip' |
+ 'id-card-alt' |
+ 'magnifying-glass-plus' |
+ 'search-plus' |
+ 'thumbs-up' |
+ 'cloud-showers' |
+ 'user-clock' |
+ 'onion' |
+ 'clock-twelve-thirty' |
+ 'arrow-down-to-dotted-line' |
+ 'hand-dots' |
+ 'allergies' |
+ 'file-invoice' |
+ 'window-minimize' |
+ 'rectangle-wide' |
+ 'comment-arrow-up' |
+ 'garlic' |
+ 'mug-saucer' |
+ 'coffee' |
+ 'brush' |
+ 'tree-decorated' |
+ 'mask' |
+ 'calendar-heart' |
+ 'magnifying-glass-minus' |
+ 'search-minus' |
+ 'flower' |
+ 'right-left-large' |
+ 'ruler-vertical' |
+ 'circles-overlap' |
+ 'user-large' |
+ 'user-alt' |
+ 'starship-freighter' |
+ 'train-tram' |
+ 'bridge-suspension' |
+ 'trash-check' |
+ 'user-nurse' |
+ 'boombox' |
+ 'syringe' |
+ 'cloud-sun' |
+ 'shield-exclamation' |
+ 'stopwatch-20' |
+ 'square-full' |
+ 'grip-dots' |
+ 'comment-exclamation' |
+ 'pen-swirl' |
+ 'falafel' |
+ 'circle-2' |
+ 'magnet' |
+ 'jar' |
+ 'gramophone' |
+ 'dice-d12' |
+ 'note-sticky' |
+ 'sticky-note' |
+ 'down' |
+ 'arrow-alt-down' |
+ 'hundred-points' |
+ '100' |
+ 'paperclip-vertical' |
+ 'wind-warning' |
+ 'wind-circle-exclamation' |
+ 'location-pin-slash' |
+ 'map-marker-slash' |
+ 'face-sad-sweat' |
+ 'bug-slash' |
+ 'cupcake' |
+ 'light-switch-off' |
+ 'toggle-large-off' |
+ 'pen-fancy-slash' |
+ 'truck-container' |
+ 'boot' |
+ 'arrow-up-from-water-pump' |
+ 'file-check' |
+ 'bone' |
+ 'cards-blank' |
+ 'circle-3' |
+ 'bench-tree' |
+ 'keyboard-brightness-low' |
+ 'ski-boot-ski' |
+ 'brain-circuit' |
+ 'user-injured' |
+ 'block-brick-fire' |
+ 'firewall' |
+ 'face-sad-tear' |
+ 'sad-tear' |
+ 'plane' |
+ 'tent-arrows-down' |
+ 'exclamation' |
+ 'arrows-spin' |
+ 'face-smile-relaxed' |
+ 'comment-xmark' |
+ 'comment-times' |
+ 'print' |
+ 'turkish-lira-sign' |
+ 'try' |
+ 'turkish-lira' |
+ 'face-nose-steam' |
+ 'circle-waveform-lines' |
+ 'waveform-circle' |
+ 'dollar-sign' |
+ 'dollar' |
+ 'usd' |
+ 'ferris-wheel' |
+ 'computer-speaker' |
+ 'skull-cow' |
+ 'x' |
+ 'magnifying-glass-dollar' |
+ 'search-dollar' |
+ 'users-gear' |
+ 'users-cog' |
+ 'person-military-pointing' |
+ 'building-columns' |
+ 'bank' |
+ 'institution' |
+ 'museum' |
+ 'university' |
+ 'circle-t' |
+ 'sack' |
+ 'grid-2' |
+ 'camera-cctv' |
+ 'cctv' |
+ 'umbrella' |
+ 'trowel' |
+ 'horizontal-rule' |
+ 'bed-front' |
+ 'bed-alt' |
+ 'd' |
+ 'stapler' |
+ 'masks-theater' |
+ 'theater-masks' |
+ 'kip-sign' |
+ 'face-woozy' |
+ 'cloud-question' |
+ 'pineapple' |
+ 'hand-point-left' |
+ 'gallery-thumbnails' |
+ 'circle-j' |
+ 'eyes' |
+ 'handshake-simple' |
+ 'handshake-alt' |
+ 'page-caret-up' |
+ 'file-caret-up' |
+ 'jet-fighter' |
+ 'fighter-jet' |
+ 'comet' |
+ 'square-share-nodes' |
+ 'share-alt-square' |
+ 'shield-keyhole' |
+ 'barcode' |
+ 'plus-minus' |
+ 'square-sliders-vertical' |
+ 'sliders-v-square' |
+ 'video' |
+ 'video-camera' |
+ 'message-middle' |
+ 'comment-middle-alt' |
+ 'graduation-cap' |
+ 'mortar-board' |
+ 'hand-holding-medical' |
+ 'person-circle-check' |
+ 'square-z' |
+ 'message-text' |
+ 'comment-alt-text' |
+ 'turn-up' |
+ 'level-up-alt' |
+ '0' |
+ '1' |
+ '2' |
+ '3' |
+ '4' |
+ '5' |
+ '6' |
+ '7' |
+ '8' |
+ '9' |
+ 'fill-drip' |
+ 'arrows-to-circle' |
+ 'circle-chevron-right' |
+ 'chevron-circle-right' |
+ 'wagon-covered' |
+ 'line-height' |
+ 'bagel' |
+ 'transporter-7' |
+ 'at' |
+ 'rectangles-mixed' |
+ 'phone-arrow-up-right' |
+ 'phone-arrow-up' |
+ 'phone-outgoing' |
+ 'trash-can' |
+ 'trash-alt' |
+ 'circle-l' |
+ 'head-side-goggles' |
+ 'head-vr' |
+ 'text-height' |
+ 'user-xmark' |
+ 'user-times' |
+ 'face-hand-yawn' |
+ 'gauge-simple-min' |
+ 'tachometer-slowest' |
+ 'stethoscope' |
+ 'coffin' |
+ 'message' |
+ 'comment-alt' |
+ 'salad' |
+ 'bowl-salad' |
+ 'info' |
+ 'robot-astromech' |
+ 'ring-diamond' |
+ 'fondue-pot' |
+ 'theta' |
+ 'face-hand-peeking' |
+ 'square-user' |
+ 'down-left-and-up-right-to-center' |
+ 'compress-alt' |
+ 'explosion' |
+ 'file-lines' |
+ 'file-alt' |
+ 'file-text' |
+ 'wave-square' |
+ 'ring' |
+ 'building-un' |
+ 'dice-three' |
+ 'tire-pressure-warning' |
+ 'wifi-fair' |
+ 'wifi2' |
+ 'calendar-days' |
+ 'calendar-alt' |
+ 'mp3-player' |
+ 'anchor-circle-check' |
+ 'tally-4' |
+ 'rectangle-history' |
+ 'building-circle-arrow-right' |
+ 'volleyball' |
+ 'volleyball-ball' |
+ 'sun-haze' |
+ 'text-size' |
+ 'ufo' |
+ 'fork' |
+ 'utensil-fork' |
+ 'arrows-up-to-line' |
+ 'mobile-signal' |
+ 'barcode-scan' |
+ 'sort-down' |
+ 'sort-desc' |
+ 'folder-arrow-down' |
+ 'folder-download' |
+ 'circle-minus' |
+ 'minus-circle' |
+ 'face-icicles' |
+ 'shovel' |
+ 'door-open' |
+ 'films' |
+ 'right-from-bracket' |
+ 'sign-out-alt' |
+ 'face-glasses' |
+ 'nfc' |
+ 'atom' |
+ 'soap' |
+ 'icons' |
+ 'heart-music-camera-bolt' |
+ 'microphone-lines-slash' |
+ 'microphone-alt-slash' |
+ 'closed-captioning-slash' |
+ 'calculator-simple' |
+ 'calculator-alt' |
+ 'bridge-circle-check' |
+ 'sliders-up' |
+ 'sliders-v' |
+ 'location-minus' |
+ 'map-marker-minus' |
+ 'pump-medical' |
+ 'fingerprint' |
+ 'ski-boot' |
+ 'standard-definition' |
+ 'rectangle-sd' |
+ 'h1' |
+ 'hand-point-right' |
+ 'magnifying-glass-location' |
+ 'search-location' |
+ 'message-bot' |
+ 'forward-step' |
+ 'step-forward' |
+ 'face-smile-beam' |
+ 'smile-beam' |
+ 'light-ceiling' |
+ 'message-exclamation' |
+ 'comment-alt-exclamation' |
+ 'bowl-scoop' |
+ 'bowl-shaved-ice' |
+ 'square-x' |
+ 'utility-pole-double' |
+ 'flag-checkered' |
+ 'chevrons-up' |
+ 'chevron-double-up' |
+ 'football' |
+ 'football-ball' |
+ 'user-vneck' |
+ 'school-circle-exclamation' |
+ 'crop' |
+ 'angles-down' |
+ 'angle-double-down' |
+ 'users-rectangle' |
+ 'people-roof' |
+ 'square-arrow-right' |
+ 'arrow-square-right' |
+ 'location-plus' |
+ 'map-marker-plus' |
+ 'lightbulb-exclamation-on' |
+ 'people-line' |
+ 'beer-mug-empty' |
+ 'beer' |
+ 'crate-empty' |
+ 'diagram-predecessor' |
+ 'transporter' |
+ 'calendar-circle-user' |
+ 'arrow-up-long' |
+ 'long-arrow-up' |
+ 'person-carry-box' |
+ 'person-carry' |
+ 'fire-flame-simple' |
+ 'burn' |
+ 'person' |
+ 'male' |
+ 'laptop' |
+ 'file-csv' |
+ 'menorah' |
+ 'union' |
+ 'chevrons-left' |
+ 'chevron-double-left' |
+ 'circle-heart' |
+ 'heart-circle' |
+ 'truck-plane' |
+ 'record-vinyl' |
+ 'bring-forward' |
+ 'square-p' |
+ 'face-grin-stars' |
+ 'grin-stars' |
+ 'sigma' |
+ 'camera-movie' |
+ 'bong' |
+ 'clarinet' |
+ 'truck-flatbed' |
+ 'spaghetti-monster-flying' |
+ 'pastafarianism' |
+ 'arrow-down-up-across-line' |
+ 'leaf-heart' |
+ 'house-building' |
+ 'cheese-swiss' |
+ 'spoon' |
+ 'utensil-spoon' |
+ 'jar-wheat' |
+ 'envelopes-bulk' |
+ 'mail-bulk' |
+ 'file-circle-exclamation' |
+ 'bow-arrow' |
+ 'cart-xmark' |
+ 'hexagon-xmark' |
+ 'times-hexagon' |
+ 'xmark-hexagon' |
+ 'circle-h' |
+ 'hospital-symbol' |
+ 'merge' |
+ 'pager' |
+ 'cart-minus' |
+ 'address-book' |
+ 'contact-book' |
+ 'pan-frying' |
+ 'grid' |
+ 'grid3' |
+ 'football-helmet' |
+ 'hand-love' |
+ 'trees' |
+ 'strikethrough' |
+ 'page' |
+ 'k' |
+ 'diagram-previous' |
+ 'gauge-min' |
+ 'tachometer-alt-slowest' |
+ 'folder-grid' |
+ 'eggplant' |
+ 'ram' |
+ 'landmark-flag' |
+ 'lips' |
+ 'pencil' |
+ 'pencil-alt' |
+ 'backward' |
+ 'caret-right' |
+ 'comments' |
+ 'paste' |
+ 'file-clipboard' |
+ 'desktop-arrow-down' |
+ 'code-pull-request' |
+ 'pumpkin' |
+ 'clipboard-list' |
+ 'pen-field' |
+ 'blueberries' |
+ 'truck-ramp-box' |
+ 'truck-loading' |
+ 'note' |
+ 'arrow-down-to-square' |
+ 'user-check' |
+ 'cloud-xmark' |
+ 'vial-virus' |
+ 'book-blank' |
+ 'book-alt' |
+ 'golf-flag-hole' |
+ 'message-arrow-down' |
+ 'comment-alt-arrow-down' |
+ 'face-unamused' |
+ 'sheet-plastic' |
+ 'circle-9' |
+ 'blog' |
+ 'user-ninja' |
+ 'pencil-slash' |
+ 'bowling-pins' |
+ 'person-arrow-up-from-line' |
+ 'down-right' |
+ 'scroll-torah' |
+ 'torah' |
+ 'webhook' |
+ 'blinds-open' |
+ 'fence' |
+ 'up' |
+ 'arrow-alt-up' |
+ 'broom-ball' |
+ 'quidditch' |
+ 'quidditch-broom-ball' |
+ 'drumstick' |
+ 'square-v' |
+ 'face-awesome' |
+ 'gave-dandy' |
+ 'dial-off' |
+ 'toggle-off' |
+ 'face-smile-horns' |
+ 'box-archive' |
+ 'archive' |
+ 'grapes' |
+ 'person-drowning' |
+ 'dial-max' |
+ 'circle-m' |
+ 'calendar-image' |
+ 'circle-caret-down' |
+ 'caret-circle-down' |
+ 'arrow-down-9-1' |
+ 'sort-numeric-desc' |
+ 'sort-numeric-down-alt' |
+ 'face-grin-tongue-squint' |
+ 'grin-tongue-squint' |
+ 'shish-kebab' |
+ 'spray-can' |
+ 'alarm-snooze' |
+ 'scarecrow' |
+ 'truck-monster' |
+ 'gift-card' |
+ 'w' |
+ 'code-pull-request-draft' |
+ 'square-b' |
+ 'elephant' |
+ 'earth-africa' |
+ 'globe-africa' |
+ 'rainbow' |
+ 'circle-notch' |
+ 'tablet-screen-button' |
+ 'tablet-alt' |
+ 'paw' |
+ 'message-question' |
+ 'cloud' |
+ 'trowel-bricks' |
+ 'square-3' |
+ 'face-flushed' |
+ 'flushed' |
+ 'hospital-user' |
+ 'microwave' |
+ 'chf-sign' |
+ 'tent-arrow-left-right' |
+ 'cart-circle-arrow-up' |
+ 'trash-clock' |
+ 'gavel' |
+ 'legal' |
+ 'sprinkler-ceiling' |
+ 'browsers' |
+ 'trillium' |
+ 'music-slash' |
+ 'truck-ramp' |
+ 'binoculars' |
+ 'microphone-slash' |
+ 'box-tissue' |
+ 'circle-c' |
+ 'star-christmas' |
+ 'chart-bullet' |
+ 'motorcycle' |
+ 'tree-christmas' |
+ 'tire-flat' |
+ 'sunglasses' |
+ 'badge' |
+ 'message-pen' |
+ 'comment-alt-edit' |
+ 'message-edit' |
+ 'bell-concierge' |
+ 'concierge-bell' |
+ 'pen-ruler' |
+ 'pencil-ruler' |
+ 'arrow-progress' |
+ 'chess-rook-piece' |
+ 'chess-rook-alt' |
+ 'square-root' |
+ 'album-collection-circle-plus' |
+ 'people-arrows' |
+ 'people-arrows-left-right' |
+ 'face-angry-horns' |
+ 'mars-and-venus-burst' |
+ 'tombstone' |
+ 'square-caret-right' |
+ 'caret-square-right' |
+ 'scissors' |
+ 'cut' |
+ 'list-music' |
+ 'sun-plant-wilt' |
+ 'toilets-portable' |
+ 'hockey-puck' |
+ 'mustache' |
+ 'hyphen' |
+ 'table' |
+ 'user-chef' |
+ 'message-image' |
+ 'comment-alt-image' |
+ 'users-medical' |
+ 'sensor-triangle-exclamation' |
+ 'sensor-alert' |
+ 'magnifying-glass-arrow-right' |
+ 'tachograph-digital' |
+ 'digital-tachograph' |
+ 'face-mask' |
+ 'pickleball' |
+ 'star-sharp-half' |
+ 'users-slash' |
+ 'clover' |
+ 'meat' |
+ 'reply' |
+ 'mail-reply' |
+ 'star-and-crescent' |
+ 'empty-set' |
+ 'house-fire' |
+ 'square-minus' |
+ 'minus-square' |
+ 'helicopter' |
+ 'bird' |
+ 'compass' |
+ 'square-caret-down' |
+ 'caret-square-down' |
+ 'heart-half-stroke' |
+ 'heart-half-alt' |
+ 'file-circle-question' |
+ 'laptop-code' |
+ 'joystick' |
+ 'grill-fire' |
+ 'rectangle-vertical-history' |
+ 'swatchbook' |
+ 'prescription-bottle' |
+ 'bars' |
+ 'navicon' |
+ 'keyboard-left' |
+ 'people-group' |
+ 'hourglass-end' |
+ 'hourglass3' |
+ 'heart-crack' |
+ 'heart-broken' |
+ 'face-beam-hand-over-mouth' |
+ 'droplet-percent' |
+ 'humidity' |
+ 'square-up-right' |
+ 'external-link-square-alt' |
+ 'face-kiss-beam' |
+ 'kiss-beam' |
+ 'corn' |
+ 'roller-coaster' |
+ 'photo-film-music' |
+ 'radar' |
+ 'sickle' |
+ 'film' |
+ 'coconut' |
+ 'ruler-horizontal' |
+ 'shield-cross' |
+ 'cassette-tape' |
+ 'square-terminal' |
+ 'people-robbery' |
+ 'lightbulb' |
+ 'caret-left' |
+ 'comment-middle' |
+ 'trash-can-list' |
+ 'block' |
+ 'circle-exclamation' |
+ 'exclamation-circle' |
+ 'school-circle-xmark' |
+ 'arrow-right-from-bracket' |
+ 'sign-out' |
+ 'face-frown-slight' |
+ 'circle-chevron-down' |
+ 'chevron-circle-down' |
+ 'sidebar-flip' |
+ 'unlock-keyhole' |
+ 'unlock-alt' |
+ 'temperature-list' |
+ 'cloud-showers-heavy' |
+ 'headphones-simple' |
+ 'headphones-alt' |
+ 'sitemap' |
+ 'pipe-section' |
+ 'space-station-moon-construction' |
+ 'space-station-moon-alt' |
+ 'circle-dollar-to-slot' |
+ 'donate' |
+ 'memory' |
+ 'face-sleeping' |
+ 'road-spikes' |
+ 'fire-burner' |
+ 'squirrel' |
+ 'arrow-up-to-line' |
+ 'arrow-to-top' |
+ 'flag' |
+ 'face-cowboy-hat' |
+ 'hanukiah' |
+ 'chart-scatter-3d' |
+ 'display-chart-up' |
+ 'square-code' |
+ 'feather' |
+ 'volume-low' |
+ 'volume-down' |
+ 'xmark-to-slot' |
+ 'times-to-slot' |
+ 'vote-nay' |
+ 'box-taped' |
+ 'box-alt' |
+ 'comment-slash' |
+ 'swords' |
+ 'cloud-sun-rain' |
+ 'album' |
+ 'circle-n' |
+ 'compress' |
+ 'wheat-awn' |
+ 'wheat-alt' |
+ 'ankh' |
+ 'hands-holding-child' |
+ 'asterisk' |
+ 'key-skeleton-left-right' |
+ 'comment-lines' |
+ 'luchador-mask' |
+ 'luchador' |
+ 'mask-luchador' |
+ 'square-check' |
+ 'check-square' |
+ 'shredder' |
+ 'book-open-cover' |
+ 'book-open-alt' |
+ 'sandwich' |
+ 'peseta-sign' |
+ 'square-parking-slash' |
+ 'parking-slash' |
+ 'train-tunnel' |
+ 'heading' |
+ 'header' |
+ 'ghost' |
+ 'face-anguished' |
+ 'hockey-sticks' |
+ 'abacus' |
+ 'film-simple' |
+ 'film-alt' |
+ 'list' |
+ 'list-squares' |
+ 'tree-palm' |
+ 'square-phone-flip' |
+ 'phone-square-alt' |
+ 'cart-plus' |
+ 'gamepad' |
+ 'border-center-v' |
+ 'circle-dot' |
+ 'dot-circle' |
+ 'clipboard-medical' |
+ 'face-dizzy' |
+ 'dizzy' |
+ 'egg' |
+ 'up-to-line' |
+ 'arrow-alt-to-top' |
+ 'house-medical-circle-xmark' |
+ 'watch-fitness' |
+ 'clock-nine-thirty' |
+ 'campground' |
+ 'folder-plus' |
+ 'jug' |
+ 'futbol' |
+ 'futbol-ball' |
+ 'soccer-ball' |
+ 'snow-blowing' |
+ 'paintbrush' |
+ 'paint-brush' |
+ 'lock' |
+ 'arrow-down-from-line' |
+ 'arrow-from-top' |
+ 'gas-pump' |
+ 'signal-bars-slash' |
+ 'signal-alt-slash' |
+ 'monkey' |
+ 'rectangle-pro' |
+ 'pro' |
+ 'house-night' |
+ 'hot-tub-person' |
+ 'hot-tub' |
+ 'blanket' |
+ 'map-location' |
+ 'map-marked' |
+ 'house-flood-water' |
+ 'comments-question-check' |
+ 'tree' |
+ 'arrows-cross' |
+ 'backpack' |
+ 'square-small' |
+ 'folder-arrow-up' |
+ 'folder-upload' |
+ 'bridge-lock' |
+ 'crosshairs-simple' |
+ 'sack-dollar' |
+ 'pen-to-square' |
+ 'edit' |
+ 'square-sliders' |
+ 'sliders-h-square' |
+ 'car-side' |
+ 'message-middle-top' |
+ 'comment-middle-top-alt' |
+ 'lightbulb-on' |
+ 'knife' |
+ 'utensil-knife' |
+ 'share-nodes' |
+ 'share-alt' |
+ 'display-chart-up-circle-dollar' |
+ 'wave-sine' |
+ 'heart-circle-minus' |
+ 'circle-w' |
+ 'circle-calendar' |
+ 'calendar-circle' |
+ 'hourglass-half' |
+ 'hourglass2' |
+ 'microscope' |
+ 'sunset' |
+ 'sink' |
+ 'calendar-exclamation' |
+ 'truck-container-empty' |
+ 'hand-heart' |
+ 'bag-shopping' |
+ 'shopping-bag' |
+ 'arrow-down-z-a' |
+ 'sort-alpha-desc' |
+ 'sort-alpha-down-alt' |
+ 'mitten' |
+ 'reply-clock' |
+ 'reply-time' |
+ 'person-rays' |
+ 'right' |
+ 'arrow-alt-right' |
+ 'circle-f' |
+ 'users' |
+ 'face-pleading' |
+ 'eye-slash' |
+ 'flask-vial' |
+ 'police-box' |
+ 'cucumber' |
+ 'head-side-brain' |
+ 'hand' |
+ 'hand-paper' |
+ 'person-biking-mountain' |
+ 'biking-mountain' |
+ 'utensils-slash' |
+ 'print-magnifying-glass' |
+ 'print-search' |
+ 'folder-bookmark' |
+ 'om' |
+ 'pi' |
+ 'flask-round-potion' |
+ 'flask-potion' |
+ 'face-shush' |
+ 'worm' |
+ 'house-circle-xmark' |
+ 'plug' |
+ 'calendar-circle-exclamation' |
+ 'square-i' |
+ 'chevron-up' |
+ 'face-saluting' |
+ 'gauge-simple-low' |
+ 'tachometer-slow' |
+ 'face-persevering' |
+ 'circle-camera' |
+ 'camera-circle' |
+ 'hand-spock' |
+ 'spider-web' |
+ 'circle-microphone' |
+ 'microphone-circle' |
+ 'book-arrow-up' |
+ 'popsicle' |
+ 'command' |
+ 'blinds' |
+ 'stopwatch' |
+ 'saxophone' |
+ 'square-2' |
+ 'field-hockey-stick-ball' |
+ 'field-hockey' |
+ 'arrow-up-square-triangle' |
+ 'sort-shapes-up-alt' |
+ 'face-scream' |
+ 'square-m' |
+ 'camera-web' |
+ 'webcam' |
+ 'comment-arrow-down' |
+ 'lightbulb-cfl' |
+ 'window-frame-open' |
+ 'face-kiss' |
+ 'kiss' |
+ 'bridge-circle-xmark' |
+ 'period' |
+ 'face-grin-tongue' |
+ 'grin-tongue' |
+ 'up-to-dotted-line' |
+ 'thought-bubble' |
+ 'skeleton-ribs' |
+ 'raygun' |
+ 'flute' |
+ 'acorn' |
+ 'video-arrow-up-right' |
+ 'grate-droplet' |
+ 'seal-exclamation' |
+ 'chess-bishop' |
+ 'message-sms' |
+ 'coffee-beans' |
+ 'hat-witch' |
+ 'face-grin-wink' |
+ 'grin-wink' |
+ 'clock-three-thirty' |
+ 'ear-deaf' |
+ 'deaf' |
+ 'deafness' |
+ 'hard-of-hearing' |
+ 'alarm-clock' |
+ 'eclipse' |
+ 'face-relieved' |
+ 'road-circle-check' |
+ 'dice-five' |
+ 'octagon-minus' |
+ 'minus-octagon' |
+ 'square-rss' |
+ 'rss-square' |
+ 'face-zany' |
+ 'tricycle' |
+ 'land-mine-on' |
+ 'square-arrow-up-left' |
+ 'i-cursor' |
+ 'chart-mixed-up-circle-dollar' |
+ 'salt-shaker' |
+ 'stamp' |
+ 'file-plus' |
+ 'draw-square' |
+ 'toilet-paper-under-slash' |
+ 'toilet-paper-reverse-slash' |
+ 'stairs' |
+ 'drone-front' |
+ 'drone-alt' |
+ 'glass-empty' |
+ 'dial-high' |
+ 'user-helmet-safety' |
+ 'user-construction' |
+ 'user-hard-hat' |
+ 'i' |
+ 'hryvnia-sign' |
+ 'hryvnia' |
+ 'arrow-down-left-and-arrow-up-right-to-center' |
+ 'pills' |
+ 'face-grin-wide' |
+ 'grin-alt' |
+ 'tooth' |
+ 'basketball-hoop' |
+ 'objects-align-bottom' |
+ 'v' |
+ 'sparkles' |
+ 'squid' |
+ 'leafy-green' |
+ 'circle-arrow-up-right' |
+ 'calendars' |
+ 'bangladeshi-taka-sign' |
+ 'bicycle' |
+ 'hammer-war' |
+ 'circle-d' |
+ 'spider-black-widow' |
+ 'staff-snake' |
+ 'rod-asclepius' |
+ 'rod-snake' |
+ 'staff-aesculapius' |
+ 'pear' |
+ 'head-side-cough-slash' |
+ 'triangle' |
+ 'apartment' |
+ 'truck-medical' |
+ 'ambulance' |
+ 'pepper' |
+ 'piano' |
+ 'gun-squirt' |
+ 'wheat-awn-circle-exclamation' |
+ 'snowman' |
+ 'user-alien' |
+ 'shield-check' |
+ 'mortar-pestle' |
+ 'road-barrier' |
+ 'chart-candlestick' |
+ 'briefcase-blank' |
+ 'school' |
+ 'igloo' |
+ 'bracket-round' |
+ 'parenthesis' |
+ 'joint' |
+ 'horse-saddle' |
+ 'mug-marshmallows' |
+ 'filters' |
+ 'bell-on' |
+ 'angle-right' |
+ 'dial-med' |
+ 'horse' |
+ 'q' |
+ 'monitor-waveform' |
+ 'monitor-heart-rate' |
+ 'link-simple' |
+ 'whistle' |
+ 'g' |
+ 'wine-glass-crack' |
+ 'fragile' |
+ 'slot-machine' |
+ 'notes-medical' |
+ 'car-wash' |
+ 'escalator' |
+ 'comment-image' |
+ 'temperature-half' |
+ 'temperature2' |
+ 'thermometer2' |
+ 'thermometer-half' |
+ 'dong-sign' |
+ 'donut' |
+ 'doughnut' |
+ 'capsules' |
+ 'poo-storm' |
+ 'poo-bolt' |
+ 'tally-1' |
+ 'face-frown-open' |
+ 'frown-open' |
+ 'square-dashed' |
+ 'square-j' |
+ 'hand-point-up' |
+ 'money-bill' |
+ 'arrow-up-big-small' |
+ 'sort-size-up' |
+ 'barcode-read' |
+ 'baguette' |
+ 'bowl-soft-serve' |
+ 'face-holding-back-tears' |
+ 'square-up' |
+ 'arrow-alt-square-up' |
+ 'train-subway-tunnel' |
+ 'subway-tunnel' |
+ 'square-exclamation' |
+ 'exclamation-square' |
+ 'semicolon' |
+ 'bookmark' |
+ 'fan-table' |
+ 'align-justify' |
+ 'battery-low' |
+ 'battery1' |
+ 'credit-card-front' |
+ 'brain-arrow-curved-right' |
+ 'mind-share' |
+ 'umbrella-beach' |
+ 'helmet-un' |
+ 'location-smile' |
+ 'map-marker-smile' |
+ 'arrow-left-to-line' |
+ 'arrow-to-left' |
+ 'bullseye' |
+ 'sushi' |
+ 'nigiri' |
+ 'message-captions' |
+ 'comment-alt-captions' |
+ 'trash-list' |
+ 'bacon' |
+ 'option' |
+ 'hand-point-down' |
+ 'arrow-up-from-bracket' |
+ 'trash-plus' |
+ 'objects-align-top' |
+ 'folder' |
+ 'folder-blank' |
+ 'face-anxious-sweat' |
+ 'credit-card-blank' |
+ 'file-waveform' |
+ 'file-medical-alt' |
+ 'microchip-ai' |
+ 'mug' |
+ 'plane-up-slash' |
+ 'radiation' |
+ 'pen-circle' |
+ 'bag-seedling' |
+ 'chart-simple' |
+ 'crutches' |
+ 'circle-parking' |
+ 'parking-circle' |
+ 'mars-stroke' |
+ 'leaf-oak' |
+ 'square-bolt' |
+ 'vial' |
+ 'gauge' |
+ 'dashboard' |
+ 'gauge-med' |
+ 'tachometer-alt-average' |
+ 'wand-magic-sparkles' |
+ 'magic-wand-sparkles' |
+ 'lambda' |
+ 'e' |
+ 'pizza' |
+ 'bowl-chopsticks-noodles' |
+ 'h3' |
+ 'pen-clip' |
+ 'pen-alt' |
+ 'bridge-circle-exclamation' |
+ 'badge-percent' |
+ 'user' |
+ 'sensor' |
+ 'comma' |
+ 'school-circle-check' |
+ 'toilet-paper-under' |
+ 'toilet-paper-reverse' |
+ 'light-emergency' |
+ 'arrow-down-to-arc' |
+ 'dumpster' |
+ 'van-shuttle' |
+ 'shuttle-van' |
+ 'building-user' |
+ 'light-switch' |
+ 'square-caret-left' |
+ 'caret-square-left' |
+ 'highlighter' |
+ 'wave-pulse' |
+ 'heart-rate' |
+ 'key' |
+ 'hat-santa' |
+ 'tamale' |
+ 'box-check' |
+ 'bullhorn' |
+ 'steak' |
+ 'location-crosshairs-slash' |
+ 'location-slash' |
+ 'person-dolly' |
+ 'globe' |
+ 'synagogue' |
+ 'file-chart-column' |
+ 'file-chart-line' |
+ 'person-half-dress' |
+ 'folder-image' |
+ 'calendar-pen' |
+ 'calendar-edit' |
+ 'road-bridge' |
+ 'face-smile-tear' |
+ 'message-plus' |
+ 'comment-alt-plus' |
+ 'location-arrow' |
+ 'c' |
+ 'tablet-button' |
+ 'rectangle-history-circle-user' |
+ 'building-lock' |
+ 'chart-line-up' |
+ 'mailbox' |
+ 'truck-bolt' |
+ 'pizza-slice' |
+ 'money-bill-wave' |
+ 'chart-area' |
+ 'area-chart' |
+ 'house-flag' |
+ 'circle-three-quarters-stroke' |
+ 'person-circle-minus' |
+ 'scalpel' |
+ 'ban' |
+ 'cancel' |
+ 'bell-exclamation' |
+ 'circle-bookmark' |
+ 'bookmark-circle' |
+ 'egg-fried' |
+ 'face-weary' |
+ 'uniform-martial-arts' |
+ 'camera-rotate' |
+ 'sun-dust' |
+ 'comment-text' |
+ 'spray-can-sparkles' |
+ 'air-freshener' |
+ 'signal-bars' |
+ 'signal-alt' |
+ 'signal-alt4' |
+ 'signal-bars-strong' |
+ 'diamond-exclamation' |
+ 'star' |
+ 'dial-min' |
+ 'repeat' |
+ 'cross' |
+ 'page-caret-down' |
+ 'file-caret-down' |
+ 'box' |
+ 'venus-mars' |
+ 'clock-seven-thirty' |
+ 'arrow-pointer' |
+ 'mouse-pointer' |
+ 'clock-four-thirty' |
+ 'signal-bars-good' |
+ 'signal-alt3' |
+ 'cactus' |
+ 'lightbulb-gear' |
+ 'maximize' |
+ 'expand-arrows-alt' |
+ 'charging-station' |
+ 'shapes' |
+ 'triangle-circle-square' |
+ 'plane-tail' |
+ 'gauge-simple-max' |
+ 'tachometer-fastest' |
+ 'circle-u' |
+ 'shield-slash' |
+ 'square-phone-hangup' |
+ 'phone-square-down' |
+ 'arrow-up-left' |
+ 'transporter-1' |
+ 'peanuts' |
+ 'shuffle' |
+ 'random' |
+ 'person-running' |
+ 'running' |
+ 'mobile-retro' |
+ 'grip-lines-vertical' |
+ 'bin-bottles-recycle' |
+ 'arrow-up-from-square' |
+ 'file-dashed-line' |
+ 'page-break' |
+ 'bracket-curly-right' |
+ 'spider' |
+ 'clock-three' |
+ 'hands-bound' |
+ 'scalpel-line-dashed' |
+ 'scalpel-path' |
+ 'file-invoice-dollar' |
+ 'pipe-smoking' |
+ 'face-astonished' |
+ 'window' |
+ 'plane-circle-exclamation' |
+ 'ear' |
+ 'file-lock' |
+ 'diagram-venn' |
+ 'x-ray' |
+ 'goal-net' |
+ 'coffin-cross' |
+ 'spell-check' |
+ 'location-xmark' |
+ 'map-marker-times' |
+ 'map-marker-xmark' |
+ 'circle-quarter-stroke' |
+ 'lasso' |
+ 'slash' |
+ 'person-to-portal' |
+ 'portal-enter' |
+ 'calendar-star' |
+ 'computer-mouse' |
+ 'mouse' |
+ 'arrow-right-to-bracket' |
+ 'sign-in' |
+ 'pegasus' |
+ 'files-medical' |
+ 'nfc-lock' |
+ 'person-ski-lift' |
+ 'ski-lift' |
+ 'square-6' |
+ 'shop-slash' |
+ 'store-alt-slash' |
+ 'wind-turbine' |
+ 'sliders-simple' |
+ 'grid-round' |
+ 'badge-sheriff' |
+ 'server' |
+ 'virus-covid-slash' |
+ 'intersection' |
+ 'shop-lock' |
+ 'family' |
+ 'hourglass-start' |
+ 'hourglass1' |
+ 'user-hair-buns' |
+ 'blender-phone' |
+ 'hourglass-clock' |
+ 'person-seat-reclined' |
+ 'paper-plane-top' |
+ 'paper-plane-alt' |
+ 'send' |
+ 'message-arrow-up' |
+ 'comment-alt-arrow-up' |
+ 'lightbulb-exclamation' |
+ 'layer-minus' |
+ 'layer-group-minus' |
+ 'chart-pie-simple-circle-currency' |
+ 'circle-e' |
+ 'building-wheat' |
+ 'gauge-max' |
+ 'tachometer-alt-fastest' |
+ 'person-breastfeeding' |
+ 'apostrophe' |
+ 'fire-hydrant' |
+ 'right-to-bracket' |
+ 'sign-in-alt' |
+ 'video-plus' |
+ 'square-right' |
+ 'arrow-alt-square-right' |
+ 'comment-smile' |
+ 'venus' |
+ 'passport' |
+ 'inbox-in' |
+ 'inbox-arrow-down' |
+ 'heart-pulse' |
+ 'heartbeat' |
+ 'circle-8' |
+ 'clouds-moon' |
+ 'clock-ten-thirty' |
+ 'people-carry-box' |
+ 'people-carry' |
+ 'folder-user' |
+ 'trash-can-xmark' |
+ 'temperature-high' |
+ 'microchip' |
+ 'left-long-to-line' |
+ 'crown' |
+ 'weight-hanging' |
+ 'xmarks-lines' |
+ 'file-prescription' |
+ 'calendar-range' |
+ 'flower-daffodil' |
+ 'hand-back-point-up' |
+ 'weight-scale' |
+ 'weight' |
+ 'star-exclamation' |
+ 'books' |
+ 'user-group' |
+ 'user-friends' |
+ 'arrow-up-a-z' |
+ 'sort-alpha-up' |
+ 'layer-plus' |
+ 'layer-group-plus' |
+ 'play-pause' |
+ 'block-question' |
+ 'snooze' |
+ 'zzz' |
+ 'scanner-image' |
+ 'tv-retro' |
+ 'square-t' |
+ 'farm' |
+ 'barn-silo' |
+ 'chess-knight' |
+ 'bars-sort' |
+ 'pallet-boxes' |
+ 'palette-boxes' |
+ 'pallet-alt' |
+ 'face-laugh-squint' |
+ 'laugh-squint' |
+ 'code-simple' |
+ 'bolt-slash' |
+ 'panel-fire' |
+ 'binary-circle-check' |
+ 'comment-minus' |
+ 'burrito' |
+ 'violin' |
+ 'objects-column' |
+ 'square-chevron-down' |
+ 'chevron-square-down' |
+ 'comment-plus' |
+ 'triangle-instrument' |
+ 'triangle-music' |
+ 'wheelchair' |
+ 'user-pilot-tie' |
+ 'piano-keyboard' |
+ 'bed-empty' |
+ 'circle-arrow-up' |
+ 'arrow-circle-up' |
+ 'toggle-on' |
+ 'rectangle-vertical' |
+ 'rectangle-portrait' |
+ 'person-walking' |
+ 'walking' |
+ 'l' |
+ 'signal-stream' |
+ 'down-to-bracket' |
+ 'circle-z' |
+ 'stars' |
+ 'fire' |
+ 'bed-pulse' |
+ 'procedures' |
+ 'house-day' |
+ 'shuttle-space' |
+ 'space-shuttle' |
+ 'shirt-long-sleeve' |
+ 'chart-pie-simple' |
+ 'chart-pie-alt' |
+ 'face-laugh' |
+ 'laugh' |
+ 'folder-open' |
+ 'album-collection-circle-user' |
+ 'candy' |
+ 'bowl-hot' |
+ 'soup' |
+ 'flatbread' |
+ 'heart-circle-plus' |
+ 'code-fork' |
+ 'city' |
+ 'signal-bars-weak' |
+ 'signal-alt1' |
+ 'microphone-lines' |
+ 'microphone-alt' |
+ 'clock-twelve' |
+ 'pepper-hot' |
+ 'citrus-slice' |
+ 'sheep' |
+ 'unlock' |
+ 'colon-sign' |
+ 'headset' |
+ 'badger-honey' |
+ 'h4' |
+ 'store-slash' |
+ 'road-circle-xmark' |
+ 'signal-slash' |
+ 'user-minus' |
+ 'mars-stroke-up' |
+ 'mars-stroke-v' |
+ 'champagne-glasses' |
+ 'glass-cheers' |
+ 'taco' |
+ 'hexagon-plus' |
+ 'plus-hexagon' |
+ 'clipboard' |
+ 'house-circle-exclamation' |
+ 'file-arrow-up' |
+ 'file-upload' |
+ 'wifi' |
+ 'wifi3' |
+ 'wifi-strong' |
+ 'messages' |
+ 'comments-alt' |
+ 'bath' |
+ 'bathtub' |
+ 'umbrella-simple' |
+ 'umbrella-alt' |
+ 'rectangle-history-circle-plus' |
+ 'underline' |
+ 'prescription-bottle-pill' |
+ 'user-pen' |
+ 'user-edit' |
+ 'binary-slash' |
+ 'square-o' |
+ 'signature' |
+ 'stroopwafel' |
+ 'bold' |
+ 'anchor-lock' |
+ 'building-ngo' |
+ 'transporter-3' |
+ 'engine-warning' |
+ 'engine-exclamation' |
+ 'circle-down-right' |
+ 'square-k' |
+ 'manat-sign' |
+ 'money-check-pen' |
+ 'money-check-edit' |
+ 'not-equal' |
+ 'border-top-left' |
+ 'border-style' |
+ 'map-location-dot' |
+ 'map-marked-alt' |
+ 'tilde' |
+ 'jedi' |
+ 'square-poll-vertical' |
+ 'poll' |
+ 'arrow-down-square-triangle' |
+ 'sort-shapes-down-alt' |
+ 'mug-hot' |
+ 'dog-leashed' |
+ 'car-battery' |
+ 'battery-car' |
+ 'face-downcast-sweat' |
+ 'mailbox-flag-up' |
+ 'memo-circle-info' |
+ 'gift' |
+ 'dice-two' |
+ 'volume' |
+ 'volume-medium' |
+ 'transporter-5' |
+ 'gauge-circle-bolt' |
+ 'coin-front' |
+ 'file-slash' |
+ 'message-arrow-up-right' |
+ 'treasure-chest' |
+ 'chess-queen' |
+ 'paintbrush-fine' |
+ 'paint-brush-alt' |
+ 'paint-brush-fine' |
+ 'paintbrush-alt' |
+ 'glasses' |
+ 'hood-cloak' |
+ 'square-quote' |
+ 'up-left' |
+ 'bring-front' |
+ 'chess-board' |
+ 'burger-cheese' |
+ 'cheeseburger' |
+ 'building-circle-check' |
+ 'repeat-1' |
+ 'arrow-down-to-line' |
+ 'arrow-to-bottom' |
+ 'grid-5' |
+ 'right-long-to-line' |
+ 'person-chalkboard' |
+ 'mars-stroke-right' |
+ 'mars-stroke-h' |
+ 'hand-back-fist' |
+ 'hand-rock' |
+ 'grid-round-5' |
+ 'tally' |
+ 'tally5' |
+ 'square-caret-up' |
+ 'caret-square-up' |
+ 'cloud-showers-water' |
+ 'chart-bar' |
+ 'bar-chart' |
+ 'hands-bubbles' |
+ 'hands-wash' |
+ 'less-than-equal' |
+ 'train' |
+ 'up-from-dotted-line' |
+ 'eye-low-vision' |
+ 'low-vision' |
+ 'traffic-light-go' |
+ 'face-exhaling' |
+ 'sensor-fire' |
+ 'user-unlock' |
+ 'hexagon-divide' |
+ '00' |
+ 'crow' |
+ 'cassette-betamax' |
+ 'betamax' |
+ 'sailboat' |
+ 'window-restore' |
+ 'nfc-magnifying-glass' |
+ 'file-binary' |
+ 'circle-v' |
+ 'square-plus' |
+ 'plus-square' |
+ 'bowl-scoops' |
+ 'mistletoe' |
+ 'custard' |
+ 'lacrosse-stick' |
+ 'hockey-mask' |
+ 'sunrise' |
+ 'panel-ews' |
+ 'torii-gate' |
+ 'cloud-exclamation' |
+ 'message-lines' |
+ 'comment-alt-lines' |
+ 'frog' |
+ 'bucket' |
+ 'floppy-disk-pen' |
+ 'image' |
+ 'window-frame' |
+ 'microphone' |
+ 'cow' |
+ 'file-zip' |
+ 'square-ring' |
+ 'down-from-line' |
+ 'arrow-alt-from-top' |
+ 'caret-up' |
+ 'shield-xmark' |
+ 'shield-times' |
+ 'screwdriver' |
+ 'circle-sort-down' |
+ 'sort-circle-down' |
+ 'folder-closed' |
+ 'house-tsunami' |
+ 'square-nfi' |
+ 'forklift' |
+ 'arrow-up-from-ground-water' |
+ 'bracket-square-right' |
+ 'martini-glass' |
+ 'glass-martini-alt' |
+ 'rotate-left' |
+ 'rotate-back' |
+ 'rotate-backward' |
+ 'undo-alt' |
+ 'table-columns' |
+ 'columns' |
+ 'square-a' |
+ 'tick' |
+ 'lemon' |
+ 'head-side-mask' |
+ 'handshake' |
+ 'gem' |
+ 'dolly' |
+ 'dolly-box' |
+ 'smoking' |
+ 'minimize' |
+ 'compress-arrows-alt' |
+ 'refrigerator' |
+ 'monument' |
+ 'octagon-xmark' |
+ 'times-octagon' |
+ 'xmark-octagon' |
+ 'align-slash' |
+ 'snowplow' |
+ 'angles-right' |
+ 'angle-double-right' |
+ 'truck-ramp-couch' |
+ 'truck-couch' |
+ 'cannabis' |
+ 'circle-play' |
+ 'play-circle' |
+ 'arrow-up-right-and-arrow-down-left-from-center' |
+ 'tablets' |
+ '360-degrees' |
+ 'ethernet' |
+ 'euro-sign' |
+ 'eur' |
+ 'euro' |
+ 'chair' |
+ 'circle-check' |
+ 'check-circle' |
+ 'square-dashed-circle-plus' |
+ 'money-simple-from-bracket' |
+ 'bat' |
+ 'circle-stop' |
+ 'stop-circle' |
+ 'head-side-headphones' |
+ 'phone-rotary' |
+ 'compass-drafting' |
+ 'drafting-compass' |
+ 'plate-wheat' |
+ 'calendar-circle-minus' |
+ 'chopsticks' |
+ 'car-wrench' |
+ 'car-mechanic' |
+ 'icicles' |
+ 'person-shelter' |
+ 'neuter' |
+ 'id-badge' |
+ 'kazoo' |
+ 'marker' |
+ 'bin-bottles' |
+ 'face-laugh-beam' |
+ 'laugh-beam' |
+ 'square-arrow-down-left' |
+ 'battery-bolt' |
+ 'tree-large' |
+ 'helicopter-symbol' |
+ 'aperture' |
+ 'universal-access' |
+ 'gear-complex' |
+ 'file-magnifying-glass' |
+ 'file-search' |
+ 'up-right' |
+ 'circle-chevron-up' |
+ 'chevron-circle-up' |
+ 'user-police' |
+ 'lari-sign' |
+ 'volcano' |
+ 'teddy-bear' |
+ 'stocking' |
+ 'person-walking-dashed-line-arrow-right' |
+ 'image-slash' |
+ 'mask-snorkel' |
+ 'smoke' |
+ 'sterling-sign' |
+ 'gbp' |
+ 'pound-sign' |
+ 'battery-exclamation' |
+ 'viruses' |
+ 'square-person-confined' |
+ 'user-tie' |
+ 'arrow-down-long' |
+ 'long-arrow-down' |
+ 'tent-arrow-down-to-line' |
+ 'certificate' |
+ 'crystal-ball' |
+ 'reply-all' |
+ 'mail-reply-all' |
+ 'suitcase' |
+ 'person-skating' |
+ 'skating' |
+ 'star-shooting' |
+ 'binary-lock' |
+ 'filter-circle-dollar' |
+ 'funnel-dollar' |
+ 'camera-retro' |
+ 'circle-arrow-down' |
+ 'arrow-circle-down' |
+ 'comment-pen' |
+ 'comment-edit' |
+ 'file-import' |
+ 'arrow-right-to-file' |
+ 'banjo' |
+ 'square-arrow-up-right' |
+ 'external-link-square' |
+ 'light-emergency-on' |
+ 'kerning' |
+ 'box-open' |
+ 'square-f' |
+ 'scroll' |
+ 'spa' |
+ 'arrow-left-from-line' |
+ 'arrow-from-right' |
+ 'strawberry' |
+ 'location-pin-lock' |
+ 'pause' |
+ 'clock-eight-thirty' |
+ 'plane-engines' |
+ 'plane-alt' |
+ 'hill-avalanche' |
+ 'temperature-empty' |
+ 'temperature0' |
+ 'thermometer0' |
+ 'thermometer-empty' |
+ 'bomb' |
+ 'gauge-low' |
+ 'tachometer-alt-slow' |
+ 'registered' |
+ 'trash-can-plus' |
+ 'address-card' |
+ 'contact-card' |
+ 'vcard' |
+ 'scale-unbalanced-flip' |
+ 'balance-scale-right' |
+ 'globe-snow' |
+ 'subscript' |
+ 'diamond-turn-right' |
+ 'directions' |
+ 'integral' |
+ 'burst' |
+ 'house-laptop' |
+ 'laptop-house' |
+ 'face-tired' |
+ 'tired' |
+ 'money-bills' |
+ 'blinds-raised' |
+ 'smog' |
+ 'ufo-beam' |
+ 'circle-caret-up' |
+ 'caret-circle-up' |
+ 'user-vneck-hair-long' |
+ 'square-a-lock' |
+ 'crutch' |
+ 'gas-pump-slash' |
+ 'font-awesome' |
+ 'font-awesome-flag' |
+ 'font-awesome-logo-full' |
+ 'cloud-arrow-up' |
+ 'cloud-upload' |
+ 'cloud-upload-alt' |
+ 'palette' |
+ 'transporter-4' |
+ 'chart-mixed-up-circle-currency' |
+ 'objects-align-right' |
+ 'arrows-turn-right' |
+ 'vest' |
+ 'pig' |
+ 'inbox-full' |
+ 'circle-envelope' |
+ 'envelope-circle' |
+ 'triangle-person-digging' |
+ 'construction' |
+ 'ferry' |
+ 'bullseye-arrow' |
+ 'arrows-down-to-people' |
+ 'seedling' |
+ 'sprout' |
+ 'clock-seven' |
+ 'left-right' |
+ 'arrows-alt-h' |
+ 'boxes-packing' |
+ 'circle-arrow-left' |
+ 'arrow-circle-left' |
+ 'flashlight' |
+ 'group-arrows-rotate' |
+ 'bowl-food' |
+ 'square-9' |
+ 'candy-cane' |
+ 'arrow-down-wide-short' |
+ 'sort-amount-asc' |
+ 'sort-amount-down' |
+ 'square-dollar' |
+ 'dollar-square' |
+ 'usd-square' |
+ 'phone-arrow-right' |
+ 'hand-holding-seedling' |
+ 'message-check' |
+ 'comment-alt-check' |
+ 'cloud-bolt' |
+ 'thunderstorm' |
+ 'chart-line-up-down' |
+ 'text-slash' |
+ 'remove-format' |
+ 'watch' |
+ 'circle-down-left' |
+ 'text' |
+ 'projector' |
+ 'face-smile-wink' |
+ 'smile-wink' |
+ 'tombstone-blank' |
+ 'tombstone-alt' |
+ 'chess-king-piece' |
+ 'chess-king-alt' |
+ 'circle-6' |
+ 'left' |
+ 'arrow-alt-left' |
+ 'file-word' |
+ 'file-powerpoint' |
+ 'square-down' |
+ 'arrow-alt-square-down' |
+ 'objects-align-center-vertical' |
+ 'arrows-left-right' |
+ 'arrows-h' |
+ 'house-lock' |
+ 'cloud-arrow-down' |
+ 'cloud-download' |
+ 'cloud-download-alt' |
+ 'wreath' |
+ 'children' |
+ 'meter-droplet' |
+ 'chalkboard' |
+ 'blackboard' |
+ 'user-large-slash' |
+ 'user-alt-slash' |
+ 'signal-strong' |
+ 'signal4' |
+ 'lollipop' |
+ 'lollypop' |
+ 'list-tree' |
+ 'envelope-open' |
+ 'draw-circle' |
+ 'cat-space' |
+ 'handshake-simple-slash' |
+ 'handshake-alt-slash' |
+ 'rabbit-running' |
+ 'rabbit-fast' |
+ 'memo-pad' |
+ 'mattress-pillow' |
+ 'alarm-plus' |
+ 'alicorn' |
+ 'comment-question' |
+ 'gingerbread-man' |
+ 'guarani-sign' |
+ 'burger-fries' |
+ 'mug-tea' |
+ 'border-top' |
+ 'arrows-rotate' |
+ 'refresh' |
+ 'sync' |
+ 'circle-book-open' |
+ 'book-circle' |
+ 'arrows-to-dotted-line' |
+ 'fire-extinguisher' |
+ 'garage-open' |
+ 'shelves-empty' |
+ 'cruzeiro-sign' |
+ 'watch-apple' |
+ 'watch-calculator' |
+ 'list-dropdown' |
+ 'cabinet-filing' |
+ 'burger-soda' |
+ 'square-arrow-up' |
+ 'arrow-square-up' |
+ 'greater-than-equal' |
+ 'pallet-box' |
+ 'face-confounded' |
+ 'shield-halved' |
+ 'shield-alt' |
+ 'truck-plow' |
+ 'book-atlas' |
+ 'atlas' |
+ 'virus' |
+ 'grid-round-2' |
+ 'comment-middle-top' |
+ 'envelope-circle-check' |
+ 'layer-group' |
+ 'restroom-simple' |
+ 'arrows-to-dot' |
+ 'border-outer' |
+ 'hashtag-lock' |
+ 'clock-two-thirty' |
+ 'archway' |
+ 'heart-circle-check' |
+ 'house-chimney-crack' |
+ 'house-damage' |
+ 'file-zipper' |
+ 'file-archive' |
+ 'heart-half' |
+ 'comment-check' |
+ 'square' |
+ 'memo' |
+ 'martini-glass-empty' |
+ 'glass-martini' |
+ 'couch' |
+ 'cedi-sign' |
+ 'italic' |
+ 'glass-citrus' |
+ 'calendar-lines-pen' |
+ 'church' |
+ 'person-snowmobiling' |
+ 'snowmobile' |
+ 'face-hushed' |
+ 'comments-dollar' |
+ 'pickaxe' |
+ 'link-simple-slash' |
+ 'democrat' |
+ 'face-confused' |
+ 'pinball' |
+ 'z' |
+ 'person-skiing' |
+ 'skiing' |
+ 'deer' |
+ 'input-pipe' |
+ 'road-lock' |
+ 'a' |
+ 'bookmark-slash' |
+ 'temperature-arrow-down' |
+ 'temperature-down' |
+ 'mace' |
+ 'feather-pointed' |
+ 'feather-alt' |
+ 'sausage' |
+ 'trash-can-clock' |
+ 'p' |
+ 'broom-wide' |
+ 'snowflake' |
+ 'stomach' |
+ 'newspaper' |
+ 'rectangle-ad' |
+ 'ad' |
+ 'guitar-electric' |
+ 'arrow-turn-down-right' |
+ 'moon-cloud' |
+ 'bread-slice-butter' |
+ 'circle-arrow-right' |
+ 'arrow-circle-right' |
+ 'user-group-crown' |
+ 'users-crown' |
+ 'circle-i' |
+ 'toilet-paper-check' |
+ 'filter-circle-xmark' |
+ 'locust' |
+ 'sort' |
+ 'unsorted' |
+ 'list-ol' |
+ 'list12' |
+ 'list-numeric' |
+ 'chart-waterfall' |
+ 'sparkle' |
+ 'face-party' |
+ 'kidneys' |
+ 'wifi-exclamation' |
+ 'chart-network' |
+ 'person-dress-burst' |
+ 'dice-d4' |
+ 'money-check-dollar' |
+ 'money-check-alt' |
+ 'vector-square' |
+ 'bread-slice' |
+ 'language' |
+ 'wheat-awn-slash' |
+ 'face-kiss-wink-heart' |
+ 'kiss-wink-heart' |
+ 'dagger' |
+ 'podium' |
+ 'memo-circle-check' |
+ 'route-highway' |
+ 'down-to-line' |
+ 'arrow-alt-to-bottom' |
+ 'filter' |
+ 'square-g' |
+ 'circle-phone' |
+ 'phone-circle' |
+ 'clipboard-prescription' |
+ 'user-nurse-hair' |
+ 'question' |
+ 'file-signature' |
+ 'toggle-large-on' |
+ 'up-down-left-right' |
+ 'arrows-alt' |
+ 'dryer-heat' |
+ 'dryer-alt' |
+ 'house-chimney-user' |
+ 'hand-holding-heart' |
+ 'arrow-up-small-big' |
+ 'sort-size-up-alt' |
+ 'train-track' |
+ 'puzzle-piece' |
+ 'money-check' |
+ 'star-half-stroke' |
+ 'star-half-alt' |
+ 'file-exclamation' |
+ 'code' |
+ 'whiskey-glass' |
+ 'glass-whiskey' |
+ 'moon-stars' |
+ 'building-circle-exclamation' |
+ 'clothes-hanger' |
+ 'mobile-notch' |
+ 'mobile-iphone' |
+ 'magnifying-glass-chart' |
+ 'arrow-up-right-from-square' |
+ 'external-link' |
+ 'cubes-stacked' |
+ 'images-user' |
+ 'won-sign' |
+ 'krw' |
+ 'won' |
+ 'image-polaroid-user' |
+ 'virus-covid' |
+ 'square-ellipsis' |
+ 'pie' |
+ 'chess-knight-piece' |
+ 'chess-knight-alt' |
+ 'austral-sign' |
+ 'cloud-plus' |
+ 'f' |
+ 'leaf' |
+ 'bed-bunk' |
+ 'road' |
+ 'taxi' |
+ 'cab' |
+ 'person-circle-plus' |
+ 'chart-pie' |
+ 'pie-chart' |
+ 'bolt-lightning' |
+ 'clock-eight' |
+ 'sack-xmark' |
+ 'file-excel' |
+ 'file-contract' |
+ 'fish-fins' |
+ 'circle-q' |
+ 'building-flag' |
+ 'face-grin-beam' |
+ 'grin-beam' |
+ 'object-ungroup' |
+ 'face-disguise' |
+ 'circle-arrow-down-right' |
+ 'alien-8bit' |
+ 'alien-monster' |
+ 'hand-point-ribbon' |
+ 'poop' |
+ 'object-exclude' |
+ 'telescope' |
+ 'location-pin' |
+ 'map-marker' |
+ 'square-list' |
+ 'kaaba' |
+ 'toilet-paper' |
+ 'helmet-safety' |
+ 'hard-hat' |
+ 'hat-hard' |
+ 'comment-code' |
+ 'sim-cards' |
+ 'starship' |
+ 'eject' |
+ 'circle-right' |
+ 'arrow-alt-circle-right' |
+ 'plane-circle-check' |
+ 'seal' |
+ 'user-cowboy' |
+ 'hexagon-vertical-nft' |
+ 'face-rolling-eyes' |
+ 'meh-rolling-eyes' |
+ 'bread-loaf' |
+ 'rings-wedding' |
+ 'object-group' |
+ 'french-fries' |
+ 'chart-line' |
+ 'line-chart' |
+ 'calendar-arrow-down' |
+ 'calendar-download' |
+ 'send-back' |
+ 'mask-ventilator' |
+ 'signature-lock' |
+ 'arrow-right' |
+ 'signs-post' |
+ 'map-signs' |
+ 'octagon-plus' |
+ 'plus-octagon' |
+ 'cash-register' |
+ 'person-circle-question' |
+ 'melon-slice' |
+ 'space-station-moon' |
+ 'message-smile' |
+ 'comment-alt-smile' |
+ 'cup-straw' |
+ 'left-from-line' |
+ 'arrow-alt-from-right' |
+ 'h' |
+ 'basket-shopping-simple' |
+ 'shopping-basket-alt' |
+ 'hands-holding-heart' |
+ 'hands-heart' |
+ 'clock-nine' |
+ 'tarp' |
+ 'face-sleepy' |
+ 'hand-horns' |
+ 'screwdriver-wrench' |
+ 'tools' |
+ 'arrows-to-eye' |
+ 'circle-three-quarters' |
+ 'trophy-star' |
+ 'trophy-alt' |
+ 'plug-circle-bolt' |
+ 'face-thermometer' |
+ 'grid-round-4' |
+ 'shirt-running' |
+ 'book-circle-arrow-up' |
+ 'face-nauseated' |
+ 'heart' |
+ 'file-chart-pie' |
+ 'mars-and-venus' |
+ 'house-user' |
+ 'home-user' |
+ 'circle-arrow-down-left' |
+ 'dumpster-fire' |
+ 'hexagon-minus' |
+ 'minus-hexagon' |
+ 'left-to-line' |
+ 'arrow-alt-to-left' |
+ 'house-crack' |
+ 'paw-simple' |
+ 'paw-alt' |
+ 'arrow-left-long-to-line' |
+ 'brackets-round' |
+ 'parentheses' |
+ 'martini-glass-citrus' |
+ 'cocktail' |
+ 'user-shakespeare' |
+ 'arrow-right-to-arc' |
+ 'face-surprise' |
+ 'surprise' |
+ 'bottle-water' |
+ 'circle-pause' |
+ 'pause-circle' |
+ 'gauge-circle-plus' |
+ 'folders' |
+ 'angel' |
+ 'value-absolute' |
+ 'rabbit' |
+ 'toilet-paper-slash' |
+ 'circle-euro' |
+ 'apple-whole' |
+ 'apple-alt' |
+ 'kitchen-set' |
+ 'diamond-half' |
+ 'lock-keyhole' |
+ 'lock-alt' |
+ 'r' |
+ 'temperature-quarter' |
+ 'temperature1' |
+ 'thermometer1' |
+ 'thermometer-quarter' |
+ 'square-info' |
+ 'info-square' |
+ 'wifi-slash' |
+ 'toilet-paper-xmark' |
+ 'hands-holding-dollar' |
+ 'hands-usd' |
+ 'cube' |
+ 'arrow-down-triangle-square' |
+ 'sort-shapes-down' |
+ 'bitcoin-sign' |
+ 'shutters' |
+ 'shield-dog' |
+ 'solar-panel' |
+ 'lock-open' |
+ 'table-tree' |
+ 'house-chimney-heart' |
+ 'tally-3' |
+ 'elevator' |
+ 'money-bill-transfer' |
+ 'money-bill-trend-up' |
+ 'house-flood-water-circle-arrow-right' |
+ 'square-poll-horizontal' |
+ 'poll-h' |
+ 'circle' |
+ 'cart-circle-exclamation' |
+ 'sword' |
+ 'backward-fast' |
+ 'fast-backward' |
+ 'recycle' |
+ 'user-astronaut' |
+ 'interrobang' |
+ 'plane-slash' |
+ 'circle-dashed' |
+ 'trademark' |
+ 'basketball' |
+ 'basketball-ball' |
+ 'fork-knife' |
+ 'utensils-alt' |
+ 'satellite-dish' |
+ 'badge-check' |
+ 'circle-up' |
+ 'arrow-alt-circle-up' |
+ 'slider' |
+ 'mobile-screen-button' |
+ 'mobile-alt' |
+ 'clock-one-thirty' |
+ 'inbox-out' |
+ 'inbox-arrow-up' |
+ 'cloud-slash' |
+ 'volume-high' |
+ 'volume-up' |
+ 'users-rays' |
+ 'wallet' |
+ 'octagon-check' |
+ 'flatbread-stuffed' |
+ 'clipboard-check' |
+ 'cart-circle-plus' |
+ 'truck-clock' |
+ 'shipping-timed' |
+ 'pool-8-ball' |
+ 'file-audio' |
+ 'turn-down-left' |
+ 'lock-hashtag' |
+ 'chart-radar' |
+ 'staff' |
+ 'burger' |
+ 'hamburger' |
+ 'utility-pole' |
+ 'transporter-6' |
+ 'wrench' |
+ 'bugs' |
+ 'vector-polygon' |
+ 'diagram-nested' |
+ 'rupee-sign' |
+ 'rupee' |
+ 'file-image' |
+ 'circle-question' |
+ 'question-circle' |
+ 'image-user' |
+ 'buoy' |
+ 'plane-departure' |
+ 'handshake-slash' |
+ 'book-bookmark' |
+ 'border-center-h' |
+ 'can-food' |
+ 'typewriter' |
+ 'arrow-right-from-arc' |
+ 'circle-k' |
+ 'face-hand-over-mouth' |
+ 'popcorn' |
+ 'house-water' |
+ 'house-flood' |
+ 'object-subtract' |
+ 'code-branch' |
+ 'warehouse-full' |
+ 'warehouse-alt' |
+ 'hat-cowboy' |
+ 'bridge' |
+ 'phone-flip' |
+ 'phone-alt' |
+ 'arrow-down-from-dotted-line' |
+ 'file-doc' |
+ 'square-quarters' |
+ 'truck-front' |
+ 'cat' |
+ 'trash-xmark' |
+ 'circle-caret-left' |
+ 'caret-circle-left' |
+ 'files' |
+ 'anchor-circle-exclamation' |
+ 'face-clouds' |
+ 'user-crown' |
+ 'truck-field' |
+ 'route' |
+ 'cart-circle-check' |
+ 'clipboard-question' |
+ 'panorama' |
+ 'comment-medical' |
+ 'teeth-open' |
+ 'user-tie-hair-long' |
+ 'file-circle-minus' |
+ 'head-side-medical' |
+ 'tags' |
+ 'wine-glass' |
+ 'forward-fast' |
+ 'fast-forward' |
+ 'face-meh-blank' |
+ 'meh-blank' |
+ 'user-robot' |
+ 'square-parking' |
+ 'parking' |
+ 'card-diamond' |
+ 'face-zipper' |
+ 'face-raised-eyebrow' |
+ 'house-signal' |
+ 'square-chevron-up' |
+ 'chevron-square-up' |
+ 'nfc-symbol' |
+ 'bars-progress' |
+ 'tasks-alt' |
+ 'faucet-drip' |
+ 'arrows-to-line' |
+ 'dolphin' |
+ 'arrow-up-right' |
+ 'circle-r' |
+ 'cart-flatbed' |
+ 'dolly-flatbed' |
+ 'ban-smoking' |
+ 'smoking-ban' |
+ 'circle-sort-up' |
+ 'sort-circle-up' |
+ 'terminal' |
+ 'mobile-button' |
+ 'house-medical-flag' |
+ 'basket-shopping' |
+ 'shopping-basket' |
+ 'tape' |
+ 'chestnut' |
+ 'bus-simple' |
+ 'bus-alt' |
+ 'eye' |
+ 'face-sad-cry' |
+ 'sad-cry' |
+ 'heat' |
+ 'ticket-airline' |
+ 'boot-heeled' |
+ 'arrows-minimize' |
+ 'compress-arrows' |
+ 'audio-description' |
+ 'person-military-to-person' |
+ 'file-shield' |
+ 'hexagon' |
+ 'manhole' |
+ 'user-slash' |
+ 'pen' |
+ 'tower-observation' |
+ 'floppy-disks' |
+ 'toilet-paper-blank-under' |
+ 'toilet-paper-reverse-alt' |
+ 'file-code' |
+ 'signal' |
+ 'signal5' |
+ 'signal-perfect' |
+ 'pump' |
+ 'bus' |
+ 'heart-circle-xmark' |
+ 'arrow-up-left-from-circle' |
+ 'house-chimney' |
+ 'home-lg' |
+ 'window-maximize' |
+ 'dryer' |
+ 'face-frown' |
+ 'frown' |
+ 'chess-bishop-piece' |
+ 'chess-bishop-alt' |
+ 'shirt-tank-top' |
+ 'diploma' |
+ 'scroll-ribbon' |
+ 'screencast' |
+ 'walker' |
+ 'prescription' |
+ 'shop' |
+ 'store-alt' |
+ 'floppy-disk' |
+ 'save' |
+ 'vihara' |
+ 'face-kiss-closed-eyes' |
+ 'scale-unbalanced' |
+ 'balance-scale-left' |
+ 'file-user' |
+ 'user-police-tie' |
+ 'face-tongue-money' |
+ 'tennis-ball' |
+ 'square-l' |
+ 'sort-up' |
+ 'sort-asc' |
+ 'calendar-arrow-up' |
+ 'calendar-upload' |
+ 'comment-dots' |
+ 'commenting' |
+ 'plant-wilt' |
+ 'scarf' |
+ 'album-circle-plus' |
+ 'user-nurse-hair-long' |
+ 'diamond' |
+ 'square-left' |
+ 'arrow-alt-square-left' |
+ 'face-grin-squint' |
+ 'grin-squint' |
+ 'circle-ellipsis-vertical' |
+ 'hand-holding-dollar' |
+ 'hand-holding-usd' |
+ 'grid-dividers' |
+ 'bacterium' |
+ 'hand-pointer' |
+ 'drum-steelpan' |
+ 'hand-scissors' |
+ 'hands-praying' |
+ 'praying-hands' |
+ 'face-pensive' |
+ 'user-music' |
+ 'arrow-rotate-right' |
+ 'arrow-right-rotate' |
+ 'arrow-rotate-forward' |
+ 'redo' |
+ 'messages-dollar' |
+ 'comments-alt-dollar' |
+ 'sensor-on' |
+ 'balloon' |
+ 'biohazard' |
+ 'chess-queen-piece' |
+ 'chess-queen-alt' |
+ 'location-crosshairs' |
+ 'location' |
+ 'mars-double' |
+ 'house-person-leave' |
+ 'house-leave' |
+ 'house-person-depart' |
+ 'ruler-triangle' |
+ 'card-club' |
+ 'child-dress' |
+ 'users-between-lines' |
+ 'lungs-virus' |
+ 'spinner-third' |
+ 'face-grin-tears' |
+ 'grin-tears' |
+ 'phone' |
+ 'computer-mouse-scrollwheel' |
+ 'mouse-alt' |
+ 'calendar-xmark' |
+ 'calendar-times' |
+ 'child-reaching' |
+ 'table-layout' |
+ 'narwhal' |
+ 'ramp-loading' |
+ 'calendar-circle-plus' |
+ 'toothbrush' |
+ 'border-inner' |
+ 'paw-claws' |
+ 'kiwi-fruit' |
+ 'traffic-light-slow' |
+ 'rectangle-code' |
+ 'head-side-virus' |
+ 'keyboard-brightness' |
+ 'books-medical' |
+ 'lightbulb-slash' |
+ 'house-blank' |
+ 'home-blank' |
+ 'square-5' |
+ 'square-heart' |
+ 'heart-square' |
+ 'puzzle' |
+ 'user-gear' |
+ 'user-cog' |
+ 'pipe-circle-check' |
+ 'arrow-up-1-9' |
+ 'sort-numeric-up' |
+ 'octagon-exclamation' |
+ 'dial-low' |
+ 'door-closed' |
+ 'laptop-mobile' |
+ 'phone-laptop' |
+ 'conveyor-belt-boxes' |
+ 'conveyor-belt-alt' |
+ 'shield-virus' |
+ 'starfighter-twin-ion-engine-advanced' |
+ 'starfighter-alt-advanced' |
+ 'dice-six' |
+ 'starfighter-twin-ion-engine' |
+ 'starfighter-alt' |
+ 'rocket-launch' |
+ 'mosquito-net' |
+ 'vent-damper' |
+ 'bridge-water' |
+ 'ban-bug' |
+ 'debug' |
+ 'person-booth' |
+ 'text-width' |
+ 'garage-car' |
+ 'square-kanban' |
+ 'hat-wizard' |
+ 'pen-fancy' |
+ 'coffee-pot' |
+ 'mouse-field' |
+ 'person-digging' |
+ 'digging' |
+ 'shower-down' |
+ 'shower-alt' |
+ 'box-circle-check' |
+ 'brightness' |
+ 'car-side-bolt' |
+ 'ornament' |
+ 'phone-arrow-down-left' |
+ 'phone-arrow-down' |
+ 'phone-incoming' |
+ 'cloud-word' |
+ 'hand-fingers-crossed' |
+ 'trash' |
+ 'gauge-simple' |
+ 'gauge-simple-med' |
+ 'tachometer-average' |
+ 'arrow-down-small-big' |
+ 'sort-size-down-alt' |
+ 'book-medical' |
+ 'face-melting' |
+ 'poo' |
+ 'pen-clip-slash' |
+ 'pen-alt-slash' |
+ 'quote-right' |
+ 'quote-right-alt' |
+ 'scroll-old' |
+ 'guitars' |
+ 'phone-xmark' |
+ 'hose' |
+ 'clock-six' |
+ 'shirt' |
+ 't-shirt' |
+ 'tshirt' |
+ 'billboard' |
+ 'square-r' |
+ 'cubes' |
+ 'envelope-open-dollar' |
+ 'divide' |
+ 'sun-cloud' |
+ 'lamp-floor' |
+ 'square-7' |
+ 'tenge-sign' |
+ 'tenge' |
+ 'headphones' |
+ 'hands-holding' |
+ 'campfire' |
+ 'circle-ampersand' |
+ 'snowflakes' |
+ 'hands-clapping' |
+ 'republican' |
+ 'leaf-maple' |
+ 'arrow-left' |
+ 'person-circle-xmark' |
+ 'ruler' |
+ 'cup-straw-swoosh' |
+ 'temperature-sun' |
+ 'temperature-hot' |
+ 'align-left' |
+ 'dice-d6' |
+ 'restroom' |
+ 'high-definition' |
+ 'rectangle-hd' |
+ 'j' |
+ 'galaxy' |
+ 'users-viewfinder' |
+ 'file-video' |
+ 'cherries' |
+ 'up-right-from-square' |
+ 'external-link-alt' |
+ 'circle-sort' |
+ 'sort-circle' |
+ 'table-cells' |
+ 'th' |
+ 'file-pdf' |
+ 'siren' |
+ 'arrow-up-to-dotted-line' |
+ 'image-landscape' |
+ 'landscape' |
+ 'tank-water' |
+ 'curling-stone' |
+ 'curling' |
+ 'gamepad-modern' |
+ 'gamepad-alt' |
+ 'messages-question' |
+ 'book-bible' |
+ 'bible' |
+ 'o' |
+ 'suitcase-medical' |
+ 'medkit' |
+ 'briefcase-arrow-right' |
+ 'expand-wide' |
+ 'clock-eleven-thirty' |
+ 'rv' |
+ 'user-secret' |
+ 'otter' |
+ 'dreidel' |
+ 'person-dress' |
+ 'female' |
+ 'comment-dollar' |
+ 'business-time' |
+ 'briefcase-clock' |
+ 'flower-tulip' |
+ 'people-pants-simple' |
+ 'cloud-drizzle' |
+ 'table-cells-large' |
+ 'th-large' |
+ 'book-tanakh' |
+ 'tanakh' |
+ 'solar-system' |
+ 'seal-question' |
+ 'phone-volume' |
+ 'volume-control-phone' |
+ 'disc-drive' |
+ 'hat-cowboy-side' |
+ 'table-rows' |
+ 'rows' |
+ 'location-exclamation' |
+ 'map-marker-exclamation' |
+ 'face-fearful' |
+ 'clipboard-user' |
+ 'bus-school' |
+ 'film-slash' |
+ 'square-arrow-down-right' |
+ 'book-sparkles' |
+ 'book-spells' |
+ 'washing-machine' |
+ 'washer' |
+ 'child' |
+ 'lira-sign' |
+ 'user-visor' |
+ 'file-plus-minus' |
+ 'chess-clock-flip' |
+ 'chess-clock-alt' |
+ 'satellite' |
+ 'plane-lock' |
+ 'steering-wheel' |
+ 'tag' |
+ 'stretcher' |
+ 'book-section' |
+ 'book-law' |
+ 'inboxes' |
+ 'coffee-bean' |
+ 'circle-yen' |
+ 'brackets-curly' |
+ 'ellipsis-stroke-vertical' |
+ 'ellipsis-v-alt' |
+ 'comment' |
+ 'square-1' |
+ 'cake-candles' |
+ 'birthday-cake' |
+ 'cake' |
+ 'head-side' |
+ 'envelope' |
+ 'dolly-empty' |
+ 'face-tissue' |
+ 'angles-up' |
+ 'angle-double-up' |
+ 'bin-recycle' |
+ 'paperclip' |
+ 'chart-line-down' |
+ 'arrow-right-to-city' |
+ 'lock-a' |
+ 'ribbon' |
+ 'lungs' |
+ 'person-pinball' |
+ 'arrow-up-9-1' |
+ 'sort-numeric-up-alt' |
+ 'apple-core' |
+ 'circle-y' |
+ 'h6' |
+ 'litecoin-sign' |
+ 'circle-small' |
+ 'border-none' |
+ 'arrow-turn-down-left' |
+ 'circle-nodes' |
+ 'parachute-box' |
+ 'message-medical' |
+ 'comment-alt-medical' |
+ 'rugby-ball' |
+ 'comment-music' |
+ 'indent' |
+ 'tree-deciduous' |
+ 'tree-alt' |
+ 'puzzle-piece-simple' |
+ 'puzzle-piece-alt' |
+ 'truck-field-un' |
+ 'nfc-trash' |
+ 'hourglass' |
+ 'hourglass-empty' |
+ 'mountain' |
+ 'file-xmark' |
+ 'file-times' |
+ 'house-heart' |
+ 'home-heart' |
+ 'house-chimney-blank' |
+ 'meter-bolt' |
+ 'user-doctor' |
+ 'user-md' |
+ 'slash-back' |
+ 'circle-info' |
+ 'info-circle' |
+ 'fishing-rod' |
+ 'hammer-crash' |
+ 'message-heart' |
+ 'cloud-meatball' |
+ 'camera-polaroid' |
+ 'camera' |
+ 'camera-alt' |
+ 'square-virus' |
+ 'cart-arrow-up' |
+ 'meteor' |
+ 'car-on' |
+ 'sleigh' |
+ 'arrow-down-1-9' |
+ 'sort-numeric-asc' |
+ 'sort-numeric-down' |
+ 'buoy-mooring' |
+ 'square-4' |
+ 'hand-holding-droplet' |
+ 'hand-holding-water' |
+ 'tricycle-adult' |
+ 'waveform' |
+ 'water' |
+ 'star-sharp-half-stroke' |
+ 'star-sharp-half-alt' |
+ 'nfc-signal' |
+ 'plane-prop' |
+ 'calendar-check' |
+ 'clock-desk' |
+ 'calendar-clock' |
+ 'calendar-time' |
+ 'braille' |
+ 'prescription-bottle-medical' |
+ 'prescription-bottle-alt' |
+ 'plate-utensils' |
+ 'family-pants' |
+ 'hose-reel' |
+ 'house-window' |
+ 'landmark' |
+ 'truck' |
+ 'crosshairs' |
+ 'cloud-rainbow' |
+ 'person-cane' |
+ 'alien' |
+ 'tent' |
+ 'laptop-binary' |
+ 'vest-patches' |
+ 'people-dress-simple' |
+ 'check-double' |
+ 'arrow-down-a-z' |
+ 'sort-alpha-asc' |
+ 'sort-alpha-down' |
+ 'bowling-ball-pin' |
+ 'bell-school-slash' |
+ 'plus-large' |
+ 'money-bill-wheat' |
+ 'camera-viewfinder' |
+ 'screenshot' |
+ 'message-music' |
+ 'comment-alt-music' |
+ 'car-building' |
+ 'border-bottom-right' |
+ 'border-style-alt' |
+ 'octagon' |
+ 'comment-arrow-up-right' |
+ 'octagon-divide' |
+ 'cookie' |
+ 'arrow-rotate-left' |
+ 'arrow-left-rotate' |
+ 'arrow-rotate-back' |
+ 'arrow-rotate-backward' |
+ 'undo' |
+ 'tv-music' |
+ 'hard-drive' |
+ 'hdd' |
+ 'reel' |
+ 'face-grin-squint-tears' |
+ 'grin-squint-tears' |
+ 'dumbbell' |
+ 'rectangle-list' |
+ 'list-alt' |
+ 'tarp-droplet' |
+ 'alarm-exclamation' |
+ 'house-medical-circle-check' |
+ 'traffic-cone' |
+ 'grate' |
+ 'arrow-down-right' |
+ 'person-skiing-nordic' |
+ 'skiing-nordic' |
+ 'calendar-plus' |
+ 'person-from-portal' |
+ 'portal-exit' |
+ 'plane-arrival' |
+ 'cowbell-circle-plus' |
+ 'cowbell-more' |
+ 'circle-left' |
+ 'arrow-alt-circle-left' |
+ 'distribute-spacing-vertical' |
+ 'signal-bars-fair' |
+ 'signal-alt2' |
+ 'sportsball' |
+ 'game-console-handheld-crank' |
+ 'train-subway' |
+ 'subway' |
+ 'chart-gantt' |
+ 'face-smile-upside-down' |
+ 'ball-pile' |
+ 'badge-dollar' |
+ 'money-bills-simple' |
+ 'money-bills-alt' |
+ 'list-timeline' |
+ 'indian-rupee-sign' |
+ 'indian-rupee' |
+ 'inr' |
+ 'crop-simple' |
+ 'crop-alt' |
+ 'money-bill-1' |
+ 'money-bill-alt' |
+ 'left-long' |
+ 'long-arrow-alt-left' |
+ 'keyboard-down' |
+ 'circle-up-right' |
+ 'cloud-bolt-moon' |
+ 'thunderstorm-moon' |
+ 'dna' |
+ 'virus-slash' |
+ 'bracket-round-right' |
+ 'circle-sterling' |
+ 'circle-5' |
+ 'minus' |
+ 'subtract' |
+ 'fire-flame' |
+ 'flame' |
+ 'right-to-line' |
+ 'arrow-alt-to-right' |
+ 'gif' |
+ 'chess' |
+ 'trash-slash' |
+ 'arrow-left-long' |
+ 'long-arrow-left' |
+ 'plug-circle-check' |
+ 'font-case' |
+ 'street-view' |
+ 'arrow-down-left' |
+ 'franc-sign' |
+ 'flask-round-poison' |
+ 'flask-poison' |
+ 'volume-off' |
+ 'book-circle-arrow-right' |
+ 'chart-user' |
+ 'user-chart' |
+ 'hands-asl-interpreting' |
+ 'american-sign-language-interpreting' |
+ 'asl-interpreting' |
+ 'hands-american-sign-language-interpreting' |
+ 'presentation-screen' |
+ 'presentation' |
+ 'circle-bolt' |
+ 'face-smile-halo' |
+ 'cart-circle-arrow-down' |
+ 'house-person-return' |
+ 'house-person-arrive' |
+ 'house-return' |
+ 'message-xmark' |
+ 'comment-alt-times' |
+ 'message-times' |
+ 'file-certificate' |
+ 'file-award' |
+ 'user-doctor-hair-long' |
+ 'camera-security' |
+ 'camera-home' |
+ 'gear' |
+ 'cog' |
+ 'droplet-slash' |
+ 'tint-slash' |
+ 'book-heart' |
+ 'mosque' |
+ 'duck' |
+ 'mosquito' |
+ 'star-of-david' |
+ 'flag-swallowtail' |
+ 'flag-alt' |
+ 'person-military-rifle' |
+ 'car-garage' |
+ 'cart-shopping' |
+ 'shopping-cart' |
+ 'book-font' |
+ 'shield-plus' |
+ 'vials' |
+ 'eye-dropper-full' |
+ 'distribute-spacing-horizontal' |
+ 'tablet-rugged' |
+ 'temperature-snow' |
+ 'temperature-frigid' |
+ 'moped' |
+ 'face-smile-plus' |
+ 'smile-plus' |
+ 'radio-tuner' |
+ 'radio-alt' |
+ 'face-swear' |
+ 'water-arrow-down' |
+ 'water-lower' |
+ 'scanner-touchscreen' |
+ 'circle-7' |
+ 'plug-circle-plus' |
+ 'person-ski-jumping' |
+ 'ski-jump' |
+ 'place-of-worship' |
+ 'water-arrow-up' |
+ 'water-rise' |
+ 'waveform-lines' |
+ 'waveform-path' |
+ 'split' |
+ 'film-canister' |
+ 'film-cannister' |
+ 'folder-xmark' |
+ 'folder-times' |
+ 'toilet-paper-blank' |
+ 'toilet-paper-alt' |
+ 'tablet-screen' |
+ 'tablet-android-alt' |
+ 'hexagon-vertical-nft-slanted' |
+ 'folder-music' |
+ 'display-medical' |
+ 'desktop-medical' |
+ 'share-all' |
+ 'peapod' |
+ 'chess-clock' |
+ 'axe' |
+ 'square-d' |
+ 'grip-vertical' |
+ 'mobile-signal-out' |
+ 'arrow-turn-up' |
+ 'level-up' |
+ 'u' |
+ 'arrow-up-from-dotted-line' |
+ 'square-root-variable' |
+ 'square-root-alt' |
+ 'light-switch-on' |
+ 'arrow-down-arrow-up' |
+ 'sort-alt' |
+ 'raindrops' |
+ 'dash' |
+ 'minus-large' |
+ 'clock' |
+ 'clock-four' |
+ 'input-numeric' |
+ 'truck-tow' |
+ 'backward-step' |
+ 'step-backward' |
+ 'pallet' |
+ 'car-bolt' |
+ 'arrows-maximize' |
+ 'expand-arrows' |
+ 'faucet' |
+ 'cloud-sleet' |
+ 'lamp-street' |
+ 'list-radio' |
+ 'pen-nib-slash' |
+ 'baseball-bat-ball' |
+ 'square-up-left' |
+ 'overline' |
+ 's' |
+ 'timeline' |
+ 'keyboard' |
+ 'arrows-from-dotted-line' |
+ 'usb-drive' |
+ 'ballot' |
+ 'caret-down' |
+ 'location-dot-slash' |
+ 'map-marker-alt-slash' |
+ 'cards' |
+ 'house-chimney-medical' |
+ 'clinic-medical' |
+ 'boxing-glove' |
+ 'glove-boxing' |
+ 'temperature-three-quarters' |
+ 'temperature3' |
+ 'thermometer3' |
+ 'thermometer-three-quarters' |
+ 'bell-school' |
+ 'mobile-screen' |
+ 'mobile-android-alt' |
+ 'plane-up' |
+ 'folder-heart' |
+ 'circle-location-arrow' |
+ 'location-circle' |
+ 'face-head-bandage' |
+ 'sushi-roll' |
+ 'maki-roll' |
+ 'makizushi' |
+ 'car-bump' |
+ 'piggy-bank' |
+ 'racquet' |
+ 'car-mirrors' |
+ 'industry-windows' |
+ 'industry-alt' |
+ 'bolt-auto' |
+ 'battery-half' |
+ 'battery3' |
+ 'flux-capacitor' |
+ 'mountain-city' |
+ 'coins' |
+ 'honey-pot' |
+ 'olive' |
+ 'khanda' |
+ 'filter-list' |
+ 'outlet' |
+ 'sliders' |
+ 'sliders-h' |
+ 'cauldron' |
+ 'people' |
+ 'folder-tree' |
+ 'network-wired' |
+ 'croissant' |
+ 'map-pin' |
+ 'hamsa' |
+ 'cent-sign' |
+ 'swords-laser' |
+ 'flask' |
+ 'person-pregnant' |
+ 'square-u' |
+ 'wand-sparkles' |
+ 'router' |
+ 'ellipsis-vertical' |
+ 'ellipsis-v' |
+ 'sword-laser-alt' |
+ 'ticket' |
+ 'power-off' |
+ 'coin' |
+ 'laptop-slash' |
+ 'right-long' |
+ 'long-arrow-alt-right' |
+ 'circle-b' |
+ 'person-dress-simple' |
+ 'pipe-collar' |
+ 'lights-holiday' |
+ 'citrus' |
+ 'flag-usa' |
+ 'laptop-file' |
+ 'tty' |
+ 'teletype' |
+ 'chart-tree-map' |
+ 'diagram-next' |
+ 'person-rifle' |
+ 'clock-five-thirty' |
+ 'pipe-valve' |
+ 'arrow-up-from-arc' |
+ 'face-spiral-eyes' |
+ 'compress-wide' |
+ 'circle-phone-hangup' |
+ 'phone-circle-down' |
+ 'gear-complex-code' |
+ 'house-medical-circle-exclamation' |
+ 'badminton' |
+ 'closed-captioning' |
+ 'person-hiking' |
+ 'hiking' |
+ 'right-from-line' |
+ 'arrow-alt-from-left' |
+ 'venus-double' |
+ 'images' |
+ 'calculator' |
+ 'shuttlecock' |
+ 'user-hair' |
+ 'eye-evil' |
+ 'people-pulling' |
+ 'n' |
+ 'garage' |
+ 'cable-car' |
+ 'tram' |
+ 'shovel-snow' |
+ 'cloud-rain' |
+ 'face-lying' |
+ 'sprinkler' |
+ 'building-circle-xmark' |
+ 'person-sledding' |
+ 'sledding' |
+ 'game-console-handheld' |
+ 'ship' |
+ 'clock-six-thirty' |
+ 'battery-slash' |
+ 'tugrik-sign' |
+ 'arrows-down-to-line' |
+ 'download' |
+ 'shelves' |
+ 'inventory' |
+ 'cloud-snow' |
+ 'face-grin' |
+ 'grin' |
+ 'delete-left' |
+ 'backspace' |
+ 'oven' |
+ 'cloud-binary' |
+ 'eye-dropper' |
+ 'eye-dropper-empty' |
+ 'eyedropper' |
+ 'comment-captions' |
+ 'comments-question' |
+ 'scribble' |
+ 'rotate-exclamation' |
+ 'file-circle-check' |
+ 'glass' |
+ 'loader' |
+ 'forward' |
+ 'user-pilot' |
+ 'mobile' |
+ 'mobile-android' |
+ 'mobile-phone' |
+ 'code-pull-request-closed' |
+ 'face-meh' |
+ 'meh' |
+ 'align-center' |
+ 'book-skull' |
+ 'book-dead' |
+ 'id-card' |
+ 'drivers-license' |
+ 'face-dotted' |
+ 'face-worried' |
+ 'outdent' |
+ 'dedent' |
+ 'heart-circle-exclamation' |
+ 'house' |
+ 'home' |
+ 'home-alt' |
+ 'home-lg-alt' |
+ 'vector-circle' |
+ 'car-circle-bolt' |
+ 'calendar-week' |
+ 'flying-disc' |
+ 'laptop-medical' |
+ 'square-down-right' |
+ 'b' |
+ 'seat-airline' |
+ 'moon-over-sun' |
+ 'eclipse-alt' |
+ 'pipe' |
+ 'file-medical' |
+ 'potato' |
+ 'dice-one' |
+ 'circle-a' |
+ 'helmet-battle' |
+ 'butter' |
+ 'blanket-fire' |
+ 'kiwi-bird' |
+ 'castle' |
+ 'golf-club' |
+ 'arrow-right-arrow-left' |
+ 'exchange' |
+ 'rotate-right' |
+ 'redo-alt' |
+ 'rotate-forward' |
+ 'utensils' |
+ 'cutlery' |
+ 'arrow-up-wide-short' |
+ 'sort-amount-up' |
+ 'chart-pie-simple-circle-dollar' |
+ 'balloons' |
+ 'mill-sign' |
+ 'bowl-rice' |
+ 'timeline-arrow' |
+ 'skull' |
+ 'game-board-simple' |
+ 'game-board-alt' |
+ 'circle-video' |
+ 'video-circle' |
+ 'chart-scatter-bubble' |
+ 'house-turret' |
+ 'banana' |
+ 'hand-holding-skull' |
+ 'people-dress' |
+ 'loveseat' |
+ 'couch-small' |
+ 'tower-broadcast' |
+ 'broadcast-tower' |
+ 'truck-pickup' |
+ 'block-quote' |
+ 'up-long' |
+ 'long-arrow-alt-up' |
+ 'stop' |
+ 'code-merge' |
+ 'money-check-dollar-pen' |
+ 'money-check-edit-alt' |
+ 'up-from-line' |
+ 'arrow-alt-from-bottom' |
+ 'upload' |
+ 'hurricane' |
+ 'grid-round-2-plus' |
+ 'people-pants' |
+ 'mound' |
+ 'windsock' |
+ 'circle-half' |
+ 'brake-warning' |
+ 'toilet-portable' |
+ 'compact-disc' |
+ 'file-arrow-down' |
+ 'file-download' |
+ 'saxophone-fire' |
+ 'sax-hot' |
+ 'camera-web-slash' |
+ 'webcam-slash' |
+ 'folder-medical' |
+ 'folder-gear' |
+ 'folder-cog' |
+ 'hand-wave' |
+ 'arrow-up-arrow-down' |
+ 'sort-up-down' |
+ 'caravan' |
+ 'shield-cat' |
+ 'message-slash' |
+ 'comment-alt-slash' |
+ 'bolt' |
+ 'zap' |
+ 'trash-can-check' |
+ 'glass-water' |
+ 'oil-well' |
+ 'person-simple' |
+ 'vault' |
+ 'mars' |
+ 'toilet' |
+ 'plane-circle-xmark' |
+ 'yen-sign' |
+ 'cny' |
+ 'jpy' |
+ 'rmb' |
+ 'yen' |
+ 'gear-code' |
+ 'notes' |
+ 'ruble-sign' |
+ 'rouble' |
+ 'rub' |
+ 'ruble' |
+ 'trash-undo' |
+ 'trash-arrow-turn-left' |
+ 'champagne-glass' |
+ 'glass-champagne' |
+ 'objects-align-center-horizontal' |
+ 'sun' |
+ 'trash-can-slash' |
+ 'trash-alt-slash' |
+ 'screen-users' |
+ 'users-class' |
+ 'guitar' |
+ 'square-arrow-left' |
+ 'arrow-square-left' |
+ 'square-8' |
+ 'face-smile-hearts' |
+ 'brackets-square' |
+ 'brackets' |
+ 'laptop-arrow-down' |
+ 'hockey-stick-puck' |
+ 'house-tree' |
+ 'signal-fair' |
+ 'signal2' |
+ 'face-laugh-wink' |
+ 'laugh-wink' |
+ 'circle-dollar' |
+ 'dollar-circle' |
+ 'usd-circle' |
+ 'horse-head' |
+ 'arrows-repeat' |
+ 'repeat-alt' |
+ 'bore-hole' |
+ 'industry' |
+ 'image-polaroid' |
+ 'wave-triangle' |
+ 'person-running-fast' |
+ 'circle-down' |
+ 'arrow-alt-circle-down' |
+ 'grill' |
+ 'arrows-turn-to-dots' |
+ 'chart-mixed' |
+ 'analytics' |
+ 'florin-sign' |
+ 'arrow-down-short-wide' |
+ 'sort-amount-desc' |
+ 'sort-amount-down-alt' |
+ 'less-than' |
+ 'display-code' |
+ 'desktop-code' |
+ 'face-drooling' |
+ 'oil-temperature' |
+ 'oil-temp' |
+ 'square-question' |
+ 'question-square' |
+ 'air-conditioner' |
+ 'angle-down' |
+ 'mountains' |
+ 'omega' |
+ 'car-tunnel' |
+ 'person-dolly-empty' |
+ 'pan-food' |
+ 'head-side-cough' |
+ 'grip-lines' |
+ 'thumbs-down' |
+ 'user-lock' |
+ 'arrow-right-long' |
+ 'long-arrow-right' |
+ 'tickets-airline' |
+ 'anchor-circle-xmark' |
+ 'ellipsis' |
+ 'ellipsis-h' |
+ 'nfc-slash' |
+ 'chess-pawn' |
+ 'kit-medical' |
+ 'first-aid' |
+ 'grid-2-plus' |
+ 'bells' |
+ 'person-through-window' |
+ 'toolbox' |
+ 'envelope-dot' |
+ 'envelope-badge' |
+ 'hands-holding-circle' |
+ 'bug' |
+ 'bowl-chopsticks' |
+ 'credit-card' |
+ 'credit-card-alt' |
+ 'circle-s' |
+ 'box-ballot' |
+ 'car' |
+ 'automobile' |
+ 'hand-holding-hand' |
+ 'user-tie-hair' |
+ 'podium-star' |
+ 'user-hair-mullet' |
+ 'business-front' |
+ 'party-back' |
+ 'trian-balbot' |
+ 'microphone-stand' |
+ 'book-open-reader' |
+ 'book-reader' |
+ 'family-dress' |
+ 'circle-x' |
+ 'cabin' |
+ 'mountain-sun' |
+ 'chart-simple-horizontal' |
+ 'bluetooth' |
+ 'arrows-left-right-to-line' |
+ 'hand-back-point-left' |
+ 'message-dots' |
+ 'comment-alt-dots' |
+ 'messaging' |
+ 'file-heart' |
+ 'beer-mug' |
+ 'beer-foam' |
+ 'dice-d20' |
+ 'drone' |
+ 'truck-droplet' |
+ 'file-circle-xmark' |
+ 'temperature-arrow-up' |
+ 'temperature-up' |
+ 'medal' |
+ 'bed' |
+ 'book-copy' |
+ 'square-h' |
+ 'h-square' |
+ 'square-c' |
+ 'clock-two' |
+ 'square-ellipsis-vertical' |
+ 'calendar-users' |
+ 'podcast' |
+ 'bee' |
+ 'temperature-full' |
+ 'temperature4' |
+ 'thermometer4' |
+ 'thermometer-full' |
+ 'bell' |
+ 'candy-bar' |
+ 'chocolate-bar' |
+ 'xmark-large' |
+ 'pinata' |
+ 'arrows-from-line' |
+ 'superscript' |
+ 'bowl-spoon' |
+ 'hexagon-check' |
+ 'plug-circle-xmark' |
+ 'star-of-life' |
+ 'phone-slash' |
+ 'traffic-light-stop' |
+ 'paint-roller' |
+ 'accent-grave' |
+ 'handshake-angle' |
+ 'hands-helping' |
+ 'circle-0' |
+ 'dial-med-low' |
+ 'location-dot' |
+ 'map-marker-alt' |
+ 'crab' |
+ 'box-open-full' |
+ 'box-full' |
+ 'file' |
+ 'greater-than' |
+ 'quotes' |
+ 'pretzel' |
+ 'person-swimming' |
+ 'swimmer' |
+ 'arrow-down' |
+ 'user-robot-xmarks' |
+ 'message-quote' |
+ 'comment-alt-quote' |
+ 'candy-corn' |
+ 'folder-magnifying-glass' |
+ 'folder-search' |
+ 'notebook' |
+ 'droplet' |
+ 'tint' |
+ 'bullseye-pointer' |
+ 'eraser' |
+ 'hexagon-image' |
+ 'earth-americas' |
+ 'earth' |
+ 'earth-america' |
+ 'globe-americas' |
+ 'crate-apple' |
+ 'apple-crate' |
+ 'person-burst' |
+ 'game-board' |
+ 'hat-chef' |
+ 'hand-back-point-right' |
+ 'dove' |
+ 'snowflake-droplets' |
+ 'battery-empty' |
+ 'battery0' |
+ 'grid-4' |
+ 'socks' |
+ 'face-sunglasses' |
+ 'inbox' |
+ 'square-0' |
+ 'section' |
+ 'square-this-way-up' |
+ 'box-up' |
+ 'gauge-high' |
+ 'tachometer-alt' |
+ 'tachometer-alt-fast' |
+ 'square-ampersand' |
+ 'envelope-open-text' |
+ 'lamp-desk' |
+ 'hospital' |
+ 'hospital-alt' |
+ 'hospital-wide' |
+ 'poll-people' |
+ 'whiskey-glass-ice' |
+ 'glass-whiskey-rocks' |
+ 'wine-bottle' |
+ 'chess-rook' |
+ 'user-bounty-hunter' |
+ 'bars-staggered' |
+ 'reorder' |
+ 'stream' |
+ 'diagram-sankey' |
+ 'cloud-hail-mixed' |
+ 'circle-up-left' |
+ 'dharmachakra' |
+ 'objects-align-left' |
+ 'oil-can-drip' |
+ 'face-smiling-hands' |
+ 'broccoli' |
+ 'route-interstate' |
+ 'ear-muffs' |
+ 'hotdog' |
+ 'transporter-empty' |
+ 'person-walking-with-cane' |
+ 'blind' |
+ 'angle-90' |
+ 'rectangle-terminal' |
+ 'kite' |
+ 'drum' |
+ 'scrubber' |
+ 'ice-cream' |
+ 'heart-circle-bolt' |
+ 'fish-bones' |
+ 'deer-rudolph' |
+ 'fax' |
+ 'paragraph' |
+ 'head-side-heart' |
+ 'square-e' |
+ 'meter-fire' |
+ 'cloud-hail' |
+ 'check-to-slot' |
+ 'vote-yea' |
+ 'money-from-bracket' |
+ 'star-half' |
+ 'car-bus' |
+ 'speaker' |
+ 'timer' |
+ 'boxes-stacked' |
+ 'boxes' |
+ 'boxes-alt' |
+ 'grill-hot' |
+ 'ballot-check' |
+ 'link' |
+ 'chain' |
+ 'ear-listen' |
+ 'assistive-listening-systems' |
+ 'file-minus' |
+ 'tree-city' |
+ 'play' |
+ 'font' |
+ 'cup-togo' |
+ 'coffee-togo' |
+ 'square-down-left' |
+ 'burger-lettuce' |
+ 'rupiah-sign' |
+ 'magnifying-glass' |
+ 'search' |
+ 'table-tennis-paddle-ball' |
+ 'ping-pong-paddle-ball' |
+ 'table-tennis' |
+ 'person-dots-from-line' |
+ 'diagnoses' |
+ 'chevrons-down' |
+ 'chevron-double-down' |
+ 'trash-can-arrow-up' |
+ 'trash-restore-alt' |
+ 'signal-good' |
+ 'signal3' |
+ 'location-question' |
+ 'map-marker-question' |
+ 'floppy-disk-circle-xmark' |
+ 'floppy-disk-times' |
+ 'save-circle-xmark' |
+ 'save-times' |
+ 'naira-sign' |
+ 'peach' |
+ 'taxi-bus' |
+ 'bracket-curly' |
+ 'bracket-curly-left' |
+ 'lobster' |
+ 'cart-flatbed-empty' |
+ 'dolly-flatbed-empty' |
+ 'colon' |
+ 'cart-arrow-down' |
+ 'wand' |
+ 'walkie-talkie' |
+ 'file-pen' |
+ 'file-edit' |
+ 'receipt' |
+ 'table-picnic' |
+ 'square-pen' |
+ 'pen-square' |
+ 'pencil-square' |
+ 'circle-microphone-lines' |
+ 'microphone-circle-alt' |
+ 'display-slash' |
+ 'desktop-slash' |
+ 'suitcase-rolling' |
+ 'person-circle-exclamation' |
+ 'transporter-2' |
+ 'hands-holding-diamond' |
+ 'hand-receiving' |
+ 'money-bill-simple-wave' |
+ 'chevron-down' |
+ 'battery-full' |
+ 'battery' |
+ 'battery5' |
+ 'bell-plus' |
+ 'book-arrow-right' |
+ 'hospitals' |
+ 'club' |
+ 'skull-crossbones' |
+ 'droplet-degree' |
+ 'dewpoint' |
+ 'code-compare' |
+ 'list-ul' |
+ 'list-dots' |
+ 'hand-holding-magic' |
+ 'watermelon-slice' |
+ 'circle-ellipsis' |
+ 'school-lock' |
+ 'tower-cell' |
+ 'sd-cards' |
+ 'jug-bottle' |
+ 'down-long' |
+ 'long-arrow-alt-down' |
+ 'envelopes' |
+ 'phone-office' |
+ 'ranking-star' |
+ 'chess-king' |
+ 'nfc-pen' |
+ 'person-harassing' |
+ 'hat-winter' |
+ 'brazilian-real-sign' |
+ 'landmark-dome' |
+ 'landmark-alt' |
+ 'bone-break' |
+ 'arrow-up' |
+ 'down-from-dotted-line' |
+ 'tv' |
+ 'television' |
+ 'tv-alt' |
+ 'border-left' |
+ 'circle-divide' |
+ 'shrimp' |
+ 'list-check' |
+ 'tasks' |
+ 'diagram-subtask' |
+ 'jug-detergent' |
+ 'circle-user' |
+ 'user-circle' |
+ 'square-y' |
+ 'user-doctor-hair' |
+ 'planet-ringed' |
+ 'mushroom' |
+ 'user-shield' |
+ 'megaphone' |
+ 'wreath-laurel' |
+ 'circle-exclamation-check' |
+ 'wind' |
+ 'box-dollar' |
+ 'box-usd' |
+ 'car-burst' |
+ 'car-crash' |
+ 'y' |
+ 'user-headset' |
+ 'arrows-retweet' |
+ 'retweet-alt' |
+ 'person-snowboarding' |
+ 'snowboarding' |
+ 'square-chevron-right' |
+ 'chevron-square-right' |
+ 'lacrosse-stick-ball' |
+ 'truck-fast' |
+ 'shipping-fast' |
+ 'user-magnifying-glass' |
+ 'star-sharp' |
+ 'comment-heart' |
+ 'circle-1' |
+ 'circle-star' |
+ 'star-circle' |
+ 'fish' |
+ 'cloud-fog' |
+ 'fog' |
+ 'waffle' |
+ 'music-note' |
+ 'music-alt' |
+ 'hexagon-exclamation' |
+ 'cart-shopping-fast' |
+ 'object-union' |
+ 'user-graduate' |
+ 'starfighter' |
+ 'circle-half-stroke' |
+ 'adjust' |
+ 'arrow-right-long-to-line' |
+ 'square-arrow-down' |
+ 'arrow-square-down' |
+ 'diamond-half-stroke' |
+ 'clapperboard' |
+ 'square-chevron-left' |
+ 'chevron-square-left' |
+ 'phone-intercom' |
+ 'link-horizontal' |
+ 'chain-horizontal' |
+ 'mango' |
+ 'music-note-slash' |
+ 'music-alt-slash' |
+ 'circle-radiation' |
+ 'radiation-alt' |
+ 'face-tongue-sweat' |
+ 'globe-stand' |
+ 'baseball' |
+ 'baseball-ball' |
+ 'circle-p' |
+ 'award-simple' |
+ 'jet-fighter-up' |
+ 'diagram-project' |
+ 'project-diagram' |
+ 'pedestal' |
+ 'chart-pyramid' |
+ 'sidebar' |
+ 'snowman-head' |
+ 'frosty-head' |
+ 'copy' |
+ 'burger-glass' |
+ 'volume-xmark' |
+ 'volume-mute' |
+ 'volume-times' |
+ 'hand-sparkles' |
+ 'bars-filter' |
+ 'paintbrush-pencil' |
+ 'party-bell' |
+ 'user-vneck-hair' |
+ 'jack-o-lantern' |
+ 'grip' |
+ 'grip-horizontal' |
+ 'share-from-square' |
+ 'share-square' |
+ 'keynote' |
+ 'child-combatant' |
+ 'child-rifle' |
+ 'gun' |
+ 'square-phone' |
+ 'phone-square' |
+ 'hat-beach' |
+ 'plus' |
+ 'add' |
+ 'expand' |
+ 'computer' |
+ 'fort' |
+ 'cloud-check' |
+ 'xmark' |
+ 'close' |
+ 'multiply' |
+ 'remove' |
+ 'times' |
+ 'face-smirking' |
+ 'arrows-up-down-left-right' |
+ 'arrows' |
+ 'chalkboard-user' |
+ 'chalkboard-teacher' |
+ 'rhombus' |
+ 'claw-marks' |
+ 'peso-sign' |
+ 'face-smile-tongue' |
+ 'cart-circle-xmark' |
+ 'building-shield' |
+ 'circle-phone-flip' |
+ 'phone-circle-alt' |
+ 'baby' |
+ 'users-line' |
+ 'quote-left' |
+ 'quote-left-alt' |
+ 'tractor' |
+ 'key-skeleton' |
+ 'trash-arrow-up' |
+ 'trash-restore' |
+ 'arrow-down-up-lock' |
+ 'arrow-down-to-bracket' |
+ 'lines-leaning' |
+ 'square-q' |
+ 'ruler-combined' |
+ 'symbols' |
+ 'icons-alt' |
+ 'copyright' |
+ 'flask-gear' |
+ 'highlighter-line' |
+ 'bracket-square' |
+ 'bracket' |
+ 'bracket-left' |
+ 'island-tropical' |
+ 'island-tree-palm' |
+ 'arrow-right-from-line' |
+ 'arrow-from-left' |
+ 'h2' |
+ 'equals' |
+ 'cake-slice' |
+ 'shortcake' |
+ 'peanut' |
+ 'wrench-simple' |
+ 'blender' |
+ 'teeth' |
+ 'tally-2' |
+ 'shekel-sign' |
+ 'ils' |
+ 'shekel' |
+ 'sheqel' |
+ 'sheqel-sign' |
+ 'cars' |
+ 'axe-battle' |
+ 'user-hair-long' |
+ 'map' |
+ 'file-circle-info' |
+ 'face-disappointed' |
+ 'lasso-sparkles' |
+ 'clock-eleven' |
+ 'rocket' |
+ 'siren-on' |
+ 'clock-ten' |
+ 'candle-holder' |
+ 'video-arrow-down-left' |
+ 'photo-film' |
+ 'photo-video' |
+ 'floppy-disk-circle-arrow-right' |
+ 'save-circle-arrow-right' |
+ 'folder-minus' |
+ 'planet-moon' |
+ 'face-eyes-xmarks' |
+ 'chart-scatter' |
+ 'display-arrow-down' |
+ 'store' |
+ 'arrow-trend-up' |
+ 'plug-circle-minus' |
+ 'olive-branch' |
+ 'angle' |
+ 'vacuum-robot' |
+ 'sign-hanging' |
+ 'sign' |
+ 'square-divide' |
+ 'signal-stream-slash' |
+ 'bezier-curve' |
+ 'eye-dropper-half' |
+ 'store-lock' |
+ 'bell-slash' |
+ 'cloud-bolt-sun' |
+ 'thunderstorm-sun' |
+ 'camera-slash' |
+ 'comment-quote' |
+ 'tablet' |
+ 'tablet-android' |
+ 'school-flag' |
+ 'message-code' |
+ 'glass-half' |
+ 'glass-half-empty' |
+ 'glass-half-full' |
+ 'fill' |
+ 'message-minus' |
+ 'comment-alt-minus' |
+ 'angle-up' |
+ 'dinosaur' |
+ 'drumstick-bite' |
+ 'link-horizontal-slash' |
+ 'chain-horizontal-slash' |
+ 'holly-berry' |
+ 'nose' |
+ 'chevron-left' |
+ 'bacteria' |
+ 'clouds' |
+ 'money-bill-simple' |
+ 'hand-lizard' |
+ 'table-pivot' |
+ 'filter-slash' |
+ 'trash-can-undo' |
+ 'trash-can-arrow-turn-left' |
+ 'trash-undo-alt' |
+ 'notdef' |
+ 'disease' |
+ 'person-to-door' |
+ 'turntable' |
+ 'briefcase-medical' |
+ 'genderless' |
+ 'chevron-right' |
+ 'signal-weak' |
+ 'signal1' |
+ 'clock-five' |
+ 'retweet' |
+ 'car-rear' |
+ 'car-alt' |
+ 'pump-soap' |
+ 'computer-classic' |
+ 'frame' |
+ 'video-slash' |
+ 'battery-quarter' |
+ 'battery2' |
+ 'ellipsis-stroke' |
+ 'ellipsis-h-alt' |
+ 'radio' |
+ 'baby-carriage' |
+ 'carriage-baby' |
+ 'face-expressionless' |
+ 'down-to-dotted-line' |
+ 'cloud-music' |
+ 'traffic-light' |
+ 'cloud-minus' |
+ 'thermometer' |
+ 'shield-minus' |
+ 'vr-cardboard' |
+ 'car-tilt' |
+ 'gauge-circle-minus' |
+ 'brightness-low' |
+ 'hand-middle-finger' |
+ 'percent' |
+ 'percentage' |
+ 'truck-moving' |
+ 'glass-water-droplet' |
+ 'conveyor-belt' |
+ 'location-check' |
+ 'map-marker-check' |
+ 'coin-vertical' |
+ 'display' |
+ 'person-sign' |
+ 'face-smile' |
+ 'smile' |
+ 'phone-hangup' |
+ 'signature-slash' |
+ 'thumbtack' |
+ 'thumb-tack' |
+ 'wheat-slash' |
+ 'trophy' |
+ 'clouds-sun' |
+ 'person-praying' |
+ 'pray' |
+ 'hammer' |
+ 'face-vomit' |
+ 'speakers' |
+ 'tty-answer' |
+ 'teletype-answer' |
+ 'mug-tea-saucer' |
+ 'diagram-lean-canvas' |
+ 'alt' |
+ 'dial' |
+ 'dial-med-high' |
+ 'hand-peace' |
+ 'circle-trash' |
+ 'trash-circle' |
+ 'rotate' |
+ 'sync-alt' |
+ 'circle-quarters' |
+ 'spinner' |
+ 'tower-control' |
+ 'arrow-up-triangle-square' |
+ 'sort-shapes-up' |
+ 'whale' |
+ 'robot' |
+ 'peace' |
+ 'party-horn' |
+ 'gears' |
+ 'cogs' |
+ 'sun-bright' |
+ 'sun-alt' |
+ 'warehouse' |
+ 'conveyor-belt-arm' |
+ 'lock-keyhole-open' |
+ 'lock-open-alt' |
+ 'square-fragile' |
+ 'box-fragile' |
+ 'square-wine-glass-crack' |
+ 'arrow-up-right-dots' |
+ 'square-n' |
+ 'splotch' |
+ 'face-grin-hearts' |
+ 'grin-hearts' |
+ 'meter' |
+ 'mandolin' |
+ 'dice-four' |
+ 'sim-card' |
+ 'transgender' |
+ 'transgender-alt' |
+ 'mercury' |
+ 'up-from-bracket' |
+ 'knife-kitchen' |
+ 'border-right' |
+ 'arrow-turn-down' |
+ 'level-down' |
+ 'spade' |
+ 'card-spade' |
+ 'line-columns' |
+ 'arrow-right-to-line' |
+ 'arrow-to-right' |
+ 'person-falling-burst' |
+ 'flag-pennant' |
+ 'pennant' |
+ 'conveyor-belt-empty' |
+ 'user-group-simple' |
+ 'award' |
+ 'ticket-simple' |
+ 'ticket-alt' |
+ 'building' |
+ 'angles-left' |
+ 'angle-double-left' |
+ 'camcorder' |
+ 'video-handheld' |
+ 'pancakes' |
+ 'album-circle-user' |
+ 'qrcode' |
+ 'dice-d10' |
+ 'fireplace' |
+ 'browser' |
+ 'pen-paintbrush' |
+ 'pencil-paintbrush' |
+ 'fish-cooked' |
+ 'chair-office' |
+ 'nesting-dolls' |
+ 'clock-rotate-left' |
+ 'history' |
+ 'trumpet' |
+ 'face-grin-beam-sweat' |
+ 'grin-beam-sweat' |
+ 'fire-smoke' |
+ 'phone-missed' |
+ 'file-export' |
+ 'arrow-right-from-file' |
+ 'shield' |
+ 'shield-blank' |
+ 'arrow-up-short-wide' |
+ 'sort-amount-up-alt' |
+ 'arrows-repeat-1' |
+ 'repeat1-alt' |
+ 'gun-slash' |
+ 'avocado' |
+ 'binary' |
+ 'glasses-round' |
+ 'glasses-alt' |
+ 'phone-plus' |
+ 'ditto' |
+ 'person-seat' |
+ 'house-medical' |
+ 'golf-ball-tee' |
+ 'golf-ball' |
+ 'circle-chevron-left' |
+ 'chevron-circle-left' |
+ 'house-chimney-window' |
+ 'scythe' |
+ 'pen-nib' |
+ 'ban-parking' |
+ 'parking-circle-slash' |
+ 'tent-arrow-turn-left' |
+ 'face-diagonal-mouth' |
+ 'diagram-cells' |
+ 'cricket-bat-ball' |
+ 'cricket' |
+ 'tents' |
+ 'wand-magic' |
+ 'magic' |
+ 'dog' |
+ 'pen-line' |
+ 'atom-simple' |
+ 'atom-alt' |
+ 'ampersand' |
+ 'carrot' |
+ 'arrow-up-from-line' |
+ 'arrow-from-bottom' |
+ 'moon' |
+ 'pen-slash' |
+ 'wine-glass-empty' |
+ 'wine-glass-alt' |
+ 'square-star' |
+ 'cheese' |
+ 'send-backward' |
+ 'yin-yang' |
+ 'music' |
+ 'compass-slash' |
+ 'clock-one' |
+ 'file-music' |
+ 'code-commit' |
+ 'temperature-low' |
+ 'person-biking' |
+ 'biking' |
+ 'display-chart-up-circle-currency' |
+ 'skeleton' |
+ 'circle-g' |
+ 'circle-arrow-up-left' |
+ 'coin-blank' |
+ 'broom' |
+ 'vacuum' |
+ 'shield-heart' |
+ 'card-heart' |
+ 'lightbulb-cfl-on' |
+ 'melon' |
+ 'gopuram' |
+ 'earth-oceania' |
+ 'globe-oceania' |
+ 'container-storage' |
+ 'face-pouting' |
+ 'square-xmark' |
+ 'times-square' |
+ 'xmark-square' |
+ 'face-explode' |
+ 'exploding-head' |
+ 'hashtag' |
+ 'up-right-and-down-left-from-center' |
+ 'expand-alt' |
+ 'oil-can' |
+ 't' |
+ 'transformer-bolt' |
+ 'hippo' |
+ 'chart-column' |
+ 'cassette-vhs' |
+ 'vhs' |
+ 'infinity' |
+ 'vial-circle-check' |
+ 'chimney' |
+ 'object-intersect' |
+ 'person-arrow-down-to-line' |
+ 'voicemail' |
+ 'block-brick' |
+ 'wall-brick' |
+ 'fan' |
+ 'bags-shopping' |
+ 'paragraph-left' |
+ 'paragraph-rtl' |
+ 'person-walking-luggage' |
+ 'caravan-simple' |
+ 'caravan-alt' |
+ 'turtle' |
+ 'pencil-mechanical' |
+ 'up-down' |
+ 'arrows-alt-v' |
+ 'cloud-moon-rain' |
+ 'booth-curtain' |
+ 'calendar' |
+ 'box-heart' |
+ 'trailer' |
+ 'user-doctor-message' |
+ 'user-md-chat' |
+ 'bahai' |
+ 'haykal' |
+ 'amp-guitar' |
+ 'sd-card' |
+ 'volume-slash' |
+ 'border-bottom' |
+ 'wifi-weak' |
+ 'wifi1' |
+ 'dragon' |
+ 'shoe-prints' |
+ 'circle-plus' |
+ 'plus-circle' |
+ 'face-grin-tongue-wink' |
+ 'grin-tongue-wink' |
+ 'hand-holding' |
+ 'plug-circle-exclamation' |
+ 'link-slash' |
+ 'chain-broken' |
+ 'chain-slash' |
+ 'unlink' |
+ 'clone' |
+ 'person-walking-arrow-loop-left' |
+ 'arrow-up-z-a' |
+ 'sort-alpha-up-alt' |
+ 'fire-flame-curved' |
+ 'fire-alt' |
+ 'tornado' |
+ 'file-circle-plus' |
+ 'delete-right' |
+ 'book-quran' |
+ 'quran' |
+ 'circle-quarter' |
+ 'anchor' |
+ 'border-all' |
+ 'function' |
+ 'face-angry' |
+ 'angry' |
+ 'people-simple' |
+ 'cookie-bite' |
+ 'arrow-trend-down' |
+ 'rss' |
+ 'feed' |
+ 'face-monocle' |
+ 'draw-polygon' |
+ 'scale-balanced' |
+ 'balance-scale' |
+ 'calendar-lines' |
+ 'calendar-note' |
+ 'arrow-down-big-small' |
+ 'sort-size-down' |
+ 'gauge-simple-high' |
+ 'tachometer' |
+ 'tachometer-fast' |
+ 'do-not-enter' |
+ 'shower' |
+ 'dice-d8' |
+ 'desktop' |
+ 'desktop-alt' |
+ 'm' |
+ 'grip-dots-vertical' |
+ 'face-viewfinder' |
+ 'soft-serve' |
+ 'creemee' |
+ 'h5' |
+ 'hand-back-point-down' |
+ 'table-list' |
+ 'th-list' |
+ 'comment-sms' |
+ 'sms' |
+ 'rectangle' |
+ 'rectangle-landscape' |
+ 'clipboard-list-check' |
+ 'turkey' |
+ 'book' |
+ 'user-plus' |
+ 'ice-skate' |
+ 'check' |
+ 'battery-three-quarters' |
+ 'battery4' |
+ 'tomato' |
+ 'sword-laser' |
+ 'house-circle-check' |
+ 'buildings' |
+ 'angle-left' |
+ 'cart-flatbed-boxes' |
+ 'dolly-flatbed-alt' |
+ 'diagram-successor' |
+ 'truck-arrow-right' |
+ 'square-w' |
+ 'arrows-split-up-and-left' |
+ 'lamp' |
+ 'airplay' |
+ 'hand-fist' |
+ 'fist-raised' |
+ 'shield-quartered' |
+ 'slash-forward' |
+ 'location-pen' |
+ 'map-marker-edit' |
+ 'cloud-moon' |
+ 'pot-food' |
+ 'briefcase' |
+ 'person-falling' |
+ 'image-portrait' |
+ 'portrait' |
+ 'user-tag' |
+ 'rug' |
+ 'print-slash' |
+ 'earth-europe' |
+ 'globe-europe' |
+ 'cart-flatbed-suitcase' |
+ 'luggage-cart' |
+ 'hand-back-point-ribbon' |
+ 'rectangle-xmark' |
+ 'rectangle-times' |
+ 'times-rectangle' |
+ 'window-close' |
+ 'tire-rugged' |
+ 'lightbulb-dollar' |
+ 'cowbell' |
+ 'baht-sign' |
+ 'corner' |
+ 'chevrons-right' |
+ 'chevron-double-right' |
+ 'book-open' |
+ 'book-journal-whills' |
+ 'journal-whills' |
+ 'inhaler' |
+ 'handcuffs' |
+ 'snake' |
+ 'triangle-exclamation' |
+ 'exclamation-triangle' |
+ 'warning' |
+ 'note-medical' |
+ 'database' |
+ 'down-left' |
+ 'share' |
+ 'arrow-turn-right' |
+ 'mail-forward' |
+ 'face-thinking' |
+ 'turn-down-right' |
+ 'bottle-droplet' |
+ 'mask-face' |
+ 'hill-rockslide' |
+ 'scanner-keyboard' |
+ 'circle-o' |
+ 'grid-horizontal' |
+ 'message-dollar' |
+ 'comment-alt-dollar' |
+ 'right-left' |
+ 'exchange-alt' |
+ 'columns-3' |
+ 'paper-plane' |
+ 'road-circle-exclamation' |
+ 'dungeon' |
+ 'hand-holding-box' |
+ 'input-text' |
+ 'window-flip' |
+ 'window-alt' |
+ 'align-right' |
+ 'scanner-gun' |
+ 'scanner' |
+ 'tire' |
+ 'engine' |
+ 'money-bill-1-wave' |
+ 'money-bill-wave-alt' |
+ 'life-ring' |
+ 'hands' |
+ 'sign-language' |
+ 'signing' |
+ 'circle-caret-right' |
+ 'caret-circle-right' |
+ 'wheat' |
+ 'file-spreadsheet' |
+ 'audio-description-slash' |
+ 'calendar-day' |
+ 'water-ladder' |
+ 'ladder-water' |
+ 'swimming-pool' |
+ 'arrows-up-down' |
+ 'arrows-v' |
+ 'chess-pawn-piece' |
+ 'chess-pawn-alt' |
+ 'face-grimace' |
+ 'grimace' |
+ 'wheelchair-move' |
+ 'wheelchair-alt' |
+ 'turn-down' |
+ 'level-down-alt' |
+ 'square-s' |
+ 'rectangle-barcode' |
+ 'barcode-alt' |
+ 'person-walking-arrow-right' |
+ 'square-envelope' |
+ 'envelope-square' |
+ 'dice' |
+ 'unicorn' |
+ 'bowling-ball' |
+ 'pompebled' |
+ 'brain' |
+ 'watch-smart' |
+ 'book-user' |
+ 'sensor-cloud' |
+ 'sensor-smoke' |
+ 'clapperboard-play' |
+ 'bandage' |
+ 'band-aid' |
+ 'calendar-minus' |
+ 'circle-xmark' |
+ 'times-circle' |
+ 'xmark-circle' |
+ 'circle-4' |
+ 'gifts' |
+ 'album-collection' |
+ 'hotel' |
+ 'earth-asia' |
+ 'globe-asia' |
+ 'id-card-clip' |
+ 'id-card-alt' |
+ 'magnifying-glass-plus' |
+ 'search-plus' |
+ 'thumbs-up' |
+ 'cloud-showers' |
+ 'user-clock' |
+ 'onion' |
+ 'clock-twelve-thirty' |
+ 'arrow-down-to-dotted-line' |
+ 'hand-dots' |
+ 'allergies' |
+ 'file-invoice' |
+ 'window-minimize' |
+ 'rectangle-wide' |
+ 'comment-arrow-up' |
+ 'garlic' |
+ 'mug-saucer' |
+ 'coffee' |
+ 'brush' |
+ 'tree-decorated' |
+ 'mask' |
+ 'calendar-heart' |
+ 'magnifying-glass-minus' |
+ 'search-minus' |
+ 'flower' |
+ 'right-left-large' |
+ 'ruler-vertical' |
+ 'circles-overlap' |
+ 'user-large' |
+ 'user-alt' |
+ 'starship-freighter' |
+ 'train-tram' |
+ 'bridge-suspension' |
+ 'trash-check' |
+ 'user-nurse' |
+ 'boombox' |
+ 'syringe' |
+ 'cloud-sun' |
+ 'shield-exclamation' |
+ 'stopwatch-20' |
+ 'square-full' |
+ 'grip-dots' |
+ 'comment-exclamation' |
+ 'pen-swirl' |
+ 'falafel' |
+ 'circle-2' |
+ 'magnet' |
+ 'jar' |
+ 'gramophone' |
+ 'dice-d12' |
+ 'note-sticky' |
+ 'sticky-note' |
+ 'down' |
+ 'arrow-alt-down' |
+ 'hundred-points' |
+ '100' |
+ 'paperclip-vertical' |
+ 'wind-warning' |
+ 'wind-circle-exclamation' |
+ 'location-pin-slash' |
+ 'map-marker-slash' |
+ 'face-sad-sweat' |
+ 'bug-slash' |
+ 'cupcake' |
+ 'light-switch-off' |
+ 'toggle-large-off' |
+ 'pen-fancy-slash' |
+ 'truck-container' |
+ 'boot' |
+ 'arrow-up-from-water-pump' |
+ 'file-check' |
+ 'bone' |
+ 'cards-blank' |
+ 'circle-3' |
+ 'bench-tree' |
+ 'keyboard-brightness-low' |
+ 'ski-boot-ski' |
+ 'brain-circuit' |
+ 'user-injured' |
+ 'block-brick-fire' |
+ 'firewall' |
+ 'face-sad-tear' |
+ 'sad-tear' |
+ 'plane' |
+ 'tent-arrows-down' |
+ 'exclamation' |
+ 'arrows-spin' |
+ 'face-smile-relaxed' |
+ 'comment-xmark' |
+ 'comment-times' |
+ 'print' |
+ 'turkish-lira-sign' |
+ 'try' |
+ 'turkish-lira' |
+ 'face-nose-steam' |
+ 'circle-waveform-lines' |
+ 'waveform-circle' |
+ 'dollar-sign' |
+ 'dollar' |
+ 'usd' |
+ 'ferris-wheel' |
+ 'computer-speaker' |
+ 'skull-cow' |
+ 'x' |
+ 'magnifying-glass-dollar' |
+ 'search-dollar' |
+ 'users-gear' |
+ 'users-cog' |
+ 'person-military-pointing' |
+ 'building-columns' |
+ 'bank' |
+ 'institution' |
+ 'museum' |
+ 'university' |
+ 'circle-t' |
+ 'sack' |
+ 'grid-2' |
+ 'camera-cctv' |
+ 'cctv' |
+ 'umbrella' |
+ 'trowel' |
+ 'horizontal-rule' |
+ 'bed-front' |
+ 'bed-alt' |
+ 'd' |
+ 'stapler' |
+ 'masks-theater' |
+ 'theater-masks' |
+ 'kip-sign' |
+ 'face-woozy' |
+ 'cloud-question' |
+ 'pineapple' |
+ 'hand-point-left' |
+ 'gallery-thumbnails' |
+ 'circle-j' |
+ 'eyes' |
+ 'handshake-simple' |
+ 'handshake-alt' |
+ 'page-caret-up' |
+ 'file-caret-up' |
+ 'jet-fighter' |
+ 'fighter-jet' |
+ 'comet' |
+ 'square-share-nodes' |
+ 'share-alt-square' |
+ 'shield-keyhole' |
+ 'barcode' |
+ 'plus-minus' |
+ 'square-sliders-vertical' |
+ 'sliders-v-square' |
+ 'video' |
+ 'video-camera' |
+ 'message-middle' |
+ 'comment-middle-alt' |
+ 'graduation-cap' |
+ 'mortar-board' |
+ 'hand-holding-medical' |
+ 'person-circle-check' |
+ 'square-z' |
+ 'message-text' |
+ 'comment-alt-text' |
+ 'turn-up' |
+ 'level-up-alt' |
+ '0' |
+ '1' |
+ '2' |
+ '3' |
+ '4' |
+ '5' |
+ '6' |
+ '7' |
+ '8' |
+ '9' |
+ 'fill-drip' |
+ 'arrows-to-circle' |
+ 'circle-chevron-right' |
+ 'chevron-circle-right' |
+ 'wagon-covered' |
+ 'line-height' |
+ 'bagel' |
+ 'transporter-7' |
+ 'at' |
+ 'rectangles-mixed' |
+ 'phone-arrow-up-right' |
+ 'phone-arrow-up' |
+ 'phone-outgoing' |
+ 'trash-can' |
+ 'trash-alt' |
+ 'circle-l' |
+ 'head-side-goggles' |
+ 'head-vr' |
+ 'text-height' |
+ 'user-xmark' |
+ 'user-times' |
+ 'face-hand-yawn' |
+ 'gauge-simple-min' |
+ 'tachometer-slowest' |
+ 'stethoscope' |
+ 'coffin' |
+ 'message' |
+ 'comment-alt' |
+ 'salad' |
+ 'bowl-salad' |
+ 'info' |
+ 'robot-astromech' |
+ 'ring-diamond' |
+ 'fondue-pot' |
+ 'theta' |
+ 'face-hand-peeking' |
+ 'square-user' |
+ 'down-left-and-up-right-to-center' |
+ 'compress-alt' |
+ 'explosion' |
+ 'file-lines' |
+ 'file-alt' |
+ 'file-text' |
+ 'wave-square' |
+ 'ring' |
+ 'building-un' |
+ 'dice-three' |
+ 'tire-pressure-warning' |
+ 'wifi-fair' |
+ 'wifi2' |
+ 'calendar-days' |
+ 'calendar-alt' |
+ 'mp3-player' |
+ 'anchor-circle-check' |
+ 'tally-4' |
+ 'rectangle-history' |
+ 'building-circle-arrow-right' |
+ 'volleyball' |
+ 'volleyball-ball' |
+ 'sun-haze' |
+ 'text-size' |
+ 'ufo' |
+ 'fork' |
+ 'utensil-fork' |
+ 'arrows-up-to-line' |
+ 'mobile-signal' |
+ 'barcode-scan' |
+ 'sort-down' |
+ 'sort-desc' |
+ 'folder-arrow-down' |
+ 'folder-download' |
+ 'circle-minus' |
+ 'minus-circle' |
+ 'face-icicles' |
+ 'shovel' |
+ 'door-open' |
+ 'films' |
+ 'right-from-bracket' |
+ 'sign-out-alt' |
+ 'face-glasses' |
+ 'nfc' |
+ 'atom' |
+ 'soap' |
+ 'icons' |
+ 'heart-music-camera-bolt' |
+ 'microphone-lines-slash' |
+ 'microphone-alt-slash' |
+ 'closed-captioning-slash' |
+ 'calculator-simple' |
+ 'calculator-alt' |
+ 'bridge-circle-check' |
+ 'sliders-up' |
+ 'sliders-v' |
+ 'location-minus' |
+ 'map-marker-minus' |
+ 'pump-medical' |
+ 'fingerprint' |
+ 'ski-boot' |
+ 'standard-definition' |
+ 'rectangle-sd' |
+ 'h1' |
+ 'hand-point-right' |
+ 'magnifying-glass-location' |
+ 'search-location' |
+ 'message-bot' |
+ 'forward-step' |
+ 'step-forward' |
+ 'face-smile-beam' |
+ 'smile-beam' |
+ 'light-ceiling' |
+ 'message-exclamation' |
+ 'comment-alt-exclamation' |
+ 'bowl-scoop' |
+ 'bowl-shaved-ice' |
+ 'square-x' |
+ 'utility-pole-double' |
+ 'flag-checkered' |
+ 'chevrons-up' |
+ 'chevron-double-up' |
+ 'football' |
+ 'football-ball' |
+ 'user-vneck' |
+ 'school-circle-exclamation' |
+ 'crop' |
+ 'angles-down' |
+ 'angle-double-down' |
+ 'users-rectangle' |
+ 'people-roof' |
+ 'square-arrow-right' |
+ 'arrow-square-right' |
+ 'location-plus' |
+ 'map-marker-plus' |
+ 'lightbulb-exclamation-on' |
+ 'people-line' |
+ 'beer-mug-empty' |
+ 'beer' |
+ 'crate-empty' |
+ 'diagram-predecessor' |
+ 'transporter' |
+ 'calendar-circle-user' |
+ 'arrow-up-long' |
+ 'long-arrow-up' |
+ 'person-carry-box' |
+ 'person-carry' |
+ 'fire-flame-simple' |
+ 'burn' |
+ 'person' |
+ 'male' |
+ 'laptop' |
+ 'file-csv' |
+ 'menorah' |
+ 'union' |
+ 'chevrons-left' |
+ 'chevron-double-left' |
+ 'circle-heart' |
+ 'heart-circle' |
+ 'truck-plane' |
+ 'record-vinyl' |
+ 'bring-forward' |
+ 'square-p' |
+ 'face-grin-stars' |
+ 'grin-stars' |
+ 'sigma' |
+ 'camera-movie' |
+ 'bong' |
+ 'clarinet' |
+ 'truck-flatbed' |
+ 'spaghetti-monster-flying' |
+ 'pastafarianism' |
+ 'arrow-down-up-across-line' |
+ 'leaf-heart' |
+ 'house-building' |
+ 'cheese-swiss' |
+ 'spoon' |
+ 'utensil-spoon' |
+ 'jar-wheat' |
+ 'envelopes-bulk' |
+ 'mail-bulk' |
+ 'file-circle-exclamation' |
+ 'bow-arrow' |
+ 'cart-xmark' |
+ 'hexagon-xmark' |
+ 'times-hexagon' |
+ 'xmark-hexagon' |
+ 'circle-h' |
+ 'hospital-symbol' |
+ 'merge' |
+ 'pager' |
+ 'cart-minus' |
+ 'address-book' |
+ 'contact-book' |
+ 'pan-frying' |
+ 'grid' |
+ 'grid3' |
+ 'football-helmet' |
+ 'hand-love' |
+ 'trees' |
+ 'strikethrough' |
+ 'page' |
+ 'k' |
+ 'diagram-previous' |
+ 'gauge-min' |
+ 'tachometer-alt-slowest' |
+ 'folder-grid' |
+ 'eggplant' |
+ 'ram' |
+ 'landmark-flag' |
+ 'lips' |
+ 'pencil' |
+ 'pencil-alt' |
+ 'backward' |
+ 'caret-right' |
+ 'comments' |
+ 'paste' |
+ 'file-clipboard' |
+ 'desktop-arrow-down' |
+ 'code-pull-request' |
+ 'pumpkin' |
+ 'clipboard-list' |
+ 'pen-field' |
+ 'blueberries' |
+ 'truck-ramp-box' |
+ 'truck-loading' |
+ 'note' |
+ 'arrow-down-to-square' |
+ 'user-check' |
+ 'cloud-xmark' |
+ 'vial-virus' |
+ 'book-blank' |
+ 'book-alt' |
+ 'golf-flag-hole' |
+ 'message-arrow-down' |
+ 'comment-alt-arrow-down' |
+ 'face-unamused' |
+ 'sheet-plastic' |
+ 'circle-9' |
+ 'blog' |
+ 'user-ninja' |
+ 'pencil-slash' |
+ 'bowling-pins' |
+ 'person-arrow-up-from-line' |
+ 'down-right' |
+ 'scroll-torah' |
+ 'torah' |
+ 'webhook' |
+ 'blinds-open' |
+ 'fence' |
+ 'up' |
+ 'arrow-alt-up' |
+ 'broom-ball' |
+ 'quidditch' |
+ 'quidditch-broom-ball' |
+ 'drumstick' |
+ 'square-v' |
+ 'face-awesome' |
+ 'gave-dandy' |
+ 'dial-off' |
+ 'toggle-off' |
+ 'face-smile-horns' |
+ 'box-archive' |
+ 'archive' |
+ 'grapes' |
+ 'person-drowning' |
+ 'dial-max' |
+ 'circle-m' |
+ 'calendar-image' |
+ 'circle-caret-down' |
+ 'caret-circle-down' |
+ 'arrow-down-9-1' |
+ 'sort-numeric-desc' |
+ 'sort-numeric-down-alt' |
+ 'face-grin-tongue-squint' |
+ 'grin-tongue-squint' |
+ 'shish-kebab' |
+ 'spray-can' |
+ 'alarm-snooze' |
+ 'scarecrow' |
+ 'truck-monster' |
+ 'gift-card' |
+ 'w' |
+ 'code-pull-request-draft' |
+ 'square-b' |
+ 'elephant' |
+ 'earth-africa' |
+ 'globe-africa' |
+ 'rainbow' |
+ 'circle-notch' |
+ 'tablet-screen-button' |
+ 'tablet-alt' |
+ 'paw' |
+ 'message-question' |
+ 'cloud' |
+ 'trowel-bricks' |
+ 'square-3' |
+ 'face-flushed' |
+ 'flushed' |
+ 'hospital-user' |
+ 'microwave' |
+ 'chf-sign' |
+ 'tent-arrow-left-right' |
+ 'cart-circle-arrow-up' |
+ 'trash-clock' |
+ 'gavel' |
+ 'legal' |
+ 'sprinkler-ceiling' |
+ 'browsers' |
+ 'trillium' |
+ 'music-slash' |
+ 'truck-ramp' |
+ 'binoculars' |
+ 'microphone-slash' |
+ 'box-tissue' |
+ 'circle-c' |
+ 'star-christmas' |
+ 'chart-bullet' |
+ 'motorcycle' |
+ 'tree-christmas' |
+ 'tire-flat' |
+ 'sunglasses' |
+ 'badge' |
+ 'message-pen' |
+ 'comment-alt-edit' |
+ 'message-edit' |
+ 'bell-concierge' |
+ 'concierge-bell' |
+ 'pen-ruler' |
+ 'pencil-ruler' |
+ 'arrow-progress' |
+ 'chess-rook-piece' |
+ 'chess-rook-alt' |
+ 'square-root' |
+ 'album-collection-circle-plus' |
+ 'people-arrows' |
+ 'people-arrows-left-right' |
+ 'face-angry-horns' |
+ 'mars-and-venus-burst' |
+ 'tombstone' |
+ 'square-caret-right' |
+ 'caret-square-right' |
+ 'scissors' |
+ 'cut' |
+ 'list-music' |
+ 'sun-plant-wilt' |
+ 'toilets-portable' |
+ 'hockey-puck' |
+ 'mustache' |
+ 'hyphen' |
+ 'table' |
+ 'user-chef' |
+ 'message-image' |
+ 'comment-alt-image' |
+ 'users-medical' |
+ 'sensor-triangle-exclamation' |
+ 'sensor-alert' |
+ 'magnifying-glass-arrow-right' |
+ 'tachograph-digital' |
+ 'digital-tachograph' |
+ 'face-mask' |
+ 'pickleball' |
+ 'star-sharp-half' |
+ 'users-slash' |
+ 'clover' |
+ 'meat' |
+ 'reply' |
+ 'mail-reply' |
+ 'star-and-crescent' |
+ 'empty-set' |
+ 'house-fire' |
+ 'square-minus' |
+ 'minus-square' |
+ 'helicopter' |
+ 'bird' |
+ 'compass' |
+ 'square-caret-down' |
+ 'caret-square-down' |
+ 'heart-half-stroke' |
+ 'heart-half-alt' |
+ 'file-circle-question' |
+ 'laptop-code' |
+ 'joystick' |
+ 'grill-fire' |
+ 'rectangle-vertical-history' |
+ 'swatchbook' |
+ 'prescription-bottle' |
+ 'bars' |
+ 'navicon' |
+ 'keyboard-left' |
+ 'people-group' |
+ 'hourglass-end' |
+ 'hourglass3' |
+ 'heart-crack' |
+ 'heart-broken' |
+ 'face-beam-hand-over-mouth' |
+ 'droplet-percent' |
+ 'humidity' |
+ 'square-up-right' |
+ 'external-link-square-alt' |
+ 'face-kiss-beam' |
+ 'kiss-beam' |
+ 'corn' |
+ 'roller-coaster' |
+ 'photo-film-music' |
+ 'radar' |
+ 'sickle' |
+ 'film' |
+ 'coconut' |
+ 'ruler-horizontal' |
+ 'shield-cross' |
+ 'cassette-tape' |
+ 'square-terminal' |
+ 'people-robbery' |
+ 'lightbulb' |
+ 'caret-left' |
+ 'comment-middle' |
+ 'trash-can-list' |
+ 'block' |
+ 'circle-exclamation' |
+ 'exclamation-circle' |
+ 'school-circle-xmark' |
+ 'arrow-right-from-bracket' |
+ 'sign-out' |
+ 'face-frown-slight' |
+ 'circle-chevron-down' |
+ 'chevron-circle-down' |
+ 'sidebar-flip' |
+ 'unlock-keyhole' |
+ 'unlock-alt' |
+ 'temperature-list' |
+ 'cloud-showers-heavy' |
+ 'headphones-simple' |
+ 'headphones-alt' |
+ 'sitemap' |
+ 'pipe-section' |
+ 'space-station-moon-construction' |
+ 'space-station-moon-alt' |
+ 'circle-dollar-to-slot' |
+ 'donate' |
+ 'memory' |
+ 'face-sleeping' |
+ 'road-spikes' |
+ 'fire-burner' |
+ 'squirrel' |
+ 'arrow-up-to-line' |
+ 'arrow-to-top' |
+ 'flag' |
+ 'face-cowboy-hat' |
+ 'hanukiah' |
+ 'chart-scatter-3d' |
+ 'display-chart-up' |
+ 'square-code' |
+ 'feather' |
+ 'volume-low' |
+ 'volume-down' |
+ 'xmark-to-slot' |
+ 'times-to-slot' |
+ 'vote-nay' |
+ 'box-taped' |
+ 'box-alt' |
+ 'comment-slash' |
+ 'swords' |
+ 'cloud-sun-rain' |
+ 'album' |
+ 'circle-n' |
+ 'compress' |
+ 'wheat-awn' |
+ 'wheat-alt' |
+ 'ankh' |
+ 'hands-holding-child' |
+ 'asterisk' |
+ 'key-skeleton-left-right' |
+ 'comment-lines' |
+ 'luchador-mask' |
+ 'luchador' |
+ 'mask-luchador' |
+ 'square-check' |
+ 'check-square' |
+ 'shredder' |
+ 'book-open-cover' |
+ 'book-open-alt' |
+ 'sandwich' |
+ 'peseta-sign' |
+ 'square-parking-slash' |
+ 'parking-slash' |
+ 'train-tunnel' |
+ 'heading' |
+ 'header' |
+ 'ghost' |
+ 'face-anguished' |
+ 'hockey-sticks' |
+ 'abacus' |
+ 'film-simple' |
+ 'film-alt' |
+ 'list' |
+ 'list-squares' |
+ 'tree-palm' |
+ 'square-phone-flip' |
+ 'phone-square-alt' |
+ 'cart-plus' |
+ 'gamepad' |
+ 'border-center-v' |
+ 'circle-dot' |
+ 'dot-circle' |
+ 'clipboard-medical' |
+ 'face-dizzy' |
+ 'dizzy' |
+ 'egg' |
+ 'up-to-line' |
+ 'arrow-alt-to-top' |
+ 'house-medical-circle-xmark' |
+ 'watch-fitness' |
+ 'clock-nine-thirty' |
+ 'campground' |
+ 'folder-plus' |
+ 'jug' |
+ 'futbol' |
+ 'futbol-ball' |
+ 'soccer-ball' |
+ 'snow-blowing' |
+ 'paintbrush' |
+ 'paint-brush' |
+ 'lock' |
+ 'arrow-down-from-line' |
+ 'arrow-from-top' |
+ 'gas-pump' |
+ 'signal-bars-slash' |
+ 'signal-alt-slash' |
+ 'monkey' |
+ 'rectangle-pro' |
+ 'pro' |
+ 'house-night' |
+ 'hot-tub-person' |
+ 'hot-tub' |
+ 'blanket' |
+ 'map-location' |
+ 'map-marked' |
+ 'house-flood-water' |
+ 'comments-question-check' |
+ 'tree' |
+ 'arrows-cross' |
+ 'backpack' |
+ 'square-small' |
+ 'folder-arrow-up' |
+ 'folder-upload' |
+ 'bridge-lock' |
+ 'crosshairs-simple' |
+ 'sack-dollar' |
+ 'pen-to-square' |
+ 'edit' |
+ 'square-sliders' |
+ 'sliders-h-square' |
+ 'car-side' |
+ 'message-middle-top' |
+ 'comment-middle-top-alt' |
+ 'lightbulb-on' |
+ 'knife' |
+ 'utensil-knife' |
+ 'share-nodes' |
+ 'share-alt' |
+ 'display-chart-up-circle-dollar' |
+ 'wave-sine' |
+ 'heart-circle-minus' |
+ 'circle-w' |
+ 'circle-calendar' |
+ 'calendar-circle' |
+ 'hourglass-half' |
+ 'hourglass2' |
+ 'microscope' |
+ 'sunset' |
+ 'sink' |
+ 'calendar-exclamation' |
+ 'truck-container-empty' |
+ 'hand-heart' |
+ 'bag-shopping' |
+ 'shopping-bag' |
+ 'arrow-down-z-a' |
+ 'sort-alpha-desc' |
+ 'sort-alpha-down-alt' |
+ 'mitten' |
+ 'reply-clock' |
+ 'reply-time' |
+ 'person-rays' |
+ 'right' |
+ 'arrow-alt-right' |
+ 'circle-f' |
+ 'users' |
+ 'face-pleading' |
+ 'eye-slash' |
+ 'flask-vial' |
+ 'police-box' |
+ 'cucumber' |
+ 'head-side-brain' |
+ 'hand' |
+ 'hand-paper' |
+ 'person-biking-mountain' |
+ 'biking-mountain' |
+ 'utensils-slash' |
+ 'print-magnifying-glass' |
+ 'print-search' |
+ 'folder-bookmark' |
+ 'om' |
+ 'pi' |
+ 'flask-round-potion' |
+ 'flask-potion' |
+ 'face-shush' |
+ 'worm' |
+ 'house-circle-xmark' |
+ 'plug' |
+ 'calendar-circle-exclamation' |
+ 'square-i' |
+ 'chevron-up' |
+ 'face-saluting' |
+ 'gauge-simple-low' |
+ 'tachometer-slow' |
+ 'face-persevering' |
+ 'circle-camera' |
+ 'camera-circle' |
+ 'hand-spock' |
+ 'spider-web' |
+ 'circle-microphone' |
+ 'microphone-circle' |
+ 'book-arrow-up' |
+ 'popsicle' |
+ 'command' |
+ 'blinds' |
+ 'stopwatch' |
+ 'saxophone' |
+ 'square-2' |
+ 'field-hockey-stick-ball' |
+ 'field-hockey' |
+ 'arrow-up-square-triangle' |
+ 'sort-shapes-up-alt' |
+ 'face-scream' |
+ 'square-m' |
+ 'camera-web' |
+ 'webcam' |
+ 'comment-arrow-down' |
+ 'lightbulb-cfl' |
+ 'window-frame-open' |
+ 'face-kiss' |
+ 'kiss' |
+ 'bridge-circle-xmark' |
+ 'period' |
+ 'face-grin-tongue' |
+ 'grin-tongue' |
+ 'up-to-dotted-line' |
+ 'thought-bubble' |
+ 'skeleton-ribs' |
+ 'raygun' |
+ 'flute' |
+ 'acorn' |
+ 'video-arrow-up-right' |
+ 'grate-droplet' |
+ 'seal-exclamation' |
+ 'chess-bishop' |
+ 'message-sms' |
+ 'coffee-beans' |
+ 'hat-witch' |
+ 'face-grin-wink' |
+ 'grin-wink' |
+ 'clock-three-thirty' |
+ 'ear-deaf' |
+ 'deaf' |
+ 'deafness' |
+ 'hard-of-hearing' |
+ 'alarm-clock' |
+ 'eclipse' |
+ 'face-relieved' |
+ 'road-circle-check' |
+ 'dice-five' |
+ 'octagon-minus' |
+ 'minus-octagon' |
+ 'square-rss' |
+ 'rss-square' |
+ 'face-zany' |
+ 'tricycle' |
+ 'land-mine-on' |
+ 'square-arrow-up-left' |
+ 'i-cursor' |
+ 'chart-mixed-up-circle-dollar' |
+ 'salt-shaker' |
+ 'stamp' |
+ 'file-plus' |
+ 'draw-square' |
+ 'toilet-paper-under-slash' |
+ 'toilet-paper-reverse-slash' |
+ 'stairs' |
+ 'drone-front' |
+ 'drone-alt' |
+ 'glass-empty' |
+ 'dial-high' |
+ 'user-helmet-safety' |
+ 'user-construction' |
+ 'user-hard-hat' |
+ 'i' |
+ 'hryvnia-sign' |
+ 'hryvnia' |
+ 'arrow-down-left-and-arrow-up-right-to-center' |
+ 'pills' |
+ 'face-grin-wide' |
+ 'grin-alt' |
+ 'tooth' |
+ 'basketball-hoop' |
+ 'objects-align-bottom' |
+ 'v' |
+ 'sparkles' |
+ 'squid' |
+ 'leafy-green' |
+ 'circle-arrow-up-right' |
+ 'calendars' |
+ 'bangladeshi-taka-sign' |
+ 'bicycle' |
+ 'hammer-war' |
+ 'circle-d' |
+ 'spider-black-widow' |
+ 'staff-snake' |
+ 'rod-asclepius' |
+ 'rod-snake' |
+ 'staff-aesculapius' |
+ 'pear' |
+ 'head-side-cough-slash' |
+ 'triangle' |
+ 'apartment' |
+ 'truck-medical' |
+ 'ambulance' |
+ 'pepper' |
+ 'piano' |
+ 'gun-squirt' |
+ 'wheat-awn-circle-exclamation' |
+ 'snowman' |
+ 'user-alien' |
+ 'shield-check' |
+ 'mortar-pestle' |
+ 'road-barrier' |
+ 'chart-candlestick' |
+ 'briefcase-blank' |
+ 'school' |
+ 'igloo' |
+ 'bracket-round' |
+ 'parenthesis' |
+ 'joint' |
+ 'horse-saddle' |
+ 'mug-marshmallows' |
+ 'filters' |
+ 'bell-on' |
+ 'angle-right' |
+ 'dial-med' |
+ 'horse' |
+ 'q' |
+ 'monitor-waveform' |
+ 'monitor-heart-rate' |
+ 'link-simple' |
+ 'whistle' |
+ 'g' |
+ 'wine-glass-crack' |
+ 'fragile' |
+ 'slot-machine' |
+ 'notes-medical' |
+ 'car-wash' |
+ 'escalator' |
+ 'comment-image' |
+ 'temperature-half' |
+ 'temperature2' |
+ 'thermometer2' |
+ 'thermometer-half' |
+ 'dong-sign' |
+ 'donut' |
+ 'doughnut' |
+ 'capsules' |
+ 'poo-storm' |
+ 'poo-bolt' |
+ 'tally-1' |
+ 'face-frown-open' |
+ 'frown-open' |
+ 'square-dashed' |
+ 'square-j' |
+ 'hand-point-up' |
+ 'money-bill' |
+ 'arrow-up-big-small' |
+ 'sort-size-up' |
+ 'barcode-read' |
+ 'baguette' |
+ 'bowl-soft-serve' |
+ 'face-holding-back-tears' |
+ 'square-up' |
+ 'arrow-alt-square-up' |
+ 'train-subway-tunnel' |
+ 'subway-tunnel' |
+ 'square-exclamation' |
+ 'exclamation-square' |
+ 'semicolon' |
+ 'bookmark' |
+ 'fan-table' |
+ 'align-justify' |
+ 'battery-low' |
+ 'battery1' |
+ 'credit-card-front' |
+ 'brain-arrow-curved-right' |
+ 'mind-share' |
+ 'umbrella-beach' |
+ 'helmet-un' |
+ 'location-smile' |
+ 'map-marker-smile' |
+ 'arrow-left-to-line' |
+ 'arrow-to-left' |
+ 'bullseye' |
+ 'sushi' |
+ 'nigiri' |
+ 'message-captions' |
+ 'comment-alt-captions' |
+ 'trash-list' |
+ 'bacon' |
+ 'option' |
+ 'hand-point-down' |
+ 'arrow-up-from-bracket' |
+ 'trash-plus' |
+ 'objects-align-top' |
+ 'folder' |
+ 'folder-blank' |
+ 'face-anxious-sweat' |
+ 'credit-card-blank' |
+ 'file-waveform' |
+ 'file-medical-alt' |
+ 'microchip-ai' |
+ 'mug' |
+ 'plane-up-slash' |
+ 'radiation' |
+ 'pen-circle' |
+ 'bag-seedling' |
+ 'chart-simple' |
+ 'crutches' |
+ 'circle-parking' |
+ 'parking-circle' |
+ 'mars-stroke' |
+ 'leaf-oak' |
+ 'square-bolt' |
+ 'vial' |
+ 'gauge' |
+ 'dashboard' |
+ 'gauge-med' |
+ 'tachometer-alt-average' |
+ 'wand-magic-sparkles' |
+ 'magic-wand-sparkles' |
+ 'lambda' |
+ 'e' |
+ 'pizza' |
+ 'bowl-chopsticks-noodles' |
+ 'h3' |
+ 'pen-clip' |
+ 'pen-alt' |
+ 'bridge-circle-exclamation' |
+ 'badge-percent' |
+ 'user' |
+ 'sensor' |
+ 'comma' |
+ 'school-circle-check' |
+ 'toilet-paper-under' |
+ 'toilet-paper-reverse' |
+ 'light-emergency' |
+ 'arrow-down-to-arc' |
+ 'dumpster' |
+ 'van-shuttle' |
+ 'shuttle-van' |
+ 'building-user' |
+ 'light-switch' |
+ 'square-caret-left' |
+ 'caret-square-left' |
+ 'highlighter' |
+ 'wave-pulse' |
+ 'heart-rate' |
+ 'key' |
+ 'hat-santa' |
+ 'tamale' |
+ 'box-check' |
+ 'bullhorn' |
+ 'steak' |
+ 'location-crosshairs-slash' |
+ 'location-slash' |
+ 'person-dolly' |
+ 'globe' |
+ 'synagogue' |
+ 'file-chart-column' |
+ 'file-chart-line' |
+ 'person-half-dress' |
+ 'folder-image' |
+ 'calendar-pen' |
+ 'calendar-edit' |
+ 'road-bridge' |
+ 'face-smile-tear' |
+ 'message-plus' |
+ 'comment-alt-plus' |
+ 'location-arrow' |
+ 'c' |
+ 'tablet-button' |
+ 'rectangle-history-circle-user' |
+ 'building-lock' |
+ 'chart-line-up' |
+ 'mailbox' |
+ 'truck-bolt' |
+ 'pizza-slice' |
+ 'money-bill-wave' |
+ 'chart-area' |
+ 'area-chart' |
+ 'house-flag' |
+ 'circle-three-quarters-stroke' |
+ 'person-circle-minus' |
+ 'scalpel' |
+ 'ban' |
+ 'cancel' |
+ 'bell-exclamation' |
+ 'circle-bookmark' |
+ 'bookmark-circle' |
+ 'egg-fried' |
+ 'face-weary' |
+ 'uniform-martial-arts' |
+ 'camera-rotate' |
+ 'sun-dust' |
+ 'comment-text' |
+ 'spray-can-sparkles' |
+ 'air-freshener' |
+ 'signal-bars' |
+ 'signal-alt' |
+ 'signal-alt4' |
+ 'signal-bars-strong' |
+ 'diamond-exclamation' |
+ 'star' |
+ 'dial-min' |
+ 'repeat' |
+ 'cross' |
+ 'page-caret-down' |
+ 'file-caret-down' |
+ 'box' |
+ 'venus-mars' |
+ 'clock-seven-thirty' |
+ 'arrow-pointer' |
+ 'mouse-pointer' |
+ 'clock-four-thirty' |
+ 'signal-bars-good' |
+ 'signal-alt3' |
+ 'cactus' |
+ 'lightbulb-gear' |
+ 'maximize' |
+ 'expand-arrows-alt' |
+ 'charging-station' |
+ 'shapes' |
+ 'triangle-circle-square' |
+ 'plane-tail' |
+ 'gauge-simple-max' |
+ 'tachometer-fastest' |
+ 'circle-u' |
+ 'shield-slash' |
+ 'square-phone-hangup' |
+ 'phone-square-down' |
+ 'arrow-up-left' |
+ 'transporter-1' |
+ 'peanuts' |
+ 'shuffle' |
+ 'random' |
+ 'person-running' |
+ 'running' |
+ 'mobile-retro' |
+ 'grip-lines-vertical' |
+ 'bin-bottles-recycle' |
+ 'arrow-up-from-square' |
+ 'file-dashed-line' |
+ 'page-break' |
+ 'bracket-curly-right' |
+ 'spider' |
+ 'clock-three' |
+ 'hands-bound' |
+ 'scalpel-line-dashed' |
+ 'scalpel-path' |
+ 'file-invoice-dollar' |
+ 'pipe-smoking' |
+ 'face-astonished' |
+ 'window' |
+ 'plane-circle-exclamation' |
+ 'ear' |
+ 'file-lock' |
+ 'diagram-venn' |
+ 'x-ray' |
+ 'goal-net' |
+ 'coffin-cross' |
+ 'spell-check' |
+ 'location-xmark' |
+ 'map-marker-times' |
+ 'map-marker-xmark' |
+ 'circle-quarter-stroke' |
+ 'lasso' |
+ 'slash' |
+ 'person-to-portal' |
+ 'portal-enter' |
+ 'calendar-star' |
+ 'computer-mouse' |
+ 'mouse' |
+ 'arrow-right-to-bracket' |
+ 'sign-in' |
+ 'pegasus' |
+ 'files-medical' |
+ 'nfc-lock' |
+ 'person-ski-lift' |
+ 'ski-lift' |
+ 'square-6' |
+ 'shop-slash' |
+ 'store-alt-slash' |
+ 'wind-turbine' |
+ 'sliders-simple' |
+ 'grid-round' |
+ 'badge-sheriff' |
+ 'server' |
+ 'virus-covid-slash' |
+ 'intersection' |
+ 'shop-lock' |
+ 'family' |
+ 'hourglass-start' |
+ 'hourglass1' |
+ 'user-hair-buns' |
+ 'blender-phone' |
+ 'hourglass-clock' |
+ 'person-seat-reclined' |
+ 'paper-plane-top' |
+ 'paper-plane-alt' |
+ 'send' |
+ 'message-arrow-up' |
+ 'comment-alt-arrow-up' |
+ 'lightbulb-exclamation' |
+ 'layer-minus' |
+ 'layer-group-minus' |
+ 'chart-pie-simple-circle-currency' |
+ 'circle-e' |
+ 'building-wheat' |
+ 'gauge-max' |
+ 'tachometer-alt-fastest' |
+ 'person-breastfeeding' |
+ 'apostrophe' |
+ 'fire-hydrant' |
+ 'right-to-bracket' |
+ 'sign-in-alt' |
+ 'video-plus' |
+ 'square-right' |
+ 'arrow-alt-square-right' |
+ 'comment-smile' |
+ 'venus' |
+ 'passport' |
+ 'inbox-in' |
+ 'inbox-arrow-down' |
+ 'heart-pulse' |
+ 'heartbeat' |
+ 'circle-8' |
+ 'clouds-moon' |
+ 'clock-ten-thirty' |
+ 'people-carry-box' |
+ 'people-carry' |
+ 'folder-user' |
+ 'trash-can-xmark' |
+ 'temperature-high' |
+ 'microchip' |
+ 'left-long-to-line' |
+ 'crown' |
+ 'weight-hanging' |
+ 'xmarks-lines' |
+ 'file-prescription' |
+ 'calendar-range' |
+ 'flower-daffodil' |
+ 'hand-back-point-up' |
+ 'weight-scale' |
+ 'weight' |
+ 'star-exclamation' |
+ 'books' |
+ 'user-group' |
+ 'user-friends' |
+ 'arrow-up-a-z' |
+ 'sort-alpha-up' |
+ 'layer-plus' |
+ 'layer-group-plus' |
+ 'play-pause' |
+ 'block-question' |
+ 'snooze' |
+ 'zzz' |
+ 'scanner-image' |
+ 'tv-retro' |
+ 'square-t' |
+ 'farm' |
+ 'barn-silo' |
+ 'chess-knight' |
+ 'bars-sort' |
+ 'pallet-boxes' |
+ 'palette-boxes' |
+ 'pallet-alt' |
+ 'face-laugh-squint' |
+ 'laugh-squint' |
+ 'code-simple' |
+ 'bolt-slash' |
+ 'panel-fire' |
+ 'binary-circle-check' |
+ 'comment-minus' |
+ 'burrito' |
+ 'violin' |
+ 'objects-column' |
+ 'square-chevron-down' |
+ 'chevron-square-down' |
+ 'comment-plus' |
+ 'triangle-instrument' |
+ 'triangle-music' |
+ 'wheelchair' |
+ 'user-pilot-tie' |
+ 'piano-keyboard' |
+ 'bed-empty' |
+ 'circle-arrow-up' |
+ 'arrow-circle-up' |
+ 'toggle-on' |
+ 'rectangle-vertical' |
+ 'rectangle-portrait' |
+ 'person-walking' |
+ 'walking' |
+ 'l' |
+ 'signal-stream' |
+ 'down-to-bracket' |
+ 'circle-z' |
+ 'stars' |
+ 'fire' |
+ 'bed-pulse' |
+ 'procedures' |
+ 'house-day' |
+ 'shuttle-space' |
+ 'space-shuttle' |
+ 'shirt-long-sleeve' |
+ 'chart-pie-simple' |
+ 'chart-pie-alt' |
+ 'face-laugh' |
+ 'laugh' |
+ 'folder-open' |
+ 'album-collection-circle-user' |
+ 'candy' |
+ 'bowl-hot' |
+ 'soup' |
+ 'flatbread' |
+ 'heart-circle-plus' |
+ 'code-fork' |
+ 'city' |
+ 'signal-bars-weak' |
+ 'signal-alt1' |
+ 'microphone-lines' |
+ 'microphone-alt' |
+ 'clock-twelve' |
+ 'pepper-hot' |
+ 'citrus-slice' |
+ 'sheep' |
+ 'unlock' |
+ 'colon-sign' |
+ 'headset' |
+ 'badger-honey' |
+ 'h4' |
+ 'store-slash' |
+ 'road-circle-xmark' |
+ 'signal-slash' |
+ 'user-minus' |
+ 'mars-stroke-up' |
+ 'mars-stroke-v' |
+ 'champagne-glasses' |
+ 'glass-cheers' |
+ 'taco' |
+ 'hexagon-plus' |
+ 'plus-hexagon' |
+ 'clipboard' |
+ 'house-circle-exclamation' |
+ 'file-arrow-up' |
+ 'file-upload' |
+ 'wifi' |
+ 'wifi3' |
+ 'wifi-strong' |
+ 'messages' |
+ 'comments-alt' |
+ 'bath' |
+ 'bathtub' |
+ 'umbrella-simple' |
+ 'umbrella-alt' |
+ 'rectangle-history-circle-plus' |
+ 'underline' |
+ 'prescription-bottle-pill' |
+ 'user-pen' |
+ 'user-edit' |
+ 'binary-slash' |
+ 'square-o' |
+ 'signature' |
+ 'stroopwafel' |
+ 'bold' |
+ 'anchor-lock' |
+ 'building-ngo' |
+ 'transporter-3' |
+ 'engine-warning' |
+ 'engine-exclamation' |
+ 'circle-down-right' |
+ 'square-k' |
+ 'manat-sign' |
+ 'money-check-pen' |
+ 'money-check-edit' |
+ 'not-equal' |
+ 'border-top-left' |
+ 'border-style' |
+ 'map-location-dot' |
+ 'map-marked-alt' |
+ 'tilde' |
+ 'jedi' |
+ 'square-poll-vertical' |
+ 'poll' |
+ 'arrow-down-square-triangle' |
+ 'sort-shapes-down-alt' |
+ 'mug-hot' |
+ 'dog-leashed' |
+ 'car-battery' |
+ 'battery-car' |
+ 'face-downcast-sweat' |
+ 'mailbox-flag-up' |
+ 'memo-circle-info' |
+ 'gift' |
+ 'dice-two' |
+ 'volume' |
+ 'volume-medium' |
+ 'transporter-5' |
+ 'gauge-circle-bolt' |
+ 'coin-front' |
+ 'file-slash' |
+ 'message-arrow-up-right' |
+ 'treasure-chest' |
+ 'chess-queen' |
+ 'paintbrush-fine' |
+ 'paint-brush-alt' |
+ 'paint-brush-fine' |
+ 'paintbrush-alt' |
+ 'glasses' |
+ 'hood-cloak' |
+ 'square-quote' |
+ 'up-left' |
+ 'bring-front' |
+ 'chess-board' |
+ 'burger-cheese' |
+ 'cheeseburger' |
+ 'building-circle-check' |
+ 'repeat-1' |
+ 'arrow-down-to-line' |
+ 'arrow-to-bottom' |
+ 'grid-5' |
+ 'right-long-to-line' |
+ 'person-chalkboard' |
+ 'mars-stroke-right' |
+ 'mars-stroke-h' |
+ 'hand-back-fist' |
+ 'hand-rock' |
+ 'grid-round-5' |
+ 'tally' |
+ 'tally5' |
+ 'square-caret-up' |
+ 'caret-square-up' |
+ 'cloud-showers-water' |
+ 'chart-bar' |
+ 'bar-chart' |
+ 'hands-bubbles' |
+ 'hands-wash' |
+ 'less-than-equal' |
+ 'train' |
+ 'up-from-dotted-line' |
+ 'eye-low-vision' |
+ 'low-vision' |
+ 'traffic-light-go' |
+ 'face-exhaling' |
+ 'sensor-fire' |
+ 'user-unlock' |
+ 'hexagon-divide' |
+ '00' |
+ 'crow' |
+ 'cassette-betamax' |
+ 'betamax' |
+ 'sailboat' |
+ 'window-restore' |
+ 'nfc-magnifying-glass' |
+ 'file-binary' |
+ 'circle-v' |
+ 'square-plus' |
+ 'plus-square' |
+ 'bowl-scoops' |
+ 'mistletoe' |
+ 'custard' |
+ 'lacrosse-stick' |
+ 'hockey-mask' |
+ 'sunrise' |
+ 'panel-ews' |
+ 'torii-gate' |
+ 'cloud-exclamation' |
+ 'message-lines' |
+ 'comment-alt-lines' |
+ 'frog' |
+ 'bucket' |
+ 'floppy-disk-pen' |
+ 'image' |
+ 'window-frame' |
+ 'microphone' |
+ 'cow' |
+ 'file-zip' |
+ 'square-ring' |
+ 'down-from-line' |
+ 'arrow-alt-from-top' |
+ 'caret-up' |
+ 'shield-xmark' |
+ 'shield-times' |
+ 'screwdriver' |
+ 'circle-sort-down' |
+ 'sort-circle-down' |
+ 'folder-closed' |
+ 'house-tsunami' |
+ 'square-nfi' |
+ 'forklift' |
+ 'arrow-up-from-ground-water' |
+ 'bracket-square-right' |
+ 'martini-glass' |
+ 'glass-martini-alt' |
+ 'rotate-left' |
+ 'rotate-back' |
+ 'rotate-backward' |
+ 'undo-alt' |
+ 'table-columns' |
+ 'columns' |
+ 'square-a' |
+ 'tick' |
+ 'lemon' |
+ 'head-side-mask' |
+ 'handshake' |
+ 'gem' |
+ 'dolly' |
+ 'dolly-box' |
+ 'smoking' |
+ 'minimize' |
+ 'compress-arrows-alt' |
+ 'refrigerator' |
+ 'monument' |
+ 'octagon-xmark' |
+ 'times-octagon' |
+ 'xmark-octagon' |
+ 'align-slash' |
+ 'snowplow' |
+ 'angles-right' |
+ 'angle-double-right' |
+ 'truck-ramp-couch' |
+ 'truck-couch' |
+ 'cannabis' |
+ 'circle-play' |
+ 'play-circle' |
+ 'arrow-up-right-and-arrow-down-left-from-center' |
+ 'tablets' |
+ '360-degrees' |
+ 'ethernet' |
+ 'euro-sign' |
+ 'eur' |
+ 'euro' |
+ 'chair' |
+ 'circle-check' |
+ 'check-circle' |
+ 'square-dashed-circle-plus' |
+ 'money-simple-from-bracket' |
+ 'bat' |
+ 'circle-stop' |
+ 'stop-circle' |
+ 'head-side-headphones' |
+ 'phone-rotary' |
+ 'compass-drafting' |
+ 'drafting-compass' |
+ 'plate-wheat' |
+ 'calendar-circle-minus' |
+ 'chopsticks' |
+ 'car-wrench' |
+ 'car-mechanic' |
+ 'icicles' |
+ 'person-shelter' |
+ 'neuter' |
+ 'id-badge' |
+ 'kazoo' |
+ 'marker' |
+ 'bin-bottles' |
+ 'face-laugh-beam' |
+ 'laugh-beam' |
+ 'square-arrow-down-left' |
+ 'battery-bolt' |
+ 'tree-large' |
+ 'helicopter-symbol' |
+ 'aperture' |
+ 'universal-access' |
+ 'gear-complex' |
+ 'file-magnifying-glass' |
+ 'file-search' |
+ 'up-right' |
+ 'circle-chevron-up' |
+ 'chevron-circle-up' |
+ 'user-police' |
+ 'lari-sign' |
+ 'volcano' |
+ 'teddy-bear' |
+ 'stocking' |
+ 'person-walking-dashed-line-arrow-right' |
+ 'image-slash' |
+ 'mask-snorkel' |
+ 'smoke' |
+ 'sterling-sign' |
+ 'gbp' |
+ 'pound-sign' |
+ 'battery-exclamation' |
+ 'viruses' |
+ 'square-person-confined' |
+ 'user-tie' |
+ 'arrow-down-long' |
+ 'long-arrow-down' |
+ 'tent-arrow-down-to-line' |
+ 'certificate' |
+ 'crystal-ball' |
+ 'reply-all' |
+ 'mail-reply-all' |
+ 'suitcase' |
+ 'person-skating' |
+ 'skating' |
+ 'star-shooting' |
+ 'binary-lock' |
+ 'filter-circle-dollar' |
+ 'funnel-dollar' |
+ 'camera-retro' |
+ 'circle-arrow-down' |
+ 'arrow-circle-down' |
+ 'comment-pen' |
+ 'comment-edit' |
+ 'file-import' |
+ 'arrow-right-to-file' |
+ 'banjo' |
+ 'square-arrow-up-right' |
+ 'external-link-square' |
+ 'light-emergency-on' |
+ 'kerning' |
+ 'box-open' |
+ 'square-f' |
+ 'scroll' |
+ 'spa' |
+ 'arrow-left-from-line' |
+ 'arrow-from-right' |
+ 'strawberry' |
+ 'location-pin-lock' |
+ 'pause' |
+ 'clock-eight-thirty' |
+ 'plane-engines' |
+ 'plane-alt' |
+ 'hill-avalanche' |
+ 'temperature-empty' |
+ 'temperature0' |
+ 'thermometer0' |
+ 'thermometer-empty' |
+ 'bomb' |
+ 'gauge-low' |
+ 'tachometer-alt-slow' |
+ 'registered' |
+ 'trash-can-plus' |
+ 'address-card' |
+ 'contact-card' |
+ 'vcard' |
+ 'scale-unbalanced-flip' |
+ 'balance-scale-right' |
+ 'globe-snow' |
+ 'subscript' |
+ 'diamond-turn-right' |
+ 'directions' |
+ 'integral' |
+ 'burst' |
+ 'house-laptop' |
+ 'laptop-house' |
+ 'face-tired' |
+ 'tired' |
+ 'money-bills' |
+ 'blinds-raised' |
+ 'smog' |
+ 'ufo-beam' |
+ 'circle-caret-up' |
+ 'caret-circle-up' |
+ 'user-vneck-hair-long' |
+ 'square-a-lock' |
+ 'crutch' |
+ 'gas-pump-slash' |
+ 'font-awesome' |
+ 'font-awesome-flag' |
+ 'font-awesome-logo-full' |
+ 'cloud-arrow-up' |
+ 'cloud-upload' |
+ 'cloud-upload-alt' |
+ 'palette' |
+ 'transporter-4' |
+ 'chart-mixed-up-circle-currency' |
+ 'objects-align-right' |
+ 'arrows-turn-right' |
+ 'vest' |
+ 'pig' |
+ 'inbox-full' |
+ 'circle-envelope' |
+ 'envelope-circle' |
+ 'triangle-person-digging' |
+ 'construction' |
+ 'ferry' |
+ 'bullseye-arrow' |
+ 'arrows-down-to-people' |
+ 'seedling' |
+ 'sprout' |
+ 'clock-seven' |
+ 'left-right' |
+ 'arrows-alt-h' |
+ 'boxes-packing' |
+ 'circle-arrow-left' |
+ 'arrow-circle-left' |
+ 'flashlight' |
+ 'group-arrows-rotate' |
+ 'bowl-food' |
+ 'square-9' |
+ 'candy-cane' |
+ 'arrow-down-wide-short' |
+ 'sort-amount-asc' |
+ 'sort-amount-down' |
+ 'square-dollar' |
+ 'dollar-square' |
+ 'usd-square' |
+ 'phone-arrow-right' |
+ 'hand-holding-seedling' |
+ 'message-check' |
+ 'comment-alt-check' |
+ 'cloud-bolt' |
+ 'thunderstorm' |
+ 'chart-line-up-down' |
+ 'text-slash' |
+ 'remove-format' |
+ 'watch' |
+ 'circle-down-left' |
+ 'text' |
+ 'projector' |
+ 'face-smile-wink' |
+ 'smile-wink' |
+ 'tombstone-blank' |
+ 'tombstone-alt' |
+ 'chess-king-piece' |
+ 'chess-king-alt' |
+ 'circle-6' |
+ 'left' |
+ 'arrow-alt-left' |
+ 'file-word' |
+ 'file-powerpoint' |
+ 'square-down' |
+ 'arrow-alt-square-down' |
+ 'objects-align-center-vertical' |
+ 'arrows-left-right' |
+ 'arrows-h' |
+ 'house-lock' |
+ 'cloud-arrow-down' |
+ 'cloud-download' |
+ 'cloud-download-alt' |
+ 'wreath' |
+ 'children' |
+ 'meter-droplet' |
+ 'chalkboard' |
+ 'blackboard' |
+ 'user-large-slash' |
+ 'user-alt-slash' |
+ 'signal-strong' |
+ 'signal4' |
+ 'lollipop' |
+ 'lollypop' |
+ 'list-tree' |
+ 'envelope-open' |
+ 'draw-circle' |
+ 'cat-space' |
+ 'handshake-simple-slash' |
+ 'handshake-alt-slash' |
+ 'rabbit-running' |
+ 'rabbit-fast' |
+ 'memo-pad' |
+ 'mattress-pillow' |
+ 'alarm-plus' |
+ 'alicorn' |
+ 'comment-question' |
+ 'gingerbread-man' |
+ 'guarani-sign' |
+ 'burger-fries' |
+ 'mug-tea' |
+ 'border-top' |
+ 'arrows-rotate' |
+ 'refresh' |
+ 'sync' |
+ 'circle-book-open' |
+ 'book-circle' |
+ 'arrows-to-dotted-line' |
+ 'fire-extinguisher' |
+ 'garage-open' |
+ 'shelves-empty' |
+ 'cruzeiro-sign' |
+ 'watch-apple' |
+ 'watch-calculator' |
+ 'list-dropdown' |
+ 'cabinet-filing' |
+ 'burger-soda' |
+ 'square-arrow-up' |
+ 'arrow-square-up' |
+ 'greater-than-equal' |
+ 'pallet-box' |
+ 'face-confounded' |
+ 'shield-halved' |
+ 'shield-alt' |
+ 'truck-plow' |
+ 'book-atlas' |
+ 'atlas' |
+ 'virus' |
+ 'grid-round-2' |
+ 'comment-middle-top' |
+ 'envelope-circle-check' |
+ 'layer-group' |
+ 'restroom-simple' |
+ 'arrows-to-dot' |
+ 'border-outer' |
+ 'hashtag-lock' |
+ 'clock-two-thirty' |
+ 'archway' |
+ 'heart-circle-check' |
+ 'house-chimney-crack' |
+ 'house-damage' |
+ 'file-zipper' |
+ 'file-archive' |
+ 'heart-half' |
+ 'comment-check' |
+ 'square' |
+ 'memo' |
+ 'martini-glass-empty' |
+ 'glass-martini' |
+ 'couch' |
+ 'cedi-sign' |
+ 'italic' |
+ 'glass-citrus' |
+ 'calendar-lines-pen' |
+ 'church' |
+ 'person-snowmobiling' |
+ 'snowmobile' |
+ 'face-hushed' |
+ 'comments-dollar' |
+ 'pickaxe' |
+ 'link-simple-slash' |
+ 'democrat' |
+ 'face-confused' |
+ 'pinball' |
+ 'z' |
+ 'person-skiing' |
+ 'skiing' |
+ 'deer' |
+ 'input-pipe' |
+ 'road-lock' |
+ 'a' |
+ 'bookmark-slash' |
+ 'temperature-arrow-down' |
+ 'temperature-down' |
+ 'mace' |
+ 'feather-pointed' |
+ 'feather-alt' |
+ 'sausage' |
+ 'trash-can-clock' |
+ 'p' |
+ 'broom-wide' |
+ 'snowflake' |
+ 'stomach' |
+ 'newspaper' |
+ 'rectangle-ad' |
+ 'ad' |
+ 'guitar-electric' |
+ 'arrow-turn-down-right' |
+ 'moon-cloud' |
+ 'bread-slice-butter' |
+ 'circle-arrow-right' |
+ 'arrow-circle-right' |
+ 'user-group-crown' |
+ 'users-crown' |
+ 'circle-i' |
+ 'toilet-paper-check' |
+ 'filter-circle-xmark' |
+ 'locust' |
+ 'sort' |
+ 'unsorted' |
+ 'list-ol' |
+ 'list12' |
+ 'list-numeric' |
+ 'chart-waterfall' |
+ 'sparkle' |
+ 'face-party' |
+ 'kidneys' |
+ 'wifi-exclamation' |
+ 'chart-network' |
+ 'person-dress-burst' |
+ 'dice-d4' |
+ 'money-check-dollar' |
+ 'money-check-alt' |
+ 'vector-square' |
+ 'bread-slice' |
+ 'language' |
+ 'wheat-awn-slash' |
+ 'face-kiss-wink-heart' |
+ 'kiss-wink-heart' |
+ 'dagger' |
+ 'podium' |
+ 'memo-circle-check' |
+ 'route-highway' |
+ 'down-to-line' |
+ 'arrow-alt-to-bottom' |
+ 'filter' |
+ 'square-g' |
+ 'circle-phone' |
+ 'phone-circle' |
+ 'clipboard-prescription' |
+ 'user-nurse-hair' |
+ 'question' |
+ 'file-signature' |
+ 'toggle-large-on' |
+ 'up-down-left-right' |
+ 'arrows-alt' |
+ 'dryer-heat' |
+ 'dryer-alt' |
+ 'house-chimney-user' |
+ 'hand-holding-heart' |
+ 'arrow-up-small-big' |
+ 'sort-size-up-alt' |
+ 'train-track' |
+ 'puzzle-piece' |
+ 'money-check' |
+ 'star-half-stroke' |
+ 'star-half-alt' |
+ 'file-exclamation' |
+ 'code' |
+ 'whiskey-glass' |
+ 'glass-whiskey' |
+ 'moon-stars' |
+ 'building-circle-exclamation' |
+ 'clothes-hanger' |
+ 'mobile-notch' |
+ 'mobile-iphone' |
+ 'magnifying-glass-chart' |
+ 'arrow-up-right-from-square' |
+ 'external-link' |
+ 'cubes-stacked' |
+ 'images-user' |
+ 'won-sign' |
+ 'krw' |
+ 'won' |
+ 'image-polaroid-user' |
+ 'virus-covid' |
+ 'square-ellipsis' |
+ 'pie' |
+ 'chess-knight-piece' |
+ 'chess-knight-alt' |
+ 'austral-sign' |
+ 'cloud-plus' |
+ 'f' |
+ 'leaf' |
+ 'bed-bunk' |
+ 'road' |
+ 'taxi' |
+ 'cab' |
+ 'person-circle-plus' |
+ 'chart-pie' |
+ 'pie-chart' |
+ 'bolt-lightning' |
+ 'clock-eight' |
+ 'sack-xmark' |
+ 'file-excel' |
+ 'file-contract' |
+ 'fish-fins' |
+ 'circle-q' |
+ 'building-flag' |
+ 'face-grin-beam' |
+ 'grin-beam' |
+ 'object-ungroup' |
+ 'face-disguise' |
+ 'circle-arrow-down-right' |
+ 'alien-8bit' |
+ 'alien-monster' |
+ 'hand-point-ribbon' |
+ 'poop' |
+ 'object-exclude' |
+ 'telescope' |
+ 'location-pin' |
+ 'map-marker' |
+ 'square-list' |
+ 'kaaba' |
+ 'toilet-paper' |
+ 'helmet-safety' |
+ 'hard-hat' |
+ 'hat-hard' |
+ 'comment-code' |
+ 'sim-cards' |
+ 'starship' |
+ 'eject' |
+ 'circle-right' |
+ 'arrow-alt-circle-right' |
+ 'plane-circle-check' |
+ 'seal' |
+ 'user-cowboy' |
+ 'hexagon-vertical-nft' |
+ 'face-rolling-eyes' |
+ 'meh-rolling-eyes' |
+ 'bread-loaf' |
+ 'rings-wedding' |
+ 'object-group' |
+ 'french-fries' |
+ 'chart-line' |
+ 'line-chart' |
+ 'calendar-arrow-down' |
+ 'calendar-download' |
+ 'send-back' |
+ 'mask-ventilator' |
+ 'signature-lock' |
+ 'arrow-right' |
+ 'signs-post' |
+ 'map-signs' |
+ 'octagon-plus' |
+ 'plus-octagon' |
+ 'cash-register' |
+ 'person-circle-question' |
+ 'melon-slice' |
+ 'space-station-moon' |
+ 'message-smile' |
+ 'comment-alt-smile' |
+ 'cup-straw' |
+ 'left-from-line' |
+ 'arrow-alt-from-right' |
+ 'h' |
+ 'basket-shopping-simple' |
+ 'shopping-basket-alt' |
+ 'hands-holding-heart' |
+ 'hands-heart' |
+ 'clock-nine' |
+ 'tarp' |
+ 'face-sleepy' |
+ 'hand-horns' |
+ 'screwdriver-wrench' |
+ 'tools' |
+ 'arrows-to-eye' |
+ 'circle-three-quarters' |
+ 'trophy-star' |
+ 'trophy-alt' |
+ 'plug-circle-bolt' |
+ 'face-thermometer' |
+ 'grid-round-4' |
+ 'shirt-running' |
+ 'book-circle-arrow-up' |
+ 'face-nauseated' |
+ 'heart' |
+ 'file-chart-pie' |
+ 'mars-and-venus' |
+ 'house-user' |
+ 'home-user' |
+ 'circle-arrow-down-left' |
+ 'dumpster-fire' |
+ 'hexagon-minus' |
+ 'minus-hexagon' |
+ 'left-to-line' |
+ 'arrow-alt-to-left' |
+ 'house-crack' |
+ 'paw-simple' |
+ 'paw-alt' |
+ 'arrow-left-long-to-line' |
+ 'brackets-round' |
+ 'parentheses' |
+ 'martini-glass-citrus' |
+ 'cocktail' |
+ 'user-shakespeare' |
+ 'arrow-right-to-arc' |
+ 'face-surprise' |
+ 'surprise' |
+ 'bottle-water' |
+ 'circle-pause' |
+ 'pause-circle' |
+ 'gauge-circle-plus' |
+ 'folders' |
+ 'angel' |
+ 'value-absolute' |
+ 'rabbit' |
+ 'toilet-paper-slash' |
+ 'circle-euro' |
+ 'apple-whole' |
+ 'apple-alt' |
+ 'kitchen-set' |
+ 'diamond-half' |
+ 'lock-keyhole' |
+ 'lock-alt' |
+ 'r' |
+ 'temperature-quarter' |
+ 'temperature1' |
+ 'thermometer1' |
+ 'thermometer-quarter' |
+ 'square-info' |
+ 'info-square' |
+ 'wifi-slash' |
+ 'toilet-paper-xmark' |
+ 'hands-holding-dollar' |
+ 'hands-usd' |
+ 'cube' |
+ 'arrow-down-triangle-square' |
+ 'sort-shapes-down' |
+ 'bitcoin-sign' |
+ 'shutters' |
+ 'shield-dog' |
+ 'solar-panel' |
+ 'lock-open' |
+ 'table-tree' |
+ 'house-chimney-heart' |
+ 'tally-3' |
+ 'elevator' |
+ 'money-bill-transfer' |
+ 'money-bill-trend-up' |
+ 'house-flood-water-circle-arrow-right' |
+ 'square-poll-horizontal' |
+ 'poll-h' |
+ 'circle' |
+ 'cart-circle-exclamation' |
+ 'sword' |
+ 'backward-fast' |
+ 'fast-backward' |
+ 'recycle' |
+ 'user-astronaut' |
+ 'interrobang' |
+ 'plane-slash' |
+ 'circle-dashed' |
+ 'trademark' |
+ 'basketball' |
+ 'basketball-ball' |
+ 'fork-knife' |
+ 'utensils-alt' |
+ 'satellite-dish' |
+ 'badge-check' |
+ 'circle-up' |
+ 'arrow-alt-circle-up' |
+ 'slider' |
+ 'mobile-screen-button' |
+ 'mobile-alt' |
+ 'clock-one-thirty' |
+ 'inbox-out' |
+ 'inbox-arrow-up' |
+ 'cloud-slash' |
+ 'volume-high' |
+ 'volume-up' |
+ 'users-rays' |
+ 'wallet' |
+ 'octagon-check' |
+ 'flatbread-stuffed' |
+ 'clipboard-check' |
+ 'cart-circle-plus' |
+ 'truck-clock' |
+ 'shipping-timed' |
+ 'pool-8-ball' |
+ 'file-audio' |
+ 'turn-down-left' |
+ 'lock-hashtag' |
+ 'chart-radar' |
+ 'staff' |
+ 'burger' |
+ 'hamburger' |
+ 'utility-pole' |
+ 'transporter-6' |
+ 'wrench' |
+ 'bugs' |
+ 'vector-polygon' |
+ 'diagram-nested' |
+ 'rupee-sign' |
+ 'rupee' |
+ 'file-image' |
+ 'circle-question' |
+ 'question-circle' |
+ 'image-user' |
+ 'buoy' |
+ 'plane-departure' |
+ 'handshake-slash' |
+ 'book-bookmark' |
+ 'border-center-h' |
+ 'can-food' |
+ 'typewriter' |
+ 'arrow-right-from-arc' |
+ 'circle-k' |
+ 'face-hand-over-mouth' |
+ 'popcorn' |
+ 'house-water' |
+ 'house-flood' |
+ 'object-subtract' |
+ 'code-branch' |
+ 'warehouse-full' |
+ 'warehouse-alt' |
+ 'hat-cowboy' |
+ 'bridge' |
+ 'phone-flip' |
+ 'phone-alt' |
+ 'arrow-down-from-dotted-line' |
+ 'file-doc' |
+ 'square-quarters' |
+ 'truck-front' |
+ 'cat' |
+ 'trash-xmark' |
+ 'circle-caret-left' |
+ 'caret-circle-left' |
+ 'files' |
+ 'anchor-circle-exclamation' |
+ 'face-clouds' |
+ 'user-crown' |
+ 'truck-field' |
+ 'route' |
+ 'cart-circle-check' |
+ 'clipboard-question' |
+ 'panorama' |
+ 'comment-medical' |
+ 'teeth-open' |
+ 'user-tie-hair-long' |
+ 'file-circle-minus' |
+ 'head-side-medical' |
+ 'tags' |
+ 'wine-glass' |
+ 'forward-fast' |
+ 'fast-forward' |
+ 'face-meh-blank' |
+ 'meh-blank' |
+ 'user-robot' |
+ 'square-parking' |
+ 'parking' |
+ 'card-diamond' |
+ 'face-zipper' |
+ 'face-raised-eyebrow' |
+ 'house-signal' |
+ 'square-chevron-up' |
+ 'chevron-square-up' |
+ 'nfc-symbol' |
+ 'bars-progress' |
+ 'tasks-alt' |
+ 'faucet-drip' |
+ 'arrows-to-line' |
+ 'dolphin' |
+ 'arrow-up-right' |
+ 'circle-r' |
+ 'cart-flatbed' |
+ 'dolly-flatbed' |
+ 'ban-smoking' |
+ 'smoking-ban' |
+ 'circle-sort-up' |
+ 'sort-circle-up' |
+ 'terminal' |
+ 'mobile-button' |
+ 'house-medical-flag' |
+ 'basket-shopping' |
+ 'shopping-basket' |
+ 'tape' |
+ 'chestnut' |
+ 'bus-simple' |
+ 'bus-alt' |
+ 'eye' |
+ 'face-sad-cry' |
+ 'sad-cry' |
+ 'heat' |
+ 'ticket-airline' |
+ 'boot-heeled' |
+ 'arrows-minimize' |
+ 'compress-arrows' |
+ 'audio-description' |
+ 'person-military-to-person' |
+ 'file-shield' |
+ 'hexagon' |
+ 'manhole' |
+ 'user-slash' |
+ 'pen' |
+ 'tower-observation' |
+ 'floppy-disks' |
+ 'toilet-paper-blank-under' |
+ 'toilet-paper-reverse-alt' |
+ 'file-code' |
+ 'signal' |
+ 'signal5' |
+ 'signal-perfect' |
+ 'pump' |
+ 'bus' |
+ 'heart-circle-xmark' |
+ 'arrow-up-left-from-circle' |
+ 'house-chimney' |
+ 'home-lg' |
+ 'window-maximize' |
+ 'dryer' |
+ 'face-frown' |
+ 'frown' |
+ 'chess-bishop-piece' |
+ 'chess-bishop-alt' |
+ 'shirt-tank-top' |
+ 'diploma' |
+ 'scroll-ribbon' |
+ 'screencast' |
+ 'walker' |
+ 'prescription' |
+ 'shop' |
+ 'store-alt' |
+ 'floppy-disk' |
+ 'save' |
+ 'vihara' |
+ 'face-kiss-closed-eyes' |
+ 'scale-unbalanced' |
+ 'balance-scale-left' |
+ 'file-user' |
+ 'user-police-tie' |
+ 'face-tongue-money' |
+ 'tennis-ball' |
+ 'square-l' |
+ 'sort-up' |
+ 'sort-asc' |
+ 'calendar-arrow-up' |
+ 'calendar-upload' |
+ 'comment-dots' |
+ 'commenting' |
+ 'plant-wilt' |
+ 'scarf' |
+ 'album-circle-plus' |
+ 'user-nurse-hair-long' |
+ 'diamond' |
+ 'square-left' |
+ 'arrow-alt-square-left' |
+ 'face-grin-squint' |
+ 'grin-squint' |
+ 'circle-ellipsis-vertical' |
+ 'hand-holding-dollar' |
+ 'hand-holding-usd' |
+ 'grid-dividers' |
+ 'bacterium' |
+ 'hand-pointer' |
+ 'drum-steelpan' |
+ 'hand-scissors' |
+ 'hands-praying' |
+ 'praying-hands' |
+ 'face-pensive' |
+ 'user-music' |
+ 'arrow-rotate-right' |
+ 'arrow-right-rotate' |
+ 'arrow-rotate-forward' |
+ 'redo' |
+ 'messages-dollar' |
+ 'comments-alt-dollar' |
+ 'sensor-on' |
+ 'balloon' |
+ 'biohazard' |
+ 'chess-queen-piece' |
+ 'chess-queen-alt' |
+ 'location-crosshairs' |
+ 'location' |
+ 'mars-double' |
+ 'house-person-leave' |
+ 'house-leave' |
+ 'house-person-depart' |
+ 'ruler-triangle' |
+ 'card-club' |
+ 'child-dress' |
+ 'users-between-lines' |
+ 'lungs-virus' |
+ 'spinner-third' |
+ 'face-grin-tears' |
+ 'grin-tears' |
+ 'phone' |
+ 'computer-mouse-scrollwheel' |
+ 'mouse-alt' |
+ 'calendar-xmark' |
+ 'calendar-times' |
+ 'child-reaching' |
+ 'table-layout' |
+ 'narwhal' |
+ 'ramp-loading' |
+ 'calendar-circle-plus' |
+ 'toothbrush' |
+ 'border-inner' |
+ 'paw-claws' |
+ 'kiwi-fruit' |
+ 'traffic-light-slow' |
+ 'rectangle-code' |
+ 'head-side-virus' |
+ 'keyboard-brightness' |
+ 'books-medical' |
+ 'lightbulb-slash' |
+ 'house-blank' |
+ 'home-blank' |
+ 'square-5' |
+ 'square-heart' |
+ 'heart-square' |
+ 'puzzle' |
+ 'user-gear' |
+ 'user-cog' |
+ 'pipe-circle-check' |
+ 'arrow-up-1-9' |
+ 'sort-numeric-up' |
+ 'octagon-exclamation' |
+ 'dial-low' |
+ 'door-closed' |
+ 'laptop-mobile' |
+ 'phone-laptop' |
+ 'conveyor-belt-boxes' |
+ 'conveyor-belt-alt' |
+ 'shield-virus' |
+ 'starfighter-twin-ion-engine-advanced' |
+ 'starfighter-alt-advanced' |
+ 'dice-six' |
+ 'starfighter-twin-ion-engine' |
+ 'starfighter-alt' |
+ 'rocket-launch' |
+ 'mosquito-net' |
+ 'vent-damper' |
+ 'bridge-water' |
+ 'ban-bug' |
+ 'debug' |
+ 'person-booth' |
+ 'text-width' |
+ 'garage-car' |
+ 'square-kanban' |
+ 'hat-wizard' |
+ 'pen-fancy' |
+ 'coffee-pot' |
+ 'mouse-field' |
+ 'person-digging' |
+ 'digging' |
+ 'shower-down' |
+ 'shower-alt' |
+ 'box-circle-check' |
+ 'brightness' |
+ 'car-side-bolt' |
+ 'ornament' |
+ 'phone-arrow-down-left' |
+ 'phone-arrow-down' |
+ 'phone-incoming' |
+ 'cloud-word' |
+ 'hand-fingers-crossed' |
+ 'trash' |
+ 'gauge-simple' |
+ 'gauge-simple-med' |
+ 'tachometer-average' |
+ 'arrow-down-small-big' |
+ 'sort-size-down-alt' |
+ 'book-medical' |
+ 'face-melting' |
+ 'poo' |
+ 'pen-clip-slash' |
+ 'pen-alt-slash' |
+ 'quote-right' |
+ 'quote-right-alt' |
+ 'scroll-old' |
+ 'guitars' |
+ 'phone-xmark' |
+ 'hose' |
+ 'clock-six' |
+ 'shirt' |
+ 't-shirt' |
+ 'tshirt' |
+ 'billboard' |
+ 'square-r' |
+ 'cubes' |
+ 'envelope-open-dollar' |
+ 'divide' |
+ 'sun-cloud' |
+ 'lamp-floor' |
+ 'square-7' |
+ 'tenge-sign' |
+ 'tenge' |
+ 'headphones' |
+ 'hands-holding' |
+ 'campfire' |
+ 'circle-ampersand' |
+ 'snowflakes' |
+ 'hands-clapping' |
+ 'republican' |
+ 'leaf-maple' |
+ 'arrow-left' |
+ 'person-circle-xmark' |
+ 'ruler' |
+ 'cup-straw-swoosh' |
+ 'temperature-sun' |
+ 'temperature-hot' |
+ 'align-left' |
+ 'dice-d6' |
+ 'restroom' |
+ 'high-definition' |
+ 'rectangle-hd' |
+ 'j' |
+ 'galaxy' |
+ 'users-viewfinder' |
+ 'file-video' |
+ 'cherries' |
+ 'up-right-from-square' |
+ 'external-link-alt' |
+ 'circle-sort' |
+ 'sort-circle' |
+ 'table-cells' |
+ 'th' |
+ 'file-pdf' |
+ 'siren' |
+ 'arrow-up-to-dotted-line' |
+ 'image-landscape' |
+ 'landscape' |
+ 'tank-water' |
+ 'curling-stone' |
+ 'curling' |
+ 'gamepad-modern' |
+ 'gamepad-alt' |
+ 'messages-question' |
+ 'book-bible' |
+ 'bible' |
+ 'o' |
+ 'suitcase-medical' |
+ 'medkit' |
+ 'briefcase-arrow-right' |
+ 'expand-wide' |
+ 'clock-eleven-thirty' |
+ 'rv' |
+ 'user-secret' |
+ 'otter' |
+ 'dreidel' |
+ 'person-dress' |
+ 'female' |
+ 'comment-dollar' |
+ 'business-time' |
+ 'briefcase-clock' |
+ 'flower-tulip' |
+ 'people-pants-simple' |
+ 'cloud-drizzle' |
+ 'table-cells-large' |
+ 'th-large' |
+ 'book-tanakh' |
+ 'tanakh' |
+ 'solar-system' |
+ 'seal-question' |
+ 'phone-volume' |
+ 'volume-control-phone' |
+ 'disc-drive' |
+ 'hat-cowboy-side' |
+ 'table-rows' |
+ 'rows' |
+ 'location-exclamation' |
+ 'map-marker-exclamation' |
+ 'face-fearful' |
+ 'clipboard-user' |
+ 'bus-school' |
+ 'film-slash' |
+ 'square-arrow-down-right' |
+ 'book-sparkles' |
+ 'book-spells' |
+ 'washing-machine' |
+ 'washer' |
+ 'child' |
+ 'lira-sign' |
+ 'user-visor' |
+ 'file-plus-minus' |
+ 'chess-clock-flip' |
+ 'chess-clock-alt' |
+ 'satellite' |
+ 'plane-lock' |
+ 'steering-wheel' |
+ 'tag' |
+ 'stretcher' |
+ 'book-section' |
+ 'book-law' |
+ 'inboxes' |
+ 'coffee-bean' |
+ 'circle-yen' |
+ 'brackets-curly' |
+ 'ellipsis-stroke-vertical' |
+ 'ellipsis-v-alt' |
+ 'comment' |
+ 'square-1' |
+ 'cake-candles' |
+ 'birthday-cake' |
+ 'cake' |
+ 'head-side' |
+ 'envelope' |
+ 'dolly-empty' |
+ 'face-tissue' |
+ 'angles-up' |
+ 'angle-double-up' |
+ 'bin-recycle' |
+ 'paperclip' |
+ 'chart-line-down' |
+ 'arrow-right-to-city' |
+ 'lock-a' |
+ 'ribbon' |
+ 'lungs' |
+ 'person-pinball' |
+ 'arrow-up-9-1' |
+ 'sort-numeric-up-alt' |
+ 'apple-core' |
+ 'circle-y' |
+ 'h6' |
+ 'litecoin-sign' |
+ 'circle-small' |
+ 'border-none' |
+ 'arrow-turn-down-left' |
+ 'circle-nodes' |
+ 'parachute-box' |
+ 'message-medical' |
+ 'comment-alt-medical' |
+ 'rugby-ball' |
+ 'comment-music' |
+ 'indent' |
+ 'tree-deciduous' |
+ 'tree-alt' |
+ 'puzzle-piece-simple' |
+ 'puzzle-piece-alt' |
+ 'truck-field-un' |
+ 'nfc-trash' |
+ 'hourglass' |
+ 'hourglass-empty' |
+ 'mountain' |
+ 'file-xmark' |
+ 'file-times' |
+ 'house-heart' |
+ 'home-heart' |
+ 'house-chimney-blank' |
+ 'meter-bolt' |
+ 'user-doctor' |
+ 'user-md' |
+ 'slash-back' |
+ 'circle-info' |
+ 'info-circle' |
+ 'fishing-rod' |
+ 'hammer-crash' |
+ 'message-heart' |
+ 'cloud-meatball' |
+ 'camera-polaroid' |
+ 'camera' |
+ 'camera-alt' |
+ 'square-virus' |
+ 'cart-arrow-up' |
+ 'meteor' |
+ 'car-on' |
+ 'sleigh' |
+ 'arrow-down-1-9' |
+ 'sort-numeric-asc' |
+ 'sort-numeric-down' |
+ 'buoy-mooring' |
+ 'square-4' |
+ 'hand-holding-droplet' |
+ 'hand-holding-water' |
+ 'tricycle-adult' |
+ 'waveform' |
+ 'water' |
+ 'star-sharp-half-stroke' |
+ 'star-sharp-half-alt' |
+ 'nfc-signal' |
+ 'plane-prop' |
+ 'calendar-check' |
+ 'clock-desk' |
+ 'calendar-clock' |
+ 'calendar-time' |
+ 'braille' |
+ 'prescription-bottle-medical' |
+ 'prescription-bottle-alt' |
+ 'plate-utensils' |
+ 'family-pants' |
+ 'hose-reel' |
+ 'house-window' |
+ 'landmark' |
+ 'truck' |
+ 'crosshairs' |
+ 'cloud-rainbow' |
+ 'person-cane' |
+ 'alien' |
+ 'tent' |
+ 'laptop-binary' |
+ 'vest-patches' |
+ 'people-dress-simple' |
+ 'check-double' |
+ 'arrow-down-a-z' |
+ 'sort-alpha-asc' |
+ 'sort-alpha-down' |
+ 'bowling-ball-pin' |
+ 'bell-school-slash' |
+ 'plus-large' |
+ 'money-bill-wheat' |
+ 'camera-viewfinder' |
+ 'screenshot' |
+ 'message-music' |
+ 'comment-alt-music' |
+ 'car-building' |
+ 'border-bottom-right' |
+ 'border-style-alt' |
+ 'octagon' |
+ 'comment-arrow-up-right' |
+ 'octagon-divide' |
+ 'cookie' |
+ 'arrow-rotate-left' |
+ 'arrow-left-rotate' |
+ 'arrow-rotate-back' |
+ 'arrow-rotate-backward' |
+ 'undo' |
+ 'tv-music' |
+ 'hard-drive' |
+ 'hdd' |
+ 'reel' |
+ 'face-grin-squint-tears' |
+ 'grin-squint-tears' |
+ 'dumbbell' |
+ 'rectangle-list' |
+ 'list-alt' |
+ 'tarp-droplet' |
+ 'alarm-exclamation' |
+ 'house-medical-circle-check' |
+ 'traffic-cone' |
+ 'grate' |
+ 'arrow-down-right' |
+ 'person-skiing-nordic' |
+ 'skiing-nordic' |
+ 'calendar-plus' |
+ 'person-from-portal' |
+ 'portal-exit' |
+ 'plane-arrival' |
+ 'cowbell-circle-plus' |
+ 'cowbell-more' |
+ 'circle-left' |
+ 'arrow-alt-circle-left' |
+ 'distribute-spacing-vertical' |
+ 'signal-bars-fair' |
+ 'signal-alt2' |
+ 'sportsball' |
+ 'game-console-handheld-crank' |
+ 'train-subway' |
+ 'subway' |
+ 'chart-gantt' |
+ 'face-smile-upside-down' |
+ 'ball-pile' |
+ 'badge-dollar' |
+ 'money-bills-simple' |
+ 'money-bills-alt' |
+ 'list-timeline' |
+ 'indian-rupee-sign' |
+ 'indian-rupee' |
+ 'inr' |
+ 'crop-simple' |
+ 'crop-alt' |
+ 'money-bill-1' |
+ 'money-bill-alt' |
+ 'left-long' |
+ 'long-arrow-alt-left' |
+ 'keyboard-down' |
+ 'circle-up-right' |
+ 'cloud-bolt-moon' |
+ 'thunderstorm-moon' |
+ 'dna' |
+ 'virus-slash' |
+ 'bracket-round-right' |
+ 'circle-sterling' |
+ 'circle-5' |
+ 'minus' |
+ 'subtract' |
+ 'fire-flame' |
+ 'flame' |
+ 'right-to-line' |
+ 'arrow-alt-to-right' |
+ 'gif' |
+ 'chess' |
+ 'trash-slash' |
+ 'arrow-left-long' |
+ 'long-arrow-left' |
+ 'plug-circle-check' |
+ 'font-case' |
+ 'street-view' |
+ 'arrow-down-left' |
+ 'franc-sign' |
+ 'flask-round-poison' |
+ 'flask-poison' |
+ 'volume-off' |
+ 'book-circle-arrow-right' |
+ 'chart-user' |
+ 'user-chart' |
+ 'hands-asl-interpreting' |
+ 'american-sign-language-interpreting' |
+ 'asl-interpreting' |
+ 'hands-american-sign-language-interpreting' |
+ 'presentation-screen' |
+ 'presentation' |
+ 'circle-bolt' |
+ 'face-smile-halo' |
+ 'cart-circle-arrow-down' |
+ 'house-person-return' |
+ 'house-person-arrive' |
+ 'house-return' |
+ 'message-xmark' |
+ 'comment-alt-times' |
+ 'message-times' |
+ 'file-certificate' |
+ 'file-award' |
+ 'user-doctor-hair-long' |
+ 'camera-security' |
+ 'camera-home' |
+ 'gear' |
+ 'cog' |
+ 'droplet-slash' |
+ 'tint-slash' |
+ 'book-heart' |
+ 'mosque' |
+ 'duck' |
+ 'mosquito' |
+ 'star-of-david' |
+ 'flag-swallowtail' |
+ 'flag-alt' |
+ 'person-military-rifle' |
+ 'car-garage' |
+ 'cart-shopping' |
+ 'shopping-cart' |
+ 'book-font' |
+ 'shield-plus' |
+ 'vials' |
+ 'eye-dropper-full' |
+ 'distribute-spacing-horizontal' |
+ 'tablet-rugged' |
+ 'temperature-snow' |
+ 'temperature-frigid' |
+ 'moped' |
+ 'face-smile-plus' |
+ 'smile-plus' |
+ 'radio-tuner' |
+ 'radio-alt' |
+ 'face-swear' |
+ 'water-arrow-down' |
+ 'water-lower' |
+ 'scanner-touchscreen' |
+ 'circle-7' |
+ 'plug-circle-plus' |
+ 'person-ski-jumping' |
+ 'ski-jump' |
+ 'place-of-worship' |
+ 'water-arrow-up' |
+ 'water-rise' |
+ 'waveform-lines' |
+ 'waveform-path' |
+ 'split' |
+ 'film-canister' |
+ 'film-cannister' |
+ 'folder-xmark' |
+ 'folder-times' |
+ 'toilet-paper-blank' |
+ 'toilet-paper-alt' |
+ 'tablet-screen' |
+ 'tablet-android-alt' |
+ 'hexagon-vertical-nft-slanted' |
+ 'folder-music' |
+ 'display-medical' |
+ 'desktop-medical' |
+ 'share-all' |
+ 'peapod' |
+ 'chess-clock' |
+ 'axe' |
+ 'square-d' |
+ 'grip-vertical' |
+ 'mobile-signal-out' |
+ 'arrow-turn-up' |
+ 'level-up' |
+ 'u' |
+ 'arrow-up-from-dotted-line' |
+ 'square-root-variable' |
+ 'square-root-alt' |
+ 'light-switch-on' |
+ 'arrow-down-arrow-up' |
+ 'sort-alt' |
+ 'raindrops' |
+ 'dash' |
+ 'minus-large' |
+ 'clock' |
+ 'clock-four' |
+ 'input-numeric' |
+ 'truck-tow' |
+ 'backward-step' |
+ 'step-backward' |
+ 'pallet' |
+ 'car-bolt' |
+ 'arrows-maximize' |
+ 'expand-arrows' |
+ 'faucet' |
+ 'cloud-sleet' |
+ 'lamp-street' |
+ 'list-radio' |
+ 'pen-nib-slash' |
+ 'baseball-bat-ball' |
+ 'square-up-left' |
+ 'overline' |
+ 's' |
+ 'timeline' |
+ 'keyboard' |
+ 'arrows-from-dotted-line' |
+ 'usb-drive' |
+ 'ballot' |
+ 'caret-down' |
+ 'location-dot-slash' |
+ 'map-marker-alt-slash' |
+ 'cards' |
+ 'house-chimney-medical' |
+ 'clinic-medical' |
+ 'boxing-glove' |
+ 'glove-boxing' |
+ 'temperature-three-quarters' |
+ 'temperature3' |
+ 'thermometer3' |
+ 'thermometer-three-quarters' |
+ 'bell-school' |
+ 'mobile-screen' |
+ 'mobile-android-alt' |
+ 'plane-up' |
+ 'folder-heart' |
+ 'circle-location-arrow' |
+ 'location-circle' |
+ 'face-head-bandage' |
+ 'sushi-roll' |
+ 'maki-roll' |
+ 'makizushi' |
+ 'car-bump' |
+ 'piggy-bank' |
+ 'racquet' |
+ 'car-mirrors' |
+ 'industry-windows' |
+ 'industry-alt' |
+ 'bolt-auto' |
+ 'battery-half' |
+ 'battery3' |
+ 'flux-capacitor' |
+ 'mountain-city' |
+ 'coins' |
+ 'honey-pot' |
+ 'olive' |
+ 'khanda' |
+ 'filter-list' |
+ 'outlet' |
+ 'sliders' |
+ 'sliders-h' |
+ 'cauldron' |
+ 'people' |
+ 'folder-tree' |
+ 'network-wired' |
+ 'croissant' |
+ 'map-pin' |
+ 'hamsa' |
+ 'cent-sign' |
+ 'swords-laser' |
+ 'flask' |
+ 'person-pregnant' |
+ 'square-u' |
+ 'wand-sparkles' |
+ 'router' |
+ 'ellipsis-vertical' |
+ 'ellipsis-v' |
+ 'sword-laser-alt' |
+ 'ticket' |
+ 'power-off' |
+ 'coin' |
+ 'laptop-slash' |
+ 'right-long' |
+ 'long-arrow-alt-right' |
+ 'circle-b' |
+ 'person-dress-simple' |
+ 'pipe-collar' |
+ 'lights-holiday' |
+ 'citrus' |
+ 'flag-usa' |
+ 'laptop-file' |
+ 'tty' |
+ 'teletype' |
+ 'chart-tree-map' |
+ 'diagram-next' |
+ 'person-rifle' |
+ 'clock-five-thirty' |
+ 'pipe-valve' |
+ 'arrow-up-from-arc' |
+ 'face-spiral-eyes' |
+ 'compress-wide' |
+ 'circle-phone-hangup' |
+ 'phone-circle-down' |
+ 'gear-complex-code' |
+ 'house-medical-circle-exclamation' |
+ 'badminton' |
+ 'closed-captioning' |
+ 'person-hiking' |
+ 'hiking' |
+ 'right-from-line' |
+ 'arrow-alt-from-left' |
+ 'venus-double' |
+ 'images' |
+ 'calculator' |
+ 'shuttlecock' |
+ 'user-hair' |
+ 'eye-evil' |
+ 'people-pulling' |
+ 'n' |
+ 'garage' |
+ 'cable-car' |
+ 'tram' |
+ 'shovel-snow' |
+ 'cloud-rain' |
+ 'face-lying' |
+ 'sprinkler' |
+ 'building-circle-xmark' |
+ 'person-sledding' |
+ 'sledding' |
+ 'game-console-handheld' |
+ 'ship' |
+ 'clock-six-thirty' |
+ 'battery-slash' |
+ 'tugrik-sign' |
+ 'arrows-down-to-line' |
+ 'download' |
+ 'shelves' |
+ 'inventory' |
+ 'cloud-snow' |
+ 'face-grin' |
+ 'grin' |
+ 'delete-left' |
+ 'backspace' |
+ 'oven' |
+ 'cloud-binary' |
+ 'eye-dropper' |
+ 'eye-dropper-empty' |
+ 'eyedropper' |
+ 'comment-captions' |
+ 'comments-question' |
+ 'scribble' |
+ 'rotate-exclamation' |
+ 'file-circle-check' |
+ 'glass' |
+ 'loader' |
+ 'forward' |
+ 'user-pilot' |
+ 'mobile' |
+ 'mobile-android' |
+ 'mobile-phone' |
+ 'code-pull-request-closed' |
+ 'face-meh' |
+ 'meh' |
+ 'align-center' |
+ 'book-skull' |
+ 'book-dead' |
+ 'id-card' |
+ 'drivers-license' |
+ 'face-dotted' |
+ 'face-worried' |
+ 'outdent' |
+ 'dedent' |
+ 'heart-circle-exclamation' |
+ 'house' |
+ 'home' |
+ 'home-alt' |
+ 'home-lg-alt' |
+ 'vector-circle' |
+ 'car-circle-bolt' |
+ 'calendar-week' |
+ 'flying-disc' |
+ 'laptop-medical' |
+ 'square-down-right' |
+ 'b' |
+ 'seat-airline' |
+ 'moon-over-sun' |
+ 'eclipse-alt' |
+ 'pipe' |
+ 'file-medical' |
+ 'potato' |
+ 'dice-one' |
+ 'circle-a' |
+ 'helmet-battle' |
+ 'butter' |
+ 'blanket-fire' |
+ 'kiwi-bird' |
+ 'castle' |
+ 'golf-club' |
+ 'arrow-right-arrow-left' |
+ 'exchange' |
+ 'rotate-right' |
+ 'redo-alt' |
+ 'rotate-forward' |
+ 'utensils' |
+ 'cutlery' |
+ 'arrow-up-wide-short' |
+ 'sort-amount-up' |
+ 'chart-pie-simple-circle-dollar' |
+ 'balloons' |
+ 'mill-sign' |
+ 'bowl-rice' |
+ 'timeline-arrow' |
+ 'skull' |
+ 'game-board-simple' |
+ 'game-board-alt' |
+ 'circle-video' |
+ 'video-circle' |
+ 'chart-scatter-bubble' |
+ 'house-turret' |
+ 'banana' |
+ 'hand-holding-skull' |
+ 'people-dress' |
+ 'loveseat' |
+ 'couch-small' |
+ 'tower-broadcast' |
+ 'broadcast-tower' |
+ 'truck-pickup' |
+ 'block-quote' |
+ 'up-long' |
+ 'long-arrow-alt-up' |
+ 'stop' |
+ 'code-merge' |
+ 'money-check-dollar-pen' |
+ 'money-check-edit-alt' |
+ 'up-from-line' |
+ 'arrow-alt-from-bottom' |
+ 'upload' |
+ 'hurricane' |
+ 'grid-round-2-plus' |
+ 'people-pants' |
+ 'mound' |
+ 'windsock' |
+ 'circle-half' |
+ 'brake-warning' |
+ 'toilet-portable' |
+ 'compact-disc' |
+ 'file-arrow-down' |
+ 'file-download' |
+ 'saxophone-fire' |
+ 'sax-hot' |
+ 'camera-web-slash' |
+ 'webcam-slash' |
+ 'folder-medical' |
+ 'folder-gear' |
+ 'folder-cog' |
+ 'hand-wave' |
+ 'arrow-up-arrow-down' |
+ 'sort-up-down' |
+ 'caravan' |
+ 'shield-cat' |
+ 'message-slash' |
+ 'comment-alt-slash' |
+ 'bolt' |
+ 'zap' |
+ 'trash-can-check' |
+ 'glass-water' |
+ 'oil-well' |
+ 'person-simple' |
+ 'vault' |
+ 'mars' |
+ 'toilet' |
+ 'plane-circle-xmark' |
+ 'yen-sign' |
+ 'cny' |
+ 'jpy' |
+ 'rmb' |
+ 'yen' |
+ 'gear-code' |
+ 'notes' |
+ 'ruble-sign' |
+ 'rouble' |
+ 'rub' |
+ 'ruble' |
+ 'trash-undo' |
+ 'trash-arrow-turn-left' |
+ 'champagne-glass' |
+ 'glass-champagne' |
+ 'objects-align-center-horizontal' |
+ 'sun' |
+ 'trash-can-slash' |
+ 'trash-alt-slash' |
+ 'screen-users' |
+ 'users-class' |
+ 'guitar' |
+ 'square-arrow-left' |
+ 'arrow-square-left' |
+ 'square-8' |
+ 'face-smile-hearts' |
+ 'brackets-square' |
+ 'brackets' |
+ 'laptop-arrow-down' |
+ 'hockey-stick-puck' |
+ 'house-tree' |
+ 'signal-fair' |
+ 'signal2' |
+ 'face-laugh-wink' |
+ 'laugh-wink' |
+ 'circle-dollar' |
+ 'dollar-circle' |
+ 'usd-circle' |
+ 'horse-head' |
+ 'arrows-repeat' |
+ 'repeat-alt' |
+ 'bore-hole' |
+ 'industry' |
+ 'image-polaroid' |
+ 'wave-triangle' |
+ 'person-running-fast' |
+ 'circle-down' |
+ 'arrow-alt-circle-down' |
+ 'grill' |
+ 'arrows-turn-to-dots' |
+ 'chart-mixed' |
+ 'analytics' |
+ 'florin-sign' |
+ 'arrow-down-short-wide' |
+ 'sort-amount-desc' |
+ 'sort-amount-down-alt' |
+ 'less-than' |
+ 'display-code' |
+ 'desktop-code' |
+ 'face-drooling' |
+ 'oil-temperature' |
+ 'oil-temp' |
+ 'square-question' |
+ 'question-square' |
+ 'air-conditioner' |
+ 'angle-down' |
+ 'mountains' |
+ 'omega' |
+ 'car-tunnel' |
+ 'person-dolly-empty' |
+ 'pan-food' |
+ 'head-side-cough' |
+ 'grip-lines' |
+ 'thumbs-down' |
+ 'user-lock' |
+ 'arrow-right-long' |
+ 'long-arrow-right' |
+ 'tickets-airline' |
+ 'anchor-circle-xmark' |
+ 'ellipsis' |
+ 'ellipsis-h' |
+ 'nfc-slash' |
+ 'chess-pawn' |
+ 'kit-medical' |
+ 'first-aid' |
+ 'grid-2-plus' |
+ 'bells' |
+ 'person-through-window' |
+ 'toolbox' |
+ 'envelope-dot' |
+ 'envelope-badge' |
+ 'hands-holding-circle' |
+ 'bug' |
+ 'bowl-chopsticks' |
+ 'credit-card' |
+ 'credit-card-alt' |
+ 'circle-s' |
+ 'box-ballot' |
+ 'car' |
+ 'automobile' |
+ 'hand-holding-hand' |
+ 'user-tie-hair' |
+ 'podium-star' |
+ 'user-hair-mullet' |
+ 'business-front' |
+ 'party-back' |
+ 'trian-balbot' |
+ 'microphone-stand' |
+ 'book-open-reader' |
+ 'book-reader' |
+ 'family-dress' |
+ 'circle-x' |
+ 'cabin' |
+ 'mountain-sun' |
+ 'chart-simple-horizontal' |
+ 'bluetooth' |
+ 'arrows-left-right-to-line' |
+ 'hand-back-point-left' |
+ 'message-dots' |
+ 'comment-alt-dots' |
+ 'messaging' |
+ 'file-heart' |
+ 'beer-mug' |
+ 'beer-foam' |
+ 'dice-d20' |
+ 'drone' |
+ 'truck-droplet' |
+ 'file-circle-xmark' |
+ 'temperature-arrow-up' |
+ 'temperature-up' |
+ 'medal' |
+ 'bed' |
+ 'book-copy' |
+ 'square-h' |
+ 'h-square' |
+ 'square-c' |
+ 'clock-two' |
+ 'square-ellipsis-vertical' |
+ 'calendar-users' |
+ 'podcast' |
+ 'bee' |
+ 'temperature-full' |
+ 'temperature4' |
+ 'thermometer4' |
+ 'thermometer-full' |
+ 'bell' |
+ 'candy-bar' |
+ 'chocolate-bar' |
+ 'xmark-large' |
+ 'pinata' |
+ 'arrows-from-line' |
+ 'superscript' |
+ 'bowl-spoon' |
+ 'hexagon-check' |
+ 'plug-circle-xmark' |
+ 'star-of-life' |
+ 'phone-slash' |
+ 'traffic-light-stop' |
+ 'paint-roller' |
+ 'accent-grave' |
+ 'handshake-angle' |
+ 'hands-helping' |
+ 'circle-0' |
+ 'dial-med-low' |
+ 'location-dot' |
+ 'map-marker-alt' |
+ 'crab' |
+ 'box-open-full' |
+ 'box-full' |
+ 'file' |
+ 'greater-than' |
+ 'quotes' |
+ 'pretzel' |
+ 'person-swimming' |
+ 'swimmer' |
+ 'arrow-down' |
+ 'user-robot-xmarks' |
+ 'message-quote' |
+ 'comment-alt-quote' |
+ 'candy-corn' |
+ 'folder-magnifying-glass' |
+ 'folder-search' |
+ 'notebook' |
+ 'droplet' |
+ 'tint' |
+ 'bullseye-pointer' |
+ 'eraser' |
+ 'hexagon-image' |
+ 'earth-americas' |
+ 'earth' |
+ 'earth-america' |
+ 'globe-americas' |
+ 'crate-apple' |
+ 'apple-crate' |
+ 'person-burst' |
+ 'game-board' |
+ 'hat-chef' |
+ 'hand-back-point-right' |
+ 'dove' |
+ 'snowflake-droplets' |
+ 'battery-empty' |
+ 'battery0' |
+ 'grid-4' |
+ 'socks' |
+ 'face-sunglasses' |
+ 'inbox' |
+ 'square-0' |
+ 'section' |
+ 'square-this-way-up' |
+ 'box-up' |
+ 'gauge-high' |
+ 'tachometer-alt' |
+ 'tachometer-alt-fast' |
+ 'square-ampersand' |
+ 'envelope-open-text' |
+ 'lamp-desk' |
+ 'hospital' |
+ 'hospital-alt' |
+ 'hospital-wide' |
+ 'poll-people' |
+ 'whiskey-glass-ice' |
+ 'glass-whiskey-rocks' |
+ 'wine-bottle' |
+ 'chess-rook' |
+ 'user-bounty-hunter' |
+ 'bars-staggered' |
+ 'reorder' |
+ 'stream' |
+ 'diagram-sankey' |
+ 'cloud-hail-mixed' |
+ 'circle-up-left' |
+ 'dharmachakra' |
+ 'objects-align-left' |
+ 'oil-can-drip' |
+ 'face-smiling-hands' |
+ 'broccoli' |
+ 'route-interstate' |
+ 'ear-muffs' |
+ 'hotdog' |
+ 'transporter-empty' |
+ 'person-walking-with-cane' |
+ 'blind' |
+ 'angle-90' |
+ 'rectangle-terminal' |
+ 'kite' |
+ 'drum' |
+ 'scrubber' |
+ 'ice-cream' |
+ 'heart-circle-bolt' |
+ 'fish-bones' |
+ 'deer-rudolph' |
+ 'fax' |
+ 'paragraph' |
+ 'head-side-heart' |
+ 'square-e' |
+ 'meter-fire' |
+ 'cloud-hail' |
+ 'check-to-slot' |
+ 'vote-yea' |
+ 'money-from-bracket' |
+ 'star-half' |
+ 'car-bus' |
+ 'speaker' |
+ 'timer' |
+ 'boxes-stacked' |
+ 'boxes' |
+ 'boxes-alt' |
+ 'grill-hot' |
+ 'ballot-check' |
+ 'link' |
+ 'chain' |
+ 'ear-listen' |
+ 'assistive-listening-systems' |
+ 'file-minus' |
+ 'tree-city' |
+ 'play' |
+ 'font' |
+ 'cup-togo' |
+ 'coffee-togo' |
+ 'square-down-left' |
+ 'burger-lettuce' |
+ 'rupiah-sign' |
+ 'magnifying-glass' |
+ 'search' |
+ 'table-tennis-paddle-ball' |
+ 'ping-pong-paddle-ball' |
+ 'table-tennis' |
+ 'person-dots-from-line' |
+ 'diagnoses' |
+ 'chevrons-down' |
+ 'chevron-double-down' |
+ 'trash-can-arrow-up' |
+ 'trash-restore-alt' |
+ 'signal-good' |
+ 'signal3' |
+ 'location-question' |
+ 'map-marker-question' |
+ 'floppy-disk-circle-xmark' |
+ 'floppy-disk-times' |
+ 'save-circle-xmark' |
+ 'save-times' |
+ 'naira-sign' |
+ 'peach' |
+ 'taxi-bus' |
+ 'bracket-curly' |
+ 'bracket-curly-left' |
+ 'lobster' |
+ 'cart-flatbed-empty' |
+ 'dolly-flatbed-empty' |
+ 'colon' |
+ 'cart-arrow-down' |
+ 'wand' |
+ 'walkie-talkie' |
+ 'file-pen' |
+ 'file-edit' |
+ 'receipt' |
+ 'table-picnic' |
+ 'square-pen' |
+ 'pen-square' |
+ 'pencil-square' |
+ 'circle-microphone-lines' |
+ 'microphone-circle-alt' |
+ 'display-slash' |
+ 'desktop-slash' |
+ 'suitcase-rolling' |
+ 'person-circle-exclamation' |
+ 'transporter-2' |
+ 'hands-holding-diamond' |
+ 'hand-receiving' |
+ 'money-bill-simple-wave' |
+ 'chevron-down' |
+ 'battery-full' |
+ 'battery' |
+ 'battery5' |
+ 'bell-plus' |
+ 'book-arrow-right' |
+ 'hospitals' |
+ 'club' |
+ 'skull-crossbones' |
+ 'droplet-degree' |
+ 'dewpoint' |
+ 'code-compare' |
+ 'list-ul' |
+ 'list-dots' |
+ 'hand-holding-magic' |
+ 'watermelon-slice' |
+ 'circle-ellipsis' |
+ 'school-lock' |
+ 'tower-cell' |
+ 'sd-cards' |
+ 'jug-bottle' |
+ 'down-long' |
+ 'long-arrow-alt-down' |
+ 'envelopes' |
+ 'phone-office' |
+ 'ranking-star' |
+ 'chess-king' |
+ 'nfc-pen' |
+ 'person-harassing' |
+ 'hat-winter' |
+ 'brazilian-real-sign' |
+ 'landmark-dome' |
+ 'landmark-alt' |
+ 'bone-break' |
+ 'arrow-up' |
+ 'down-from-dotted-line' |
+ 'tv' |
+ 'television' |
+ 'tv-alt' |
+ 'border-left' |
+ 'circle-divide' |
+ 'shrimp' |
+ 'list-check' |
+ 'tasks' |
+ 'diagram-subtask' |
+ 'jug-detergent' |
+ 'circle-user' |
+ 'user-circle' |
+ 'square-y' |
+ 'user-doctor-hair' |
+ 'planet-ringed' |
+ 'mushroom' |
+ 'user-shield' |
+ 'megaphone' |
+ 'wreath-laurel' |
+ 'circle-exclamation-check' |
+ 'wind' |
+ 'box-dollar' |
+ 'box-usd' |
+ 'car-burst' |
+ 'car-crash' |
+ 'y' |
+ 'user-headset' |
+ 'arrows-retweet' |
+ 'retweet-alt' |
+ 'person-snowboarding' |
+ 'snowboarding' |
+ 'square-chevron-right' |
+ 'chevron-square-right' |
+ 'lacrosse-stick-ball' |
+ 'truck-fast' |
+ 'shipping-fast' |
+ 'user-magnifying-glass' |
+ 'star-sharp' |
+ 'comment-heart' |
+ 'circle-1' |
+ 'circle-star' |
+ 'star-circle' |
+ 'fish' |
+ 'cloud-fog' |
+ 'fog' |
+ 'waffle' |
+ 'music-note' |
+ 'music-alt' |
+ 'hexagon-exclamation' |
+ 'cart-shopping-fast' |
+ 'object-union' |
+ 'user-graduate' |
+ 'starfighter' |
+ 'circle-half-stroke' |
+ 'adjust' |
+ 'arrow-right-long-to-line' |
+ 'square-arrow-down' |
+ 'arrow-square-down' |
+ 'diamond-half-stroke' |
+ 'clapperboard' |
+ 'square-chevron-left' |
+ 'chevron-square-left' |
+ 'phone-intercom' |
+ 'link-horizontal' |
+ 'chain-horizontal' |
+ 'mango' |
+ 'music-note-slash' |
+ 'music-alt-slash' |
+ 'circle-radiation' |
+ 'radiation-alt' |
+ 'face-tongue-sweat' |
+ 'globe-stand' |
+ 'baseball' |
+ 'baseball-ball' |
+ 'circle-p' |
+ 'award-simple' |
+ 'jet-fighter-up' |
+ 'diagram-project' |
+ 'project-diagram' |
+ 'pedestal' |
+ 'chart-pyramid' |
+ 'sidebar' |
+ 'snowman-head' |
+ 'frosty-head' |
+ 'copy' |
+ 'burger-glass' |
+ 'volume-xmark' |
+ 'volume-mute' |
+ 'volume-times' |
+ 'hand-sparkles' |
+ 'bars-filter' |
+ 'paintbrush-pencil' |
+ 'party-bell' |
+ 'user-vneck-hair' |
+ 'jack-o-lantern' |
+ 'grip' |
+ 'grip-horizontal' |
+ 'share-from-square' |
+ 'share-square' |
+ 'keynote' |
+ 'child-combatant' |
+ 'child-rifle' |
+ 'gun' |
+ 'square-phone' |
+ 'phone-square' |
+ 'hat-beach' |
+ 'plus' |
+ 'add' |
+ 'expand' |
+ 'computer' |
+ 'fort' |
+ 'cloud-check' |
+ 'xmark' |
+ 'close' |
+ 'multiply' |
+ 'remove' |
+ 'times' |
+ 'face-smirking' |
+ 'arrows-up-down-left-right' |
+ 'arrows' |
+ 'chalkboard-user' |
+ 'chalkboard-teacher' |
+ 'rhombus' |
+ 'claw-marks' |
+ 'peso-sign' |
+ 'face-smile-tongue' |
+ 'cart-circle-xmark' |
+ 'building-shield' |
+ 'circle-phone-flip' |
+ 'phone-circle-alt' |
+ 'baby' |
+ 'users-line' |
+ 'quote-left' |
+ 'quote-left-alt' |
+ 'tractor' |
+ 'key-skeleton' |
+ 'trash-arrow-up' |
+ 'trash-restore' |
+ 'arrow-down-up-lock' |
+ 'arrow-down-to-bracket' |
+ 'lines-leaning' |
+ 'square-q' |
+ 'ruler-combined' |
+ 'symbols' |
+ 'icons-alt' |
+ 'copyright' |
+ 'flask-gear' |
+ 'highlighter-line' |
+ 'bracket-square' |
+ 'bracket' |
+ 'bracket-left' |
+ 'island-tropical' |
+ 'island-tree-palm' |
+ 'arrow-right-from-line' |
+ 'arrow-from-left' |
+ 'h2' |
+ 'equals' |
+ 'cake-slice' |
+ 'shortcake' |
+ 'peanut' |
+ 'wrench-simple' |
+ 'blender' |
+ 'teeth' |
+ 'tally-2' |
+ 'shekel-sign' |
+ 'ils' |
+ 'shekel' |
+ 'sheqel' |
+ 'sheqel-sign' |
+ 'cars' |
+ 'axe-battle' |
+ 'user-hair-long' |
+ 'map' |
+ 'file-circle-info' |
+ 'face-disappointed' |
+ 'lasso-sparkles' |
+ 'clock-eleven' |
+ 'rocket' |
+ 'siren-on' |
+ 'clock-ten' |
+ 'candle-holder' |
+ 'video-arrow-down-left' |
+ 'photo-film' |
+ 'photo-video' |
+ 'floppy-disk-circle-arrow-right' |
+ 'save-circle-arrow-right' |
+ 'folder-minus' |
+ 'planet-moon' |
+ 'face-eyes-xmarks' |
+ 'chart-scatter' |
+ 'display-arrow-down' |
+ 'store' |
+ 'arrow-trend-up' |
+ 'plug-circle-minus' |
+ 'olive-branch' |
+ 'angle' |
+ 'vacuum-robot' |
+ 'sign-hanging' |
+ 'sign' |
+ 'square-divide' |
+ 'signal-stream-slash' |
+ 'bezier-curve' |
+ 'eye-dropper-half' |
+ 'store-lock' |
+ 'bell-slash' |
+ 'cloud-bolt-sun' |
+ 'thunderstorm-sun' |
+ 'camera-slash' |
+ 'comment-quote' |
+ 'tablet' |
+ 'tablet-android' |
+ 'school-flag' |
+ 'message-code' |
+ 'glass-half' |
+ 'glass-half-empty' |
+ 'glass-half-full' |
+ 'fill' |
+ 'message-minus' |
+ 'comment-alt-minus' |
+ 'angle-up' |
+ 'dinosaur' |
+ 'drumstick-bite' |
+ 'link-horizontal-slash' |
+ 'chain-horizontal-slash' |
+ 'holly-berry' |
+ 'nose' |
+ 'chevron-left' |
+ 'bacteria' |
+ 'clouds' |
+ 'money-bill-simple' |
+ 'hand-lizard' |
+ 'table-pivot' |
+ 'filter-slash' |
+ 'trash-can-undo' |
+ 'trash-can-arrow-turn-left' |
+ 'trash-undo-alt' |
+ 'notdef' |
+ 'disease' |
+ 'person-to-door' |
+ 'turntable' |
+ 'briefcase-medical' |
+ 'genderless' |
+ 'chevron-right' |
+ 'signal-weak' |
+ 'signal1' |
+ 'clock-five' |
+ 'retweet' |
+ 'car-rear' |
+ 'car-alt' |
+ 'pump-soap' |
+ 'computer-classic' |
+ 'frame' |
+ 'video-slash' |
+ 'battery-quarter' |
+ 'battery2' |
+ 'ellipsis-stroke' |
+ 'ellipsis-h-alt' |
+ 'radio' |
+ 'baby-carriage' |
+ 'carriage-baby' |
+ 'face-expressionless' |
+ 'down-to-dotted-line' |
+ 'cloud-music' |
+ 'traffic-light' |
+ 'cloud-minus' |
+ 'thermometer' |
+ 'shield-minus' |
+ 'vr-cardboard' |
+ 'car-tilt' |
+ 'gauge-circle-minus' |
+ 'brightness-low' |
+ 'hand-middle-finger' |
+ 'percent' |
+ 'percentage' |
+ 'truck-moving' |
+ 'glass-water-droplet' |
+ 'conveyor-belt' |
+ 'location-check' |
+ 'map-marker-check' |
+ 'coin-vertical' |
+ 'display' |
+ 'person-sign' |
+ 'face-smile' |
+ 'smile' |
+ 'phone-hangup' |
+ 'signature-slash' |
+ 'thumbtack' |
+ 'thumb-tack' |
+ 'wheat-slash' |
+ 'trophy' |
+ 'clouds-sun' |
+ 'person-praying' |
+ 'pray' |
+ 'hammer' |
+ 'face-vomit' |
+ 'speakers' |
+ 'tty-answer' |
+ 'teletype-answer' |
+ 'mug-tea-saucer' |
+ 'diagram-lean-canvas' |
+ 'alt' |
+ 'dial' |
+ 'dial-med-high' |
+ 'hand-peace' |
+ 'circle-trash' |
+ 'trash-circle' |
+ 'rotate' |
+ 'sync-alt' |
+ 'circle-quarters' |
+ 'spinner' |
+ 'tower-control' |
+ 'arrow-up-triangle-square' |
+ 'sort-shapes-up' |
+ 'whale' |
+ 'robot' |
+ 'peace' |
+ 'party-horn' |
+ 'gears' |
+ 'cogs' |
+ 'sun-bright' |
+ 'sun-alt' |
+ 'warehouse' |
+ 'conveyor-belt-arm' |
+ 'lock-keyhole-open' |
+ 'lock-open-alt' |
+ 'square-fragile' |
+ 'box-fragile' |
+ 'square-wine-glass-crack' |
+ 'arrow-up-right-dots' |
+ 'square-n' |
+ 'splotch' |
+ 'face-grin-hearts' |
+ 'grin-hearts' |
+ 'meter' |
+ 'mandolin' |
+ 'dice-four' |
+ 'sim-card' |
+ 'transgender' |
+ 'transgender-alt' |
+ 'mercury' |
+ 'up-from-bracket' |
+ 'knife-kitchen' |
+ 'border-right' |
+ 'arrow-turn-down' |
+ 'level-down' |
+ 'spade' |
+ 'card-spade' |
+ 'line-columns' |
+ 'arrow-right-to-line' |
+ 'arrow-to-right' |
+ 'person-falling-burst' |
+ 'flag-pennant' |
+ 'pennant' |
+ 'conveyor-belt-empty' |
+ 'user-group-simple' |
+ 'award' |
+ 'ticket-simple' |
+ 'ticket-alt' |
+ 'building' |
+ 'angles-left' |
+ 'angle-double-left' |
+ 'camcorder' |
+ 'video-handheld' |
+ 'pancakes' |
+ 'album-circle-user' |
+ 'qrcode' |
+ 'dice-d10' |
+ 'fireplace' |
+ 'browser' |
+ 'pen-paintbrush' |
+ 'pencil-paintbrush' |
+ 'fish-cooked' |
+ 'chair-office' |
+ 'nesting-dolls' |
+ 'clock-rotate-left' |
+ 'history' |
+ 'trumpet' |
+ 'face-grin-beam-sweat' |
+ 'grin-beam-sweat' |
+ 'fire-smoke' |
+ 'phone-missed' |
+ 'file-export' |
+ 'arrow-right-from-file' |
+ 'shield' |
+ 'shield-blank' |
+ 'arrow-up-short-wide' |
+ 'sort-amount-up-alt' |
+ 'arrows-repeat-1' |
+ 'repeat1-alt' |
+ 'gun-slash' |
+ 'avocado' |
+ 'binary' |
+ 'glasses-round' |
+ 'glasses-alt' |
+ 'phone-plus' |
+ 'ditto' |
+ 'person-seat' |
+ 'house-medical' |
+ 'golf-ball-tee' |
+ 'golf-ball' |
+ 'circle-chevron-left' |
+ 'chevron-circle-left' |
+ 'house-chimney-window' |
+ 'scythe' |
+ 'pen-nib' |
+ 'ban-parking' |
+ 'parking-circle-slash' |
+ 'tent-arrow-turn-left' |
+ 'face-diagonal-mouth' |
+ 'diagram-cells' |
+ 'cricket-bat-ball' |
+ 'cricket' |
+ 'tents' |
+ 'wand-magic' |
+ 'magic' |
+ 'dog' |
+ 'pen-line' |
+ 'atom-simple' |
+ 'atom-alt' |
+ 'ampersand' |
+ 'carrot' |
+ 'arrow-up-from-line' |
+ 'arrow-from-bottom' |
+ 'moon' |
+ 'pen-slash' |
+ 'wine-glass-empty' |
+ 'wine-glass-alt' |
+ 'square-star' |
+ 'cheese' |
+ 'send-backward' |
+ 'yin-yang' |
+ 'music' |
+ 'compass-slash' |
+ 'clock-one' |
+ 'file-music' |
+ 'code-commit' |
+ 'temperature-low' |
+ 'person-biking' |
+ 'biking' |
+ 'display-chart-up-circle-currency' |
+ 'skeleton' |
+ 'circle-g' |
+ 'circle-arrow-up-left' |
+ 'coin-blank' |
+ 'broom' |
+ 'vacuum' |
+ 'shield-heart' |
+ 'card-heart' |
+ 'lightbulb-cfl-on' |
+ 'melon' |
+ 'gopuram' |
+ 'earth-oceania' |
+ 'globe-oceania' |
+ 'container-storage' |
+ 'face-pouting' |
+ 'square-xmark' |
+ 'times-square' |
+ 'xmark-square' |
+ 'face-explode' |
+ 'exploding-head' |
+ 'hashtag' |
+ 'up-right-and-down-left-from-center' |
+ 'expand-alt' |
+ 'oil-can' |
+ 't' |
+ 'transformer-bolt' |
+ 'hippo' |
+ 'chart-column' |
+ 'cassette-vhs' |
+ 'vhs' |
+ 'infinity' |
+ 'vial-circle-check' |
+ 'chimney' |
+ 'object-intersect' |
+ 'person-arrow-down-to-line' |
+ 'voicemail' |
+ 'block-brick' |
+ 'wall-brick' |
+ 'fan' |
+ 'bags-shopping' |
+ 'paragraph-left' |
+ 'paragraph-rtl' |
+ 'person-walking-luggage' |
+ 'caravan-simple' |
+ 'caravan-alt' |
+ 'turtle' |
+ 'pencil-mechanical' |
+ 'up-down' |
+ 'arrows-alt-v' |
+ 'cloud-moon-rain' |
+ 'booth-curtain' |
+ 'calendar' |
+ 'box-heart' |
+ 'trailer' |
+ 'user-doctor-message' |
+ 'user-md-chat' |
+ 'bahai' |
+ 'haykal' |
+ 'amp-guitar' |
+ 'sd-card' |
+ 'volume-slash' |
+ 'border-bottom' |
+ 'wifi-weak' |
+ 'wifi1' |
+ 'dragon' |
+ 'shoe-prints' |
+ 'circle-plus' |
+ 'plus-circle' |
+ 'face-grin-tongue-wink' |
+ 'grin-tongue-wink' |
+ 'hand-holding' |
+ 'plug-circle-exclamation' |
+ 'link-slash' |
+ 'chain-broken' |
+ 'chain-slash' |
+ 'unlink' |
+ 'clone' |
+ 'person-walking-arrow-loop-left' |
+ 'arrow-up-z-a' |
+ 'sort-alpha-up-alt' |
+ 'fire-flame-curved' |
+ 'fire-alt' |
+ 'tornado' |
+ 'file-circle-plus' |
+ 'delete-right' |
+ 'book-quran' |
+ 'quran' |
+ 'circle-quarter' |
+ 'anchor' |
+ 'border-all' |
+ 'function' |
+ 'face-angry' |
+ 'angry' |
+ 'people-simple' |
+ 'cookie-bite' |
+ 'arrow-trend-down' |
+ 'rss' |
+ 'feed' |
+ 'face-monocle' |
+ 'draw-polygon' |
+ 'scale-balanced' |
+ 'balance-scale' |
+ 'calendar-lines' |
+ 'calendar-note' |
+ 'arrow-down-big-small' |
+ 'sort-size-down' |
+ 'gauge-simple-high' |
+ 'tachometer' |
+ 'tachometer-fast' |
+ 'do-not-enter' |
+ 'shower' |
+ 'dice-d8' |
+ 'desktop' |
+ 'desktop-alt' |
+ 'm' |
+ 'grip-dots-vertical' |
+ 'face-viewfinder' |
+ 'soft-serve' |
+ 'creemee' |
+ 'h5' |
+ 'hand-back-point-down' |
+ 'table-list' |
+ 'th-list' |
+ 'comment-sms' |
+ 'sms' |
+ 'rectangle' |
+ 'rectangle-landscape' |
+ 'clipboard-list-check' |
+ 'turkey' |
+ 'book' |
+ 'user-plus' |
+ 'ice-skate' |
+ 'check' |
+ 'battery-three-quarters' |
+ 'battery4' |
+ 'tomato' |
+ 'sword-laser' |
+ 'house-circle-check' |
+ 'buildings' |
+ 'angle-left' |
+ 'cart-flatbed-boxes' |
+ 'dolly-flatbed-alt' |
+ 'diagram-successor' |
+ 'truck-arrow-right' |
+ 'square-w' |
+ 'arrows-split-up-and-left' |
+ 'lamp' |
+ 'airplay' |
+ 'hand-fist' |
+ 'fist-raised' |
+ 'shield-quartered' |
+ 'slash-forward' |
+ 'location-pen' |
+ 'map-marker-edit' |
+ 'cloud-moon' |
+ 'pot-food' |
+ 'briefcase' |
+ 'person-falling' |
+ 'image-portrait' |
+ 'portrait' |
+ 'user-tag' |
+ 'rug' |
+ 'print-slash' |
+ 'earth-europe' |
+ 'globe-europe' |
+ 'cart-flatbed-suitcase' |
+ 'luggage-cart' |
+ 'hand-back-point-ribbon' |
+ 'rectangle-xmark' |
+ 'rectangle-times' |
+ 'times-rectangle' |
+ 'window-close' |
+ 'tire-rugged' |
+ 'lightbulb-dollar' |
+ 'cowbell' |
+ 'baht-sign' |
+ 'corner' |
+ 'chevrons-right' |
+ 'chevron-double-right' |
+ 'book-open' |
+ 'book-journal-whills' |
+ 'journal-whills' |
+ 'inhaler' |
+ 'handcuffs' |
+ 'snake' |
+ 'triangle-exclamation' |
+ 'exclamation-triangle' |
+ 'warning' |
+ 'note-medical' |
+ 'database' |
+ 'down-left' |
+ 'share' |
+ 'arrow-turn-right' |
+ 'mail-forward' |
+ 'face-thinking' |
+ 'turn-down-right' |
+ 'bottle-droplet' |
+ 'mask-face' |
+ 'hill-rockslide' |
+ 'scanner-keyboard' |
+ 'circle-o' |
+ 'grid-horizontal' |
+ 'message-dollar' |
+ 'comment-alt-dollar' |
+ 'right-left' |
+ 'exchange-alt' |
+ 'columns-3' |
+ 'paper-plane' |
+ 'road-circle-exclamation' |
+ 'dungeon' |
+ 'hand-holding-box' |
+ 'input-text' |
+ 'window-flip' |
+ 'window-alt' |
+ 'align-right' |
+ 'scanner-gun' |
+ 'scanner' |
+ 'tire' |
+ 'engine' |
+ 'money-bill-1-wave' |
+ 'money-bill-wave-alt' |
+ 'life-ring' |
+ 'hands' |
+ 'sign-language' |
+ 'signing' |
+ 'circle-caret-right' |
+ 'caret-circle-right' |
+ 'wheat' |
+ 'file-spreadsheet' |
+ 'audio-description-slash' |
+ 'calendar-day' |
+ 'water-ladder' |
+ 'ladder-water' |
+ 'swimming-pool' |
+ 'arrows-up-down' |
+ 'arrows-v' |
+ 'chess-pawn-piece' |
+ 'chess-pawn-alt' |
+ 'face-grimace' |
+ 'grimace' |
+ 'wheelchair-move' |
+ 'wheelchair-alt' |
+ 'turn-down' |
+ 'level-down-alt' |
+ 'square-s' |
+ 'rectangle-barcode' |
+ 'barcode-alt' |
+ 'person-walking-arrow-right' |
+ 'square-envelope' |
+ 'envelope-square' |
+ 'dice' |
+ 'unicorn' |
+ 'bowling-ball' |
+ 'pompebled' |
+ 'brain' |
+ 'watch-smart' |
+ 'book-user' |
+ 'sensor-cloud' |
+ 'sensor-smoke' |
+ 'clapperboard-play' |
+ 'bandage' |
+ 'band-aid' |
+ 'calendar-minus' |
+ 'circle-xmark' |
+ 'times-circle' |
+ 'xmark-circle' |
+ 'circle-4' |
+ 'gifts' |
+ 'album-collection' |
+ 'hotel' |
+ 'earth-asia' |
+ 'globe-asia' |
+ 'id-card-clip' |
+ 'id-card-alt' |
+ 'magnifying-glass-plus' |
+ 'search-plus' |
+ 'thumbs-up' |
+ 'cloud-showers' |
+ 'user-clock' |
+ 'onion' |
+ 'clock-twelve-thirty' |
+ 'arrow-down-to-dotted-line' |
+ 'hand-dots' |
+ 'allergies' |
+ 'file-invoice' |
+ 'window-minimize' |
+ 'rectangle-wide' |
+ 'comment-arrow-up' |
+ 'garlic' |
+ 'mug-saucer' |
+ 'coffee' |
+ 'brush' |
+ 'tree-decorated' |
+ 'mask' |
+ 'calendar-heart' |
+ 'magnifying-glass-minus' |
+ 'search-minus' |
+ 'flower' |
+ 'right-left-large' |
+ 'ruler-vertical' |
+ 'circles-overlap' |
+ 'user-large' |
+ 'user-alt' |
+ 'starship-freighter' |
+ 'train-tram' |
+ 'bridge-suspension' |
+ 'trash-check' |
+ 'user-nurse' |
+ 'boombox' |
+ 'syringe' |
+ 'cloud-sun' |
+ 'shield-exclamation' |
+ 'stopwatch-20' |
+ 'square-full' |
+ 'grip-dots' |
+ 'comment-exclamation' |
+ 'pen-swirl' |
+ 'falafel' |
+ 'circle-2' |
+ 'magnet' |
+ 'jar' |
+ 'gramophone' |
+ 'dice-d12' |
+ 'note-sticky' |
+ 'sticky-note' |
+ 'down' |
+ 'arrow-alt-down' |
+ 'hundred-points' |
+ '100' |
+ 'paperclip-vertical' |
+ 'wind-warning' |
+ 'wind-circle-exclamation' |
+ 'location-pin-slash' |
+ 'map-marker-slash' |
+ 'face-sad-sweat' |
+ 'bug-slash' |
+ 'cupcake' |
+ 'light-switch-off' |
+ 'toggle-large-off' |
+ 'pen-fancy-slash' |
+ 'truck-container' |
+ 'boot' |
+ 'arrow-up-from-water-pump' |
+ 'file-check' |
+ 'bone' |
+ 'cards-blank' |
+ 'circle-3' |
+ 'bench-tree' |
+ 'keyboard-brightness-low' |
+ 'ski-boot-ski' |
+ 'brain-circuit' |
+ 'user-injured' |
+ 'block-brick-fire' |
+ 'firewall' |
+ 'face-sad-tear' |
+ 'sad-tear' |
+ 'plane' |
+ 'tent-arrows-down' |
+ 'exclamation' |
+ 'arrows-spin' |
+ 'face-smile-relaxed' |
+ 'comment-xmark' |
+ 'comment-times' |
+ 'print' |
+ 'turkish-lira-sign' |
+ 'try' |
+ 'turkish-lira' |
+ 'face-nose-steam' |
+ 'circle-waveform-lines' |
+ 'waveform-circle' |
+ 'dollar-sign' |
+ 'dollar' |
+ 'usd' |
+ 'ferris-wheel' |
+ 'computer-speaker' |
+ 'skull-cow' |
+ 'x' |
+ 'magnifying-glass-dollar' |
+ 'search-dollar' |
+ 'users-gear' |
+ 'users-cog' |
+ 'person-military-pointing' |
+ 'building-columns' |
+ 'bank' |
+ 'institution' |
+ 'museum' |
+ 'university' |
+ 'circle-t' |
+ 'sack' |
+ 'grid-2' |
+ 'camera-cctv' |
+ 'cctv' |
+ 'umbrella' |
+ 'trowel' |
+ 'horizontal-rule' |
+ 'bed-front' |
+ 'bed-alt' |
+ 'd' |
+ 'stapler' |
+ 'masks-theater' |
+ 'theater-masks' |
+ 'kip-sign' |
+ 'face-woozy' |
+ 'cloud-question' |
+ 'pineapple' |
+ 'hand-point-left' |
+ 'gallery-thumbnails' |
+ 'circle-j' |
+ 'eyes' |
+ 'handshake-simple' |
+ 'handshake-alt' |
+ 'page-caret-up' |
+ 'file-caret-up' |
+ 'jet-fighter' |
+ 'fighter-jet' |
+ 'comet' |
+ 'square-share-nodes' |
+ 'share-alt-square' |
+ 'shield-keyhole' |
+ 'barcode' |
+ 'plus-minus' |
+ 'square-sliders-vertical' |
+ 'sliders-v-square' |
+ 'video' |
+ 'video-camera' |
+ 'message-middle' |
+ 'comment-middle-alt' |
+ 'graduation-cap' |
+ 'mortar-board' |
+ 'hand-holding-medical' |
+ 'person-circle-check' |
+ 'square-z' |
+ 'message-text' |
+ 'comment-alt-text' |
+ 'turn-up' |
+ 'level-up-alt' |
+ '0' |
+ '1' |
+ '2' |
+ '3' |
+ '4' |
+ '5' |
+ '6' |
+ '7' |
+ '8' |
+ '9' |
+ 'fill-drip' |
+ 'arrows-to-circle' |
+ 'circle-chevron-right' |
+ 'chevron-circle-right' |
+ 'wagon-covered' |
+ 'line-height' |
+ 'bagel' |
+ 'transporter-7' |
+ 'at' |
+ 'rectangles-mixed' |
+ 'phone-arrow-up-right' |
+ 'phone-arrow-up' |
+ 'phone-outgoing' |
+ 'trash-can' |
+ 'trash-alt' |
+ 'circle-l' |
+ 'head-side-goggles' |
+ 'head-vr' |
+ 'text-height' |
+ 'user-xmark' |
+ 'user-times' |
+ 'face-hand-yawn' |
+ 'gauge-simple-min' |
+ 'tachometer-slowest' |
+ 'stethoscope' |
+ 'coffin' |
+ 'message' |
+ 'comment-alt' |
+ 'salad' |
+ 'bowl-salad' |
+ 'info' |
+ 'robot-astromech' |
+ 'ring-diamond' |
+ 'fondue-pot' |
+ 'theta' |
+ 'face-hand-peeking' |
+ 'square-user' |
+ 'down-left-and-up-right-to-center' |
+ 'compress-alt' |
+ 'explosion' |
+ 'file-lines' |
+ 'file-alt' |
+ 'file-text' |
+ 'wave-square' |
+ 'ring' |
+ 'building-un' |
+ 'dice-three' |
+ 'tire-pressure-warning' |
+ 'wifi-fair' |
+ 'wifi2' |
+ 'calendar-days' |
+ 'calendar-alt' |
+ 'mp3-player' |
+ 'anchor-circle-check' |
+ 'tally-4' |
+ 'rectangle-history' |
+ 'building-circle-arrow-right' |
+ 'volleyball' |
+ 'volleyball-ball' |
+ 'sun-haze' |
+ 'text-size' |
+ 'ufo' |
+ 'fork' |
+ 'utensil-fork' |
+ 'arrows-up-to-line' |
+ 'mobile-signal' |
+ 'barcode-scan' |
+ 'sort-down' |
+ 'sort-desc' |
+ 'folder-arrow-down' |
+ 'folder-download' |
+ 'circle-minus' |
+ 'minus-circle' |
+ 'face-icicles' |
+ 'shovel' |
+ 'door-open' |
+ 'films' |
+ 'right-from-bracket' |
+ 'sign-out-alt' |
+ 'face-glasses' |
+ 'nfc' |
+ 'atom' |
+ 'soap' |
+ 'icons' |
+ 'heart-music-camera-bolt' |
+ 'microphone-lines-slash' |
+ 'microphone-alt-slash' |
+ 'closed-captioning-slash' |
+ 'calculator-simple' |
+ 'calculator-alt' |
+ 'bridge-circle-check' |
+ 'sliders-up' |
+ 'sliders-v' |
+ 'location-minus' |
+ 'map-marker-minus' |
+ 'pump-medical' |
+ 'fingerprint' |
+ 'ski-boot' |
+ 'standard-definition' |
+ 'rectangle-sd' |
+ 'h1' |
+ 'hand-point-right' |
+ 'magnifying-glass-location' |
+ 'search-location' |
+ 'message-bot' |
+ 'forward-step' |
+ 'step-forward' |
+ 'face-smile-beam' |
+ 'smile-beam' |
+ 'light-ceiling' |
+ 'message-exclamation' |
+ 'comment-alt-exclamation' |
+ 'bowl-scoop' |
+ 'bowl-shaved-ice' |
+ 'square-x' |
+ 'utility-pole-double' |
+ 'flag-checkered' |
+ 'chevrons-up' |
+ 'chevron-double-up' |
+ 'football' |
+ 'football-ball' |
+ 'user-vneck' |
+ 'school-circle-exclamation' |
+ 'crop' |
+ 'angles-down' |
+ 'angle-double-down' |
+ 'users-rectangle' |
+ 'people-roof' |
+ 'square-arrow-right' |
+ 'arrow-square-right' |
+ 'location-plus' |
+ 'map-marker-plus' |
+ 'lightbulb-exclamation-on' |
+ 'people-line' |
+ 'beer-mug-empty' |
+ 'beer' |
+ 'crate-empty' |
+ 'diagram-predecessor' |
+ 'transporter' |
+ 'calendar-circle-user' |
+ 'arrow-up-long' |
+ 'long-arrow-up' |
+ 'person-carry-box' |
+ 'person-carry' |
+ 'fire-flame-simple' |
+ 'burn' |
+ 'person' |
+ 'male' |
+ 'laptop' |
+ 'file-csv' |
+ 'menorah' |
+ 'union' |
+ 'chevrons-left' |
+ 'chevron-double-left' |
+ 'circle-heart' |
+ 'heart-circle' |
+ 'truck-plane' |
+ 'record-vinyl' |
+ 'bring-forward' |
+ 'square-p' |
+ 'face-grin-stars' |
+ 'grin-stars' |
+ 'sigma' |
+ 'camera-movie' |
+ 'bong' |
+ 'clarinet' |
+ 'truck-flatbed' |
+ 'spaghetti-monster-flying' |
+ 'pastafarianism' |
+ 'arrow-down-up-across-line' |
+ 'leaf-heart' |
+ 'house-building' |
+ 'cheese-swiss' |
+ 'spoon' |
+ 'utensil-spoon' |
+ 'jar-wheat' |
+ 'envelopes-bulk' |
+ 'mail-bulk' |
+ 'file-circle-exclamation' |
+ 'bow-arrow' |
+ 'cart-xmark' |
+ 'hexagon-xmark' |
+ 'times-hexagon' |
+ 'xmark-hexagon' |
+ 'circle-h' |
+ 'hospital-symbol' |
+ 'merge' |
+ 'pager' |
+ 'cart-minus' |
+ 'address-book' |
+ 'contact-book' |
+ 'pan-frying' |
+ 'grid' |
+ 'grid3' |
+ 'football-helmet' |
+ 'hand-love' |
+ 'trees' |
+ 'strikethrough' |
+ 'page' |
+ 'k' |
+ 'diagram-previous' |
+ 'gauge-min' |
+ 'tachometer-alt-slowest' |
+ 'folder-grid' |
+ 'eggplant' |
+ 'ram' |
+ 'landmark-flag' |
+ 'lips' |
+ 'pencil' |
+ 'pencil-alt' |
+ 'backward' |
+ 'caret-right' |
+ 'comments' |
+ 'paste' |
+ 'file-clipboard' |
+ 'desktop-arrow-down' |
+ 'code-pull-request' |
+ 'pumpkin' |
+ 'clipboard-list' |
+ 'pen-field' |
+ 'blueberries' |
+ 'truck-ramp-box' |
+ 'truck-loading' |
+ 'note' |
+ 'arrow-down-to-square' |
+ 'user-check' |
+ 'cloud-xmark' |
+ 'vial-virus' |
+ 'book-blank' |
+ 'book-alt' |
+ 'golf-flag-hole' |
+ 'message-arrow-down' |
+ 'comment-alt-arrow-down' |
+ 'face-unamused' |
+ 'sheet-plastic' |
+ 'circle-9' |
+ 'blog' |
+ 'user-ninja' |
+ 'pencil-slash' |
+ 'bowling-pins' |
+ 'person-arrow-up-from-line' |
+ 'down-right' |
+ 'scroll-torah' |
+ 'torah' |
+ 'webhook' |
+ 'blinds-open' |
+ 'fence' |
+ 'up' |
+ 'arrow-alt-up' |
+ 'broom-ball' |
+ 'quidditch' |
+ 'quidditch-broom-ball' |
+ 'drumstick' |
+ 'square-v' |
+ 'face-awesome' |
+ 'gave-dandy' |
+ 'dial-off' |
+ 'toggle-off' |
+ 'face-smile-horns' |
+ 'box-archive' |
+ 'archive' |
+ 'grapes' |
+ 'person-drowning' |
+ 'dial-max' |
+ 'circle-m' |
+ 'calendar-image' |
+ 'circle-caret-down' |
+ 'caret-circle-down' |
+ 'arrow-down-9-1' |
+ 'sort-numeric-desc' |
+ 'sort-numeric-down-alt' |
+ 'face-grin-tongue-squint' |
+ 'grin-tongue-squint' |
+ 'shish-kebab' |
+ 'spray-can' |
+ 'alarm-snooze' |
+ 'scarecrow' |
+ 'truck-monster' |
+ 'gift-card' |
+ 'w' |
+ 'code-pull-request-draft' |
+ 'square-b' |
+ 'elephant' |
+ 'earth-africa' |
+ 'globe-africa' |
+ 'rainbow' |
+ 'circle-notch' |
+ 'tablet-screen-button' |
+ 'tablet-alt' |
+ 'paw' |
+ 'message-question' |
+ 'cloud' |
+ 'trowel-bricks' |
+ 'square-3' |
+ 'face-flushed' |
+ 'flushed' |
+ 'hospital-user' |
+ 'microwave' |
+ 'chf-sign' |
+ 'tent-arrow-left-right' |
+ 'cart-circle-arrow-up' |
+ 'trash-clock' |
+ 'gavel' |
+ 'legal' |
+ 'sprinkler-ceiling' |
+ 'browsers' |
+ 'trillium' |
+ 'music-slash' |
+ 'truck-ramp' |
+ 'binoculars' |
+ 'microphone-slash' |
+ 'box-tissue' |
+ 'circle-c' |
+ 'star-christmas' |
+ 'chart-bullet' |
+ 'motorcycle' |
+ 'tree-christmas' |
+ 'tire-flat' |
+ 'sunglasses' |
+ 'badge' |
+ 'message-pen' |
+ 'comment-alt-edit' |
+ 'message-edit' |
+ 'bell-concierge' |
+ 'concierge-bell' |
+ 'pen-ruler' |
+ 'pencil-ruler' |
+ 'arrow-progress' |
+ 'chess-rook-piece' |
+ 'chess-rook-alt' |
+ 'square-root' |
+ 'album-collection-circle-plus' |
+ 'people-arrows' |
+ 'people-arrows-left-right' |
+ 'face-angry-horns' |
+ 'mars-and-venus-burst' |
+ 'tombstone' |
+ 'square-caret-right' |
+ 'caret-square-right' |
+ 'scissors' |
+ 'cut' |
+ 'list-music' |
+ 'sun-plant-wilt' |
+ 'toilets-portable' |
+ 'hockey-puck' |
+ 'mustache' |
+ 'hyphen' |
+ 'table' |
+ 'user-chef' |
+ 'message-image' |
+ 'comment-alt-image' |
+ 'users-medical' |
+ 'sensor-triangle-exclamation' |
+ 'sensor-alert' |
+ 'magnifying-glass-arrow-right' |
+ 'tachograph-digital' |
+ 'digital-tachograph' |
+ 'face-mask' |
+ 'pickleball' |
+ 'star-sharp-half' |
+ 'users-slash' |
+ 'clover' |
+ 'meat' |
+ 'reply' |
+ 'mail-reply' |
+ 'star-and-crescent' |
+ 'empty-set' |
+ 'house-fire' |
+ 'square-minus' |
+ 'minus-square' |
+ 'helicopter' |
+ 'bird' |
+ 'compass' |
+ 'square-caret-down' |
+ 'caret-square-down' |
+ 'heart-half-stroke' |
+ 'heart-half-alt' |
+ 'file-circle-question' |
+ 'laptop-code' |
+ 'joystick' |
+ 'grill-fire' |
+ 'rectangle-vertical-history' |
+ 'swatchbook' |
+ 'prescription-bottle' |
+ 'bars' |
+ 'navicon' |
+ 'keyboard-left' |
+ 'people-group' |
+ 'hourglass-end' |
+ 'hourglass3' |
+ 'heart-crack' |
+ 'heart-broken' |
+ 'face-beam-hand-over-mouth' |
+ 'droplet-percent' |
+ 'humidity' |
+ 'square-up-right' |
+ 'external-link-square-alt' |
+ 'face-kiss-beam' |
+ 'kiss-beam' |
+ 'corn' |
+ 'roller-coaster' |
+ 'photo-film-music' |
+ 'radar' |
+ 'sickle' |
+ 'film' |
+ 'coconut' |
+ 'ruler-horizontal' |
+ 'shield-cross' |
+ 'cassette-tape' |
+ 'square-terminal' |
+ 'people-robbery' |
+ 'lightbulb' |
+ 'caret-left' |
+ 'comment-middle' |
+ 'trash-can-list' |
+ 'block' |
+ 'circle-exclamation' |
+ 'exclamation-circle' |
+ 'school-circle-xmark' |
+ 'arrow-right-from-bracket' |
+ 'sign-out' |
+ 'face-frown-slight' |
+ 'circle-chevron-down' |
+ 'chevron-circle-down' |
+ 'sidebar-flip' |
+ 'unlock-keyhole' |
+ 'unlock-alt' |
+ 'temperature-list' |
+ 'cloud-showers-heavy' |
+ 'headphones-simple' |
+ 'headphones-alt' |
+ 'sitemap' |
+ 'pipe-section' |
+ 'space-station-moon-construction' |
+ 'space-station-moon-alt' |
+ 'circle-dollar-to-slot' |
+ 'donate' |
+ 'memory' |
+ 'face-sleeping' |
+ 'road-spikes' |
+ 'fire-burner' |
+ 'squirrel' |
+ 'arrow-up-to-line' |
+ 'arrow-to-top' |
+ 'flag' |
+ 'face-cowboy-hat' |
+ 'hanukiah' |
+ 'chart-scatter-3d' |
+ 'display-chart-up' |
+ 'square-code' |
+ 'feather' |
+ 'volume-low' |
+ 'volume-down' |
+ 'xmark-to-slot' |
+ 'times-to-slot' |
+ 'vote-nay' |
+ 'box-taped' |
+ 'box-alt' |
+ 'comment-slash' |
+ 'swords' |
+ 'cloud-sun-rain' |
+ 'album' |
+ 'circle-n' |
+ 'compress' |
+ 'wheat-awn' |
+ 'wheat-alt' |
+ 'ankh' |
+ 'hands-holding-child' |
+ 'asterisk' |
+ 'key-skeleton-left-right' |
+ 'comment-lines' |
+ 'luchador-mask' |
+ 'luchador' |
+ 'mask-luchador' |
+ 'square-check' |
+ 'check-square' |
+ 'shredder' |
+ 'book-open-cover' |
+ 'book-open-alt' |
+ 'sandwich' |
+ 'peseta-sign' |
+ 'square-parking-slash' |
+ 'parking-slash' |
+ 'train-tunnel' |
+ 'heading' |
+ 'header' |
+ 'ghost' |
+ 'face-anguished' |
+ 'hockey-sticks' |
+ 'abacus' |
+ 'film-simple' |
+ 'film-alt' |
+ 'list' |
+ 'list-squares' |
+ 'tree-palm' |
+ 'square-phone-flip' |
+ 'phone-square-alt' |
+ 'cart-plus' |
+ 'gamepad' |
+ 'border-center-v' |
+ 'circle-dot' |
+ 'dot-circle' |
+ 'clipboard-medical' |
+ 'face-dizzy' |
+ 'dizzy' |
+ 'egg' |
+ 'up-to-line' |
+ 'arrow-alt-to-top' |
+ 'house-medical-circle-xmark' |
+ 'watch-fitness' |
+ 'clock-nine-thirty' |
+ 'campground' |
+ 'folder-plus' |
+ 'jug' |
+ 'futbol' |
+ 'futbol-ball' |
+ 'soccer-ball' |
+ 'snow-blowing' |
+ 'paintbrush' |
+ 'paint-brush' |
+ 'lock' |
+ 'arrow-down-from-line' |
+ 'arrow-from-top' |
+ 'gas-pump' |
+ 'signal-bars-slash' |
+ 'signal-alt-slash' |
+ 'monkey' |
+ 'rectangle-pro' |
+ 'pro' |
+ 'house-night' |
+ 'hot-tub-person' |
+ 'hot-tub' |
+ 'blanket' |
+ 'map-location' |
+ 'map-marked' |
+ 'house-flood-water' |
+ 'comments-question-check' |
+ 'tree' |
+ 'arrows-cross' |
+ 'backpack' |
+ 'square-small' |
+ 'folder-arrow-up' |
+ 'folder-upload' |
+ 'bridge-lock' |
+ 'crosshairs-simple' |
+ 'sack-dollar' |
+ 'pen-to-square' |
+ 'edit' |
+ 'square-sliders' |
+ 'sliders-h-square' |
+ 'car-side' |
+ 'message-middle-top' |
+ 'comment-middle-top-alt' |
+ 'lightbulb-on' |
+ 'knife' |
+ 'utensil-knife' |
+ 'share-nodes' |
+ 'share-alt' |
+ 'display-chart-up-circle-dollar' |
+ 'wave-sine' |
+ 'heart-circle-minus' |
+ 'circle-w' |
+ 'circle-calendar' |
+ 'calendar-circle' |
+ 'hourglass-half' |
+ 'hourglass2' |
+ 'microscope' |
+ 'sunset' |
+ 'sink' |
+ 'calendar-exclamation' |
+ 'truck-container-empty' |
+ 'hand-heart' |
+ 'bag-shopping' |
+ 'shopping-bag' |
+ 'arrow-down-z-a' |
+ 'sort-alpha-desc' |
+ 'sort-alpha-down-alt' |
+ 'mitten' |
+ 'reply-clock' |
+ 'reply-time' |
+ 'person-rays' |
+ 'right' |
+ 'arrow-alt-right' |
+ 'circle-f' |
+ 'users' |
+ 'face-pleading' |
+ 'eye-slash' |
+ 'flask-vial' |
+ 'police-box' |
+ 'cucumber' |
+ 'head-side-brain' |
+ 'hand' |
+ 'hand-paper' |
+ 'person-biking-mountain' |
+ 'biking-mountain' |
+ 'utensils-slash' |
+ 'print-magnifying-glass' |
+ 'print-search' |
+ 'folder-bookmark' |
+ 'om' |
+ 'pi' |
+ 'flask-round-potion' |
+ 'flask-potion' |
+ 'face-shush' |
+ 'worm' |
+ 'house-circle-xmark' |
+ 'plug' |
+ 'calendar-circle-exclamation' |
+ 'square-i' |
+ 'chevron-up' |
+ 'face-saluting' |
+ 'gauge-simple-low' |
+ 'tachometer-slow' |
+ 'face-persevering' |
+ 'circle-camera' |
+ 'camera-circle' |
+ 'hand-spock' |
+ 'spider-web' |
+ 'circle-microphone' |
+ 'microphone-circle' |
+ 'book-arrow-up' |
+ 'popsicle' |
+ 'command' |
+ 'blinds' |
+ 'stopwatch' |
+ 'saxophone' |
+ 'square-2' |
+ 'field-hockey-stick-ball' |
+ 'field-hockey' |
+ 'arrow-up-square-triangle' |
+ 'sort-shapes-up-alt' |
+ 'face-scream' |
+ 'square-m' |
+ 'camera-web' |
+ 'webcam' |
+ 'comment-arrow-down' |
+ 'lightbulb-cfl' |
+ 'window-frame-open' |
+ 'face-kiss' |
+ 'kiss' |
+ 'bridge-circle-xmark' |
+ 'period' |
+ 'face-grin-tongue' |
+ 'grin-tongue' |
+ 'up-to-dotted-line' |
+ 'thought-bubble' |
+ 'skeleton-ribs' |
+ 'raygun' |
+ 'flute' |
+ 'acorn' |
+ 'video-arrow-up-right' |
+ 'grate-droplet' |
+ 'seal-exclamation' |
+ 'chess-bishop' |
+ 'message-sms' |
+ 'coffee-beans' |
+ 'hat-witch' |
+ 'face-grin-wink' |
+ 'grin-wink' |
+ 'clock-three-thirty' |
+ 'ear-deaf' |
+ 'deaf' |
+ 'deafness' |
+ 'hard-of-hearing' |
+ 'alarm-clock' |
+ 'eclipse' |
+ 'face-relieved' |
+ 'road-circle-check' |
+ 'dice-five' |
+ 'octagon-minus' |
+ 'minus-octagon' |
+ 'square-rss' |
+ 'rss-square' |
+ 'face-zany' |
+ 'tricycle' |
+ 'land-mine-on' |
+ 'square-arrow-up-left' |
+ 'i-cursor' |
+ 'chart-mixed-up-circle-dollar' |
+ 'salt-shaker' |
+ 'stamp' |
+ 'file-plus' |
+ 'draw-square' |
+ 'toilet-paper-under-slash' |
+ 'toilet-paper-reverse-slash' |
+ 'stairs' |
+ 'drone-front' |
+ 'drone-alt' |
+ 'glass-empty' |
+ 'dial-high' |
+ 'user-helmet-safety' |
+ 'user-construction' |
+ 'user-hard-hat' |
+ 'i' |
+ 'hryvnia-sign' |
+ 'hryvnia' |
+ 'arrow-down-left-and-arrow-up-right-to-center' |
+ 'pills' |
+ 'face-grin-wide' |
+ 'grin-alt' |
+ 'tooth' |
+ 'basketball-hoop' |
+ 'objects-align-bottom' |
+ 'v' |
+ 'sparkles' |
+ 'squid' |
+ 'leafy-green' |
+ 'circle-arrow-up-right' |
+ 'calendars' |
+ 'bangladeshi-taka-sign' |
+ 'bicycle' |
+ 'hammer-war' |
+ 'circle-d' |
+ 'spider-black-widow' |
+ 'staff-snake' |
+ 'rod-asclepius' |
+ 'rod-snake' |
+ 'staff-aesculapius' |
+ 'pear' |
+ 'head-side-cough-slash' |
+ 'triangle' |
+ 'apartment' |
+ 'truck-medical' |
+ 'ambulance' |
+ 'pepper' |
+ 'piano' |
+ 'gun-squirt' |
+ 'wheat-awn-circle-exclamation' |
+ 'snowman' |
+ 'user-alien' |
+ 'shield-check' |
+ 'mortar-pestle' |
+ 'road-barrier' |
+ 'chart-candlestick' |
+ 'briefcase-blank' |
+ 'school' |
+ 'igloo' |
+ 'bracket-round' |
+ 'parenthesis' |
+ 'joint' |
+ 'horse-saddle' |
+ 'mug-marshmallows' |
+ 'filters' |
+ 'bell-on' |
+ 'angle-right' |
+ 'dial-med' |
+ 'horse' |
+ 'q' |
+ 'monitor-waveform' |
+ 'monitor-heart-rate' |
+ 'link-simple' |
+ 'whistle' |
+ 'g' |
+ 'wine-glass-crack' |
+ 'fragile' |
+ 'slot-machine' |
+ 'notes-medical' |
+ 'car-wash' |
+ 'escalator' |
+ 'comment-image' |
+ 'temperature-half' |
+ 'temperature2' |
+ 'thermometer2' |
+ 'thermometer-half' |
+ 'dong-sign' |
+ 'donut' |
+ 'doughnut' |
+ 'capsules' |
+ 'poo-storm' |
+ 'poo-bolt' |
+ 'tally-1' |
+ 'face-frown-open' |
+ 'frown-open' |
+ 'square-dashed' |
+ 'square-j' |
+ 'hand-point-up' |
+ 'money-bill' |
+ 'arrow-up-big-small' |
+ 'sort-size-up' |
+ 'barcode-read' |
+ 'baguette' |
+ 'bowl-soft-serve' |
+ 'face-holding-back-tears' |
+ 'square-up' |
+ 'arrow-alt-square-up' |
+ 'train-subway-tunnel' |
+ 'subway-tunnel' |
+ 'square-exclamation' |
+ 'exclamation-square' |
+ 'semicolon' |
+ 'bookmark' |
+ 'fan-table' |
+ 'align-justify' |
+ 'battery-low' |
+ 'battery1' |
+ 'credit-card-front' |
+ 'brain-arrow-curved-right' |
+ 'mind-share' |
+ 'umbrella-beach' |
+ 'helmet-un' |
+ 'location-smile' |
+ 'map-marker-smile' |
+ 'arrow-left-to-line' |
+ 'arrow-to-left' |
+ 'bullseye' |
+ 'sushi' |
+ 'nigiri' |
+ 'message-captions' |
+ 'comment-alt-captions' |
+ 'trash-list' |
+ 'bacon' |
+ 'option' |
+ 'hand-point-down' |
+ 'arrow-up-from-bracket' |
+ 'trash-plus' |
+ 'objects-align-top' |
+ 'folder' |
+ 'folder-blank' |
+ 'face-anxious-sweat' |
+ 'credit-card-blank' |
+ 'file-waveform' |
+ 'file-medical-alt' |
+ 'microchip-ai' |
+ 'mug' |
+ 'plane-up-slash' |
+ 'radiation' |
+ 'pen-circle' |
+ 'bag-seedling' |
+ 'chart-simple' |
+ 'crutches' |
+ 'circle-parking' |
+ 'parking-circle' |
+ 'mars-stroke' |
+ 'leaf-oak' |
+ 'square-bolt' |
+ 'vial' |
+ 'gauge' |
+ 'dashboard' |
+ 'gauge-med' |
+ 'tachometer-alt-average' |
+ 'wand-magic-sparkles' |
+ 'magic-wand-sparkles' |
+ 'lambda' |
+ 'e' |
+ 'pizza' |
+ 'bowl-chopsticks-noodles' |
+ 'h3' |
+ 'pen-clip' |
+ 'pen-alt' |
+ 'bridge-circle-exclamation' |
+ 'badge-percent' |
+ 'user' |
+ 'sensor' |
+ 'comma' |
+ 'school-circle-check' |
+ 'toilet-paper-under' |
+ 'toilet-paper-reverse' |
+ 'light-emergency' |
+ 'arrow-down-to-arc' |
+ 'dumpster' |
+ 'van-shuttle' |
+ 'shuttle-van' |
+ 'building-user' |
+ 'light-switch' |
+ 'square-caret-left' |
+ 'caret-square-left' |
+ 'highlighter' |
+ 'wave-pulse' |
+ 'heart-rate' |
+ 'key' |
+ 'hat-santa' |
+ 'tamale' |
+ 'box-check' |
+ 'bullhorn' |
+ 'steak' |
+ 'location-crosshairs-slash' |
+ 'location-slash' |
+ 'person-dolly' |
+ 'globe' |
+ 'synagogue' |
+ 'file-chart-column' |
+ 'file-chart-line' |
+ 'person-half-dress' |
+ 'folder-image' |
+ 'calendar-pen' |
+ 'calendar-edit' |
+ 'road-bridge' |
+ 'face-smile-tear' |
+ 'message-plus' |
+ 'comment-alt-plus' |
+ 'location-arrow' |
+ 'c' |
+ 'tablet-button' |
+ 'rectangle-history-circle-user' |
+ 'building-lock' |
+ 'chart-line-up' |
+ 'mailbox' |
+ 'truck-bolt' |
+ 'pizza-slice' |
+ 'money-bill-wave' |
+ 'chart-area' |
+ 'area-chart' |
+ 'house-flag' |
+ 'circle-three-quarters-stroke' |
+ 'person-circle-minus' |
+ 'scalpel' |
+ 'ban' |
+ 'cancel' |
+ 'bell-exclamation' |
+ 'circle-bookmark' |
+ 'bookmark-circle' |
+ 'egg-fried' |
+ 'face-weary' |
+ 'uniform-martial-arts' |
+ 'camera-rotate' |
+ 'sun-dust' |
+ 'comment-text' |
+ 'spray-can-sparkles' |
+ 'air-freshener' |
+ 'signal-bars' |
+ 'signal-alt' |
+ 'signal-alt4' |
+ 'signal-bars-strong' |
+ 'diamond-exclamation' |
+ 'star' |
+ 'dial-min' |
+ 'repeat' |
+ 'cross' |
+ 'page-caret-down' |
+ 'file-caret-down' |
+ 'box' |
+ 'venus-mars' |
+ 'clock-seven-thirty' |
+ 'arrow-pointer' |
+ 'mouse-pointer' |
+ 'clock-four-thirty' |
+ 'signal-bars-good' |
+ 'signal-alt3' |
+ 'cactus' |
+ 'lightbulb-gear' |
+ 'maximize' |
+ 'expand-arrows-alt' |
+ 'charging-station' |
+ 'shapes' |
+ 'triangle-circle-square' |
+ 'plane-tail' |
+ 'gauge-simple-max' |
+ 'tachometer-fastest' |
+ 'circle-u' |
+ 'shield-slash' |
+ 'square-phone-hangup' |
+ 'phone-square-down' |
+ 'arrow-up-left' |
+ 'transporter-1' |
+ 'peanuts' |
+ 'shuffle' |
+ 'random' |
+ 'person-running' |
+ 'running' |
+ 'mobile-retro' |
+ 'grip-lines-vertical' |
+ 'bin-bottles-recycle' |
+ 'arrow-up-from-square' |
+ 'file-dashed-line' |
+ 'page-break' |
+ 'bracket-curly-right' |
+ 'spider' |
+ 'clock-three' |
+ 'hands-bound' |
+ 'scalpel-line-dashed' |
+ 'scalpel-path' |
+ 'file-invoice-dollar' |
+ 'pipe-smoking' |
+ 'face-astonished' |
+ 'window' |
+ 'plane-circle-exclamation' |
+ 'ear' |
+ 'file-lock' |
+ 'diagram-venn' |
+ 'x-ray' |
+ 'goal-net' |
+ 'coffin-cross' |
+ 'spell-check' |
+ 'location-xmark' |
+ 'map-marker-times' |
+ 'map-marker-xmark' |
+ 'circle-quarter-stroke' |
+ 'lasso' |
+ 'slash' |
+ 'person-to-portal' |
+ 'portal-enter' |
+ 'calendar-star' |
+ 'computer-mouse' |
+ 'mouse' |
+ 'arrow-right-to-bracket' |
+ 'sign-in' |
+ 'pegasus' |
+ 'files-medical' |
+ 'nfc-lock' |
+ 'person-ski-lift' |
+ 'ski-lift' |
+ 'square-6' |
+ 'shop-slash' |
+ 'store-alt-slash' |
+ 'wind-turbine' |
+ 'sliders-simple' |
+ 'grid-round' |
+ 'badge-sheriff' |
+ 'server' |
+ 'virus-covid-slash' |
+ 'intersection' |
+ 'shop-lock' |
+ 'family' |
+ 'hourglass-start' |
+ 'hourglass1' |
+ 'user-hair-buns' |
+ 'blender-phone' |
+ 'hourglass-clock' |
+ 'person-seat-reclined' |
+ 'paper-plane-top' |
+ 'paper-plane-alt' |
+ 'send' |
+ 'message-arrow-up' |
+ 'comment-alt-arrow-up' |
+ 'lightbulb-exclamation' |
+ 'layer-minus' |
+ 'layer-group-minus' |
+ 'chart-pie-simple-circle-currency' |
+ 'circle-e' |
+ 'building-wheat' |
+ 'gauge-max' |
+ 'tachometer-alt-fastest' |
+ 'person-breastfeeding' |
+ 'apostrophe' |
+ 'fire-hydrant' |
+ 'right-to-bracket' |
+ 'sign-in-alt' |
+ 'video-plus' |
+ 'square-right' |
+ 'arrow-alt-square-right' |
+ 'comment-smile' |
+ 'venus' |
+ 'passport' |
+ 'inbox-in' |
+ 'inbox-arrow-down' |
+ 'heart-pulse' |
+ 'heartbeat' |
+ 'circle-8' |
+ 'clouds-moon' |
+ 'clock-ten-thirty' |
+ 'people-carry-box' |
+ 'people-carry' |
+ 'folder-user' |
+ 'trash-can-xmark' |
+ 'temperature-high' |
+ 'microchip' |
+ 'left-long-to-line' |
+ 'crown' |
+ 'weight-hanging' |
+ 'xmarks-lines' |
+ 'file-prescription' |
+ 'calendar-range' |
+ 'flower-daffodil' |
+ 'hand-back-point-up' |
+ 'weight-scale' |
+ 'weight' |
+ 'star-exclamation' |
+ 'books' |
+ 'user-group' |
+ 'user-friends' |
+ 'arrow-up-a-z' |
+ 'sort-alpha-up' |
+ 'layer-plus' |
+ 'layer-group-plus' |
+ 'play-pause' |
+ 'block-question' |
+ 'snooze' |
+ 'zzz' |
+ 'scanner-image' |
+ 'tv-retro' |
+ 'square-t' |
+ 'farm' |
+ 'barn-silo' |
+ 'chess-knight' |
+ 'bars-sort' |
+ 'pallet-boxes' |
+ 'palette-boxes' |
+ 'pallet-alt' |
+ 'face-laugh-squint' |
+ 'laugh-squint' |
+ 'code-simple' |
+ 'bolt-slash' |
+ 'panel-fire' |
+ 'binary-circle-check' |
+ 'comment-minus' |
+ 'burrito' |
+ 'violin' |
+ 'objects-column' |
+ 'square-chevron-down' |
+ 'chevron-square-down' |
+ 'comment-plus' |
+ 'triangle-instrument' |
+ 'triangle-music' |
+ 'wheelchair' |
+ 'user-pilot-tie' |
+ 'piano-keyboard' |
+ 'bed-empty' |
+ 'circle-arrow-up' |
+ 'arrow-circle-up' |
+ 'toggle-on' |
+ 'rectangle-vertical' |
+ 'rectangle-portrait' |
+ 'person-walking' |
+ 'walking' |
+ 'l' |
+ 'signal-stream' |
+ 'down-to-bracket' |
+ 'circle-z' |
+ 'stars' |
+ 'fire' |
+ 'bed-pulse' |
+ 'procedures' |
+ 'house-day' |
+ 'shuttle-space' |
+ 'space-shuttle' |
+ 'shirt-long-sleeve' |
+ 'chart-pie-simple' |
+ 'chart-pie-alt' |
+ 'face-laugh' |
+ 'laugh' |
+ 'folder-open' |
+ 'album-collection-circle-user' |
+ 'candy' |
+ 'bowl-hot' |
+ 'soup' |
+ 'flatbread' |
+ 'heart-circle-plus' |
+ 'code-fork' |
+ 'city' |
+ 'signal-bars-weak' |
+ 'signal-alt1' |
+ 'microphone-lines' |
+ 'microphone-alt' |
+ 'clock-twelve' |
+ 'pepper-hot' |
+ 'citrus-slice' |
+ 'sheep' |
+ 'unlock' |
+ 'colon-sign' |
+ 'headset' |
+ 'badger-honey' |
+ 'h4' |
+ 'store-slash' |
+ 'road-circle-xmark' |
+ 'signal-slash' |
+ 'user-minus' |
+ 'mars-stroke-up' |
+ 'mars-stroke-v' |
+ 'champagne-glasses' |
+ 'glass-cheers' |
+ 'taco' |
+ 'hexagon-plus' |
+ 'plus-hexagon' |
+ 'clipboard' |
+ 'house-circle-exclamation' |
+ 'file-arrow-up' |
+ 'file-upload' |
+ 'wifi' |
+ 'wifi3' |
+ 'wifi-strong' |
+ 'messages' |
+ 'comments-alt' |
+ 'bath' |
+ 'bathtub' |
+ 'umbrella-simple' |
+ 'umbrella-alt' |
+ 'rectangle-history-circle-plus' |
+ 'underline' |
+ 'prescription-bottle-pill' |
+ 'user-pen' |
+ 'user-edit' |
+ 'binary-slash' |
+ 'square-o' |
+ 'signature' |
+ 'stroopwafel' |
+ 'bold' |
+ 'anchor-lock' |
+ 'building-ngo' |
+ 'transporter-3' |
+ 'engine-warning' |
+ 'engine-exclamation' |
+ 'circle-down-right' |
+ 'square-k' |
+ 'manat-sign' |
+ 'money-check-pen' |
+ 'money-check-edit' |
+ 'not-equal' |
+ 'border-top-left' |
+ 'border-style' |
+ 'map-location-dot' |
+ 'map-marked-alt' |
+ 'tilde' |
+ 'jedi' |
+ 'square-poll-vertical' |
+ 'poll' |
+ 'arrow-down-square-triangle' |
+ 'sort-shapes-down-alt' |
+ 'mug-hot' |
+ 'dog-leashed' |
+ 'car-battery' |
+ 'battery-car' |
+ 'face-downcast-sweat' |
+ 'mailbox-flag-up' |
+ 'memo-circle-info' |
+ 'gift' |
+ 'dice-two' |
+ 'volume' |
+ 'volume-medium' |
+ 'transporter-5' |
+ 'gauge-circle-bolt' |
+ 'coin-front' |
+ 'file-slash' |
+ 'message-arrow-up-right' |
+ 'treasure-chest' |
+ 'chess-queen' |
+ 'paintbrush-fine' |
+ 'paint-brush-alt' |
+ 'paint-brush-fine' |
+ 'paintbrush-alt' |
+ 'glasses' |
+ 'hood-cloak' |
+ 'square-quote' |
+ 'up-left' |
+ 'bring-front' |
+ 'chess-board' |
+ 'burger-cheese' |
+ 'cheeseburger' |
+ 'building-circle-check' |
+ 'repeat-1' |
+ 'arrow-down-to-line' |
+ 'arrow-to-bottom' |
+ 'grid-5' |
+ 'right-long-to-line' |
+ 'person-chalkboard' |
+ 'mars-stroke-right' |
+ 'mars-stroke-h' |
+ 'hand-back-fist' |
+ 'hand-rock' |
+ 'grid-round-5' |
+ 'tally' |
+ 'tally5' |
+ 'square-caret-up' |
+ 'caret-square-up' |
+ 'cloud-showers-water' |
+ 'chart-bar' |
+ 'bar-chart' |
+ 'hands-bubbles' |
+ 'hands-wash' |
+ 'less-than-equal' |
+ 'train' |
+ 'up-from-dotted-line' |
+ 'eye-low-vision' |
+ 'low-vision' |
+ 'traffic-light-go' |
+ 'face-exhaling' |
+ 'sensor-fire' |
+ 'user-unlock' |
+ 'hexagon-divide' |
+ '00' |
+ 'crow' |
+ 'cassette-betamax' |
+ 'betamax' |
+ 'sailboat' |
+ 'window-restore' |
+ 'nfc-magnifying-glass' |
+ 'file-binary' |
+ 'circle-v' |
+ 'square-plus' |
+ 'plus-square' |
+ 'bowl-scoops' |
+ 'mistletoe' |
+ 'custard' |
+ 'lacrosse-stick' |
+ 'hockey-mask' |
+ 'sunrise' |
+ 'panel-ews' |
+ 'torii-gate' |
+ 'cloud-exclamation' |
+ 'message-lines' |
+ 'comment-alt-lines' |
+ 'frog' |
+ 'bucket' |
+ 'floppy-disk-pen' |
+ 'image' |
+ 'window-frame' |
+ 'microphone' |
+ 'cow' |
+ 'file-zip' |
+ 'square-ring' |
+ 'down-from-line' |
+ 'arrow-alt-from-top' |
+ 'caret-up' |
+ 'shield-xmark' |
+ 'shield-times' |
+ 'screwdriver' |
+ 'circle-sort-down' |
+ 'sort-circle-down' |
+ 'folder-closed' |
+ 'house-tsunami' |
+ 'square-nfi' |
+ 'forklift' |
+ 'arrow-up-from-ground-water' |
+ 'bracket-square-right' |
+ 'martini-glass' |
+ 'glass-martini-alt' |
+ 'rotate-left' |
+ 'rotate-back' |
+ 'rotate-backward' |
+ 'undo-alt' |
+ 'table-columns' |
+ 'columns' |
+ 'square-a' |
+ 'tick' |
+ 'lemon' |
+ 'head-side-mask' |
+ 'handshake' |
+ 'gem' |
+ 'dolly' |
+ 'dolly-box' |
+ 'smoking' |
+ 'minimize' |
+ 'compress-arrows-alt' |
+ 'refrigerator' |
+ 'monument' |
+ 'octagon-xmark' |
+ 'times-octagon' |
+ 'xmark-octagon' |
+ 'align-slash' |
+ 'snowplow' |
+ 'angles-right' |
+ 'angle-double-right' |
+ 'truck-ramp-couch' |
+ 'truck-couch' |
+ 'cannabis' |
+ 'circle-play' |
+ 'play-circle' |
+ 'arrow-up-right-and-arrow-down-left-from-center' |
+ 'tablets' |
+ '360-degrees' |
+ 'ethernet' |
+ 'euro-sign' |
+ 'eur' |
+ 'euro' |
+ 'chair' |
+ 'circle-check' |
+ 'check-circle' |
+ 'square-dashed-circle-plus' |
+ 'money-simple-from-bracket' |
+ 'bat' |
+ 'circle-stop' |
+ 'stop-circle' |
+ 'head-side-headphones' |
+ 'phone-rotary' |
+ 'compass-drafting' |
+ 'drafting-compass' |
+ 'plate-wheat' |
+ 'calendar-circle-minus' |
+ 'chopsticks' |
+ 'car-wrench' |
+ 'car-mechanic' |
+ 'icicles' |
+ 'person-shelter' |
+ 'neuter' |
+ 'id-badge' |
+ 'kazoo' |
+ 'marker' |
+ 'bin-bottles' |
+ 'face-laugh-beam' |
+ 'laugh-beam' |
+ 'square-arrow-down-left' |
+ 'battery-bolt' |
+ 'tree-large' |
+ 'helicopter-symbol' |
+ 'aperture' |
+ 'universal-access' |
+ 'gear-complex' |
+ 'file-magnifying-glass' |
+ 'file-search' |
+ 'up-right' |
+ 'circle-chevron-up' |
+ 'chevron-circle-up' |
+ 'user-police' |
+ 'lari-sign' |
+ 'volcano' |
+ 'teddy-bear' |
+ 'stocking' |
+ 'person-walking-dashed-line-arrow-right' |
+ 'image-slash' |
+ 'mask-snorkel' |
+ 'smoke' |
+ 'sterling-sign' |
+ 'gbp' |
+ 'pound-sign' |
+ 'battery-exclamation' |
+ 'viruses' |
+ 'square-person-confined' |
+ 'user-tie' |
+ 'arrow-down-long' |
+ 'long-arrow-down' |
+ 'tent-arrow-down-to-line' |
+ 'certificate' |
+ 'crystal-ball' |
+ 'reply-all' |
+ 'mail-reply-all' |
+ 'suitcase' |
+ 'person-skating' |
+ 'skating' |
+ 'star-shooting' |
+ 'binary-lock' |
+ 'filter-circle-dollar' |
+ 'funnel-dollar' |
+ 'camera-retro' |
+ 'circle-arrow-down' |
+ 'arrow-circle-down' |
+ 'comment-pen' |
+ 'comment-edit' |
+ 'file-import' |
+ 'arrow-right-to-file' |
+ 'banjo' |
+ 'square-arrow-up-right' |
+ 'external-link-square' |
+ 'light-emergency-on' |
+ 'kerning' |
+ 'box-open' |
+ 'square-f' |
+ 'scroll' |
+ 'spa' |
+ 'arrow-left-from-line' |
+ 'arrow-from-right' |
+ 'strawberry' |
+ 'location-pin-lock' |
+ 'pause' |
+ 'clock-eight-thirty' |
+ 'plane-engines' |
+ 'plane-alt' |
+ 'hill-avalanche' |
+ 'temperature-empty' |
+ 'temperature0' |
+ 'thermometer0' |
+ 'thermometer-empty' |
+ 'bomb' |
+ 'gauge-low' |
+ 'tachometer-alt-slow' |
+ 'registered' |
+ 'trash-can-plus' |
+ 'address-card' |
+ 'contact-card' |
+ 'vcard' |
+ 'scale-unbalanced-flip' |
+ 'balance-scale-right' |
+ 'globe-snow' |
+ 'subscript' |
+ 'diamond-turn-right' |
+ 'directions' |
+ 'integral' |
+ 'burst' |
+ 'house-laptop' |
+ 'laptop-house' |
+ 'face-tired' |
+ 'tired' |
+ 'money-bills' |
+ 'blinds-raised' |
+ 'smog' |
+ 'ufo-beam' |
+ 'circle-caret-up' |
+ 'caret-circle-up' |
+ 'user-vneck-hair-long' |
+ 'square-a-lock' |
+ 'crutch' |
+ 'gas-pump-slash' |
+ 'font-awesome' |
+ 'font-awesome-flag' |
+ 'font-awesome-logo-full' |
+ 'cloud-arrow-up' |
+ 'cloud-upload' |
+ 'cloud-upload-alt' |
+ 'palette' |
+ 'transporter-4' |
+ 'chart-mixed-up-circle-currency' |
+ 'objects-align-right' |
+ 'arrows-turn-right' |
+ 'vest' |
+ 'pig' |
+ 'inbox-full' |
+ 'circle-envelope' |
+ 'envelope-circle' |
+ 'triangle-person-digging' |
+ 'construction' |
+ 'ferry' |
+ 'bullseye-arrow' |
+ 'arrows-down-to-people' |
+ 'seedling' |
+ 'sprout' |
+ 'clock-seven' |
+ 'left-right' |
+ 'arrows-alt-h' |
+ 'boxes-packing' |
+ 'circle-arrow-left' |
+ 'arrow-circle-left' |
+ 'flashlight' |
+ 'group-arrows-rotate' |
+ 'bowl-food' |
+ 'square-9' |
+ 'candy-cane' |
+ 'arrow-down-wide-short' |
+ 'sort-amount-asc' |
+ 'sort-amount-down' |
+ 'square-dollar' |
+ 'dollar-square' |
+ 'usd-square' |
+ 'phone-arrow-right' |
+ 'hand-holding-seedling' |
+ 'message-check' |
+ 'comment-alt-check' |
+ 'cloud-bolt' |
+ 'thunderstorm' |
+ 'chart-line-up-down' |
+ 'text-slash' |
+ 'remove-format' |
+ 'watch' |
+ 'circle-down-left' |
+ 'text' |
+ 'projector' |
+ 'face-smile-wink' |
+ 'smile-wink' |
+ 'tombstone-blank' |
+ 'tombstone-alt' |
+ 'chess-king-piece' |
+ 'chess-king-alt' |
+ 'circle-6' |
+ 'left' |
+ 'arrow-alt-left' |
+ 'file-word' |
+ 'file-powerpoint' |
+ 'square-down' |
+ 'arrow-alt-square-down' |
+ 'objects-align-center-vertical' |
+ 'arrows-left-right' |
+ 'arrows-h' |
+ 'house-lock' |
+ 'cloud-arrow-down' |
+ 'cloud-download' |
+ 'cloud-download-alt' |
+ 'wreath' |
+ 'children' |
+ 'meter-droplet' |
+ 'chalkboard' |
+ 'blackboard' |
+ 'user-large-slash' |
+ 'user-alt-slash' |
+ 'signal-strong' |
+ 'signal4' |
+ 'lollipop' |
+ 'lollypop' |
+ 'list-tree' |
+ 'envelope-open' |
+ 'draw-circle' |
+ 'cat-space' |
+ 'handshake-simple-slash' |
+ 'handshake-alt-slash' |
+ 'rabbit-running' |
+ 'rabbit-fast' |
+ 'memo-pad' |
+ 'mattress-pillow' |
+ 'alarm-plus' |
+ 'alicorn' |
+ 'comment-question' |
+ 'gingerbread-man' |
+ 'guarani-sign' |
+ 'burger-fries' |
+ 'mug-tea' |
+ 'border-top' |
+ 'arrows-rotate' |
+ 'refresh' |
+ 'sync' |
+ 'circle-book-open' |
+ 'book-circle' |
+ 'arrows-to-dotted-line' |
+ 'fire-extinguisher' |
+ 'garage-open' |
+ 'shelves-empty' |
+ 'cruzeiro-sign' |
+ 'watch-apple' |
+ 'watch-calculator' |
+ 'list-dropdown' |
+ 'cabinet-filing' |
+ 'burger-soda' |
+ 'square-arrow-up' |
+ 'arrow-square-up' |
+ 'greater-than-equal' |
+ 'pallet-box' |
+ 'face-confounded' |
+ 'shield-halved' |
+ 'shield-alt' |
+ 'truck-plow' |
+ 'book-atlas' |
+ 'atlas' |
+ 'virus' |
+ 'grid-round-2' |
+ 'comment-middle-top' |
+ 'envelope-circle-check' |
+ 'layer-group' |
+ 'restroom-simple' |
+ 'arrows-to-dot' |
+ 'border-outer' |
+ 'hashtag-lock' |
+ 'clock-two-thirty' |
+ 'archway' |
+ 'heart-circle-check' |
+ 'house-chimney-crack' |
+ 'house-damage' |
+ 'file-zipper' |
+ 'file-archive' |
+ 'heart-half' |
+ 'comment-check' |
+ 'square' |
+ 'memo' |
+ 'martini-glass-empty' |
+ 'glass-martini' |
+ 'couch' |
+ 'cedi-sign' |
+ 'italic' |
+ 'glass-citrus' |
+ 'calendar-lines-pen' |
+ 'church' |
+ 'person-snowmobiling' |
+ 'snowmobile' |
+ 'face-hushed' |
+ 'comments-dollar' |
+ 'pickaxe' |
+ 'link-simple-slash' |
+ 'democrat' |
+ 'face-confused' |
+ 'pinball' |
+ 'z' |
+ 'person-skiing' |
+ 'skiing' |
+ 'deer' |
+ 'input-pipe' |
+ 'road-lock' |
+ 'a' |
+ 'bookmark-slash' |
+ 'temperature-arrow-down' |
+ 'temperature-down' |
+ 'mace' |
+ 'feather-pointed' |
+ 'feather-alt' |
+ 'sausage' |
+ 'trash-can-clock' |
+ 'p' |
+ 'broom-wide' |
+ 'snowflake' |
+ 'stomach' |
+ 'newspaper' |
+ 'rectangle-ad' |
+ 'ad' |
+ 'guitar-electric' |
+ 'arrow-turn-down-right' |
+ 'moon-cloud' |
+ 'bread-slice-butter' |
+ 'circle-arrow-right' |
+ 'arrow-circle-right' |
+ 'user-group-crown' |
+ 'users-crown' |
+ 'circle-i' |
+ 'toilet-paper-check' |
+ 'filter-circle-xmark' |
+ 'locust' |
+ 'sort' |
+ 'unsorted' |
+ 'list-ol' |
+ 'list12' |
+ 'list-numeric' |
+ 'chart-waterfall' |
+ 'sparkle' |
+ 'face-party' |
+ 'kidneys' |
+ 'wifi-exclamation' |
+ 'chart-network' |
+ 'person-dress-burst' |
+ 'dice-d4' |
+ 'money-check-dollar' |
+ 'money-check-alt' |
+ 'vector-square' |
+ 'bread-slice' |
+ 'language' |
+ 'wheat-awn-slash' |
+ 'face-kiss-wink-heart' |
+ 'kiss-wink-heart' |
+ 'dagger' |
+ 'podium' |
+ 'memo-circle-check' |
+ 'route-highway' |
+ 'down-to-line' |
+ 'arrow-alt-to-bottom' |
+ 'filter' |
+ 'square-g' |
+ 'circle-phone' |
+ 'phone-circle' |
+ 'clipboard-prescription' |
+ 'user-nurse-hair' |
+ 'question' |
+ 'file-signature' |
+ 'toggle-large-on' |
+ 'up-down-left-right' |
+ 'arrows-alt' |
+ 'dryer-heat' |
+ 'dryer-alt' |
+ 'house-chimney-user' |
+ 'hand-holding-heart' |
+ 'arrow-up-small-big' |
+ 'sort-size-up-alt' |
+ 'train-track' |
+ 'puzzle-piece' |
+ 'money-check' |
+ 'star-half-stroke' |
+ 'star-half-alt' |
+ 'file-exclamation' |
+ 'code' |
+ 'whiskey-glass' |
+ 'glass-whiskey' |
+ 'moon-stars' |
+ 'building-circle-exclamation' |
+ 'clothes-hanger' |
+ 'mobile-notch' |
+ 'mobile-iphone' |
+ 'magnifying-glass-chart' |
+ 'arrow-up-right-from-square' |
+ 'external-link' |
+ 'cubes-stacked' |
+ 'images-user' |
+ 'won-sign' |
+ 'krw' |
+ 'won' |
+ 'image-polaroid-user' |
+ 'virus-covid' |
+ 'square-ellipsis' |
+ 'pie' |
+ 'chess-knight-piece' |
+ 'chess-knight-alt' |
+ 'austral-sign' |
+ 'cloud-plus' |
+ 'f' |
+ 'leaf' |
+ 'bed-bunk' |
+ 'road' |
+ 'taxi' |
+ 'cab' |
+ 'person-circle-plus' |
+ 'chart-pie' |
+ 'pie-chart' |
+ 'bolt-lightning' |
+ 'clock-eight' |
+ 'sack-xmark' |
+ 'file-excel' |
+ 'file-contract' |
+ 'fish-fins' |
+ 'circle-q' |
+ 'building-flag' |
+ 'face-grin-beam' |
+ 'grin-beam' |
+ 'object-ungroup' |
+ 'face-disguise' |
+ 'circle-arrow-down-right' |
+ 'alien-8bit' |
+ 'alien-monster' |
+ 'hand-point-ribbon' |
+ 'poop' |
+ 'object-exclude' |
+ 'telescope' |
+ 'location-pin' |
+ 'map-marker' |
+ 'square-list' |
+ 'kaaba' |
+ 'toilet-paper' |
+ 'helmet-safety' |
+ 'hard-hat' |
+ 'hat-hard' |
+ 'comment-code' |
+ 'sim-cards' |
+ 'starship' |
+ 'eject' |
+ 'circle-right' |
+ 'arrow-alt-circle-right' |
+ 'plane-circle-check' |
+ 'seal' |
+ 'user-cowboy' |
+ 'hexagon-vertical-nft' |
+ 'face-rolling-eyes' |
+ 'meh-rolling-eyes' |
+ 'bread-loaf' |
+ 'rings-wedding' |
+ 'object-group' |
+ 'french-fries' |
+ 'chart-line' |
+ 'line-chart' |
+ 'calendar-arrow-down' |
+ 'calendar-download' |
+ 'send-back' |
+ 'mask-ventilator' |
+ 'signature-lock' |
+ 'arrow-right' |
+ 'signs-post' |
+ 'map-signs' |
+ 'octagon-plus' |
+ 'plus-octagon' |
+ 'cash-register' |
+ 'person-circle-question' |
+ 'melon-slice' |
+ 'space-station-moon' |
+ 'message-smile' |
+ 'comment-alt-smile' |
+ 'cup-straw' |
+ 'left-from-line' |
+ 'arrow-alt-from-right' |
+ 'h' |
+ 'basket-shopping-simple' |
+ 'shopping-basket-alt' |
+ 'hands-holding-heart' |
+ 'hands-heart' |
+ 'clock-nine' |
+ 'tarp' |
+ 'face-sleepy' |
+ 'hand-horns' |
+ 'screwdriver-wrench' |
+ 'tools' |
+ 'arrows-to-eye' |
+ 'circle-three-quarters' |
+ 'trophy-star' |
+ 'trophy-alt' |
+ 'plug-circle-bolt' |
+ 'face-thermometer' |
+ 'grid-round-4' |
+ 'shirt-running' |
+ 'book-circle-arrow-up' |
+ 'face-nauseated' |
+ 'heart' |
+ 'file-chart-pie' |
+ 'mars-and-venus' |
+ 'house-user' |
+ 'home-user' |
+ 'circle-arrow-down-left' |
+ 'dumpster-fire' |
+ 'hexagon-minus' |
+ 'minus-hexagon' |
+ 'left-to-line' |
+ 'arrow-alt-to-left' |
+ 'house-crack' |
+ 'paw-simple' |
+ 'paw-alt' |
+ 'arrow-left-long-to-line' |
+ 'brackets-round' |
+ 'parentheses' |
+ 'martini-glass-citrus' |
+ 'cocktail' |
+ 'user-shakespeare' |
+ 'arrow-right-to-arc' |
+ 'face-surprise' |
+ 'surprise' |
+ 'bottle-water' |
+ 'circle-pause' |
+ 'pause-circle' |
+ 'gauge-circle-plus' |
+ 'folders' |
+ 'angel' |
+ 'value-absolute' |
+ 'rabbit' |
+ 'toilet-paper-slash' |
+ 'circle-euro' |
+ 'apple-whole' |
+ 'apple-alt' |
+ 'kitchen-set' |
+ 'diamond-half' |
+ 'lock-keyhole' |
+ 'lock-alt' |
+ 'r' |
+ 'temperature-quarter' |
+ 'temperature1' |
+ 'thermometer1' |
+ 'thermometer-quarter' |
+ 'square-info' |
+ 'info-square' |
+ 'wifi-slash' |
+ 'toilet-paper-xmark' |
+ 'hands-holding-dollar' |
+ 'hands-usd' |
+ 'cube' |
+ 'arrow-down-triangle-square' |
+ 'sort-shapes-down' |
+ 'bitcoin-sign' |
+ 'shutters' |
+ 'shield-dog' |
+ 'solar-panel' |
+ 'lock-open' |
+ 'table-tree' |
+ 'house-chimney-heart' |
+ 'tally-3' |
+ 'elevator' |
+ 'money-bill-transfer' |
+ 'money-bill-trend-up' |
+ 'house-flood-water-circle-arrow-right' |
+ 'square-poll-horizontal' |
+ 'poll-h' |
+ 'circle' |
+ 'cart-circle-exclamation' |
+ 'sword' |
+ 'backward-fast' |
+ 'fast-backward' |
+ 'recycle' |
+ 'user-astronaut' |
+ 'interrobang' |
+ 'plane-slash' |
+ 'circle-dashed' |
+ 'trademark' |
+ 'basketball' |
+ 'basketball-ball' |
+ 'fork-knife' |
+ 'utensils-alt' |
+ 'satellite-dish' |
+ 'badge-check' |
+ 'circle-up' |
+ 'arrow-alt-circle-up' |
+ 'slider' |
+ 'mobile-screen-button' |
+ 'mobile-alt' |
+ 'clock-one-thirty' |
+ 'inbox-out' |
+ 'inbox-arrow-up' |
+ 'cloud-slash' |
+ 'volume-high' |
+ 'volume-up' |
+ 'users-rays' |
+ 'wallet' |
+ 'octagon-check' |
+ 'flatbread-stuffed' |
+ 'clipboard-check' |
+ 'cart-circle-plus' |
+ 'truck-clock' |
+ 'shipping-timed' |
+ 'pool-8-ball' |
+ 'file-audio' |
+ 'turn-down-left' |
+ 'lock-hashtag' |
+ 'chart-radar' |
+ 'staff' |
+ 'burger' |
+ 'hamburger' |
+ 'utility-pole' |
+ 'transporter-6' |
+ 'wrench' |
+ 'bugs' |
+ 'vector-polygon' |
+ 'diagram-nested' |
+ 'rupee-sign' |
+ 'rupee' |
+ 'file-image' |
+ 'circle-question' |
+ 'question-circle' |
+ 'image-user' |
+ 'buoy' |
+ 'plane-departure' |
+ 'handshake-slash' |
+ 'book-bookmark' |
+ 'border-center-h' |
+ 'can-food' |
+ 'typewriter' |
+ 'arrow-right-from-arc' |
+ 'circle-k' |
+ 'face-hand-over-mouth' |
+ 'popcorn' |
+ 'house-water' |
+ 'house-flood' |
+ 'object-subtract' |
+ 'code-branch' |
+ 'warehouse-full' |
+ 'warehouse-alt' |
+ 'hat-cowboy' |
+ 'bridge' |
+ 'phone-flip' |
+ 'phone-alt' |
+ 'arrow-down-from-dotted-line' |
+ 'file-doc' |
+ 'square-quarters' |
+ 'truck-front' |
+ 'cat' |
+ 'trash-xmark' |
+ 'circle-caret-left' |
+ 'caret-circle-left' |
+ 'files' |
+ 'anchor-circle-exclamation' |
+ 'face-clouds' |
+ 'user-crown' |
+ 'truck-field' |
+ 'route' |
+ 'cart-circle-check' |
+ 'clipboard-question' |
+ 'panorama' |
+ 'comment-medical' |
+ 'teeth-open' |
+ 'user-tie-hair-long' |
+ 'file-circle-minus' |
+ 'head-side-medical' |
+ 'tags' |
+ 'wine-glass' |
+ 'forward-fast' |
+ 'fast-forward' |
+ 'face-meh-blank' |
+ 'meh-blank' |
+ 'user-robot' |
+ 'square-parking' |
+ 'parking' |
+ 'card-diamond' |
+ 'face-zipper' |
+ 'face-raised-eyebrow' |
+ 'house-signal' |
+ 'square-chevron-up' |
+ 'chevron-square-up' |
+ 'nfc-symbol' |
+ 'bars-progress' |
+ 'tasks-alt' |
+ 'faucet-drip' |
+ 'arrows-to-line' |
+ 'dolphin' |
+ 'arrow-up-right' |
+ 'circle-r' |
+ 'cart-flatbed' |
+ 'dolly-flatbed' |
+ 'ban-smoking' |
+ 'smoking-ban' |
+ 'circle-sort-up' |
+ 'sort-circle-up' |
+ 'terminal' |
+ 'mobile-button' |
+ 'house-medical-flag' |
+ 'basket-shopping' |
+ 'shopping-basket' |
+ 'tape' |
+ 'chestnut' |
+ 'bus-simple' |
+ 'bus-alt' |
+ 'eye' |
+ 'face-sad-cry' |
+ 'sad-cry' |
+ 'heat' |
+ 'ticket-airline' |
+ 'boot-heeled' |
+ 'arrows-minimize' |
+ 'compress-arrows' |
+ 'audio-description' |
+ 'person-military-to-person' |
+ 'file-shield' |
+ 'hexagon' |
+ 'manhole' |
+ 'user-slash' |
+ 'pen' |
+ 'tower-observation' |
+ 'floppy-disks' |
+ 'toilet-paper-blank-under' |
+ 'toilet-paper-reverse-alt' |
+ 'file-code' |
+ 'signal' |
+ 'signal5' |
+ 'signal-perfect' |
+ 'pump' |
+ 'bus' |
+ 'heart-circle-xmark' |
+ 'arrow-up-left-from-circle' |
+ 'house-chimney' |
+ 'home-lg' |
+ 'window-maximize' |
+ 'dryer' |
+ 'face-frown' |
+ 'frown' |
+ 'chess-bishop-piece' |
+ 'chess-bishop-alt' |
+ 'shirt-tank-top' |
+ 'diploma' |
+ 'scroll-ribbon' |
+ 'screencast' |
+ 'walker' |
+ 'prescription' |
+ 'shop' |
+ 'store-alt' |
+ 'floppy-disk' |
+ 'save' |
+ 'vihara' |
+ 'face-kiss-closed-eyes' |
+ 'scale-unbalanced' |
+ 'balance-scale-left' |
+ 'file-user' |
+ 'user-police-tie' |
+ 'face-tongue-money' |
+ 'tennis-ball' |
+ 'square-l' |
+ 'sort-up' |
+ 'sort-asc' |
+ 'calendar-arrow-up' |
+ 'calendar-upload' |
+ 'comment-dots' |
+ 'commenting' |
+ 'plant-wilt' |
+ 'scarf' |
+ 'album-circle-plus' |
+ 'user-nurse-hair-long' |
+ 'diamond' |
+ 'square-left' |
+ 'arrow-alt-square-left' |
+ 'face-grin-squint' |
+ 'grin-squint' |
+ 'circle-ellipsis-vertical' |
+ 'hand-holding-dollar' |
+ 'hand-holding-usd' |
+ 'grid-dividers' |
+ 'bacterium' |
+ 'hand-pointer' |
+ 'drum-steelpan' |
+ 'hand-scissors' |
+ 'hands-praying' |
+ 'praying-hands' |
+ 'face-pensive' |
+ 'user-music' |
+ 'arrow-rotate-right' |
+ 'arrow-right-rotate' |
+ 'arrow-rotate-forward' |
+ 'redo' |
+ 'messages-dollar' |
+ 'comments-alt-dollar' |
+ 'sensor-on' |
+ 'balloon' |
+ 'biohazard' |
+ 'chess-queen-piece' |
+ 'chess-queen-alt' |
+ 'location-crosshairs' |
+ 'location' |
+ 'mars-double' |
+ 'house-person-leave' |
+ 'house-leave' |
+ 'house-person-depart' |
+ 'ruler-triangle' |
+ 'card-club' |
+ 'child-dress' |
+ 'users-between-lines' |
+ 'lungs-virus' |
+ 'spinner-third' |
+ 'face-grin-tears' |
+ 'grin-tears' |
+ 'phone' |
+ 'computer-mouse-scrollwheel' |
+ 'mouse-alt' |
+ 'calendar-xmark' |
+ 'calendar-times' |
+ 'child-reaching' |
+ 'table-layout' |
+ 'narwhal' |
+ 'ramp-loading' |
+ 'calendar-circle-plus' |
+ 'toothbrush' |
+ 'border-inner' |
+ 'paw-claws' |
+ 'kiwi-fruit' |
+ 'traffic-light-slow' |
+ 'rectangle-code' |
+ 'head-side-virus' |
+ 'keyboard-brightness' |
+ 'books-medical' |
+ 'lightbulb-slash' |
+ 'house-blank' |
+ 'home-blank' |
+ 'square-5' |
+ 'square-heart' |
+ 'heart-square' |
+ 'puzzle' |
+ 'user-gear' |
+ 'user-cog' |
+ 'pipe-circle-check' |
+ 'arrow-up-1-9' |
+ 'sort-numeric-up' |
+ 'octagon-exclamation' |
+ 'dial-low' |
+ 'door-closed' |
+ 'laptop-mobile' |
+ 'phone-laptop' |
+ 'conveyor-belt-boxes' |
+ 'conveyor-belt-alt' |
+ 'shield-virus' |
+ 'starfighter-twin-ion-engine-advanced' |
+ 'starfighter-alt-advanced' |
+ 'dice-six' |
+ 'starfighter-twin-ion-engine' |
+ 'starfighter-alt' |
+ 'rocket-launch' |
+ 'mosquito-net' |
+ 'vent-damper' |
+ 'bridge-water' |
+ 'ban-bug' |
+ 'debug' |
+ 'person-booth' |
+ 'text-width' |
+ 'garage-car' |
+ 'square-kanban' |
+ 'hat-wizard' |
+ 'pen-fancy' |
+ 'coffee-pot' |
+ 'mouse-field' |
+ 'person-digging' |
+ 'digging' |
+ 'shower-down' |
+ 'shower-alt' |
+ 'box-circle-check' |
+ 'brightness' |
+ 'car-side-bolt' |
+ 'ornament' |
+ 'phone-arrow-down-left' |
+ 'phone-arrow-down' |
+ 'phone-incoming' |
+ 'cloud-word' |
+ 'hand-fingers-crossed' |
+ 'trash' |
+ 'gauge-simple' |
+ 'gauge-simple-med' |
+ 'tachometer-average' |
+ 'arrow-down-small-big' |
+ 'sort-size-down-alt' |
+ 'book-medical' |
+ 'face-melting' |
+ 'poo' |
+ 'pen-clip-slash' |
+ 'pen-alt-slash' |
+ 'quote-right' |
+ 'quote-right-alt' |
+ 'scroll-old' |
+ 'guitars' |
+ 'phone-xmark' |
+ 'hose' |
+ 'clock-six' |
+ 'shirt' |
+ 't-shirt' |
+ 'tshirt' |
+ 'billboard' |
+ 'square-r' |
+ 'cubes' |
+ 'envelope-open-dollar' |
+ 'divide' |
+ 'sun-cloud' |
+ 'lamp-floor' |
+ 'square-7' |
+ 'tenge-sign' |
+ 'tenge' |
+ 'headphones' |
+ 'hands-holding' |
+ 'campfire' |
+ 'circle-ampersand' |
+ 'snowflakes' |
+ 'hands-clapping' |
+ 'republican' |
+ 'leaf-maple' |
+ 'arrow-left' |
+ 'person-circle-xmark' |
+ 'ruler' |
+ 'cup-straw-swoosh' |
+ 'temperature-sun' |
+ 'temperature-hot' |
+ 'align-left' |
+ 'dice-d6' |
+ 'restroom' |
+ 'high-definition' |
+ 'rectangle-hd' |
+ 'j' |
+ 'galaxy' |
+ 'users-viewfinder' |
+ 'file-video' |
+ 'cherries' |
+ 'up-right-from-square' |
+ 'external-link-alt' |
+ 'circle-sort' |
+ 'sort-circle' |
+ 'table-cells' |
+ 'th' |
+ 'file-pdf' |
+ 'siren' |
+ 'arrow-up-to-dotted-line' |
+ 'image-landscape' |
+ 'landscape' |
+ 'tank-water' |
+ 'curling-stone' |
+ 'curling' |
+ 'gamepad-modern' |
+ 'gamepad-alt' |
+ 'messages-question' |
+ 'book-bible' |
+ 'bible' |
+ 'o' |
+ 'suitcase-medical' |
+ 'medkit' |
+ 'briefcase-arrow-right' |
+ 'expand-wide' |
+ 'clock-eleven-thirty' |
+ 'rv' |
+ 'user-secret' |
+ 'otter' |
+ 'dreidel' |
+ 'person-dress' |
+ 'female' |
+ 'comment-dollar' |
+ 'business-time' |
+ 'briefcase-clock' |
+ 'flower-tulip' |
+ 'people-pants-simple' |
+ 'cloud-drizzle' |
+ 'table-cells-large' |
+ 'th-large' |
+ 'book-tanakh' |
+ 'tanakh' |
+ 'solar-system' |
+ 'seal-question' |
+ 'phone-volume' |
+ 'volume-control-phone' |
+ 'disc-drive' |
+ 'hat-cowboy-side' |
+ 'table-rows' |
+ 'rows' |
+ 'location-exclamation' |
+ 'map-marker-exclamation' |
+ 'face-fearful' |
+ 'clipboard-user' |
+ 'bus-school' |
+ 'film-slash' |
+ 'square-arrow-down-right' |
+ 'book-sparkles' |
+ 'book-spells' |
+ 'washing-machine' |
+ 'washer' |
+ 'child' |
+ 'lira-sign' |
+ 'user-visor' |
+ 'file-plus-minus' |
+ 'chess-clock-flip' |
+ 'chess-clock-alt' |
+ 'satellite' |
+ 'plane-lock' |
+ 'steering-wheel' |
+ 'tag' |
+ 'stretcher' |
+ 'book-section' |
+ 'book-law' |
+ 'inboxes' |
+ 'coffee-bean' |
+ 'circle-yen' |
+ 'brackets-curly' |
+ 'ellipsis-stroke-vertical' |
+ 'ellipsis-v-alt' |
+ 'comment' |
+ 'square-1' |
+ 'cake-candles' |
+ 'birthday-cake' |
+ 'cake' |
+ 'head-side' |
+ 'envelope' |
+ 'dolly-empty' |
+ 'face-tissue' |
+ 'angles-up' |
+ 'angle-double-up' |
+ 'bin-recycle' |
+ 'paperclip' |
+ 'chart-line-down' |
+ 'arrow-right-to-city' |
+ 'lock-a' |
+ 'ribbon' |
+ 'lungs' |
+ 'person-pinball' |
+ 'arrow-up-9-1' |
+ 'sort-numeric-up-alt' |
+ 'apple-core' |
+ 'circle-y' |
+ 'h6' |
+ 'litecoin-sign' |
+ 'circle-small' |
+ 'border-none' |
+ 'arrow-turn-down-left' |
+ 'circle-nodes' |
+ 'parachute-box' |
+ 'message-medical' |
+ 'comment-alt-medical' |
+ 'rugby-ball' |
+ 'comment-music' |
+ 'indent' |
+ 'tree-deciduous' |
+ 'tree-alt' |
+ 'puzzle-piece-simple' |
+ 'puzzle-piece-alt' |
+ 'truck-field-un' |
+ 'nfc-trash' |
+ 'hourglass' |
+ 'hourglass-empty' |
+ 'mountain' |
+ 'file-xmark' |
+ 'file-times' |
+ 'house-heart' |
+ 'home-heart' |
+ 'house-chimney-blank' |
+ 'meter-bolt' |
+ 'user-doctor' |
+ 'user-md' |
+ 'slash-back' |
+ 'circle-info' |
+ 'info-circle' |
+ 'fishing-rod' |
+ 'hammer-crash' |
+ 'message-heart' |
+ 'cloud-meatball' |
+ 'camera-polaroid' |
+ 'camera' |
+ 'camera-alt' |
+ 'square-virus' |
+ 'cart-arrow-up' |
+ 'meteor' |
+ 'car-on' |
+ 'sleigh' |
+ 'arrow-down-1-9' |
+ 'sort-numeric-asc' |
+ 'sort-numeric-down' |
+ 'buoy-mooring' |
+ 'square-4' |
+ 'hand-holding-droplet' |
+ 'hand-holding-water' |
+ 'tricycle-adult' |
+ 'waveform' |
+ 'water' |
+ 'star-sharp-half-stroke' |
+ 'star-sharp-half-alt' |
+ 'nfc-signal' |
+ 'plane-prop' |
+ 'calendar-check' |
+ 'clock-desk' |
+ 'calendar-clock' |
+ 'calendar-time' |
+ 'braille' |
+ 'prescription-bottle-medical' |
+ 'prescription-bottle-alt' |
+ 'plate-utensils' |
+ 'family-pants' |
+ 'hose-reel' |
+ 'house-window' |
+ 'landmark' |
+ 'truck' |
+ 'crosshairs' |
+ 'cloud-rainbow' |
+ 'person-cane' |
+ 'alien' |
+ 'tent' |
+ 'laptop-binary' |
+ 'vest-patches' |
+ 'people-dress-simple' |
+ 'check-double' |
+ 'arrow-down-a-z' |
+ 'sort-alpha-asc' |
+ 'sort-alpha-down' |
+ 'bowling-ball-pin' |
+ 'bell-school-slash' |
+ 'plus-large' |
+ 'money-bill-wheat' |
+ 'camera-viewfinder' |
+ 'screenshot' |
+ 'message-music' |
+ 'comment-alt-music' |
+ 'car-building' |
+ 'border-bottom-right' |
+ 'border-style-alt' |
+ 'octagon' |
+ 'comment-arrow-up-right' |
+ 'octagon-divide' |
+ 'cookie' |
+ 'arrow-rotate-left' |
+ 'arrow-left-rotate' |
+ 'arrow-rotate-back' |
+ 'arrow-rotate-backward' |
+ 'undo' |
+ 'tv-music' |
+ 'hard-drive' |
+ 'hdd' |
+ 'reel' |
+ 'face-grin-squint-tears' |
+ 'grin-squint-tears' |
+ 'dumbbell' |
+ 'rectangle-list' |
+ 'list-alt' |
+ 'tarp-droplet' |
+ 'alarm-exclamation' |
+ 'house-medical-circle-check' |
+ 'traffic-cone' |
+ 'grate' |
+ 'arrow-down-right' |
+ 'person-skiing-nordic' |
+ 'skiing-nordic' |
+ 'calendar-plus' |
+ 'person-from-portal' |
+ 'portal-exit' |
+ 'plane-arrival' |
+ 'cowbell-circle-plus' |
+ 'cowbell-more' |
+ 'circle-left' |
+ 'arrow-alt-circle-left' |
+ 'distribute-spacing-vertical' |
+ 'signal-bars-fair' |
+ 'signal-alt2' |
+ 'sportsball' |
+ 'game-console-handheld-crank' |
+ 'train-subway' |
+ 'subway' |
+ 'chart-gantt' |
+ 'face-smile-upside-down' |
+ 'ball-pile' |
+ 'badge-dollar' |
+ 'money-bills-simple' |
+ 'money-bills-alt' |
+ 'list-timeline' |
+ 'indian-rupee-sign' |
+ 'indian-rupee' |
+ 'inr' |
+ 'crop-simple' |
+ 'crop-alt' |
+ 'money-bill-1' |
+ 'money-bill-alt' |
+ 'left-long' |
+ 'long-arrow-alt-left' |
+ 'keyboard-down' |
+ 'circle-up-right' |
+ 'cloud-bolt-moon' |
+ 'thunderstorm-moon' |
+ 'dna' |
+ 'virus-slash' |
+ 'bracket-round-right' |
+ 'circle-sterling' |
+ 'circle-5' |
+ 'minus' |
+ 'subtract' |
+ 'fire-flame' |
+ 'flame' |
+ 'right-to-line' |
+ 'arrow-alt-to-right' |
+ 'gif' |
+ 'chess' |
+ 'trash-slash' |
+ 'arrow-left-long' |
+ 'long-arrow-left' |
+ 'plug-circle-check' |
+ 'font-case' |
+ 'street-view' |
+ 'arrow-down-left' |
+ 'franc-sign' |
+ 'flask-round-poison' |
+ 'flask-poison' |
+ 'volume-off' |
+ 'book-circle-arrow-right' |
+ 'chart-user' |
+ 'user-chart' |
+ 'hands-asl-interpreting' |
+ 'american-sign-language-interpreting' |
+ 'asl-interpreting' |
+ 'hands-american-sign-language-interpreting' |
+ 'presentation-screen' |
+ 'presentation' |
+ 'circle-bolt' |
+ 'face-smile-halo' |
+ 'cart-circle-arrow-down' |
+ 'house-person-return' |
+ 'house-person-arrive' |
+ 'house-return' |
+ 'message-xmark' |
+ 'comment-alt-times' |
+ 'message-times' |
+ 'file-certificate' |
+ 'file-award' |
+ 'user-doctor-hair-long' |
+ 'camera-security' |
+ 'camera-home' |
+ 'gear' |
+ 'cog' |
+ 'droplet-slash' |
+ 'tint-slash' |
+ 'book-heart' |
+ 'mosque' |
+ 'duck' |
+ 'mosquito' |
+ 'star-of-david' |
+ 'flag-swallowtail' |
+ 'flag-alt' |
+ 'person-military-rifle' |
+ 'car-garage' |
+ 'cart-shopping' |
+ 'shopping-cart' |
+ 'book-font' |
+ 'shield-plus' |
+ 'vials' |
+ 'eye-dropper-full' |
+ 'distribute-spacing-horizontal' |
+ 'tablet-rugged' |
+ 'temperature-snow' |
+ 'temperature-frigid' |
+ 'moped' |
+ 'face-smile-plus' |
+ 'smile-plus' |
+ 'radio-tuner' |
+ 'radio-alt' |
+ 'face-swear' |
+ 'water-arrow-down' |
+ 'water-lower' |
+ 'scanner-touchscreen' |
+ 'circle-7' |
+ 'plug-circle-plus' |
+ 'person-ski-jumping' |
+ 'ski-jump' |
+ 'place-of-worship' |
+ 'water-arrow-up' |
+ 'water-rise' |
+ 'waveform-lines' |
+ 'waveform-path' |
+ 'split' |
+ 'film-canister' |
+ 'film-cannister' |
+ 'folder-xmark' |
+ 'folder-times' |
+ 'toilet-paper-blank' |
+ 'toilet-paper-alt' |
+ 'tablet-screen' |
+ 'tablet-android-alt' |
+ 'hexagon-vertical-nft-slanted' |
+ 'folder-music' |
+ 'display-medical' |
+ 'desktop-medical' |
+ 'share-all' |
+ 'peapod' |
+ 'chess-clock' |
+ 'axe' |
+ 'square-d' |
+ 'grip-vertical' |
+ 'mobile-signal-out' |
+ 'arrow-turn-up' |
+ 'level-up' |
+ 'u' |
+ 'arrow-up-from-dotted-line' |
+ 'square-root-variable' |
+ 'square-root-alt' |
+ 'light-switch-on' |
+ 'arrow-down-arrow-up' |
+ 'sort-alt' |
+ 'raindrops' |
+ 'dash' |
+ 'minus-large' |
+ 'clock' |
+ 'clock-four' |
+ 'input-numeric' |
+ 'truck-tow' |
+ 'backward-step' |
+ 'step-backward' |
+ 'pallet' |
+ 'car-bolt' |
+ 'arrows-maximize' |
+ 'expand-arrows' |
+ 'faucet' |
+ 'cloud-sleet' |
+ 'lamp-street' |
+ 'list-radio' |
+ 'pen-nib-slash' |
+ 'baseball-bat-ball' |
+ 'square-up-left' |
+ 'overline' |
+ 's' |
+ 'timeline' |
+ 'keyboard' |
+ 'arrows-from-dotted-line' |
+ 'usb-drive' |
+ 'ballot' |
+ 'caret-down' |
+ 'location-dot-slash' |
+ 'map-marker-alt-slash' |
+ 'cards' |
+ 'house-chimney-medical' |
+ 'clinic-medical' |
+ 'boxing-glove' |
+ 'glove-boxing' |
+ 'temperature-three-quarters' |
+ 'temperature3' |
+ 'thermometer3' |
+ 'thermometer-three-quarters' |
+ 'bell-school' |
+ 'mobile-screen' |
+ 'mobile-android-alt' |
+ 'plane-up' |
+ 'folder-heart' |
+ 'circle-location-arrow' |
+ 'location-circle' |
+ 'face-head-bandage' |
+ 'sushi-roll' |
+ 'maki-roll' |
+ 'makizushi' |
+ 'car-bump' |
+ 'piggy-bank' |
+ 'racquet' |
+ 'car-mirrors' |
+ 'industry-windows' |
+ 'industry-alt' |
+ 'bolt-auto' |
+ 'battery-half' |
+ 'battery3' |
+ 'flux-capacitor' |
+ 'mountain-city' |
+ 'coins' |
+ 'honey-pot' |
+ 'olive' |
+ 'khanda' |
+ 'filter-list' |
+ 'outlet' |
+ 'sliders' |
+ 'sliders-h' |
+ 'cauldron' |
+ 'people' |
+ 'folder-tree' |
+ 'network-wired' |
+ 'croissant' |
+ 'map-pin' |
+ 'hamsa' |
+ 'cent-sign' |
+ 'swords-laser' |
+ 'flask' |
+ 'person-pregnant' |
+ 'square-u' |
+ 'wand-sparkles' |
+ 'router' |
+ 'ellipsis-vertical' |
+ 'ellipsis-v' |
+ 'sword-laser-alt' |
+ 'ticket' |
+ 'power-off' |
+ 'coin' |
+ 'laptop-slash' |
+ 'right-long' |
+ 'long-arrow-alt-right' |
+ 'circle-b' |
+ 'person-dress-simple' |
+ 'pipe-collar' |
+ 'lights-holiday' |
+ 'citrus' |
+ 'flag-usa' |
+ 'laptop-file' |
+ 'tty' |
+ 'teletype' |
+ 'chart-tree-map' |
+ 'diagram-next' |
+ 'person-rifle' |
+ 'clock-five-thirty' |
+ 'pipe-valve' |
+ 'arrow-up-from-arc' |
+ 'face-spiral-eyes' |
+ 'compress-wide' |
+ 'circle-phone-hangup' |
+ 'phone-circle-down' |
+ 'gear-complex-code' |
+ 'house-medical-circle-exclamation' |
+ 'badminton' |
+ 'closed-captioning' |
+ 'person-hiking' |
+ 'hiking' |
+ 'right-from-line' |
+ 'arrow-alt-from-left' |
+ 'venus-double' |
+ 'images' |
+ 'calculator' |
+ 'shuttlecock' |
+ 'user-hair' |
+ 'eye-evil' |
+ 'people-pulling' |
+ 'n' |
+ 'garage' |
+ 'cable-car' |
+ 'tram' |
+ 'shovel-snow' |
+ 'cloud-rain' |
+ 'face-lying' |
+ 'sprinkler' |
+ 'building-circle-xmark' |
+ 'person-sledding' |
+ 'sledding' |
+ 'game-console-handheld' |
+ 'ship' |
+ 'clock-six-thirty' |
+ 'battery-slash' |
+ 'tugrik-sign' |
+ 'arrows-down-to-line' |
+ 'download' |
+ 'shelves' |
+ 'inventory' |
+ 'cloud-snow' |
+ 'face-grin' |
+ 'grin' |
+ 'delete-left' |
+ 'backspace' |
+ 'oven' |
+ 'cloud-binary' |
+ 'eye-dropper' |
+ 'eye-dropper-empty' |
+ 'eyedropper' |
+ 'comment-captions' |
+ 'comments-question' |
+ 'scribble' |
+ 'rotate-exclamation' |
+ 'file-circle-check' |
+ 'glass' |
+ 'loader' |
+ 'forward' |
+ 'user-pilot' |
+ 'mobile' |
+ 'mobile-android' |
+ 'mobile-phone' |
+ 'code-pull-request-closed' |
+ 'face-meh' |
+ 'meh' |
+ 'align-center' |
+ 'book-skull' |
+ 'book-dead' |
+ 'id-card' |
+ 'drivers-license' |
+ 'face-dotted' |
+ 'face-worried' |
+ 'outdent' |
+ 'dedent' |
+ 'heart-circle-exclamation' |
+ 'house' |
+ 'home' |
+ 'home-alt' |
+ 'home-lg-alt' |
+ 'vector-circle' |
+ 'car-circle-bolt' |
+ 'calendar-week' |
+ 'flying-disc' |
+ 'laptop-medical' |
+ 'square-down-right' |
+ 'b' |
+ 'seat-airline' |
+ 'moon-over-sun' |
+ 'eclipse-alt' |
+ 'pipe' |
+ 'file-medical' |
+ 'potato' |
+ 'dice-one' |
+ 'circle-a' |
+ 'helmet-battle' |
+ 'butter' |
+ 'blanket-fire' |
+ 'kiwi-bird' |
+ 'castle' |
+ 'golf-club' |
+ 'arrow-right-arrow-left' |
+ 'exchange' |
+ 'rotate-right' |
+ 'redo-alt' |
+ 'rotate-forward' |
+ 'utensils' |
+ 'cutlery' |
+ 'arrow-up-wide-short' |
+ 'sort-amount-up' |
+ 'chart-pie-simple-circle-dollar' |
+ 'balloons' |
+ 'mill-sign' |
+ 'bowl-rice' |
+ 'timeline-arrow' |
+ 'skull' |
+ 'game-board-simple' |
+ 'game-board-alt' |
+ 'circle-video' |
+ 'video-circle' |
+ 'chart-scatter-bubble' |
+ 'house-turret' |
+ 'banana' |
+ 'hand-holding-skull' |
+ 'people-dress' |
+ 'loveseat' |
+ 'couch-small' |
+ 'tower-broadcast' |
+ 'broadcast-tower' |
+ 'truck-pickup' |
+ 'block-quote' |
+ 'up-long' |
+ 'long-arrow-alt-up' |
+ 'stop' |
+ 'code-merge' |
+ 'money-check-dollar-pen' |
+ 'money-check-edit-alt' |
+ 'up-from-line' |
+ 'arrow-alt-from-bottom' |
+ 'upload' |
+ 'hurricane' |
+ 'grid-round-2-plus' |
+ 'people-pants' |
+ 'mound' |
+ 'windsock' |
+ 'circle-half' |
+ 'brake-warning' |
+ 'toilet-portable' |
+ 'compact-disc' |
+ 'file-arrow-down' |
+ 'file-download' |
+ 'saxophone-fire' |
+ 'sax-hot' |
+ 'camera-web-slash' |
+ 'webcam-slash' |
+ 'folder-medical' |
+ 'folder-gear' |
+ 'folder-cog' |
+ 'hand-wave' |
+ 'arrow-up-arrow-down' |
+ 'sort-up-down' |
+ 'caravan' |
+ 'shield-cat' |
+ 'message-slash' |
+ 'comment-alt-slash' |
+ 'bolt' |
+ 'zap' |
+ 'trash-can-check' |
+ 'glass-water' |
+ 'oil-well' |
+ 'person-simple' |
+ 'vault' |
+ 'mars' |
+ 'toilet' |
+ 'plane-circle-xmark' |
+ 'yen-sign' |
+ 'cny' |
+ 'jpy' |
+ 'rmb' |
+ 'yen' |
+ 'gear-code' |
+ 'notes' |
+ 'ruble-sign' |
+ 'rouble' |
+ 'rub' |
+ 'ruble' |
+ 'trash-undo' |
+ 'trash-arrow-turn-left' |
+ 'champagne-glass' |
+ 'glass-champagne' |
+ 'objects-align-center-horizontal' |
+ 'sun' |
+ 'trash-can-slash' |
+ 'trash-alt-slash' |
+ 'screen-users' |
+ 'users-class' |
+ 'guitar' |
+ 'square-arrow-left' |
+ 'arrow-square-left' |
+ 'square-8' |
+ 'face-smile-hearts' |
+ 'brackets-square' |
+ 'brackets' |
+ 'laptop-arrow-down' |
+ 'hockey-stick-puck' |
+ 'house-tree' |
+ 'signal-fair' |
+ 'signal2' |
+ 'face-laugh-wink' |
+ 'laugh-wink' |
+ 'circle-dollar' |
+ 'dollar-circle' |
+ 'usd-circle' |
+ 'horse-head' |
+ 'arrows-repeat' |
+ 'repeat-alt' |
+ 'bore-hole' |
+ 'industry' |
+ 'image-polaroid' |
+ 'wave-triangle' |
+ 'person-running-fast' |
+ 'circle-down' |
+ 'arrow-alt-circle-down' |
+ 'grill' |
+ 'arrows-turn-to-dots' |
+ 'chart-mixed' |
+ 'analytics' |
+ 'florin-sign' |
+ 'arrow-down-short-wide' |
+ 'sort-amount-desc' |
+ 'sort-amount-down-alt' |
+ 'less-than' |
+ 'display-code' |
+ 'desktop-code' |
+ 'face-drooling' |
+ 'oil-temperature' |
+ 'oil-temp' |
+ 'square-question' |
+ 'question-square' |
+ 'air-conditioner' |
+ 'angle-down' |
+ 'mountains' |
+ 'omega' |
+ 'car-tunnel' |
+ 'person-dolly-empty' |
+ 'pan-food' |
+ 'head-side-cough' |
+ 'grip-lines' |
+ 'thumbs-down' |
+ 'user-lock' |
+ 'arrow-right-long' |
+ 'long-arrow-right' |
+ 'tickets-airline' |
+ 'anchor-circle-xmark' |
+ 'ellipsis' |
+ 'ellipsis-h' |
+ 'nfc-slash' |
+ 'chess-pawn' |
+ 'kit-medical' |
+ 'first-aid' |
+ 'grid-2-plus' |
+ 'bells' |
+ 'person-through-window' |
+ 'toolbox' |
+ 'envelope-dot' |
+ 'envelope-badge' |
+ 'hands-holding-circle' |
+ 'bug' |
+ 'bowl-chopsticks' |
+ 'credit-card' |
+ 'credit-card-alt' |
+ 'circle-s' |
+ 'box-ballot' |
+ 'car' |
+ 'automobile' |
+ 'hand-holding-hand' |
+ 'user-tie-hair' |
+ 'podium-star' |
+ 'user-hair-mullet' |
+ 'business-front' |
+ 'party-back' |
+ 'trian-balbot' |
+ 'microphone-stand' |
+ 'book-open-reader' |
+ 'book-reader' |
+ 'family-dress' |
+ 'circle-x' |
+ 'cabin' |
+ 'mountain-sun' |
+ 'chart-simple-horizontal' |
+ 'bluetooth' |
+ 'arrows-left-right-to-line' |
+ 'hand-back-point-left' |
+ 'message-dots' |
+ 'comment-alt-dots' |
+ 'messaging' |
+ 'file-heart' |
+ 'beer-mug' |
+ 'beer-foam' |
+ 'dice-d20' |
+ 'drone' |
+ 'truck-droplet' |
+ 'file-circle-xmark' |
+ 'temperature-arrow-up' |
+ 'temperature-up' |
+ 'medal' |
+ 'bed' |
+ 'book-copy' |
+ 'square-h' |
+ 'h-square' |
+ 'square-c' |
+ 'clock-two' |
+ 'square-ellipsis-vertical' |
+ 'calendar-users' |
+ 'podcast' |
+ 'bee' |
+ 'temperature-full' |
+ 'temperature4' |
+ 'thermometer4' |
+ 'thermometer-full' |
+ 'bell' |
+ 'candy-bar' |
+ 'chocolate-bar' |
+ 'xmark-large' |
+ 'pinata' |
+ 'arrows-from-line' |
+ 'superscript' |
+ 'bowl-spoon' |
+ 'hexagon-check' |
+ 'plug-circle-xmark' |
+ 'star-of-life' |
+ 'phone-slash' |
+ 'traffic-light-stop' |
+ 'paint-roller' |
+ 'accent-grave' |
+ 'handshake-angle' |
+ 'hands-helping' |
+ 'circle-0' |
+ 'dial-med-low' |
+ 'location-dot' |
+ 'map-marker-alt' |
+ 'crab' |
+ 'box-open-full' |
+ 'box-full' |
+ 'file' |
+ 'greater-than' |
+ 'quotes' |
+ 'pretzel' |
+ 'person-swimming' |
+ 'swimmer' |
+ 'arrow-down' |
+ 'user-robot-xmarks' |
+ 'message-quote' |
+ 'comment-alt-quote' |
+ 'candy-corn' |
+ 'folder-magnifying-glass' |
+ 'folder-search' |
+ 'notebook' |
+ 'droplet' |
+ 'tint' |
+ 'bullseye-pointer' |
+ 'eraser' |
+ 'hexagon-image' |
+ 'earth-americas' |
+ 'earth' |
+ 'earth-america' |
+ 'globe-americas' |
+ 'crate-apple' |
+ 'apple-crate' |
+ 'person-burst' |
+ 'game-board' |
+ 'hat-chef' |
+ 'hand-back-point-right' |
+ 'dove' |
+ 'snowflake-droplets' |
+ 'battery-empty' |
+ 'battery0' |
+ 'grid-4' |
+ 'socks' |
+ 'face-sunglasses' |
+ 'inbox' |
+ 'square-0' |
+ 'section' |
+ 'square-this-way-up' |
+ 'box-up' |
+ 'gauge-high' |
+ 'tachometer-alt' |
+ 'tachometer-alt-fast' |
+ 'square-ampersand' |
+ 'envelope-open-text' |
+ 'lamp-desk' |
+ 'hospital' |
+ 'hospital-alt' |
+ 'hospital-wide' |
+ 'poll-people' |
+ 'whiskey-glass-ice' |
+ 'glass-whiskey-rocks' |
+ 'wine-bottle' |
+ 'chess-rook' |
+ 'user-bounty-hunter' |
+ 'bars-staggered' |
+ 'reorder' |
+ 'stream' |
+ 'diagram-sankey' |
+ 'cloud-hail-mixed' |
+ 'circle-up-left' |
+ 'dharmachakra' |
+ 'objects-align-left' |
+ 'oil-can-drip' |
+ 'face-smiling-hands' |
+ 'broccoli' |
+ 'route-interstate' |
+ 'ear-muffs' |
+ 'hotdog' |
+ 'transporter-empty' |
+ 'person-walking-with-cane' |
+ 'blind' |
+ 'angle-90' |
+ 'rectangle-terminal' |
+ 'kite' |
+ 'drum' |
+ 'scrubber' |
+ 'ice-cream' |
+ 'heart-circle-bolt' |
+ 'fish-bones' |
+ 'deer-rudolph' |
+ 'fax' |
+ 'paragraph' |
+ 'head-side-heart' |
+ 'square-e' |
+ 'meter-fire' |
+ 'cloud-hail' |
+ 'check-to-slot' |
+ 'vote-yea' |
+ 'money-from-bracket' |
+ 'star-half' |
+ 'car-bus' |
+ 'speaker' |
+ 'timer' |
+ 'boxes-stacked' |
+ 'boxes' |
+ 'boxes-alt' |
+ 'grill-hot' |
+ 'ballot-check' |
+ 'link' |
+ 'chain' |
+ 'ear-listen' |
+ 'assistive-listening-systems' |
+ 'file-minus' |
+ 'tree-city' |
+ 'play' |
+ 'font' |
+ 'cup-togo' |
+ 'coffee-togo' |
+ 'square-down-left' |
+ 'burger-lettuce' |
+ 'rupiah-sign' |
+ 'magnifying-glass' |
+ 'search' |
+ 'table-tennis-paddle-ball' |
+ 'ping-pong-paddle-ball' |
+ 'table-tennis' |
+ 'person-dots-from-line' |
+ 'diagnoses' |
+ 'chevrons-down' |
+ 'chevron-double-down' |
+ 'trash-can-arrow-up' |
+ 'trash-restore-alt' |
+ 'signal-good' |
+ 'signal3' |
+ 'location-question' |
+ 'map-marker-question' |
+ 'floppy-disk-circle-xmark' |
+ 'floppy-disk-times' |
+ 'save-circle-xmark' |
+ 'save-times' |
+ 'naira-sign' |
+ 'peach' |
+ 'taxi-bus' |
+ 'bracket-curly' |
+ 'bracket-curly-left' |
+ 'lobster' |
+ 'cart-flatbed-empty' |
+ 'dolly-flatbed-empty' |
+ 'colon' |
+ 'cart-arrow-down' |
+ 'wand' |
+ 'walkie-talkie' |
+ 'file-pen' |
+ 'file-edit' |
+ 'receipt' |
+ 'table-picnic' |
+ 'square-pen' |
+ 'pen-square' |
+ 'pencil-square' |
+ 'circle-microphone-lines' |
+ 'microphone-circle-alt' |
+ 'display-slash' |
+ 'desktop-slash' |
+ 'suitcase-rolling' |
+ 'person-circle-exclamation' |
+ 'transporter-2' |
+ 'hands-holding-diamond' |
+ 'hand-receiving' |
+ 'money-bill-simple-wave' |
+ 'chevron-down' |
+ 'battery-full' |
+ 'battery' |
+ 'battery5' |
+ 'bell-plus' |
+ 'book-arrow-right' |
+ 'hospitals' |
+ 'club' |
+ 'skull-crossbones' |
+ 'droplet-degree' |
+ 'dewpoint' |
+ 'code-compare' |
+ 'list-ul' |
+ 'list-dots' |
+ 'hand-holding-magic' |
+ 'watermelon-slice' |
+ 'circle-ellipsis' |
+ 'school-lock' |
+ 'tower-cell' |
+ 'sd-cards' |
+ 'jug-bottle' |
+ 'down-long' |
+ 'long-arrow-alt-down' |
+ 'envelopes' |
+ 'phone-office' |
+ 'ranking-star' |
+ 'chess-king' |
+ 'nfc-pen' |
+ 'person-harassing' |
+ 'hat-winter' |
+ 'brazilian-real-sign' |
+ 'landmark-dome' |
+ 'landmark-alt' |
+ 'bone-break' |
+ 'arrow-up' |
+ 'down-from-dotted-line' |
+ 'tv' |
+ 'television' |
+ 'tv-alt' |
+ 'border-left' |
+ 'circle-divide' |
+ 'shrimp' |
+ 'list-check' |
+ 'tasks' |
+ 'diagram-subtask' |
+ 'jug-detergent' |
+ 'circle-user' |
+ 'user-circle' |
+ 'square-y' |
+ 'user-doctor-hair' |
+ 'planet-ringed' |
+ 'mushroom' |
+ 'user-shield' |
+ 'megaphone' |
+ 'wreath-laurel' |
+ 'circle-exclamation-check' |
+ 'wind' |
+ 'box-dollar' |
+ 'box-usd' |
+ 'car-burst' |
+ 'car-crash' |
+ 'y' |
+ 'user-headset' |
+ 'arrows-retweet' |
+ 'retweet-alt' |
+ 'person-snowboarding' |
+ 'snowboarding' |
+ 'square-chevron-right' |
+ 'chevron-square-right' |
+ 'lacrosse-stick-ball' |
+ 'truck-fast' |
+ 'shipping-fast' |
+ 'user-magnifying-glass' |
+ 'star-sharp' |
+ 'comment-heart' |
+ 'circle-1' |
+ 'circle-star' |
+ 'star-circle' |
+ 'fish' |
+ 'cloud-fog' |
+ 'fog' |
+ 'waffle' |
+ 'music-note' |
+ 'music-alt' |
+ 'hexagon-exclamation' |
+ 'cart-shopping-fast' |
+ 'object-union' |
+ 'user-graduate' |
+ 'starfighter' |
+ 'circle-half-stroke' |
+ 'adjust' |
+ 'arrow-right-long-to-line' |
+ 'square-arrow-down' |
+ 'arrow-square-down' |
+ 'diamond-half-stroke' |
+ 'clapperboard' |
+ 'square-chevron-left' |
+ 'chevron-square-left' |
+ 'phone-intercom' |
+ 'link-horizontal' |
+ 'chain-horizontal' |
+ 'mango' |
+ 'music-note-slash' |
+ 'music-alt-slash' |
+ 'circle-radiation' |
+ 'radiation-alt' |
+ 'face-tongue-sweat' |
+ 'globe-stand' |
+ 'baseball' |
+ 'baseball-ball' |
+ 'circle-p' |
+ 'award-simple' |
+ 'jet-fighter-up' |
+ 'diagram-project' |
+ 'project-diagram' |
+ 'pedestal' |
+ 'chart-pyramid' |
+ 'sidebar' |
+ 'snowman-head' |
+ 'frosty-head' |
+ 'copy' |
+ 'burger-glass' |
+ 'volume-xmark' |
+ 'volume-mute' |
+ 'volume-times' |
+ 'hand-sparkles' |
+ 'bars-filter' |
+ 'paintbrush-pencil' |
+ 'party-bell' |
+ 'user-vneck-hair' |
+ 'jack-o-lantern' |
+ 'grip' |
+ 'grip-horizontal' |
+ 'share-from-square' |
+ 'share-square' |
+ 'keynote' |
+ 'child-combatant' |
+ 'child-rifle' |
+ 'gun' |
+ 'square-phone' |
+ 'phone-square' |
+ 'hat-beach' |
+ 'plus' |
+ 'add' |
+ 'expand' |
+ 'computer' |
+ 'fort' |
+ 'cloud-check' |
+ 'xmark' |
+ 'close' |
+ 'multiply' |
+ 'remove' |
+ 'times' |
+ 'face-smirking' |
+ 'arrows-up-down-left-right' |
+ 'arrows' |
+ 'chalkboard-user' |
+ 'chalkboard-teacher' |
+ 'rhombus' |
+ 'claw-marks' |
+ 'peso-sign' |
+ 'face-smile-tongue' |
+ 'cart-circle-xmark' |
+ 'building-shield' |
+ 'circle-phone-flip' |
+ 'phone-circle-alt' |
+ 'baby' |
+ 'users-line' |
+ 'quote-left' |
+ 'quote-left-alt' |
+ 'tractor' |
+ 'key-skeleton' |
+ 'trash-arrow-up' |
+ 'trash-restore' |
+ 'arrow-down-up-lock' |
+ 'arrow-down-to-bracket' |
+ 'lines-leaning' |
+ 'square-q' |
+ 'ruler-combined' |
+ 'symbols' |
+ 'icons-alt' |
+ 'copyright' |
+ 'flask-gear' |
+ 'highlighter-line' |
+ 'bracket-square' |
+ 'bracket' |
+ 'bracket-left' |
+ 'island-tropical' |
+ 'island-tree-palm' |
+ 'arrow-right-from-line' |
+ 'arrow-from-left' |
+ 'h2' |
+ 'equals' |
+ 'cake-slice' |
+ 'shortcake' |
+ 'peanut' |
+ 'wrench-simple' |
+ 'blender' |
+ 'teeth' |
+ 'tally-2' |
+ 'shekel-sign' |
+ 'ils' |
+ 'shekel' |
+ 'sheqel' |
+ 'sheqel-sign' |
+ 'cars' |
+ 'axe-battle' |
+ 'user-hair-long' |
+ 'map' |
+ 'file-circle-info' |
+ 'face-disappointed' |
+ 'lasso-sparkles' |
+ 'clock-eleven' |
+ 'rocket' |
+ 'siren-on' |
+ 'clock-ten' |
+ 'candle-holder' |
+ 'video-arrow-down-left' |
+ 'photo-film' |
+ 'photo-video' |
+ 'floppy-disk-circle-arrow-right' |
+ 'save-circle-arrow-right' |
+ 'folder-minus' |
+ 'planet-moon' |
+ 'face-eyes-xmarks' |
+ 'chart-scatter' |
+ 'display-arrow-down' |
+ 'store' |
+ 'arrow-trend-up' |
+ 'plug-circle-minus' |
+ 'olive-branch' |
+ 'angle' |
+ 'vacuum-robot' |
+ 'sign-hanging' |
+ 'sign' |
+ 'square-divide' |
+ 'signal-stream-slash' |
+ 'bezier-curve' |
+ 'eye-dropper-half' |
+ 'store-lock' |
+ 'bell-slash' |
+ 'cloud-bolt-sun' |
+ 'thunderstorm-sun' |
+ 'camera-slash' |
+ 'comment-quote' |
+ 'tablet' |
+ 'tablet-android' |
+ 'school-flag' |
+ 'message-code' |
+ 'glass-half' |
+ 'glass-half-empty' |
+ 'glass-half-full' |
+ 'fill' |
+ 'message-minus' |
+ 'comment-alt-minus' |
+ 'angle-up' |
+ 'dinosaur' |
+ 'drumstick-bite' |
+ 'link-horizontal-slash' |
+ 'chain-horizontal-slash' |
+ 'holly-berry' |
+ 'nose' |
+ 'chevron-left' |
+ 'bacteria' |
+ 'clouds' |
+ 'money-bill-simple' |
+ 'hand-lizard' |
+ 'table-pivot' |
+ 'filter-slash' |
+ 'trash-can-undo' |
+ 'trash-can-arrow-turn-left' |
+ 'trash-undo-alt' |
+ 'notdef' |
+ 'disease' |
+ 'person-to-door' |
+ 'turntable' |
+ 'briefcase-medical' |
+ 'genderless' |
+ 'chevron-right' |
+ 'signal-weak' |
+ 'signal1' |
+ 'clock-five' |
+ 'retweet' |
+ 'car-rear' |
+ 'car-alt' |
+ 'pump-soap' |
+ 'computer-classic' |
+ 'frame' |
+ 'video-slash' |
+ 'battery-quarter' |
+ 'battery2' |
+ 'ellipsis-stroke' |
+ 'ellipsis-h-alt' |
+ 'radio' |
+ 'baby-carriage' |
+ 'carriage-baby' |
+ 'face-expressionless' |
+ 'down-to-dotted-line' |
+ 'cloud-music' |
+ 'traffic-light' |
+ 'cloud-minus' |
+ 'thermometer' |
+ 'shield-minus' |
+ 'vr-cardboard' |
+ 'car-tilt' |
+ 'gauge-circle-minus' |
+ 'brightness-low' |
+ 'hand-middle-finger' |
+ 'percent' |
+ 'percentage' |
+ 'truck-moving' |
+ 'glass-water-droplet' |
+ 'conveyor-belt' |
+ 'location-check' |
+ 'map-marker-check' |
+ 'coin-vertical' |
+ 'display' |
+ 'person-sign' |
+ 'face-smile' |
+ 'smile' |
+ 'phone-hangup' |
+ 'signature-slash' |
+ 'thumbtack' |
+ 'thumb-tack' |
+ 'wheat-slash' |
+ 'trophy' |
+ 'clouds-sun' |
+ 'person-praying' |
+ 'pray' |
+ 'hammer' |
+ 'face-vomit' |
+ 'speakers' |
+ 'tty-answer' |
+ 'teletype-answer' |
+ 'mug-tea-saucer' |
+ 'diagram-lean-canvas' |
+ 'alt' |
+ 'dial' |
+ 'dial-med-high' |
+ 'hand-peace' |
+ 'circle-trash' |
+ 'trash-circle' |
+ 'rotate' |
+ 'sync-alt' |
+ 'circle-quarters' |
+ 'spinner' |
+ 'tower-control' |
+ 'arrow-up-triangle-square' |
+ 'sort-shapes-up' |
+ 'whale' |
+ 'robot' |
+ 'peace' |
+ 'party-horn' |
+ 'gears' |
+ 'cogs' |
+ 'sun-bright' |
+ 'sun-alt' |
+ 'warehouse' |
+ 'conveyor-belt-arm' |
+ 'lock-keyhole-open' |
+ 'lock-open-alt' |
+ 'square-fragile' |
+ 'box-fragile' |
+ 'square-wine-glass-crack' |
+ 'arrow-up-right-dots' |
+ 'square-n' |
+ 'splotch' |
+ 'face-grin-hearts' |
+ 'grin-hearts' |
+ 'meter' |
+ 'mandolin' |
+ 'dice-four' |
+ 'sim-card' |
+ 'transgender' |
+ 'transgender-alt' |
+ 'mercury' |
+ 'up-from-bracket' |
+ 'knife-kitchen' |
+ 'border-right' |
+ 'arrow-turn-down' |
+ 'level-down' |
+ 'spade' |
+ 'card-spade' |
+ 'line-columns' |
+ 'arrow-right-to-line' |
+ 'arrow-to-right' |
+ 'person-falling-burst' |
+ 'flag-pennant' |
+ 'pennant' |
+ 'conveyor-belt-empty' |
+ 'user-group-simple' |
+ 'award' |
+ 'ticket-simple' |
+ 'ticket-alt' |
+ 'building' |
+ 'angles-left' |
+ 'angle-double-left' |
+ 'camcorder' |
+ 'video-handheld' |
+ 'pancakes' |
+ 'album-circle-user' |
+ 'qrcode' |
+ 'dice-d10' |
+ 'fireplace' |
+ 'browser' |
+ 'pen-paintbrush' |
+ 'pencil-paintbrush' |
+ 'fish-cooked' |
+ 'chair-office' |
+ 'nesting-dolls' |
+ 'clock-rotate-left' |
+ 'history' |
+ 'trumpet' |
+ 'face-grin-beam-sweat' |
+ 'grin-beam-sweat' |
+ 'fire-smoke' |
+ 'phone-missed' |
+ 'file-export' |
+ 'arrow-right-from-file' |
+ 'shield' |
+ 'shield-blank' |
+ 'arrow-up-short-wide' |
+ 'sort-amount-up-alt' |
+ 'arrows-repeat-1' |
+ 'repeat1-alt' |
+ 'gun-slash' |
+ 'avocado' |
+ 'binary' |
+ 'glasses-round' |
+ 'glasses-alt' |
+ 'phone-plus' |
+ 'ditto' |
+ 'person-seat' |
+ 'house-medical' |
+ 'golf-ball-tee' |
+ 'golf-ball' |
+ 'circle-chevron-left' |
+ 'chevron-circle-left' |
+ 'house-chimney-window' |
+ 'scythe' |
+ 'pen-nib' |
+ 'ban-parking' |
+ 'parking-circle-slash' |
+ 'tent-arrow-turn-left' |
+ 'face-diagonal-mouth' |
+ 'diagram-cells' |
+ 'cricket-bat-ball' |
+ 'cricket' |
+ 'tents' |
+ 'wand-magic' |
+ 'magic' |
+ 'dog' |
+ 'pen-line' |
+ 'atom-simple' |
+ 'atom-alt' |
+ 'ampersand' |
+ 'carrot' |
+ 'arrow-up-from-line' |
+ 'arrow-from-bottom' |
+ 'moon' |
+ 'pen-slash' |
+ 'wine-glass-empty' |
+ 'wine-glass-alt' |
+ 'square-star' |
+ 'cheese' |
+ 'send-backward' |
+ 'yin-yang' |
+ 'music' |
+ 'compass-slash' |
+ 'clock-one' |
+ 'file-music' |
+ 'code-commit' |
+ 'temperature-low' |
+ 'person-biking' |
+ 'biking' |
+ 'display-chart-up-circle-currency' |
+ 'skeleton' |
+ 'circle-g' |
+ 'circle-arrow-up-left' |
+ 'coin-blank' |
+ 'broom' |
+ 'vacuum' |
+ 'shield-heart' |
+ 'card-heart' |
+ 'lightbulb-cfl-on' |
+ 'melon' |
+ 'gopuram' |
+ 'earth-oceania' |
+ 'globe-oceania' |
+ 'container-storage' |
+ 'face-pouting' |
+ 'square-xmark' |
+ 'times-square' |
+ 'xmark-square' |
+ 'face-explode' |
+ 'exploding-head' |
+ 'hashtag' |
+ 'up-right-and-down-left-from-center' |
+ 'expand-alt' |
+ 'oil-can' |
+ 't' |
+ 'transformer-bolt' |
+ 'hippo' |
+ 'chart-column' |
+ 'cassette-vhs' |
+ 'vhs' |
+ 'infinity' |
+ 'vial-circle-check' |
+ 'chimney' |
+ 'object-intersect' |
+ 'person-arrow-down-to-line' |
+ 'voicemail' |
+ 'block-brick' |
+ 'wall-brick' |
+ 'fan' |
+ 'bags-shopping' |
+ 'paragraph-left' |
+ 'paragraph-rtl' |
+ 'person-walking-luggage' |
+ 'caravan-simple' |
+ 'caravan-alt' |
+ 'turtle' |
+ 'pencil-mechanical' |
+ 'up-down' |
+ 'arrows-alt-v' |
+ 'cloud-moon-rain' |
+ 'booth-curtain' |
+ 'calendar' |
+ 'box-heart' |
+ 'trailer' |
+ 'user-doctor-message' |
+ 'user-md-chat' |
+ 'bahai' |
+ 'haykal' |
+ 'amp-guitar' |
+ 'sd-card' |
+ 'volume-slash' |
+ 'border-bottom' |
+ 'wifi-weak' |
+ 'wifi1' |
+ 'dragon' |
+ 'shoe-prints' |
+ 'circle-plus' |
+ 'plus-circle' |
+ 'face-grin-tongue-wink' |
+ 'grin-tongue-wink' |
+ 'hand-holding' |
+ 'plug-circle-exclamation' |
+ 'link-slash' |
+ 'chain-broken' |
+ 'chain-slash' |
+ 'unlink' |
+ 'clone' |
+ 'person-walking-arrow-loop-left' |
+ 'arrow-up-z-a' |
+ 'sort-alpha-up-alt' |
+ 'fire-flame-curved' |
+ 'fire-alt' |
+ 'tornado' |
+ 'file-circle-plus' |
+ 'delete-right' |
+ 'book-quran' |
+ 'quran' |
+ 'circle-quarter' |
+ 'anchor' |
+ 'border-all' |
+ 'function' |
+ 'face-angry' |
+ 'angry' |
+ 'people-simple' |
+ 'cookie-bite' |
+ 'arrow-trend-down' |
+ 'rss' |
+ 'feed' |
+ 'face-monocle' |
+ 'draw-polygon' |
+ 'scale-balanced' |
+ 'balance-scale' |
+ 'calendar-lines' |
+ 'calendar-note' |
+ 'arrow-down-big-small' |
+ 'sort-size-down' |
+ 'gauge-simple-high' |
+ 'tachometer' |
+ 'tachometer-fast' |
+ 'do-not-enter' |
+ 'shower' |
+ 'dice-d8' |
+ 'desktop' |
+ 'desktop-alt' |
+ 'm' |
+ 'grip-dots-vertical' |
+ 'face-viewfinder' |
+ 'soft-serve' |
+ 'creemee' |
+ 'h5' |
+ 'hand-back-point-down' |
+ 'table-list' |
+ 'th-list' |
+ 'comment-sms' |
+ 'sms' |
+ 'rectangle' |
+ 'rectangle-landscape' |
+ 'clipboard-list-check' |
+ 'turkey' |
+ 'book' |
+ 'user-plus' |
+ 'ice-skate' |
+ 'check' |
+ 'battery-three-quarters' |
+ 'battery4' |
+ 'tomato' |
+ 'sword-laser' |
+ 'house-circle-check' |
+ 'buildings' |
+ 'angle-left' |
+ 'cart-flatbed-boxes' |
+ 'dolly-flatbed-alt' |
+ 'diagram-successor' |
+ 'truck-arrow-right' |
+ 'square-w' |
+ 'arrows-split-up-and-left' |
+ 'lamp' |
+ 'airplay' |
+ 'hand-fist' |
+ 'fist-raised' |
+ 'shield-quartered' |
+ 'slash-forward' |
+ 'location-pen' |
+ 'map-marker-edit' |
+ 'cloud-moon' |
+ 'pot-food' |
+ 'briefcase' |
+ 'person-falling' |
+ 'image-portrait' |
+ 'portrait' |
+ 'user-tag' |
+ 'rug' |
+ 'print-slash' |
+ 'earth-europe' |
+ 'globe-europe' |
+ 'cart-flatbed-suitcase' |
+ 'luggage-cart' |
+ 'hand-back-point-ribbon' |
+ 'rectangle-xmark' |
+ 'rectangle-times' |
+ 'times-rectangle' |
+ 'window-close' |
+ 'tire-rugged' |
+ 'lightbulb-dollar' |
+ 'cowbell' |
+ 'baht-sign' |
+ 'corner' |
+ 'chevrons-right' |
+ 'chevron-double-right' |
+ 'book-open' |
+ 'book-journal-whills' |
+ 'journal-whills' |
+ 'inhaler' |
+ 'handcuffs' |
+ 'snake' |
+ 'triangle-exclamation' |
+ 'exclamation-triangle' |
+ 'warning' |
+ 'note-medical' |
+ 'database' |
+ 'down-left' |
+ 'share' |
+ 'arrow-turn-right' |
+ 'mail-forward' |
+ 'face-thinking' |
+ 'turn-down-right' |
+ 'bottle-droplet' |
+ 'mask-face' |
+ 'hill-rockslide' |
+ 'scanner-keyboard' |
+ 'circle-o' |
+ 'grid-horizontal' |
+ 'message-dollar' |
+ 'comment-alt-dollar' |
+ 'right-left' |
+ 'exchange-alt' |
+ 'columns-3' |
+ 'paper-plane' |
+ 'road-circle-exclamation' |
+ 'dungeon' |
+ 'hand-holding-box' |
+ 'input-text' |
+ 'window-flip' |
+ 'window-alt' |
+ 'align-right' |
+ 'scanner-gun' |
+ 'scanner' |
+ 'tire' |
+ 'engine' |
+ 'money-bill-1-wave' |
+ 'money-bill-wave-alt' |
+ 'life-ring' |
+ 'hands' |
+ 'sign-language' |
+ 'signing' |
+ 'circle-caret-right' |
+ 'caret-circle-right' |
+ 'wheat' |
+ 'file-spreadsheet' |
+ 'audio-description-slash' |
+ 'calendar-day' |
+ 'water-ladder' |
+ 'ladder-water' |
+ 'swimming-pool' |
+ 'arrows-up-down' |
+ 'arrows-v' |
+ 'chess-pawn-piece' |
+ 'chess-pawn-alt' |
+ 'face-grimace' |
+ 'grimace' |
+ 'wheelchair-move' |
+ 'wheelchair-alt' |
+ 'turn-down' |
+ 'level-down-alt' |
+ 'square-s' |
+ 'rectangle-barcode' |
+ 'barcode-alt' |
+ 'person-walking-arrow-right' |
+ 'square-envelope' |
+ 'envelope-square' |
+ 'dice' |
+ 'unicorn' |
+ 'bowling-ball' |
+ 'pompebled' |
+ 'brain' |
+ 'watch-smart' |
+ 'book-user' |
+ 'sensor-cloud' |
+ 'sensor-smoke' |
+ 'clapperboard-play' |
+ 'bandage' |
+ 'band-aid' |
+ 'calendar-minus' |
+ 'circle-xmark' |
+ 'times-circle' |
+ 'xmark-circle' |
+ 'circle-4' |
+ 'gifts' |
+ 'album-collection' |
+ 'hotel' |
+ 'earth-asia' |
+ 'globe-asia' |
+ 'id-card-clip' |
+ 'id-card-alt' |
+ 'magnifying-glass-plus' |
+ 'search-plus' |
+ 'thumbs-up' |
+ 'cloud-showers' |
+ 'user-clock' |
+ 'onion' |
+ 'clock-twelve-thirty' |
+ 'arrow-down-to-dotted-line' |
+ 'hand-dots' |
+ 'allergies' |
+ 'file-invoice' |
+ 'window-minimize' |
+ 'rectangle-wide' |
+ 'comment-arrow-up' |
+ 'garlic' |
+ 'mug-saucer' |
+ 'coffee' |
+ 'brush' |
+ 'tree-decorated' |
+ 'mask' |
+ 'calendar-heart' |
+ 'magnifying-glass-minus' |
+ 'search-minus' |
+ 'flower' |
+ 'right-left-large' |
+ 'ruler-vertical' |
+ 'circles-overlap' |
+ 'user-large' |
+ 'user-alt' |
+ 'starship-freighter' |
+ 'train-tram' |
+ 'bridge-suspension' |
+ 'trash-check' |
+ 'user-nurse' |
+ 'boombox' |
+ 'syringe' |
+ 'cloud-sun' |
+ 'shield-exclamation' |
+ 'stopwatch-20' |
+ 'square-full' |
+ 'grip-dots' |
+ 'comment-exclamation' |
+ 'pen-swirl' |
+ 'falafel' |
+ 'circle-2' |
+ 'magnet' |
+ 'jar' |
+ 'gramophone' |
+ 'dice-d12' |
+ 'note-sticky' |
+ 'sticky-note' |
+ 'down' |
+ 'arrow-alt-down' |
+ 'hundred-points' |
+ '100' |
+ 'paperclip-vertical' |
+ 'wind-warning' |
+ 'wind-circle-exclamation' |
+ 'location-pin-slash' |
+ 'map-marker-slash' |
+ 'face-sad-sweat' |
+ 'bug-slash' |
+ 'cupcake' |
+ 'light-switch-off' |
+ 'toggle-large-off' |
+ 'pen-fancy-slash' |
+ 'truck-container' |
+ 'boot' |
+ 'arrow-up-from-water-pump' |
+ 'file-check' |
+ 'bone' |
+ 'cards-blank' |
+ 'circle-3' |
+ 'bench-tree' |
+ 'keyboard-brightness-low' |
+ 'ski-boot-ski' |
+ 'brain-circuit' |
+ 'user-injured' |
+ 'block-brick-fire' |
+ 'firewall' |
+ 'face-sad-tear' |
+ 'sad-tear' |
+ 'plane' |
+ 'tent-arrows-down' |
+ 'exclamation' |
+ 'arrows-spin' |
+ 'face-smile-relaxed' |
+ 'comment-xmark' |
+ 'comment-times' |
+ 'print' |
+ 'turkish-lira-sign' |
+ 'try' |
+ 'turkish-lira' |
+ 'face-nose-steam' |
+ 'circle-waveform-lines' |
+ 'waveform-circle' |
+ 'dollar-sign' |
+ 'dollar' |
+ 'usd' |
+ 'ferris-wheel' |
+ 'computer-speaker' |
+ 'skull-cow' |
+ 'x' |
+ 'magnifying-glass-dollar' |
+ 'search-dollar' |
+ 'users-gear' |
+ 'users-cog' |
+ 'person-military-pointing' |
+ 'building-columns' |
+ 'bank' |
+ 'institution' |
+ 'museum' |
+ 'university' |
+ 'circle-t' |
+ 'sack' |
+ 'grid-2' |
+ 'camera-cctv' |
+ 'cctv' |
+ 'umbrella' |
+ 'trowel' |
+ 'horizontal-rule' |
+ 'bed-front' |
+ 'bed-alt' |
+ 'd' |
+ 'stapler' |
+ 'masks-theater' |
+ 'theater-masks' |
+ 'kip-sign' |
+ 'face-woozy' |
+ 'cloud-question' |
+ 'pineapple' |
+ 'hand-point-left' |
+ 'gallery-thumbnails' |
+ 'circle-j' |
+ 'eyes' |
+ 'handshake-simple' |
+ 'handshake-alt' |
+ 'page-caret-up' |
+ 'file-caret-up' |
+ 'jet-fighter' |
+ 'fighter-jet' |
+ 'comet' |
+ 'square-share-nodes' |
+ 'share-alt-square' |
+ 'shield-keyhole' |
+ 'barcode' |
+ 'plus-minus' |
+ 'square-sliders-vertical' |
+ 'sliders-v-square' |
+ 'video' |
+ 'video-camera' |
+ 'message-middle' |
+ 'comment-middle-alt' |
+ 'graduation-cap' |
+ 'mortar-board' |
+ 'hand-holding-medical' |
+ 'person-circle-check' |
+ 'square-z' |
+ 'message-text' |
+ 'comment-alt-text' |
+ 'turn-up' |
+ 'level-up-alt' |
+ '0' |
+ '1' |
+ '2' |
+ '3' |
+ '4' |
+ '5' |
+ '6' |
+ '7' |
+ '8' |
+ '9' |
+ 'fill-drip' |
+ 'arrows-to-circle' |
+ 'circle-chevron-right' |
+ 'chevron-circle-right' |
+ 'wagon-covered' |
+ 'line-height' |
+ 'bagel' |
+ 'transporter-7' |
+ 'at' |
+ 'rectangles-mixed' |
+ 'phone-arrow-up-right' |
+ 'phone-arrow-up' |
+ 'phone-outgoing' |
+ 'trash-can' |
+ 'trash-alt' |
+ 'circle-l' |
+ 'head-side-goggles' |
+ 'head-vr' |
+ 'text-height' |
+ 'user-xmark' |
+ 'user-times' |
+ 'face-hand-yawn' |
+ 'gauge-simple-min' |
+ 'tachometer-slowest' |
+ 'stethoscope' |
+ 'coffin' |
+ 'message' |
+ 'comment-alt' |
+ 'salad' |
+ 'bowl-salad' |
+ 'info' |
+ 'robot-astromech' |
+ 'ring-diamond' |
+ 'fondue-pot' |
+ 'theta' |
+ 'face-hand-peeking' |
+ 'square-user' |
+ 'down-left-and-up-right-to-center' |
+ 'compress-alt' |
+ 'explosion' |
+ 'file-lines' |
+ 'file-alt' |
+ 'file-text' |
+ 'wave-square' |
+ 'ring' |
+ 'building-un' |
+ 'dice-three' |
+ 'tire-pressure-warning' |
+ 'wifi-fair' |
+ 'wifi2' |
+ 'calendar-days' |
+ 'calendar-alt' |
+ 'mp3-player' |
+ 'anchor-circle-check' |
+ 'tally-4' |
+ 'rectangle-history' |
+ 'building-circle-arrow-right' |
+ 'volleyball' |
+ 'volleyball-ball' |
+ 'sun-haze' |
+ 'text-size' |
+ 'ufo' |
+ 'fork' |
+ 'utensil-fork' |
+ 'arrows-up-to-line' |
+ 'mobile-signal' |
+ 'barcode-scan' |
+ 'sort-down' |
+ 'sort-desc' |
+ 'folder-arrow-down' |
+ 'folder-download' |
+ 'circle-minus' |
+ 'minus-circle' |
+ 'face-icicles' |
+ 'shovel' |
+ 'door-open' |
+ 'films' |
+ 'right-from-bracket' |
+ 'sign-out-alt' |
+ 'face-glasses' |
+ 'nfc' |
+ 'atom' |
+ 'soap' |
+ 'icons' |
+ 'heart-music-camera-bolt' |
+ 'microphone-lines-slash' |
+ 'microphone-alt-slash' |
+ 'closed-captioning-slash' |
+ 'calculator-simple' |
+ 'calculator-alt' |
+ 'bridge-circle-check' |
+ 'sliders-up' |
+ 'sliders-v' |
+ 'location-minus' |
+ 'map-marker-minus' |
+ 'pump-medical' |
+ 'fingerprint' |
+ 'ski-boot' |
+ 'standard-definition' |
+ 'rectangle-sd' |
+ 'h1' |
+ 'hand-point-right' |
+ 'magnifying-glass-location' |
+ 'search-location' |
+ 'message-bot' |
+ 'forward-step' |
+ 'step-forward' |
+ 'face-smile-beam' |
+ 'smile-beam' |
+ 'light-ceiling' |
+ 'message-exclamation' |
+ 'comment-alt-exclamation' |
+ 'bowl-scoop' |
+ 'bowl-shaved-ice' |
+ 'square-x' |
+ 'utility-pole-double' |
+ 'flag-checkered' |
+ 'chevrons-up' |
+ 'chevron-double-up' |
+ 'football' |
+ 'football-ball' |
+ 'user-vneck' |
+ 'school-circle-exclamation' |
+ 'crop' |
+ 'angles-down' |
+ 'angle-double-down' |
+ 'users-rectangle' |
+ 'people-roof' |
+ 'square-arrow-right' |
+ 'arrow-square-right' |
+ 'location-plus' |
+ 'map-marker-plus' |
+ 'lightbulb-exclamation-on' |
+ 'people-line' |
+ 'beer-mug-empty' |
+ 'beer' |
+ 'crate-empty' |
+ 'diagram-predecessor' |
+ 'transporter' |
+ 'calendar-circle-user' |
+ 'arrow-up-long' |
+ 'long-arrow-up' |
+ 'person-carry-box' |
+ 'person-carry' |
+ 'fire-flame-simple' |
+ 'burn' |
+ 'person' |
+ 'male' |
+ 'laptop' |
+ 'file-csv' |
+ 'menorah' |
+ 'union' |
+ 'chevrons-left' |
+ 'chevron-double-left' |
+ 'circle-heart' |
+ 'heart-circle' |
+ 'truck-plane' |
+ 'record-vinyl' |
+ 'bring-forward' |
+ 'square-p' |
+ 'face-grin-stars' |
+ 'grin-stars' |
+ 'sigma' |
+ 'camera-movie' |
+ 'bong' |
+ 'clarinet' |
+ 'truck-flatbed' |
+ 'spaghetti-monster-flying' |
+ 'pastafarianism' |
+ 'arrow-down-up-across-line' |
+ 'leaf-heart' |
+ 'house-building' |
+ 'cheese-swiss' |
+ 'spoon' |
+ 'utensil-spoon' |
+ 'jar-wheat' |
+ 'envelopes-bulk' |
+ 'mail-bulk' |
+ 'file-circle-exclamation' |
+ 'bow-arrow' |
+ 'cart-xmark' |
+ 'hexagon-xmark' |
+ 'times-hexagon' |
+ 'xmark-hexagon' |
+ 'circle-h' |
+ 'hospital-symbol' |
+ 'merge' |
+ 'pager' |
+ 'cart-minus' |
+ 'address-book' |
+ 'contact-book' |
+ 'pan-frying' |
+ 'grid' |
+ 'grid3' |
+ 'football-helmet' |
+ 'hand-love' |
+ 'trees' |
+ 'strikethrough' |
+ 'page' |
+ 'k' |
+ 'diagram-previous' |
+ 'gauge-min' |
+ 'tachometer-alt-slowest' |
+ 'folder-grid' |
+ 'eggplant' |
+ 'ram' |
+ 'landmark-flag' |
+ 'lips' |
+ 'pencil' |
+ 'pencil-alt' |
+ 'backward' |
+ 'caret-right' |
+ 'comments' |
+ 'paste' |
+ 'file-clipboard' |
+ 'desktop-arrow-down' |
+ 'code-pull-request' |
+ 'pumpkin' |
+ 'clipboard-list' |
+ 'pen-field' |
+ 'blueberries' |
+ 'truck-ramp-box' |
+ 'truck-loading' |
+ 'note' |
+ 'arrow-down-to-square' |
+ 'user-check' |
+ 'cloud-xmark' |
+ 'vial-virus' |
+ 'book-blank' |
+ 'book-alt' |
+ 'golf-flag-hole' |
+ 'message-arrow-down' |
+ 'comment-alt-arrow-down' |
+ 'face-unamused' |
+ 'sheet-plastic' |
+ 'circle-9' |
+ 'blog' |
+ 'user-ninja' |
+ 'pencil-slash' |
+ 'bowling-pins' |
+ 'person-arrow-up-from-line' |
+ 'down-right' |
+ 'scroll-torah' |
+ 'torah' |
+ 'webhook' |
+ 'blinds-open' |
+ 'fence' |
+ 'up' |
+ 'arrow-alt-up' |
+ 'broom-ball' |
+ 'quidditch' |
+ 'quidditch-broom-ball' |
+ 'drumstick' |
+ 'square-v' |
+ 'face-awesome' |
+ 'gave-dandy' |
+ 'dial-off' |
+ 'toggle-off' |
+ 'face-smile-horns' |
+ 'box-archive' |
+ 'archive' |
+ 'grapes' |
+ 'person-drowning' |
+ 'dial-max' |
+ 'circle-m' |
+ 'calendar-image' |
+ 'circle-caret-down' |
+ 'caret-circle-down' |
+ 'arrow-down-9-1' |
+ 'sort-numeric-desc' |
+ 'sort-numeric-down-alt' |
+ 'face-grin-tongue-squint' |
+ 'grin-tongue-squint' |
+ 'shish-kebab' |
+ 'spray-can' |
+ 'alarm-snooze' |
+ 'scarecrow' |
+ 'truck-monster' |
+ 'gift-card' |
+ 'w' |
+ 'code-pull-request-draft' |
+ 'square-b' |
+ 'elephant' |
+ 'earth-africa' |
+ 'globe-africa' |
+ 'rainbow' |
+ 'circle-notch' |
+ 'tablet-screen-button' |
+ 'tablet-alt' |
+ 'paw' |
+ 'message-question' |
+ 'cloud' |
+ 'trowel-bricks' |
+ 'square-3' |
+ 'face-flushed' |
+ 'flushed' |
+ 'hospital-user' |
+ 'microwave' |
+ 'chf-sign' |
+ 'tent-arrow-left-right' |
+ 'cart-circle-arrow-up' |
+ 'trash-clock' |
+ 'gavel' |
+ 'legal' |
+ 'sprinkler-ceiling' |
+ 'browsers' |
+ 'trillium' |
+ 'music-slash' |
+ 'truck-ramp' |
+ 'binoculars' |
+ 'microphone-slash' |
+ 'box-tissue' |
+ 'circle-c' |
+ 'star-christmas' |
+ 'chart-bullet' |
+ 'motorcycle' |
+ 'tree-christmas' |
+ 'tire-flat' |
+ 'sunglasses' |
+ 'badge' |
+ 'message-pen' |
+ 'comment-alt-edit' |
+ 'message-edit' |
+ 'bell-concierge' |
+ 'concierge-bell' |
+ 'pen-ruler' |
+ 'pencil-ruler' |
+ 'arrow-progress' |
+ 'chess-rook-piece' |
+ 'chess-rook-alt' |
+ 'square-root' |
+ 'album-collection-circle-plus' |
+ 'people-arrows' |
+ 'people-arrows-left-right' |
+ 'face-angry-horns' |
+ 'mars-and-venus-burst' |
+ 'tombstone' |
+ 'square-caret-right' |
+ 'caret-square-right' |
+ 'scissors' |
+ 'cut' |
+ 'list-music' |
+ 'sun-plant-wilt' |
+ 'toilets-portable' |
+ 'hockey-puck' |
+ 'mustache' |
+ 'hyphen' |
+ 'table' |
+ 'user-chef' |
+ 'message-image' |
+ 'comment-alt-image' |
+ 'users-medical' |
+ 'sensor-triangle-exclamation' |
+ 'sensor-alert' |
+ 'magnifying-glass-arrow-right' |
+ 'tachograph-digital' |
+ 'digital-tachograph' |
+ 'face-mask' |
+ 'pickleball' |
+ 'star-sharp-half' |
+ 'users-slash' |
+ 'clover' |
+ 'meat' |
+ 'reply' |
+ 'mail-reply' |
+ 'star-and-crescent' |
+ 'empty-set' |
+ 'house-fire' |
+ 'square-minus' |
+ 'minus-square' |
+ 'helicopter' |
+ 'bird' |
+ 'compass' |
+ 'square-caret-down' |
+ 'caret-square-down' |
+ 'heart-half-stroke' |
+ 'heart-half-alt' |
+ 'file-circle-question' |
+ 'laptop-code' |
+ 'joystick' |
+ 'grill-fire' |
+ 'rectangle-vertical-history' |
+ 'swatchbook' |
+ 'prescription-bottle' |
+ 'bars' |
+ 'navicon' |
+ 'keyboard-left' |
+ 'people-group' |
+ 'hourglass-end' |
+ 'hourglass3' |
+ 'heart-crack' |
+ 'heart-broken' |
+ 'face-beam-hand-over-mouth' |
+ 'droplet-percent' |
+ 'humidity' |
+ 'square-up-right' |
+ 'external-link-square-alt' |
+ 'face-kiss-beam' |
+ 'kiss-beam' |
+ 'corn' |
+ 'roller-coaster' |
+ 'photo-film-music' |
+ 'radar' |
+ 'sickle' |
+ 'film' |
+ 'coconut' |
+ 'ruler-horizontal' |
+ 'shield-cross' |
+ 'cassette-tape' |
+ 'square-terminal' |
+ 'people-robbery' |
+ 'lightbulb' |
+ 'caret-left' |
+ 'comment-middle' |
+ 'trash-can-list' |
+ 'block' |
+ 'circle-exclamation' |
+ 'exclamation-circle' |
+ 'school-circle-xmark' |
+ 'arrow-right-from-bracket' |
+ 'sign-out' |
+ 'face-frown-slight' |
+ 'circle-chevron-down' |
+ 'chevron-circle-down' |
+ 'sidebar-flip' |
+ 'unlock-keyhole' |
+ 'unlock-alt' |
+ 'temperature-list' |
+ 'cloud-showers-heavy' |
+ 'headphones-simple' |
+ 'headphones-alt' |
+ 'sitemap' |
+ 'pipe-section' |
+ 'space-station-moon-construction' |
+ 'space-station-moon-alt' |
+ 'circle-dollar-to-slot' |
+ 'donate' |
+ 'memory' |
+ 'face-sleeping' |
+ 'road-spikes' |
+ 'fire-burner' |
+ 'squirrel' |
+ 'arrow-up-to-line' |
+ 'arrow-to-top' |
+ 'flag' |
+ 'face-cowboy-hat' |
+ 'hanukiah' |
+ 'chart-scatter-3d' |
+ 'display-chart-up' |
+ 'square-code' |
+ 'feather' |
+ 'volume-low' |
+ 'volume-down' |
+ 'xmark-to-slot' |
+ 'times-to-slot' |
+ 'vote-nay' |
+ 'box-taped' |
+ 'box-alt' |
+ 'comment-slash' |
+ 'swords' |
+ 'cloud-sun-rain' |
+ 'album' |
+ 'circle-n' |
+ 'compress' |
+ 'wheat-awn' |
+ 'wheat-alt' |
+ 'ankh' |
+ 'hands-holding-child' |
+ 'asterisk' |
+ 'key-skeleton-left-right' |
+ 'comment-lines' |
+ 'luchador-mask' |
+ 'luchador' |
+ 'mask-luchador' |
+ 'square-check' |
+ 'check-square' |
+ 'shredder' |
+ 'book-open-cover' |
+ 'book-open-alt' |
+ 'sandwich' |
+ 'peseta-sign' |
+ 'square-parking-slash' |
+ 'parking-slash' |
+ 'train-tunnel' |
+ 'heading' |
+ 'header' |
+ 'ghost' |
+ 'face-anguished' |
+ 'hockey-sticks' |
+ 'abacus' |
+ 'film-simple' |
+ 'film-alt' |
+ 'list' |
+ 'list-squares' |
+ 'tree-palm' |
+ 'square-phone-flip' |
+ 'phone-square-alt' |
+ 'cart-plus' |
+ 'gamepad' |
+ 'border-center-v' |
+ 'circle-dot' |
+ 'dot-circle' |
+ 'clipboard-medical' |
+ 'face-dizzy' |
+ 'dizzy' |
+ 'egg' |
+ 'up-to-line' |
+ 'arrow-alt-to-top' |
+ 'house-medical-circle-xmark' |
+ 'watch-fitness' |
+ 'clock-nine-thirty' |
+ 'campground' |
+ 'folder-plus' |
+ 'jug' |
+ 'futbol' |
+ 'futbol-ball' |
+ 'soccer-ball' |
+ 'snow-blowing' |
+ 'paintbrush' |
+ 'paint-brush' |
+ 'lock' |
+ 'arrow-down-from-line' |
+ 'arrow-from-top' |
+ 'gas-pump' |
+ 'signal-bars-slash' |
+ 'signal-alt-slash' |
+ 'monkey' |
+ 'rectangle-pro' |
+ 'pro' |
+ 'house-night' |
+ 'hot-tub-person' |
+ 'hot-tub' |
+ 'blanket' |
+ 'map-location' |
+ 'map-marked' |
+ 'house-flood-water' |
+ 'comments-question-check' |
+ 'tree' |
+ 'arrows-cross' |
+ 'backpack' |
+ 'square-small' |
+ 'folder-arrow-up' |
+ 'folder-upload' |
+ 'bridge-lock' |
+ 'crosshairs-simple' |
+ 'sack-dollar' |
+ 'pen-to-square' |
+ 'edit' |
+ 'square-sliders' |
+ 'sliders-h-square' |
+ 'car-side' |
+ 'message-middle-top' |
+ 'comment-middle-top-alt' |
+ 'lightbulb-on' |
+ 'knife' |
+ 'utensil-knife' |
+ 'share-nodes' |
+ 'share-alt' |
+ 'display-chart-up-circle-dollar' |
+ 'wave-sine' |
+ 'heart-circle-minus' |
+ 'circle-w' |
+ 'circle-calendar' |
+ 'calendar-circle' |
+ 'hourglass-half' |
+ 'hourglass2' |
+ 'microscope' |
+ 'sunset' |
+ 'sink' |
+ 'calendar-exclamation' |
+ 'truck-container-empty' |
+ 'hand-heart' |
+ 'bag-shopping' |
+ 'shopping-bag' |
+ 'arrow-down-z-a' |
+ 'sort-alpha-desc' |
+ 'sort-alpha-down-alt' |
+ 'mitten' |
+ 'reply-clock' |
+ 'reply-time' |
+ 'person-rays' |
+ 'right' |
+ 'arrow-alt-right' |
+ 'circle-f' |
+ 'users' |
+ 'face-pleading' |
+ 'eye-slash' |
+ 'flask-vial' |
+ 'police-box' |
+ 'cucumber' |
+ 'head-side-brain' |
+ 'hand' |
+ 'hand-paper' |
+ 'person-biking-mountain' |
+ 'biking-mountain' |
+ 'utensils-slash' |
+ 'print-magnifying-glass' |
+ 'print-search' |
+ 'folder-bookmark' |
+ 'om' |
+ 'pi' |
+ 'flask-round-potion' |
+ 'flask-potion' |
+ 'face-shush' |
+ 'worm' |
+ 'house-circle-xmark' |
+ 'plug' |
+ 'calendar-circle-exclamation' |
+ 'square-i' |
+ 'chevron-up' |
+ 'face-saluting' |
+ 'gauge-simple-low' |
+ 'tachometer-slow' |
+ 'face-persevering' |
+ 'circle-camera' |
+ 'camera-circle' |
+ 'hand-spock' |
+ 'spider-web' |
+ 'circle-microphone' |
+ 'microphone-circle' |
+ 'book-arrow-up' |
+ 'popsicle' |
+ 'command' |
+ 'blinds' |
+ 'stopwatch' |
+ 'saxophone' |
+ 'square-2' |
+ 'field-hockey-stick-ball' |
+ 'field-hockey' |
+ 'arrow-up-square-triangle' |
+ 'sort-shapes-up-alt' |
+ 'face-scream' |
+ 'square-m' |
+ 'camera-web' |
+ 'webcam' |
+ 'comment-arrow-down' |
+ 'lightbulb-cfl' |
+ 'window-frame-open' |
+ 'face-kiss' |
+ 'kiss' |
+ 'bridge-circle-xmark' |
+ 'period' |
+ 'face-grin-tongue' |
+ 'grin-tongue' |
+ 'up-to-dotted-line' |
+ 'thought-bubble' |
+ 'skeleton-ribs' |
+ 'raygun' |
+ 'flute' |
+ 'acorn' |
+ 'video-arrow-up-right' |
+ 'grate-droplet' |
+ 'seal-exclamation' |
+ 'chess-bishop' |
+ 'message-sms' |
+ 'coffee-beans' |
+ 'hat-witch' |
+ 'face-grin-wink' |
+ 'grin-wink' |
+ 'clock-three-thirty' |
+ 'ear-deaf' |
+ 'deaf' |
+ 'deafness' |
+ 'hard-of-hearing' |
+ 'alarm-clock' |
+ 'eclipse' |
+ 'face-relieved' |
+ 'road-circle-check' |
+ 'dice-five' |
+ 'octagon-minus' |
+ 'minus-octagon' |
+ 'square-rss' |
+ 'rss-square' |
+ 'face-zany' |
+ 'tricycle' |
+ 'land-mine-on' |
+ 'square-arrow-up-left' |
+ 'i-cursor' |
+ 'chart-mixed-up-circle-dollar' |
+ 'salt-shaker' |
+ 'stamp' |
+ 'file-plus' |
+ 'draw-square' |
+ 'toilet-paper-under-slash' |
+ 'toilet-paper-reverse-slash' |
+ 'stairs' |
+ 'drone-front' |
+ 'drone-alt' |
+ 'glass-empty' |
+ 'dial-high' |
+ 'user-helmet-safety' |
+ 'user-construction' |
+ 'user-hard-hat' |
+ 'i' |
+ 'hryvnia-sign' |
+ 'hryvnia' |
+ 'arrow-down-left-and-arrow-up-right-to-center' |
+ 'pills' |
+ 'face-grin-wide' |
+ 'grin-alt' |
+ 'tooth' |
+ 'basketball-hoop' |
+ 'objects-align-bottom' |
+ 'v' |
+ 'sparkles' |
+ 'squid' |
+ 'leafy-green' |
+ 'circle-arrow-up-right' |
+ 'calendars' |
+ 'bangladeshi-taka-sign' |
+ 'bicycle' |
+ 'hammer-war' |
+ 'circle-d' |
+ 'spider-black-widow' |
+ 'staff-snake' |
+ 'rod-asclepius' |
+ 'rod-snake' |
+ 'staff-aesculapius' |
+ 'pear' |
+ 'head-side-cough-slash' |
+ 'triangle' |
+ 'apartment' |
+ 'truck-medical' |
+ 'ambulance' |
+ 'pepper' |
+ 'piano' |
+ 'gun-squirt' |
+ 'wheat-awn-circle-exclamation' |
+ 'snowman' |
+ 'user-alien' |
+ 'shield-check' |
+ 'mortar-pestle' |
+ 'road-barrier' |
+ 'chart-candlestick' |
+ 'briefcase-blank' |
+ 'school' |
+ 'igloo' |
+ 'bracket-round' |
+ 'parenthesis' |
+ 'joint' |
+ 'horse-saddle' |
+ 'mug-marshmallows' |
+ 'filters' |
+ 'bell-on' |
+ 'angle-right' |
+ 'dial-med' |
+ 'horse' |
+ 'q' |
+ 'monitor-waveform' |
+ 'monitor-heart-rate' |
+ 'link-simple' |
+ 'whistle' |
+ 'g' |
+ 'wine-glass-crack' |
+ 'fragile' |
+ 'slot-machine' |
+ 'notes-medical' |
+ 'car-wash' |
+ 'escalator' |
+ 'comment-image' |
+ 'temperature-half' |
+ 'temperature2' |
+ 'thermometer2' |
+ 'thermometer-half' |
+ 'dong-sign' |
+ 'donut' |
+ 'doughnut' |
+ 'capsules' |
+ 'poo-storm' |
+ 'poo-bolt' |
+ 'tally-1' |
+ 'face-frown-open' |
+ 'frown-open' |
+ 'square-dashed' |
+ 'square-j' |
+ 'hand-point-up' |
+ 'money-bill' |
+ 'arrow-up-big-small' |
+ 'sort-size-up' |
+ 'barcode-read' |
+ 'baguette' |
+ 'bowl-soft-serve' |
+ 'face-holding-back-tears' |
+ 'square-up' |
+ 'arrow-alt-square-up' |
+ 'train-subway-tunnel' |
+ 'subway-tunnel' |
+ 'square-exclamation' |
+ 'exclamation-square' |
+ 'semicolon' |
+ 'bookmark' |
+ 'fan-table' |
+ 'align-justify' |
+ 'battery-low' |
+ 'battery1' |
+ 'credit-card-front' |
+ 'brain-arrow-curved-right' |
+ 'mind-share' |
+ 'umbrella-beach' |
+ 'helmet-un' |
+ 'location-smile' |
+ 'map-marker-smile' |
+ 'arrow-left-to-line' |
+ 'arrow-to-left' |
+ 'bullseye' |
+ 'sushi' |
+ 'nigiri' |
+ 'message-captions' |
+ 'comment-alt-captions' |
+ 'trash-list' |
+ 'bacon' |
+ 'option' |
+ 'hand-point-down' |
+ 'arrow-up-from-bracket' |
+ 'trash-plus' |
+ 'objects-align-top' |
+ 'folder' |
+ 'folder-blank' |
+ 'face-anxious-sweat' |
+ 'credit-card-blank' |
+ 'file-waveform' |
+ 'file-medical-alt' |
+ 'microchip-ai' |
+ 'mug' |
+ 'plane-up-slash' |
+ 'radiation' |
+ 'pen-circle' |
+ 'bag-seedling' |
+ 'chart-simple' |
+ 'crutches' |
+ 'circle-parking' |
+ 'parking-circle' |
+ 'mars-stroke' |
+ 'leaf-oak' |
+ 'square-bolt' |
+ 'vial' |
+ 'gauge' |
+ 'dashboard' |
+ 'gauge-med' |
+ 'tachometer-alt-average' |
+ 'wand-magic-sparkles' |
+ 'magic-wand-sparkles' |
+ 'lambda' |
+ 'e' |
+ 'pizza' |
+ 'bowl-chopsticks-noodles' |
+ 'h3' |
+ 'pen-clip' |
+ 'pen-alt' |
+ 'bridge-circle-exclamation' |
+ 'badge-percent' |
+ 'user' |
+ 'sensor' |
+ 'comma' |
+ 'school-circle-check' |
+ 'toilet-paper-under' |
+ 'toilet-paper-reverse' |
+ 'light-emergency' |
+ 'arrow-down-to-arc' |
+ 'dumpster' |
+ 'van-shuttle' |
+ 'shuttle-van' |
+ 'building-user' |
+ 'light-switch' |
+ 'square-caret-left' |
+ 'caret-square-left' |
+ 'highlighter' |
+ 'wave-pulse' |
+ 'heart-rate' |
+ 'key' |
+ 'hat-santa' |
+ 'tamale' |
+ 'box-check' |
+ 'bullhorn' |
+ 'steak' |
+ 'location-crosshairs-slash' |
+ 'location-slash' |
+ 'person-dolly' |
+ 'globe' |
+ 'synagogue' |
+ 'file-chart-column' |
+ 'file-chart-line' |
+ 'person-half-dress' |
+ 'folder-image' |
+ 'calendar-pen' |
+ 'calendar-edit' |
+ 'road-bridge' |
+ 'face-smile-tear' |
+ 'message-plus' |
+ 'comment-alt-plus' |
+ 'location-arrow' |
+ 'c' |
+ 'tablet-button' |
+ 'rectangle-history-circle-user' |
+ 'building-lock' |
+ 'chart-line-up' |
+ 'mailbox' |
+ 'truck-bolt' |
+ 'pizza-slice' |
+ 'money-bill-wave' |
+ 'chart-area' |
+ 'area-chart' |
+ 'house-flag' |
+ 'circle-three-quarters-stroke' |
+ 'person-circle-minus' |
+ 'scalpel' |
+ 'ban' |
+ 'cancel' |
+ 'bell-exclamation' |
+ 'circle-bookmark' |
+ 'bookmark-circle' |
+ 'egg-fried' |
+ 'face-weary' |
+ 'uniform-martial-arts' |
+ 'camera-rotate' |
+ 'sun-dust' |
+ 'comment-text' |
+ 'spray-can-sparkles' |
+ 'air-freshener' |
+ 'signal-bars' |
+ 'signal-alt' |
+ 'signal-alt4' |
+ 'signal-bars-strong' |
+ 'diamond-exclamation' |
+ 'star' |
+ 'dial-min' |
+ 'repeat' |
+ 'cross' |
+ 'page-caret-down' |
+ 'file-caret-down' |
+ 'box' |
+ 'venus-mars' |
+ 'clock-seven-thirty' |
+ 'arrow-pointer' |
+ 'mouse-pointer' |
+ 'clock-four-thirty' |
+ 'signal-bars-good' |
+ 'signal-alt3' |
+ 'cactus' |
+ 'lightbulb-gear' |
+ 'maximize' |
+ 'expand-arrows-alt' |
+ 'charging-station' |
+ 'shapes' |
+ 'triangle-circle-square' |
+ 'plane-tail' |
+ 'gauge-simple-max' |
+ 'tachometer-fastest' |
+ 'circle-u' |
+ 'shield-slash' |
+ 'square-phone-hangup' |
+ 'phone-square-down' |
+ 'arrow-up-left' |
+ 'transporter-1' |
+ 'peanuts' |
+ 'shuffle' |
+ 'random' |
+ 'person-running' |
+ 'running' |
+ 'mobile-retro' |
+ 'grip-lines-vertical' |
+ 'bin-bottles-recycle' |
+ 'arrow-up-from-square' |
+ 'file-dashed-line' |
+ 'page-break' |
+ 'bracket-curly-right' |
+ 'spider' |
+ 'clock-three' |
+ 'hands-bound' |
+ 'scalpel-line-dashed' |
+ 'scalpel-path' |
+ 'file-invoice-dollar' |
+ 'pipe-smoking' |
+ 'face-astonished' |
+ 'window' |
+ 'plane-circle-exclamation' |
+ 'ear' |
+ 'file-lock' |
+ 'diagram-venn' |
+ 'x-ray' |
+ 'goal-net' |
+ 'coffin-cross' |
+ 'spell-check' |
+ 'location-xmark' |
+ 'map-marker-times' |
+ 'map-marker-xmark' |
+ 'circle-quarter-stroke' |
+ 'lasso' |
+ 'slash' |
+ 'person-to-portal' |
+ 'portal-enter' |
+ 'calendar-star' |
+ 'computer-mouse' |
+ 'mouse' |
+ 'arrow-right-to-bracket' |
+ 'sign-in' |
+ 'pegasus' |
+ 'files-medical' |
+ 'nfc-lock' |
+ 'person-ski-lift' |
+ 'ski-lift' |
+ 'square-6' |
+ 'shop-slash' |
+ 'store-alt-slash' |
+ 'wind-turbine' |
+ 'sliders-simple' |
+ 'grid-round' |
+ 'badge-sheriff' |
+ 'server' |
+ 'virus-covid-slash' |
+ 'intersection' |
+ 'shop-lock' |
+ 'family' |
+ 'hourglass-start' |
+ 'hourglass1' |
+ 'user-hair-buns' |
+ 'blender-phone' |
+ 'hourglass-clock' |
+ 'person-seat-reclined' |
+ 'paper-plane-top' |
+ 'paper-plane-alt' |
+ 'send' |
+ 'message-arrow-up' |
+ 'comment-alt-arrow-up' |
+ 'lightbulb-exclamation' |
+ 'layer-minus' |
+ 'layer-group-minus' |
+ 'chart-pie-simple-circle-currency' |
+ 'circle-e' |
+ 'building-wheat' |
+ 'gauge-max' |
+ 'tachometer-alt-fastest' |
+ 'person-breastfeeding' |
+ 'apostrophe' |
+ 'fire-hydrant' |
+ 'right-to-bracket' |
+ 'sign-in-alt' |
+ 'video-plus' |
+ 'square-right' |
+ 'arrow-alt-square-right' |
+ 'comment-smile' |
+ 'venus' |
+ 'passport' |
+ 'inbox-in' |
+ 'inbox-arrow-down' |
+ 'heart-pulse' |
+ 'heartbeat' |
+ 'circle-8' |
+ 'clouds-moon' |
+ 'clock-ten-thirty' |
+ 'people-carry-box' |
+ 'people-carry' |
+ 'folder-user' |
+ 'trash-can-xmark' |
+ 'temperature-high' |
+ 'microchip' |
+ 'left-long-to-line' |
+ 'crown' |
+ 'weight-hanging' |
+ 'xmarks-lines' |
+ 'file-prescription' |
+ 'calendar-range' |
+ 'flower-daffodil' |
+ 'hand-back-point-up' |
+ 'weight-scale' |
+ 'weight' |
+ 'star-exclamation' |
+ 'books' |
+ 'user-group' |
+ 'user-friends' |
+ 'arrow-up-a-z' |
+ 'sort-alpha-up' |
+ 'layer-plus' |
+ 'layer-group-plus' |
+ 'play-pause' |
+ 'block-question' |
+ 'snooze' |
+ 'zzz' |
+ 'scanner-image' |
+ 'tv-retro' |
+ 'square-t' |
+ 'farm' |
+ 'barn-silo' |
+ 'chess-knight' |
+ 'bars-sort' |
+ 'pallet-boxes' |
+ 'palette-boxes' |
+ 'pallet-alt' |
+ 'face-laugh-squint' |
+ 'laugh-squint' |
+ 'code-simple' |
+ 'bolt-slash' |
+ 'panel-fire' |
+ 'binary-circle-check' |
+ 'comment-minus' |
+ 'burrito' |
+ 'violin' |
+ 'objects-column' |
+ 'square-chevron-down' |
+ 'chevron-square-down' |
+ 'comment-plus' |
+ 'triangle-instrument' |
+ 'triangle-music' |
+ 'wheelchair' |
+ 'user-pilot-tie' |
+ 'piano-keyboard' |
+ 'bed-empty' |
+ 'circle-arrow-up' |
+ 'arrow-circle-up' |
+ 'toggle-on' |
+ 'rectangle-vertical' |
+ 'rectangle-portrait' |
+ 'person-walking' |
+ 'walking' |
+ 'l' |
+ 'signal-stream' |
+ 'down-to-bracket' |
+ 'circle-z' |
+ 'stars' |
+ 'fire' |
+ 'bed-pulse' |
+ 'procedures' |
+ 'house-day' |
+ 'shuttle-space' |
+ 'space-shuttle' |
+ 'shirt-long-sleeve' |
+ 'chart-pie-simple' |
+ 'chart-pie-alt' |
+ 'face-laugh' |
+ 'laugh' |
+ 'folder-open' |
+ 'album-collection-circle-user' |
+ 'candy' |
+ 'bowl-hot' |
+ 'soup' |
+ 'flatbread' |
+ 'heart-circle-plus' |
+ 'code-fork' |
+ 'city' |
+ 'signal-bars-weak' |
+ 'signal-alt1' |
+ 'microphone-lines' |
+ 'microphone-alt' |
+ 'clock-twelve' |
+ 'pepper-hot' |
+ 'citrus-slice' |
+ 'sheep' |
+ 'unlock' |
+ 'colon-sign' |
+ 'headset' |
+ 'badger-honey' |
+ 'h4' |
+ 'store-slash' |
+ 'road-circle-xmark' |
+ 'signal-slash' |
+ 'user-minus' |
+ 'mars-stroke-up' |
+ 'mars-stroke-v' |
+ 'champagne-glasses' |
+ 'glass-cheers' |
+ 'taco' |
+ 'hexagon-plus' |
+ 'plus-hexagon' |
+ 'clipboard' |
+ 'house-circle-exclamation' |
+ 'file-arrow-up' |
+ 'file-upload' |
+ 'wifi' |
+ 'wifi3' |
+ 'wifi-strong' |
+ 'messages' |
+ 'comments-alt' |
+ 'bath' |
+ 'bathtub' |
+ 'umbrella-simple' |
+ 'umbrella-alt' |
+ 'rectangle-history-circle-plus' |
+ 'underline' |
+ 'prescription-bottle-pill' |
+ 'user-pen' |
+ 'user-edit' |
+ 'binary-slash' |
+ 'square-o' |
+ 'signature' |
+ 'stroopwafel' |
+ 'bold' |
+ 'anchor-lock' |
+ 'building-ngo' |
+ 'transporter-3' |
+ 'engine-warning' |
+ 'engine-exclamation' |
+ 'circle-down-right' |
+ 'square-k' |
+ 'manat-sign' |
+ 'money-check-pen' |
+ 'money-check-edit' |
+ 'not-equal' |
+ 'border-top-left' |
+ 'border-style' |
+ 'map-location-dot' |
+ 'map-marked-alt' |
+ 'tilde' |
+ 'jedi' |
+ 'square-poll-vertical' |
+ 'poll' |
+ 'arrow-down-square-triangle' |
+ 'sort-shapes-down-alt' |
+ 'mug-hot' |
+ 'dog-leashed' |
+ 'car-battery' |
+ 'battery-car' |
+ 'face-downcast-sweat' |
+ 'mailbox-flag-up' |
+ 'memo-circle-info' |
+ 'gift' |
+ 'dice-two' |
+ 'volume' |
+ 'volume-medium' |
+ 'transporter-5' |
+ 'gauge-circle-bolt' |
+ 'coin-front' |
+ 'file-slash' |
+ 'message-arrow-up-right' |
+ 'treasure-chest' |
+ 'chess-queen' |
+ 'paintbrush-fine' |
+ 'paint-brush-alt' |
+ 'paint-brush-fine' |
+ 'paintbrush-alt' |
+ 'glasses' |
+ 'hood-cloak' |
+ 'square-quote' |
+ 'up-left' |
+ 'bring-front' |
+ 'chess-board' |
+ 'burger-cheese' |
+ 'cheeseburger' |
+ 'building-circle-check' |
+ 'repeat-1' |
+ 'arrow-down-to-line' |
+ 'arrow-to-bottom' |
+ 'grid-5' |
+ 'right-long-to-line' |
+ 'person-chalkboard' |
+ 'mars-stroke-right' |
+ 'mars-stroke-h' |
+ 'hand-back-fist' |
+ 'hand-rock' |
+ 'grid-round-5' |
+ 'tally' |
+ 'tally5' |
+ 'square-caret-up' |
+ 'caret-square-up' |
+ 'cloud-showers-water' |
+ 'chart-bar' |
+ 'bar-chart' |
+ 'hands-bubbles' |
+ 'hands-wash' |
+ 'less-than-equal' |
+ 'train' |
+ 'up-from-dotted-line' |
+ 'eye-low-vision' |
+ 'low-vision' |
+ 'traffic-light-go' |
+ 'face-exhaling' |
+ 'sensor-fire' |
+ 'user-unlock' |
+ 'hexagon-divide' |
+ '00' |
+ 'crow' |
+ 'cassette-betamax' |
+ 'betamax' |
+ 'sailboat' |
+ 'window-restore' |
+ 'nfc-magnifying-glass' |
+ 'file-binary' |
+ 'circle-v' |
+ 'square-plus' |
+ 'plus-square' |
+ 'bowl-scoops' |
+ 'mistletoe' |
+ 'custard' |
+ 'lacrosse-stick' |
+ 'hockey-mask' |
+ 'sunrise' |
+ 'panel-ews' |
+ 'torii-gate' |
+ 'cloud-exclamation' |
+ 'message-lines' |
+ 'comment-alt-lines' |
+ 'frog' |
+ 'bucket' |
+ 'floppy-disk-pen' |
+ 'image' |
+ 'window-frame' |
+ 'microphone' |
+ 'cow' |
+ 'file-zip' |
+ 'square-ring' |
+ 'down-from-line' |
+ 'arrow-alt-from-top' |
+ 'caret-up' |
+ 'shield-xmark' |
+ 'shield-times' |
+ 'screwdriver' |
+ 'circle-sort-down' |
+ 'sort-circle-down' |
+ 'folder-closed' |
+ 'house-tsunami' |
+ 'square-nfi' |
+ 'forklift' |
+ 'arrow-up-from-ground-water' |
+ 'bracket-square-right' |
+ 'martini-glass' |
+ 'glass-martini-alt' |
+ 'rotate-left' |
+ 'rotate-back' |
+ 'rotate-backward' |
+ 'undo-alt' |
+ 'table-columns' |
+ 'columns' |
+ 'square-a' |
+ 'tick' |
+ 'lemon' |
+ 'head-side-mask' |
+ 'handshake' |
+ 'gem' |
+ 'dolly' |
+ 'dolly-box' |
+ 'smoking' |
+ 'minimize' |
+ 'compress-arrows-alt' |
+ 'refrigerator' |
+ 'monument' |
+ 'octagon-xmark' |
+ 'times-octagon' |
+ 'xmark-octagon' |
+ 'align-slash' |
+ 'snowplow' |
+ 'angles-right' |
+ 'angle-double-right' |
+ 'truck-ramp-couch' |
+ 'truck-couch' |
+ 'cannabis' |
+ 'circle-play' |
+ 'play-circle' |
+ 'arrow-up-right-and-arrow-down-left-from-center' |
+ 'tablets' |
+ '360-degrees' |
+ 'ethernet' |
+ 'euro-sign' |
+ 'eur' |
+ 'euro' |
+ 'chair' |
+ 'circle-check' |
+ 'check-circle' |
+ 'square-dashed-circle-plus' |
+ 'money-simple-from-bracket' |
+ 'bat' |
+ 'circle-stop' |
+ 'stop-circle' |
+ 'head-side-headphones' |
+ 'phone-rotary' |
+ 'compass-drafting' |
+ 'drafting-compass' |
+ 'plate-wheat' |
+ 'calendar-circle-minus' |
+ 'chopsticks' |
+ 'car-wrench' |
+ 'car-mechanic' |
+ 'icicles' |
+ 'person-shelter' |
+ 'neuter' |
+ 'id-badge' |
+ 'kazoo' |
+ 'marker' |
+ 'bin-bottles' |
+ 'face-laugh-beam' |
+ 'laugh-beam' |
+ 'square-arrow-down-left' |
+ 'battery-bolt' |
+ 'tree-large' |
+ 'helicopter-symbol' |
+ 'aperture' |
+ 'universal-access' |
+ 'gear-complex' |
+ 'file-magnifying-glass' |
+ 'file-search' |
+ 'up-right' |
+ 'circle-chevron-up' |
+ 'chevron-circle-up' |
+ 'user-police' |
+ 'lari-sign' |
+ 'volcano' |
+ 'teddy-bear' |
+ 'stocking' |
+ 'person-walking-dashed-line-arrow-right' |
+ 'image-slash' |
+ 'mask-snorkel' |
+ 'smoke' |
+ 'sterling-sign' |
+ 'gbp' |
+ 'pound-sign' |
+ 'battery-exclamation' |
+ 'viruses' |
+ 'square-person-confined' |
+ 'user-tie' |
+ 'arrow-down-long' |
+ 'long-arrow-down' |
+ 'tent-arrow-down-to-line' |
+ 'certificate' |
+ 'crystal-ball' |
+ 'reply-all' |
+ 'mail-reply-all' |
+ 'suitcase' |
+ 'person-skating' |
+ 'skating' |
+ 'star-shooting' |
+ 'binary-lock' |
+ 'filter-circle-dollar' |
+ 'funnel-dollar' |
+ 'camera-retro' |
+ 'circle-arrow-down' |
+ 'arrow-circle-down' |
+ 'comment-pen' |
+ 'comment-edit' |
+ 'file-import' |
+ 'arrow-right-to-file' |
+ 'banjo' |
+ 'square-arrow-up-right' |
+ 'external-link-square' |
+ 'light-emergency-on' |
+ 'kerning' |
+ 'box-open' |
+ 'square-f' |
+ 'scroll' |
+ 'spa' |
+ 'arrow-left-from-line' |
+ 'arrow-from-right' |
+ 'strawberry' |
+ 'location-pin-lock' |
+ 'pause' |
+ 'clock-eight-thirty' |
+ 'plane-engines' |
+ 'plane-alt' |
+ 'hill-avalanche' |
+ 'temperature-empty' |
+ 'temperature0' |
+ 'thermometer0' |
+ 'thermometer-empty' |
+ 'bomb' |
+ 'gauge-low' |
+ 'tachometer-alt-slow' |
+ 'registered' |
+ 'trash-can-plus' |
+ 'address-card' |
+ 'contact-card' |
+ 'vcard' |
+ 'scale-unbalanced-flip' |
+ 'balance-scale-right' |
+ 'globe-snow' |
+ 'subscript' |
+ 'diamond-turn-right' |
+ 'directions' |
+ 'integral' |
+ 'burst' |
+ 'house-laptop' |
+ 'laptop-house' |
+ 'face-tired' |
+ 'tired' |
+ 'money-bills' |
+ 'blinds-raised' |
+ 'smog' |
+ 'ufo-beam' |
+ 'circle-caret-up' |
+ 'caret-circle-up' |
+ 'user-vneck-hair-long' |
+ 'square-a-lock' |
+ 'crutch' |
+ 'gas-pump-slash' |
+ 'font-awesome' |
+ 'font-awesome-flag' |
+ 'font-awesome-logo-full' |
+ 'cloud-arrow-up' |
+ 'cloud-upload' |
+ 'cloud-upload-alt' |
+ 'palette' |
+ 'transporter-4' |
+ 'chart-mixed-up-circle-currency' |
+ 'objects-align-right' |
+ 'arrows-turn-right' |
+ 'vest' |
+ 'pig' |
+ 'inbox-full' |
+ 'circle-envelope' |
+ 'envelope-circle' |
+ 'triangle-person-digging' |
+ 'construction' |
+ 'ferry' |
+ 'bullseye-arrow' |
+ 'arrows-down-to-people' |
+ 'seedling' |
+ 'sprout' |
+ 'clock-seven' |
+ 'left-right' |
+ 'arrows-alt-h' |
+ 'boxes-packing' |
+ 'circle-arrow-left' |
+ 'arrow-circle-left' |
+ 'flashlight' |
+ 'group-arrows-rotate' |
+ 'bowl-food' |
+ 'square-9' |
+ 'candy-cane' |
+ 'arrow-down-wide-short' |
+ 'sort-amount-asc' |
+ 'sort-amount-down' |
+ 'square-dollar' |
+ 'dollar-square' |
+ 'usd-square' |
+ 'phone-arrow-right' |
+ 'hand-holding-seedling' |
+ 'message-check' |
+ 'comment-alt-check' |
+ 'cloud-bolt' |
+ 'thunderstorm' |
+ 'chart-line-up-down' |
+ 'text-slash' |
+ 'remove-format' |
+ 'watch' |
+ 'circle-down-left' |
+ 'text' |
+ 'projector' |
+ 'face-smile-wink' |
+ 'smile-wink' |
+ 'tombstone-blank' |
+ 'tombstone-alt' |
+ 'chess-king-piece' |
+ 'chess-king-alt' |
+ 'circle-6' |
+ 'left' |
+ 'arrow-alt-left' |
+ 'file-word' |
+ 'file-powerpoint' |
+ 'square-down' |
+ 'arrow-alt-square-down' |
+ 'objects-align-center-vertical' |
+ 'arrows-left-right' |
+ 'arrows-h' |
+ 'house-lock' |
+ 'cloud-arrow-down' |
+ 'cloud-download' |
+ 'cloud-download-alt' |
+ 'wreath' |
+ 'children' |
+ 'meter-droplet' |
+ 'chalkboard' |
+ 'blackboard' |
+ 'user-large-slash' |
+ 'user-alt-slash' |
+ 'signal-strong' |
+ 'signal4' |
+ 'lollipop' |
+ 'lollypop' |
+ 'list-tree' |
+ 'envelope-open' |
+ 'draw-circle' |
+ 'cat-space' |
+ 'handshake-simple-slash' |
+ 'handshake-alt-slash' |
+ 'rabbit-running' |
+ 'rabbit-fast' |
+ 'memo-pad' |
+ 'mattress-pillow' |
+ 'alarm-plus' |
+ 'alicorn' |
+ 'comment-question' |
+ 'gingerbread-man' |
+ 'guarani-sign' |
+ 'burger-fries' |
+ 'mug-tea' |
+ 'border-top' |
+ 'arrows-rotate' |
+ 'refresh' |
+ 'sync' |
+ 'circle-book-open' |
+ 'book-circle' |
+ 'arrows-to-dotted-line' |
+ 'fire-extinguisher' |
+ 'garage-open' |
+ 'shelves-empty' |
+ 'cruzeiro-sign' |
+ 'watch-apple' |
+ 'watch-calculator' |
+ 'list-dropdown' |
+ 'cabinet-filing' |
+ 'burger-soda' |
+ 'square-arrow-up' |
+ 'arrow-square-up' |
+ 'greater-than-equal' |
+ 'pallet-box' |
+ 'face-confounded' |
+ 'shield-halved' |
+ 'shield-alt' |
+ 'truck-plow' |
+ 'book-atlas' |
+ 'atlas' |
+ 'virus' |
+ 'grid-round-2' |
+ 'comment-middle-top' |
+ 'envelope-circle-check' |
+ 'layer-group' |
+ 'restroom-simple' |
+ 'arrows-to-dot' |
+ 'border-outer' |
+ 'hashtag-lock' |
+ 'clock-two-thirty' |
+ 'archway' |
+ 'heart-circle-check' |
+ 'house-chimney-crack' |
+ 'house-damage' |
+ 'file-zipper' |
+ 'file-archive' |
+ 'heart-half' |
+ 'comment-check' |
+ 'square' |
+ 'memo' |
+ 'martini-glass-empty' |
+ 'glass-martini' |
+ 'couch' |
+ 'cedi-sign' |
+ 'italic' |
+ 'glass-citrus' |
+ 'calendar-lines-pen' |
+ 'church' |
+ 'person-snowmobiling' |
+ 'snowmobile' |
+ 'face-hushed' |
+ 'comments-dollar' |
+ 'pickaxe' |
+ 'link-simple-slash' |
+ 'democrat' |
+ 'face-confused' |
+ 'pinball' |
+ 'z' |
+ 'person-skiing' |
+ 'skiing' |
+ 'deer' |
+ 'input-pipe' |
+ 'road-lock' |
+ 'a' |
+ 'bookmark-slash' |
+ 'temperature-arrow-down' |
+ 'temperature-down' |
+ 'mace' |
+ 'feather-pointed' |
+ 'feather-alt' |
+ 'sausage' |
+ 'trash-can-clock' |
+ 'p' |
+ 'broom-wide' |
+ 'snowflake' |
+ 'stomach' |
+ 'newspaper' |
+ 'rectangle-ad' |
+ 'ad' |
+ 'guitar-electric' |
+ 'arrow-turn-down-right' |
+ 'moon-cloud' |
+ 'bread-slice-butter' |
+ 'circle-arrow-right' |
+ 'arrow-circle-right' |
+ 'user-group-crown' |
+ 'users-crown' |
+ 'circle-i' |
+ 'toilet-paper-check' |
+ 'filter-circle-xmark' |
+ 'locust' |
+ 'sort' |
+ 'unsorted' |
+ 'list-ol' |
+ 'list12' |
+ 'list-numeric' |
+ 'chart-waterfall' |
+ 'sparkle' |
+ 'face-party' |
+ 'kidneys' |
+ 'wifi-exclamation' |
+ 'chart-network' |
+ 'person-dress-burst' |
+ 'dice-d4' |
+ 'money-check-dollar' |
+ 'money-check-alt' |
+ 'vector-square' |
+ 'bread-slice' |
+ 'language' |
+ 'wheat-awn-slash' |
+ 'face-kiss-wink-heart' |
+ 'kiss-wink-heart' |
+ 'dagger' |
+ 'podium' |
+ 'memo-circle-check' |
+ 'route-highway' |
+ 'down-to-line' |
+ 'arrow-alt-to-bottom' |
+ 'filter' |
+ 'square-g' |
+ 'circle-phone' |
+ 'phone-circle' |
+ 'clipboard-prescription' |
+ 'user-nurse-hair' |
+ 'question' |
+ 'file-signature' |
+ 'toggle-large-on' |
+ 'up-down-left-right' |
+ 'arrows-alt' |
+ 'dryer-heat' |
+ 'dryer-alt' |
+ 'house-chimney-user' |
+ 'hand-holding-heart' |
+ 'arrow-up-small-big' |
+ 'sort-size-up-alt' |
+ 'train-track' |
+ 'puzzle-piece' |
+ 'money-check' |
+ 'star-half-stroke' |
+ 'star-half-alt' |
+ 'file-exclamation' |
+ 'code' |
+ 'whiskey-glass' |
+ 'glass-whiskey' |
+ 'moon-stars' |
+ 'building-circle-exclamation' |
+ 'clothes-hanger' |
+ 'mobile-notch' |
+ 'mobile-iphone' |
+ 'magnifying-glass-chart' |
+ 'arrow-up-right-from-square' |
+ 'external-link' |
+ 'cubes-stacked' |
+ 'images-user' |
+ 'won-sign' |
+ 'krw' |
+ 'won' |
+ 'image-polaroid-user' |
+ 'virus-covid' |
+ 'square-ellipsis' |
+ 'pie' |
+ 'chess-knight-piece' |
+ 'chess-knight-alt' |
+ 'austral-sign' |
+ 'cloud-plus' |
+ 'f' |
+ 'leaf' |
+ 'bed-bunk' |
+ 'road' |
+ 'taxi' |
+ 'cab' |
+ 'person-circle-plus' |
+ 'chart-pie' |
+ 'pie-chart' |
+ 'bolt-lightning' |
+ 'clock-eight' |
+ 'sack-xmark' |
+ 'file-excel' |
+ 'file-contract' |
+ 'fish-fins' |
+ 'circle-q' |
+ 'building-flag' |
+ 'face-grin-beam' |
+ 'grin-beam' |
+ 'object-ungroup' |
+ 'face-disguise' |
+ 'circle-arrow-down-right' |
+ 'alien-8bit' |
+ 'alien-monster' |
+ 'hand-point-ribbon' |
+ 'poop' |
+ 'object-exclude' |
+ 'telescope' |
+ 'location-pin' |
+ 'map-marker' |
+ 'square-list' |
+ 'kaaba' |
+ 'toilet-paper' |
+ 'helmet-safety' |
+ 'hard-hat' |
+ 'hat-hard' |
+ 'comment-code' |
+ 'sim-cards' |
+ 'starship' |
+ 'eject' |
+ 'circle-right' |
+ 'arrow-alt-circle-right' |
+ 'plane-circle-check' |
+ 'seal' |
+ 'user-cowboy' |
+ 'hexagon-vertical-nft' |
+ 'face-rolling-eyes' |
+ 'meh-rolling-eyes' |
+ 'bread-loaf' |
+ 'rings-wedding' |
+ 'object-group' |
+ 'french-fries' |
+ 'chart-line' |
+ 'line-chart' |
+ 'calendar-arrow-down' |
+ 'calendar-download' |
+ 'send-back' |
+ 'mask-ventilator' |
+ 'signature-lock' |
+ 'arrow-right' |
+ 'signs-post' |
+ 'map-signs' |
+ 'octagon-plus' |
+ 'plus-octagon' |
+ 'cash-register' |
+ 'person-circle-question' |
+ 'melon-slice' |
+ 'space-station-moon' |
+ 'message-smile' |
+ 'comment-alt-smile' |
+ 'cup-straw' |
+ 'left-from-line' |
+ 'arrow-alt-from-right' |
+ 'h' |
+ 'basket-shopping-simple' |
+ 'shopping-basket-alt' |
+ 'hands-holding-heart' |
+ 'hands-heart' |
+ 'clock-nine' |
+ 'tarp' |
+ 'face-sleepy' |
+ 'hand-horns' |
+ 'screwdriver-wrench' |
+ 'tools' |
+ 'arrows-to-eye' |
+ 'circle-three-quarters' |
+ 'trophy-star' |
+ 'trophy-alt' |
+ 'plug-circle-bolt' |
+ 'face-thermometer' |
+ 'grid-round-4' |
+ 'shirt-running' |
+ 'book-circle-arrow-up' |
+ 'face-nauseated' |
+ 'heart' |
+ 'file-chart-pie' |
+ 'mars-and-venus' |
+ 'house-user' |
+ 'home-user' |
+ 'circle-arrow-down-left' |
+ 'dumpster-fire' |
+ 'hexagon-minus' |
+ 'minus-hexagon' |
+ 'left-to-line' |
+ 'arrow-alt-to-left' |
+ 'house-crack' |
+ 'paw-simple' |
+ 'paw-alt' |
+ 'arrow-left-long-to-line' |
+ 'brackets-round' |
+ 'parentheses' |
+ 'martini-glass-citrus' |
+ 'cocktail' |
+ 'user-shakespeare' |
+ 'arrow-right-to-arc' |
+ 'face-surprise' |
+ 'surprise' |
+ 'bottle-water' |
+ 'circle-pause' |
+ 'pause-circle' |
+ 'gauge-circle-plus' |
+ 'folders' |
+ 'angel' |
+ 'value-absolute' |
+ 'rabbit' |
+ 'toilet-paper-slash' |
+ 'circle-euro' |
+ 'apple-whole' |
+ 'apple-alt' |
+ 'kitchen-set' |
+ 'diamond-half' |
+ 'lock-keyhole' |
+ 'lock-alt' |
+ 'r' |
+ 'temperature-quarter' |
+ 'temperature1' |
+ 'thermometer1' |
+ 'thermometer-quarter' |
+ 'square-info' |
+ 'info-square' |
+ 'wifi-slash' |
+ 'toilet-paper-xmark' |
+ 'hands-holding-dollar' |
+ 'hands-usd' |
+ 'cube' |
+ 'arrow-down-triangle-square' |
+ 'sort-shapes-down' |
+ 'bitcoin-sign' |
+ 'shutters' |
+ 'shield-dog' |
+ 'solar-panel' |
+ 'lock-open' |
+ 'table-tree' |
+ 'house-chimney-heart' |
+ 'tally-3' |
+ 'elevator' |
+ 'money-bill-transfer' |
+ 'money-bill-trend-up' |
+ 'house-flood-water-circle-arrow-right' |
+ 'square-poll-horizontal' |
+ 'poll-h' |
+ 'circle' |
+ 'cart-circle-exclamation' |
+ 'sword' |
+ 'backward-fast' |
+ 'fast-backward' |
+ 'recycle' |
+ 'user-astronaut' |
+ 'interrobang' |
+ 'plane-slash' |
+ 'circle-dashed' |
+ 'trademark' |
+ 'basketball' |
+ 'basketball-ball' |
+ 'fork-knife' |
+ 'utensils-alt' |
+ 'satellite-dish' |
+ 'badge-check' |
+ 'circle-up' |
+ 'arrow-alt-circle-up' |
+ 'slider' |
+ 'mobile-screen-button' |
+ 'mobile-alt' |
+ 'clock-one-thirty' |
+ 'inbox-out' |
+ 'inbox-arrow-up' |
+ 'cloud-slash' |
+ 'volume-high' |
+ 'volume-up' |
+ 'users-rays' |
+ 'wallet' |
+ 'octagon-check' |
+ 'flatbread-stuffed' |
+ 'clipboard-check' |
+ 'cart-circle-plus' |
+ 'truck-clock' |
+ 'shipping-timed' |
+ 'pool-8-ball' |
+ 'file-audio' |
+ 'turn-down-left' |
+ 'lock-hashtag' |
+ 'chart-radar' |
+ 'staff' |
+ 'burger' |
+ 'hamburger' |
+ 'utility-pole' |
+ 'transporter-6' |
+ 'wrench' |
+ 'bugs' |
+ 'vector-polygon' |
+ 'diagram-nested' |
+ 'rupee-sign' |
+ 'rupee' |
+ 'file-image' |
+ 'circle-question' |
+ 'question-circle' |
+ 'image-user' |
+ 'buoy' |
+ 'plane-departure' |
+ 'handshake-slash' |
+ 'book-bookmark' |
+ 'border-center-h' |
+ 'can-food' |
+ 'typewriter' |
+ 'arrow-right-from-arc' |
+ 'circle-k' |
+ 'face-hand-over-mouth' |
+ 'popcorn' |
+ 'house-water' |
+ 'house-flood' |
+ 'object-subtract' |
+ 'code-branch' |
+ 'warehouse-full' |
+ 'warehouse-alt' |
+ 'hat-cowboy' |
+ 'bridge' |
+ 'phone-flip' |
+ 'phone-alt' |
+ 'arrow-down-from-dotted-line' |
+ 'file-doc' |
+ 'square-quarters' |
+ 'truck-front' |
+ 'cat' |
+ 'trash-xmark' |
+ 'circle-caret-left' |
+ 'caret-circle-left' |
+ 'files' |
+ 'anchor-circle-exclamation' |
+ 'face-clouds' |
+ 'user-crown' |
+ 'truck-field' |
+ 'route' |
+ 'cart-circle-check' |
+ 'clipboard-question' |
+ 'panorama' |
+ 'comment-medical' |
+ 'teeth-open' |
+ 'user-tie-hair-long' |
+ 'file-circle-minus' |
+ 'head-side-medical' |
+ 'tags' |
+ 'wine-glass' |
+ 'forward-fast' |
+ 'fast-forward' |
+ 'face-meh-blank' |
+ 'meh-blank' |
+ 'user-robot' |
+ 'square-parking' |
+ 'parking' |
+ 'card-diamond' |
+ 'face-zipper' |
+ 'face-raised-eyebrow' |
+ 'house-signal' |
+ 'square-chevron-up' |
+ 'chevron-square-up' |
+ 'nfc-symbol' |
+ 'bars-progress' |
+ 'tasks-alt' |
+ 'faucet-drip' |
+ 'arrows-to-line' |
+ 'dolphin' |
+ 'arrow-up-right' |
+ 'circle-r' |
+ 'cart-flatbed' |
+ 'dolly-flatbed' |
+ 'ban-smoking' |
+ 'smoking-ban' |
+ 'circle-sort-up' |
+ 'sort-circle-up' |
+ 'terminal' |
+ 'mobile-button' |
+ 'house-medical-flag' |
+ 'basket-shopping' |
+ 'shopping-basket' |
+ 'tape' |
+ 'chestnut' |
+ 'bus-simple' |
+ 'bus-alt' |
+ 'eye' |
+ 'face-sad-cry' |
+ 'sad-cry' |
+ 'heat' |
+ 'ticket-airline' |
+ 'boot-heeled' |
+ 'arrows-minimize' |
+ 'compress-arrows' |
+ 'audio-description' |
+ 'person-military-to-person' |
+ 'file-shield' |
+ 'hexagon' |
+ 'manhole' |
+ 'user-slash' |
+ 'pen' |
+ 'tower-observation' |
+ 'floppy-disks' |
+ 'toilet-paper-blank-under' |
+ 'toilet-paper-reverse-alt' |
+ 'file-code' |
+ 'signal' |
+ 'signal5' |
+ 'signal-perfect' |
+ 'pump' |
+ 'bus' |
+ 'heart-circle-xmark' |
+ 'arrow-up-left-from-circle' |
+ 'house-chimney' |
+ 'home-lg' |
+ 'window-maximize' |
+ 'dryer' |
+ 'face-frown' |
+ 'frown' |
+ 'chess-bishop-piece' |
+ 'chess-bishop-alt' |
+ 'shirt-tank-top' |
+ 'diploma' |
+ 'scroll-ribbon' |
+ 'screencast' |
+ 'walker' |
+ 'prescription' |
+ 'shop' |
+ 'store-alt' |
+ 'floppy-disk' |
+ 'save' |
+ 'vihara' |
+ 'face-kiss-closed-eyes' |
+ 'scale-unbalanced' |
+ 'balance-scale-left' |
+ 'file-user' |
+ 'user-police-tie' |
+ 'face-tongue-money' |
+ 'tennis-ball' |
+ 'square-l' |
+ 'sort-up' |
+ 'sort-asc' |
+ 'calendar-arrow-up' |
+ 'calendar-upload' |
+ 'comment-dots' |
+ 'commenting' |
+ 'plant-wilt' |
+ 'scarf' |
+ 'album-circle-plus' |
+ 'user-nurse-hair-long' |
+ 'diamond' |
+ 'square-left' |
+ 'arrow-alt-square-left' |
+ 'face-grin-squint' |
+ 'grin-squint' |
+ 'circle-ellipsis-vertical' |
+ 'hand-holding-dollar' |
+ 'hand-holding-usd' |
+ 'grid-dividers' |
+ 'bacterium' |
+ 'hand-pointer' |
+ 'drum-steelpan' |
+ 'hand-scissors' |
+ 'hands-praying' |
+ 'praying-hands' |
+ 'face-pensive' |
+ 'user-music' |
+ 'arrow-rotate-right' |
+ 'arrow-right-rotate' |
+ 'arrow-rotate-forward' |
+ 'redo' |
+ 'messages-dollar' |
+ 'comments-alt-dollar' |
+ 'sensor-on' |
+ 'balloon' |
+ 'biohazard' |
+ 'chess-queen-piece' |
+ 'chess-queen-alt' |
+ 'location-crosshairs' |
+ 'location' |
+ 'mars-double' |
+ 'house-person-leave' |
+ 'house-leave' |
+ 'house-person-depart' |
+ 'ruler-triangle' |
+ 'card-club' |
+ 'child-dress' |
+ 'users-between-lines' |
+ 'lungs-virus' |
+ 'spinner-third' |
+ 'face-grin-tears' |
+ 'grin-tears' |
+ 'phone' |
+ 'computer-mouse-scrollwheel' |
+ 'mouse-alt' |
+ 'calendar-xmark' |
+ 'calendar-times' |
+ 'child-reaching' |
+ 'table-layout' |
+ 'narwhal' |
+ 'ramp-loading' |
+ 'calendar-circle-plus' |
+ 'toothbrush' |
+ 'border-inner' |
+ 'paw-claws' |
+ 'kiwi-fruit' |
+ 'traffic-light-slow' |
+ 'rectangle-code' |
+ 'head-side-virus' |
+ 'keyboard-brightness' |
+ 'books-medical' |
+ 'lightbulb-slash' |
+ 'house-blank' |
+ 'home-blank' |
+ 'square-5' |
+ 'square-heart' |
+ 'heart-square' |
+ 'puzzle' |
+ 'user-gear' |
+ 'user-cog' |
+ 'pipe-circle-check' |
+ 'arrow-up-1-9' |
+ 'sort-numeric-up' |
+ 'octagon-exclamation' |
+ 'dial-low' |
+ 'door-closed' |
+ 'laptop-mobile' |
+ 'phone-laptop' |
+ 'conveyor-belt-boxes' |
+ 'conveyor-belt-alt' |
+ 'shield-virus' |
+ 'starfighter-twin-ion-engine-advanced' |
+ 'starfighter-alt-advanced' |
+ 'dice-six' |
+ 'starfighter-twin-ion-engine' |
+ 'starfighter-alt' |
+ 'rocket-launch' |
+ 'mosquito-net' |
+ 'vent-damper' |
+ 'bridge-water' |
+ 'ban-bug' |
+ 'debug' |
+ 'person-booth' |
+ 'text-width' |
+ 'garage-car' |
+ 'square-kanban' |
+ 'hat-wizard' |
+ 'pen-fancy' |
+ 'coffee-pot' |
+ 'mouse-field' |
+ 'person-digging' |
+ 'digging' |
+ 'shower-down' |
+ 'shower-alt' |
+ 'box-circle-check' |
+ 'brightness' |
+ 'car-side-bolt' |
+ 'ornament' |
+ 'phone-arrow-down-left' |
+ 'phone-arrow-down' |
+ 'phone-incoming' |
+ 'cloud-word' |
+ 'hand-fingers-crossed' |
+ 'trash' |
+ 'gauge-simple' |
+ 'gauge-simple-med' |
+ 'tachometer-average' |
+ 'arrow-down-small-big' |
+ 'sort-size-down-alt' |
+ 'book-medical' |
+ 'face-melting' |
+ 'poo' |
+ 'pen-clip-slash' |
+ 'pen-alt-slash' |
+ 'quote-right' |
+ 'quote-right-alt' |
+ 'scroll-old' |
+ 'guitars' |
+ 'phone-xmark' |
+ 'hose' |
+ 'clock-six' |
+ 'shirt' |
+ 't-shirt' |
+ 'tshirt' |
+ 'billboard' |
+ 'square-r' |
+ 'cubes' |
+ 'envelope-open-dollar' |
+ 'divide' |
+ 'sun-cloud' |
+ 'lamp-floor' |
+ 'square-7' |
+ 'tenge-sign' |
+ 'tenge' |
+ 'headphones' |
+ 'hands-holding' |
+ 'campfire' |
+ 'circle-ampersand' |
+ 'snowflakes' |
+ 'hands-clapping' |
+ 'republican' |
+ 'leaf-maple' |
+ 'arrow-left' |
+ 'person-circle-xmark' |
+ 'ruler' |
+ 'cup-straw-swoosh' |
+ 'temperature-sun' |
+ 'temperature-hot' |
+ 'align-left' |
+ 'dice-d6' |
+ 'restroom' |
+ 'high-definition' |
+ 'rectangle-hd' |
+ 'j' |
+ 'galaxy' |
+ 'users-viewfinder' |
+ 'file-video' |
+ 'cherries' |
+ 'up-right-from-square' |
+ 'external-link-alt' |
+ 'circle-sort' |
+ 'sort-circle' |
+ 'table-cells' |
+ 'th' |
+ 'file-pdf' |
+ 'siren' |
+ 'arrow-up-to-dotted-line' |
+ 'image-landscape' |
+ 'landscape' |
+ 'tank-water' |
+ 'curling-stone' |
+ 'curling' |
+ 'gamepad-modern' |
+ 'gamepad-alt' |
+ 'messages-question' |
+ 'book-bible' |
+ 'bible' |
+ 'o' |
+ 'suitcase-medical' |
+ 'medkit' |
+ 'briefcase-arrow-right' |
+ 'expand-wide' |
+ 'clock-eleven-thirty' |
+ 'rv' |
+ 'user-secret' |
+ 'otter' |
+ 'dreidel' |
+ 'person-dress' |
+ 'female' |
+ 'comment-dollar' |
+ 'business-time' |
+ 'briefcase-clock' |
+ 'flower-tulip' |
+ 'people-pants-simple' |
+ 'cloud-drizzle' |
+ 'table-cells-large' |
+ 'th-large' |
+ 'book-tanakh' |
+ 'tanakh' |
+ 'solar-system' |
+ 'seal-question' |
+ 'phone-volume' |
+ 'volume-control-phone' |
+ 'disc-drive' |
+ 'hat-cowboy-side' |
+ 'table-rows' |
+ 'rows' |
+ 'location-exclamation' |
+ 'map-marker-exclamation' |
+ 'face-fearful' |
+ 'clipboard-user' |
+ 'bus-school' |
+ 'film-slash' |
+ 'square-arrow-down-right' |
+ 'book-sparkles' |
+ 'book-spells' |
+ 'washing-machine' |
+ 'washer' |
+ 'child' |
+ 'lira-sign' |
+ 'user-visor' |
+ 'file-plus-minus' |
+ 'chess-clock-flip' |
+ 'chess-clock-alt' |
+ 'satellite' |
+ 'plane-lock' |
+ 'steering-wheel' |
+ 'tag' |
+ 'stretcher' |
+ 'book-section' |
+ 'book-law' |
+ 'inboxes' |
+ 'coffee-bean' |
+ 'circle-yen' |
+ 'brackets-curly' |
+ 'ellipsis-stroke-vertical' |
+ 'ellipsis-v-alt' |
+ 'comment' |
+ 'square-1' |
+ 'cake-candles' |
+ 'birthday-cake' |
+ 'cake' |
+ 'head-side' |
+ 'envelope' |
+ 'dolly-empty' |
+ 'face-tissue' |
+ 'angles-up' |
+ 'angle-double-up' |
+ 'bin-recycle' |
+ 'paperclip' |
+ 'chart-line-down' |
+ 'arrow-right-to-city' |
+ 'lock-a' |
+ 'ribbon' |
+ 'lungs' |
+ 'person-pinball' |
+ 'arrow-up-9-1' |
+ 'sort-numeric-up-alt' |
+ 'apple-core' |
+ 'circle-y' |
+ 'h6' |
+ 'litecoin-sign' |
+ 'circle-small' |
+ 'border-none' |
+ 'arrow-turn-down-left' |
+ 'circle-nodes' |
+ 'parachute-box' |
+ 'message-medical' |
+ 'comment-alt-medical' |
+ 'rugby-ball' |
+ 'comment-music' |
+ 'indent' |
+ 'tree-deciduous' |
+ 'tree-alt' |
+ 'puzzle-piece-simple' |
+ 'puzzle-piece-alt' |
+ 'truck-field-un' |
+ 'nfc-trash' |
+ 'hourglass' |
+ 'hourglass-empty' |
+ 'mountain' |
+ 'file-xmark' |
+ 'file-times' |
+ 'house-heart' |
+ 'home-heart' |
+ 'house-chimney-blank' |
+ 'meter-bolt' |
+ 'user-doctor' |
+ 'user-md' |
+ 'slash-back' |
+ 'circle-info' |
+ 'info-circle' |
+ 'fishing-rod' |
+ 'hammer-crash' |
+ 'message-heart' |
+ 'cloud-meatball' |
+ 'camera-polaroid' |
+ 'camera' |
+ 'camera-alt' |
+ 'square-virus' |
+ 'cart-arrow-up' |
+ 'meteor' |
+ 'car-on' |
+ 'sleigh' |
+ 'arrow-down-1-9' |
+ 'sort-numeric-asc' |
+ 'sort-numeric-down' |
+ 'buoy-mooring' |
+ 'square-4' |
+ 'hand-holding-droplet' |
+ 'hand-holding-water' |
+ 'tricycle-adult' |
+ 'waveform' |
+ 'water' |
+ 'star-sharp-half-stroke' |
+ 'star-sharp-half-alt' |
+ 'nfc-signal' |
+ 'plane-prop' |
+ 'calendar-check' |
+ 'clock-desk' |
+ 'calendar-clock' |
+ 'calendar-time' |
+ 'braille' |
+ 'prescription-bottle-medical' |
+ 'prescription-bottle-alt' |
+ 'plate-utensils' |
+ 'family-pants' |
+ 'hose-reel' |
+ 'house-window' |
+ 'landmark' |
+ 'truck' |
+ 'crosshairs' |
+ 'cloud-rainbow' |
+ 'person-cane' |
+ 'alien' |
+ 'tent' |
+ 'laptop-binary' |
+ 'vest-patches' |
+ 'people-dress-simple' |
+ 'check-double' |
+ 'arrow-down-a-z' |
+ 'sort-alpha-asc' |
+ 'sort-alpha-down' |
+ 'bowling-ball-pin' |
+ 'bell-school-slash' |
+ 'plus-large' |
+ 'money-bill-wheat' |
+ 'camera-viewfinder' |
+ 'screenshot' |
+ 'message-music' |
+ 'comment-alt-music' |
+ 'car-building' |
+ 'border-bottom-right' |
+ 'border-style-alt' |
+ 'octagon' |
+ 'comment-arrow-up-right' |
+ 'octagon-divide' |
+ 'cookie' |
+ 'arrow-rotate-left' |
+ 'arrow-left-rotate' |
+ 'arrow-rotate-back' |
+ 'arrow-rotate-backward' |
+ 'undo' |
+ 'tv-music' |
+ 'hard-drive' |
+ 'hdd' |
+ 'reel' |
+ 'face-grin-squint-tears' |
+ 'grin-squint-tears' |
+ 'dumbbell' |
+ 'rectangle-list' |
+ 'list-alt' |
+ 'tarp-droplet' |
+ 'alarm-exclamation' |
+ 'house-medical-circle-check' |
+ 'traffic-cone' |
+ 'grate' |
+ 'arrow-down-right' |
+ 'person-skiing-nordic' |
+ 'skiing-nordic' |
+ 'calendar-plus' |
+ 'person-from-portal' |
+ 'portal-exit' |
+ 'plane-arrival' |
+ 'cowbell-circle-plus' |
+ 'cowbell-more' |
+ 'circle-left' |
+ 'arrow-alt-circle-left' |
+ 'distribute-spacing-vertical' |
+ 'signal-bars-fair' |
+ 'signal-alt2' |
+ 'sportsball' |
+ 'game-console-handheld-crank' |
+ 'train-subway' |
+ 'subway' |
+ 'chart-gantt' |
+ 'face-smile-upside-down' |
+ 'ball-pile' |
+ 'badge-dollar' |
+ 'money-bills-simple' |
+ 'money-bills-alt' |
+ 'list-timeline' |
+ 'indian-rupee-sign' |
+ 'indian-rupee' |
+ 'inr' |
+ 'crop-simple' |
+ 'crop-alt' |
+ 'money-bill-1' |
+ 'money-bill-alt' |
+ 'left-long' |
+ 'long-arrow-alt-left' |
+ 'keyboard-down' |
+ 'circle-up-right' |
+ 'cloud-bolt-moon' |
+ 'thunderstorm-moon' |
+ 'dna' |
+ 'virus-slash' |
+ 'bracket-round-right' |
+ 'circle-sterling' |
+ 'circle-5' |
+ 'minus' |
+ 'subtract' |
+ 'fire-flame' |
+ 'flame' |
+ 'right-to-line' |
+ 'arrow-alt-to-right' |
+ 'gif' |
+ 'chess' |
+ 'trash-slash' |
+ 'arrow-left-long' |
+ 'long-arrow-left' |
+ 'plug-circle-check' |
+ 'font-case' |
+ 'street-view' |
+ 'arrow-down-left' |
+ 'franc-sign' |
+ 'flask-round-poison' |
+ 'flask-poison' |
+ 'volume-off' |
+ 'book-circle-arrow-right' |
+ 'chart-user' |
+ 'user-chart' |
+ 'hands-asl-interpreting' |
+ 'american-sign-language-interpreting' |
+ 'asl-interpreting' |
+ 'hands-american-sign-language-interpreting' |
+ 'presentation-screen' |
+ 'presentation' |
+ 'circle-bolt' |
+ 'face-smile-halo' |
+ 'cart-circle-arrow-down' |
+ 'house-person-return' |
+ 'house-person-arrive' |
+ 'house-return' |
+ 'message-xmark' |
+ 'comment-alt-times' |
+ 'message-times' |
+ 'file-certificate' |
+ 'file-award' |
+ 'user-doctor-hair-long' |
+ 'camera-security' |
+ 'camera-home' |
+ 'gear' |
+ 'cog' |
+ 'droplet-slash' |
+ 'tint-slash' |
+ 'book-heart' |
+ 'mosque' |
+ 'duck' |
+ 'mosquito' |
+ 'star-of-david' |
+ 'flag-swallowtail' |
+ 'flag-alt' |
+ 'person-military-rifle' |
+ 'car-garage' |
+ 'cart-shopping' |
+ 'shopping-cart' |
+ 'book-font' |
+ 'shield-plus' |
+ 'vials' |
+ 'eye-dropper-full' |
+ 'distribute-spacing-horizontal' |
+ 'tablet-rugged' |
+ 'temperature-snow' |
+ 'temperature-frigid' |
+ 'moped' |
+ 'face-smile-plus' |
+ 'smile-plus' |
+ 'radio-tuner' |
+ 'radio-alt' |
+ 'face-swear' |
+ 'water-arrow-down' |
+ 'water-lower' |
+ 'scanner-touchscreen' |
+ 'circle-7' |
+ 'plug-circle-plus' |
+ 'person-ski-jumping' |
+ 'ski-jump' |
+ 'place-of-worship' |
+ 'water-arrow-up' |
+ 'water-rise' |
+ 'waveform-lines' |
+ 'waveform-path' |
+ 'split' |
+ 'film-canister' |
+ 'film-cannister' |
+ 'folder-xmark' |
+ 'folder-times' |
+ 'toilet-paper-blank' |
+ 'toilet-paper-alt' |
+ 'tablet-screen' |
+ 'tablet-android-alt' |
+ 'hexagon-vertical-nft-slanted' |
+ 'folder-music' |
+ 'display-medical' |
+ 'desktop-medical' |
+ 'share-all' |
+ 'peapod' |
+ 'chess-clock' |
+ 'axe' |
+ 'square-d' |
+ 'grip-vertical' |
+ 'mobile-signal-out' |
+ 'arrow-turn-up' |
+ 'level-up' |
+ 'u' |
+ 'arrow-up-from-dotted-line' |
+ 'square-root-variable' |
+ 'square-root-alt' |
+ 'light-switch-on' |
+ 'arrow-down-arrow-up' |
+ 'sort-alt' |
+ 'raindrops' |
+ 'dash' |
+ 'minus-large' |
+ 'clock' |
+ 'clock-four' |
+ 'input-numeric' |
+ 'truck-tow' |
+ 'backward-step' |
+ 'step-backward' |
+ 'pallet' |
+ 'car-bolt' |
+ 'arrows-maximize' |
+ 'expand-arrows' |
+ 'faucet' |
+ 'cloud-sleet' |
+ 'lamp-street' |
+ 'list-radio' |
+ 'pen-nib-slash' |
+ 'baseball-bat-ball' |
+ 'square-up-left' |
+ 'overline' |
+ 's' |
+ 'timeline' |
+ 'keyboard' |
+ 'arrows-from-dotted-line' |
+ 'usb-drive' |
+ 'ballot' |
+ 'caret-down' |
+ 'location-dot-slash' |
+ 'map-marker-alt-slash' |
+ 'cards' |
+ 'house-chimney-medical' |
+ 'clinic-medical' |
+ 'boxing-glove' |
+ 'glove-boxing' |
+ 'temperature-three-quarters' |
+ 'temperature3' |
+ 'thermometer3' |
+ 'thermometer-three-quarters' |
+ 'bell-school' |
+ 'mobile-screen' |
+ 'mobile-android-alt' |
+ 'plane-up' |
+ 'folder-heart' |
+ 'circle-location-arrow' |
+ 'location-circle' |
+ 'face-head-bandage' |
+ 'sushi-roll' |
+ 'maki-roll' |
+ 'makizushi' |
+ 'car-bump' |
+ 'piggy-bank' |
+ 'racquet' |
+ 'car-mirrors' |
+ 'industry-windows' |
+ 'industry-alt' |
+ 'bolt-auto' |
+ 'battery-half' |
+ 'battery3' |
+ 'flux-capacitor' |
+ 'mountain-city' |
+ 'coins' |
+ 'honey-pot' |
+ 'olive' |
+ 'khanda' |
+ 'filter-list' |
+ 'outlet' |
+ 'sliders' |
+ 'sliders-h' |
+ 'cauldron' |
+ 'people' |
+ 'folder-tree' |
+ 'network-wired' |
+ 'croissant' |
+ 'map-pin' |
+ 'hamsa' |
+ 'cent-sign' |
+ 'swords-laser' |
+ 'flask' |
+ 'person-pregnant' |
+ 'square-u' |
+ 'wand-sparkles' |
+ 'router' |
+ 'ellipsis-vertical' |
+ 'ellipsis-v' |
+ 'sword-laser-alt' |
+ 'ticket' |
+ 'power-off' |
+ 'coin' |
+ 'laptop-slash' |
+ 'right-long' |
+ 'long-arrow-alt-right' |
+ 'circle-b' |
+ 'person-dress-simple' |
+ 'pipe-collar' |
+ 'lights-holiday' |
+ 'citrus' |
+ 'flag-usa' |
+ 'laptop-file' |
+ 'tty' |
+ 'teletype' |
+ 'chart-tree-map' |
+ 'diagram-next' |
+ 'person-rifle' |
+ 'clock-five-thirty' |
+ 'pipe-valve' |
+ 'arrow-up-from-arc' |
+ 'face-spiral-eyes' |
+ 'compress-wide' |
+ 'circle-phone-hangup' |
+ 'phone-circle-down' |
+ 'gear-complex-code' |
+ 'house-medical-circle-exclamation' |
+ 'badminton' |
+ 'closed-captioning' |
+ 'person-hiking' |
+ 'hiking' |
+ 'right-from-line' |
+ 'arrow-alt-from-left' |
+ 'venus-double' |
+ 'images' |
+ 'calculator' |
+ 'shuttlecock' |
+ 'user-hair' |
+ 'eye-evil' |
+ 'people-pulling' |
+ 'n' |
+ 'garage' |
+ 'cable-car' |
+ 'tram' |
+ 'shovel-snow' |
+ 'cloud-rain' |
+ 'face-lying' |
+ 'sprinkler' |
+ 'building-circle-xmark' |
+ 'person-sledding' |
+ 'sledding' |
+ 'game-console-handheld' |
+ 'ship' |
+ 'clock-six-thirty' |
+ 'battery-slash' |
+ 'tugrik-sign' |
+ 'arrows-down-to-line' |
+ 'download' |
+ 'shelves' |
+ 'inventory' |
+ 'cloud-snow' |
+ 'face-grin' |
+ 'grin' |
+ 'delete-left' |
+ 'backspace' |
+ 'oven' |
+ 'cloud-binary' |
+ 'eye-dropper' |
+ 'eye-dropper-empty' |
+ 'eyedropper' |
+ 'comment-captions' |
+ 'comments-question' |
+ 'scribble' |
+ 'rotate-exclamation' |
+ 'file-circle-check' |
+ 'glass' |
+ 'loader' |
+ 'forward' |
+ 'user-pilot' |
+ 'mobile' |
+ 'mobile-android' |
+ 'mobile-phone' |
+ 'code-pull-request-closed' |
+ 'face-meh' |
+ 'meh' |
+ 'align-center' |
+ 'book-skull' |
+ 'book-dead' |
+ 'id-card' |
+ 'drivers-license' |
+ 'face-dotted' |
+ 'face-worried' |
+ 'outdent' |
+ 'dedent' |
+ 'heart-circle-exclamation' |
+ 'house' |
+ 'home' |
+ 'home-alt' |
+ 'home-lg-alt' |
+ 'vector-circle' |
+ 'car-circle-bolt' |
+ 'calendar-week' |
+ 'flying-disc' |
+ 'laptop-medical' |
+ 'square-down-right' |
+ 'b' |
+ 'seat-airline' |
+ 'moon-over-sun' |
+ 'eclipse-alt' |
+ 'pipe' |
+ 'file-medical' |
+ 'potato' |
+ 'dice-one' |
+ 'circle-a' |
+ 'helmet-battle' |
+ 'butter' |
+ 'blanket-fire' |
+ 'kiwi-bird' |
+ 'castle' |
+ 'golf-club' |
+ 'arrow-right-arrow-left' |
+ 'exchange' |
+ 'rotate-right' |
+ 'redo-alt' |
+ 'rotate-forward' |
+ 'utensils' |
+ 'cutlery' |
+ 'arrow-up-wide-short' |
+ 'sort-amount-up' |
+ 'chart-pie-simple-circle-dollar' |
+ 'balloons' |
+ 'mill-sign' |
+ 'bowl-rice' |
+ 'timeline-arrow' |
+ 'skull' |
+ 'game-board-simple' |
+ 'game-board-alt' |
+ 'circle-video' |
+ 'video-circle' |
+ 'chart-scatter-bubble' |
+ 'house-turret' |
+ 'banana' |
+ 'hand-holding-skull' |
+ 'people-dress' |
+ 'loveseat' |
+ 'couch-small' |
+ 'tower-broadcast' |
+ 'broadcast-tower' |
+ 'truck-pickup' |
+ 'block-quote' |
+ 'up-long' |
+ 'long-arrow-alt-up' |
+ 'stop' |
+ 'code-merge' |
+ 'money-check-dollar-pen' |
+ 'money-check-edit-alt' |
+ 'up-from-line' |
+ 'arrow-alt-from-bottom' |
+ 'upload' |
+ 'hurricane' |
+ 'grid-round-2-plus' |
+ 'people-pants' |
+ 'mound' |
+ 'windsock' |
+ 'circle-half' |
+ 'brake-warning' |
+ 'toilet-portable' |
+ 'compact-disc' |
+ 'file-arrow-down' |
+ 'file-download' |
+ 'saxophone-fire' |
+ 'sax-hot' |
+ 'camera-web-slash' |
+ 'webcam-slash' |
+ 'folder-medical' |
+ 'folder-gear' |
+ 'folder-cog' |
+ 'hand-wave' |
+ 'arrow-up-arrow-down' |
+ 'sort-up-down' |
+ 'caravan' |
+ 'shield-cat' |
+ 'message-slash' |
+ 'comment-alt-slash' |
+ 'bolt' |
+ 'zap' |
+ 'trash-can-check' |
+ 'glass-water' |
+ 'oil-well' |
+ 'person-simple' |
+ 'vault' |
+ 'mars' |
+ 'toilet' |
+ 'plane-circle-xmark' |
+ 'yen-sign' |
+ 'cny' |
+ 'jpy' |
+ 'rmb' |
+ 'yen' |
+ 'gear-code' |
+ 'notes' |
+ 'ruble-sign' |
+ 'rouble' |
+ 'rub' |
+ 'ruble' |
+ 'trash-undo' |
+ 'trash-arrow-turn-left' |
+ 'champagne-glass' |
+ 'glass-champagne' |
+ 'objects-align-center-horizontal' |
+ 'sun' |
+ 'trash-can-slash' |
+ 'trash-alt-slash' |
+ 'screen-users' |
+ 'users-class' |
+ 'guitar' |
+ 'square-arrow-left' |
+ 'arrow-square-left' |
+ 'square-8' |
+ 'face-smile-hearts' |
+ 'brackets-square' |
+ 'brackets' |
+ 'laptop-arrow-down' |
+ 'hockey-stick-puck' |
+ 'house-tree' |
+ 'signal-fair' |
+ 'signal2' |
+ 'face-laugh-wink' |
+ 'laugh-wink' |
+ 'circle-dollar' |
+ 'dollar-circle' |
+ 'usd-circle' |
+ 'horse-head' |
+ 'arrows-repeat' |
+ 'repeat-alt' |
+ 'bore-hole' |
+ 'industry' |
+ 'image-polaroid' |
+ 'wave-triangle' |
+ 'person-running-fast' |
+ 'circle-down' |
+ 'arrow-alt-circle-down' |
+ 'grill' |
+ 'arrows-turn-to-dots' |
+ 'chart-mixed' |
+ 'analytics' |
+ 'florin-sign' |
+ 'arrow-down-short-wide' |
+ 'sort-amount-desc' |
+ 'sort-amount-down-alt' |
+ 'less-than' |
+ 'display-code' |
+ 'desktop-code' |
+ 'face-drooling' |
+ 'oil-temperature' |
+ 'oil-temp' |
+ 'square-question' |
+ 'question-square' |
+ 'air-conditioner' |
+ 'angle-down' |
+ 'mountains' |
+ 'omega' |
+ 'car-tunnel' |
+ 'person-dolly-empty' |
+ 'pan-food' |
+ 'head-side-cough' |
+ 'grip-lines' |
+ 'thumbs-down' |
+ 'user-lock' |
+ 'arrow-right-long' |
+ 'long-arrow-right' |
+ 'tickets-airline' |
+ 'anchor-circle-xmark' |
+ 'ellipsis' |
+ 'ellipsis-h' |
+ 'nfc-slash' |
+ 'chess-pawn' |
+ 'kit-medical' |
+ 'first-aid' |
+ 'grid-2-plus' |
+ 'bells' |
+ 'person-through-window' |
+ 'toolbox' |
+ 'envelope-dot' |
+ 'envelope-badge' |
+ 'hands-holding-circle' |
+ 'bug' |
+ 'bowl-chopsticks' |
+ 'credit-card' |
+ 'credit-card-alt' |
+ 'circle-s' |
+ 'box-ballot' |
+ 'car' |
+ 'automobile' |
+ 'hand-holding-hand' |
+ 'user-tie-hair' |
+ 'podium-star' |
+ 'user-hair-mullet' |
+ 'business-front' |
+ 'party-back' |
+ 'trian-balbot' |
+ 'microphone-stand' |
+ 'book-open-reader' |
+ 'book-reader' |
+ 'family-dress' |
+ 'circle-x' |
+ 'cabin' |
+ 'mountain-sun' |
+ 'chart-simple-horizontal' |
+ 'bluetooth' |
+ 'arrows-left-right-to-line' |
+ 'hand-back-point-left' |
+ 'message-dots' |
+ 'comment-alt-dots' |
+ 'messaging' |
+ 'file-heart' |
+ 'beer-mug' |
+ 'beer-foam' |
+ 'dice-d20' |
+ 'drone' |
+ 'truck-droplet' |
+ 'file-circle-xmark' |
+ 'temperature-arrow-up' |
+ 'temperature-up' |
+ 'medal' |
+ 'bed' |
+ 'book-copy' |
+ 'square-h' |
+ 'h-square' |
+ 'square-c' |
+ 'clock-two' |
+ 'square-ellipsis-vertical' |
+ 'calendar-users' |
+ 'podcast' |
+ 'bee' |
+ 'temperature-full' |
+ 'temperature4' |
+ 'thermometer4' |
+ 'thermometer-full' |
+ 'bell' |
+ 'candy-bar' |
+ 'chocolate-bar' |
+ 'xmark-large' |
+ 'pinata' |
+ 'arrows-from-line' |
+ 'superscript' |
+ 'bowl-spoon' |
+ 'hexagon-check' |
+ 'plug-circle-xmark' |
+ 'star-of-life' |
+ 'phone-slash' |
+ 'traffic-light-stop' |
+ 'paint-roller' |
+ 'accent-grave' |
+ 'handshake-angle' |
+ 'hands-helping' |
+ 'circle-0' |
+ 'dial-med-low' |
+ 'location-dot' |
+ 'map-marker-alt' |
+ 'crab' |
+ 'box-open-full' |
+ 'box-full' |
+ 'file' |
+ 'greater-than' |
+ 'quotes' |
+ 'pretzel' |
+ 'person-swimming' |
+ 'swimmer' |
+ 'arrow-down' |
+ 'user-robot-xmarks' |
+ 'message-quote' |
+ 'comment-alt-quote' |
+ 'candy-corn' |
+ 'folder-magnifying-glass' |
+ 'folder-search' |
+ 'notebook' |
+ 'droplet' |
+ 'tint' |
+ 'bullseye-pointer' |
+ 'eraser' |
+ 'hexagon-image' |
+ 'earth-americas' |
+ 'earth' |
+ 'earth-america' |
+ 'globe-americas' |
+ 'crate-apple' |
+ 'apple-crate' |
+ 'person-burst' |
+ 'game-board' |
+ 'hat-chef' |
+ 'hand-back-point-right' |
+ 'dove' |
+ 'snowflake-droplets' |
+ 'battery-empty' |
+ 'battery0' |
+ 'grid-4' |
+ 'socks' |
+ 'face-sunglasses' |
+ 'inbox' |
+ 'square-0' |
+ 'section' |
+ 'square-this-way-up' |
+ 'box-up' |
+ 'gauge-high' |
+ 'tachometer-alt' |
+ 'tachometer-alt-fast' |
+ 'square-ampersand' |
+ 'envelope-open-text' |
+ 'lamp-desk' |
+ 'hospital' |
+ 'hospital-alt' |
+ 'hospital-wide' |
+ 'poll-people' |
+ 'whiskey-glass-ice' |
+ 'glass-whiskey-rocks' |
+ 'wine-bottle' |
+ 'chess-rook' |
+ 'user-bounty-hunter' |
+ 'bars-staggered' |
+ 'reorder' |
+ 'stream' |
+ 'diagram-sankey' |
+ 'cloud-hail-mixed' |
+ 'circle-up-left' |
+ 'dharmachakra' |
+ 'objects-align-left' |
+ 'oil-can-drip' |
+ 'face-smiling-hands' |
+ 'broccoli' |
+ 'route-interstate' |
+ 'ear-muffs' |
+ 'hotdog' |
+ 'transporter-empty' |
+ 'person-walking-with-cane' |
+ 'blind' |
+ 'angle-90' |
+ 'rectangle-terminal' |
+ 'kite' |
+ 'drum' |
+ 'scrubber' |
+ 'ice-cream' |
+ 'heart-circle-bolt' |
+ 'fish-bones' |
+ 'deer-rudolph' |
+ 'fax' |
+ 'paragraph' |
+ 'head-side-heart' |
+ 'square-e' |
+ 'meter-fire' |
+ 'cloud-hail' |
+ 'check-to-slot' |
+ 'vote-yea' |
+ 'money-from-bracket' |
+ 'star-half' |
+ 'car-bus' |
+ 'speaker' |
+ 'timer' |
+ 'boxes-stacked' |
+ 'boxes' |
+ 'boxes-alt' |
+ 'grill-hot' |
+ 'ballot-check' |
+ 'link' |
+ 'chain' |
+ 'ear-listen' |
+ 'assistive-listening-systems' |
+ 'file-minus' |
+ 'tree-city' |
+ 'play' |
+ 'font' |
+ 'cup-togo' |
+ 'coffee-togo' |
+ 'square-down-left' |
+ 'burger-lettuce' |
+ 'rupiah-sign' |
+ 'magnifying-glass' |
+ 'search' |
+ 'table-tennis-paddle-ball' |
+ 'ping-pong-paddle-ball' |
+ 'table-tennis' |
+ 'person-dots-from-line' |
+ 'diagnoses' |
+ 'chevrons-down' |
+ 'chevron-double-down' |
+ 'trash-can-arrow-up' |
+ 'trash-restore-alt' |
+ 'signal-good' |
+ 'signal3' |
+ 'location-question' |
+ 'map-marker-question' |
+ 'floppy-disk-circle-xmark' |
+ 'floppy-disk-times' |
+ 'save-circle-xmark' |
+ 'save-times' |
+ 'naira-sign' |
+ 'peach' |
+ 'taxi-bus' |
+ 'bracket-curly' |
+ 'bracket-curly-left' |
+ 'lobster' |
+ 'cart-flatbed-empty' |
+ 'dolly-flatbed-empty' |
+ 'colon' |
+ 'cart-arrow-down' |
+ 'wand' |
+ 'walkie-talkie' |
+ 'file-pen' |
+ 'file-edit' |
+ 'receipt' |
+ 'table-picnic' |
+ 'square-pen' |
+ 'pen-square' |
+ 'pencil-square' |
+ 'circle-microphone-lines' |
+ 'microphone-circle-alt' |
+ 'display-slash' |
+ 'desktop-slash' |
+ 'suitcase-rolling' |
+ 'person-circle-exclamation' |
+ 'transporter-2' |
+ 'hands-holding-diamond' |
+ 'hand-receiving' |
+ 'money-bill-simple-wave' |
+ 'chevron-down' |
+ 'battery-full' |
+ 'battery' |
+ 'battery5' |
+ 'bell-plus' |
+ 'book-arrow-right' |
+ 'hospitals' |
+ 'club' |
+ 'skull-crossbones' |
+ 'droplet-degree' |
+ 'dewpoint' |
+ 'code-compare' |
+ 'list-ul' |
+ 'list-dots' |
+ 'hand-holding-magic' |
+ 'watermelon-slice' |
+ 'circle-ellipsis' |
+ 'school-lock' |
+ 'tower-cell' |
+ 'sd-cards' |
+ 'jug-bottle' |
+ 'down-long' |
+ 'long-arrow-alt-down' |
+ 'envelopes' |
+ 'phone-office' |
+ 'ranking-star' |
+ 'chess-king' |
+ 'nfc-pen' |
+ 'person-harassing' |
+ 'hat-winter' |
+ 'brazilian-real-sign' |
+ 'landmark-dome' |
+ 'landmark-alt' |
+ 'bone-break' |
+ 'arrow-up' |
+ 'down-from-dotted-line' |
+ 'tv' |
+ 'television' |
+ 'tv-alt' |
+ 'border-left' |
+ 'circle-divide' |
+ 'shrimp' |
+ 'list-check' |
+ 'tasks' |
+ 'diagram-subtask' |
+ 'jug-detergent' |
+ 'circle-user' |
+ 'user-circle' |
+ 'square-y' |
+ 'user-doctor-hair' |
+ 'planet-ringed' |
+ 'mushroom' |
+ 'user-shield' |
+ 'megaphone' |
+ 'wreath-laurel' |
+ 'circle-exclamation-check' |
+ 'wind' |
+ 'box-dollar' |
+ 'box-usd' |
+ 'car-burst' |
+ 'car-crash' |
+ 'y' |
+ 'user-headset' |
+ 'arrows-retweet' |
+ 'retweet-alt' |
+ 'person-snowboarding' |
+ 'snowboarding' |
+ 'square-chevron-right' |
+ 'chevron-square-right' |
+ 'lacrosse-stick-ball' |
+ 'truck-fast' |
+ 'shipping-fast' |
+ 'user-magnifying-glass' |
+ 'star-sharp' |
+ 'comment-heart' |
+ 'circle-1' |
+ 'circle-star' |
+ 'star-circle' |
+ 'fish' |
+ 'cloud-fog' |
+ 'fog' |
+ 'waffle' |
+ 'music-note' |
+ 'music-alt' |
+ 'hexagon-exclamation' |
+ 'cart-shopping-fast' |
+ 'object-union' |
+ 'user-graduate' |
+ 'starfighter' |
+ 'circle-half-stroke' |
+ 'adjust' |
+ 'arrow-right-long-to-line' |
+ 'square-arrow-down' |
+ 'arrow-square-down' |
+ 'diamond-half-stroke' |
+ 'clapperboard' |
+ 'square-chevron-left' |
+ 'chevron-square-left' |
+ 'phone-intercom' |
+ 'link-horizontal' |
+ 'chain-horizontal' |
+ 'mango' |
+ 'music-note-slash' |
+ 'music-alt-slash' |
+ 'circle-radiation' |
+ 'radiation-alt' |
+ 'face-tongue-sweat' |
+ 'globe-stand' |
+ 'baseball' |
+ 'baseball-ball' |
+ 'circle-p' |
+ 'award-simple' |
+ 'jet-fighter-up' |
+ 'diagram-project' |
+ 'project-diagram' |
+ 'pedestal' |
+ 'chart-pyramid' |
+ 'sidebar' |
+ 'snowman-head' |
+ 'frosty-head' |
+ 'copy' |
+ 'burger-glass' |
+ 'volume-xmark' |
+ 'volume-mute' |
+ 'volume-times' |
+ 'hand-sparkles' |
+ 'bars-filter' |
+ 'paintbrush-pencil' |
+ 'party-bell' |
+ 'user-vneck-hair' |
+ 'jack-o-lantern' |
+ 'grip' |
+ 'grip-horizontal' |
+ 'share-from-square' |
+ 'share-square' |
+ 'keynote' |
+ 'child-combatant' |
+ 'child-rifle' |
+ 'gun' |
+ 'square-phone' |
+ 'phone-square' |
+ 'hat-beach' |
+ 'plus' |
+ 'add' |
+ 'expand' |
+ 'computer' |
+ 'fort' |
+ 'cloud-check' |
+ 'xmark' |
+ 'close' |
+ 'multiply' |
+ 'remove' |
+ 'times' |
+ 'face-smirking' |
+ 'arrows-up-down-left-right' |
+ 'arrows' |
+ 'chalkboard-user' |
+ 'chalkboard-teacher' |
+ 'rhombus' |
+ 'claw-marks' |
+ 'peso-sign' |
+ 'face-smile-tongue' |
+ 'cart-circle-xmark' |
+ 'building-shield' |
+ 'circle-phone-flip' |
+ 'phone-circle-alt' |
+ 'baby' |
+ 'users-line' |
+ 'quote-left' |
+ 'quote-left-alt' |
+ 'tractor' |
+ 'key-skeleton' |
+ 'trash-arrow-up' |
+ 'trash-restore' |
+ 'arrow-down-up-lock' |
+ 'arrow-down-to-bracket' |
+ 'lines-leaning' |
+ 'square-q' |
+ 'ruler-combined' |
+ 'symbols' |
+ 'icons-alt' |
+ 'copyright' |
+ 'flask-gear' |
+ 'highlighter-line' |
+ 'bracket-square' |
+ 'bracket' |
+ 'bracket-left' |
+ 'island-tropical' |
+ 'island-tree-palm' |
+ 'arrow-right-from-line' |
+ 'arrow-from-left' |
+ 'h2' |
+ 'equals' |
+ 'cake-slice' |
+ 'shortcake' |
+ 'peanut' |
+ 'wrench-simple' |
+ 'blender' |
+ 'teeth' |
+ 'tally-2' |
+ 'shekel-sign' |
+ 'ils' |
+ 'shekel' |
+ 'sheqel' |
+ 'sheqel-sign' |
+ 'cars' |
+ 'axe-battle' |
+ 'user-hair-long' |
+ 'map' |
+ 'file-circle-info' |
+ 'face-disappointed' |
+ 'lasso-sparkles' |
+ 'clock-eleven' |
+ 'rocket' |
+ 'siren-on' |
+ 'clock-ten' |
+ 'candle-holder' |
+ 'video-arrow-down-left' |
+ 'photo-film' |
+ 'photo-video' |
+ 'floppy-disk-circle-arrow-right' |
+ 'save-circle-arrow-right' |
+ 'folder-minus' |
+ 'planet-moon' |
+ 'face-eyes-xmarks' |
+ 'chart-scatter' |
+ 'display-arrow-down' |
+ 'store' |
+ 'arrow-trend-up' |
+ 'plug-circle-minus' |
+ 'olive-branch' |
+ 'angle' |
+ 'vacuum-robot' |
+ 'sign-hanging' |
+ 'sign' |
+ 'square-divide' |
+ 'signal-stream-slash' |
+ 'bezier-curve' |
+ 'eye-dropper-half' |
+ 'store-lock' |
+ 'bell-slash' |
+ 'cloud-bolt-sun' |
+ 'thunderstorm-sun' |
+ 'camera-slash' |
+ 'comment-quote' |
+ 'tablet' |
+ 'tablet-android' |
+ 'school-flag' |
+ 'message-code' |
+ 'glass-half' |
+ 'glass-half-empty' |
+ 'glass-half-full' |
+ 'fill' |
+ 'message-minus' |
+ 'comment-alt-minus' |
+ 'angle-up' |
+ 'dinosaur' |
+ 'drumstick-bite' |
+ 'link-horizontal-slash' |
+ 'chain-horizontal-slash' |
+ 'holly-berry' |
+ 'nose' |
+ 'chevron-left' |
+ 'bacteria' |
+ 'clouds' |
+ 'money-bill-simple' |
+ 'hand-lizard' |
+ 'table-pivot' |
+ 'filter-slash' |
+ 'trash-can-undo' |
+ 'trash-can-arrow-turn-left' |
+ 'trash-undo-alt' |
+ 'notdef' |
+ 'disease' |
+ 'person-to-door' |
+ 'turntable' |
+ 'briefcase-medical' |
+ 'genderless' |
+ 'chevron-right' |
+ 'signal-weak' |
+ 'signal1' |
+ 'clock-five' |
+ 'retweet' |
+ 'car-rear' |
+ 'car-alt' |
+ 'pump-soap' |
+ 'computer-classic' |
+ 'frame' |
+ 'video-slash' |
+ 'battery-quarter' |
+ 'battery2' |
+ 'ellipsis-stroke' |
+ 'ellipsis-h-alt' |
+ 'radio' |
+ 'baby-carriage' |
+ 'carriage-baby' |
+ 'face-expressionless' |
+ 'down-to-dotted-line' |
+ 'cloud-music' |
+ 'traffic-light' |
+ 'cloud-minus' |
+ 'thermometer' |
+ 'shield-minus' |
+ 'vr-cardboard' |
+ 'car-tilt' |
+ 'gauge-circle-minus' |
+ 'brightness-low' |
+ 'hand-middle-finger' |
+ 'percent' |
+ 'percentage' |
+ 'truck-moving' |
+ 'glass-water-droplet' |
+ 'conveyor-belt' |
+ 'location-check' |
+ 'map-marker-check' |
+ 'coin-vertical' |
+ 'display' |
+ 'person-sign' |
+ 'face-smile' |
+ 'smile' |
+ 'phone-hangup' |
+ 'signature-slash' |
+ 'thumbtack' |
+ 'thumb-tack' |
+ 'wheat-slash' |
+ 'trophy' |
+ 'clouds-sun' |
+ 'person-praying' |
+ 'pray' |
+ 'hammer' |
+ 'face-vomit' |
+ 'speakers' |
+ 'tty-answer' |
+ 'teletype-answer' |
+ 'mug-tea-saucer' |
+ 'diagram-lean-canvas' |
+ 'alt' |
+ 'dial' |
+ 'dial-med-high' |
+ 'hand-peace' |
+ 'circle-trash' |
+ 'trash-circle' |
+ 'rotate' |
+ 'sync-alt' |
+ 'circle-quarters' |
+ 'spinner' |
+ 'tower-control' |
+ 'arrow-up-triangle-square' |
+ 'sort-shapes-up' |
+ 'whale' |
+ 'robot' |
+ 'peace' |
+ 'party-horn' |
+ 'gears' |
+ 'cogs' |
+ 'sun-bright' |
+ 'sun-alt' |
+ 'warehouse' |
+ 'conveyor-belt-arm' |
+ 'lock-keyhole-open' |
+ 'lock-open-alt' |
+ 'square-fragile' |
+ 'box-fragile' |
+ 'square-wine-glass-crack' |
+ 'arrow-up-right-dots' |
+ 'square-n' |
+ 'splotch' |
+ 'face-grin-hearts' |
+ 'grin-hearts' |
+ 'meter' |
+ 'mandolin' |
+ 'dice-four' |
+ 'sim-card' |
+ 'transgender' |
+ 'transgender-alt' |
+ 'mercury' |
+ 'up-from-bracket' |
+ 'knife-kitchen' |
+ 'border-right' |
+ 'arrow-turn-down' |
+ 'level-down' |
+ 'spade' |
+ 'card-spade' |
+ 'line-columns' |
+ 'arrow-right-to-line' |
+ 'arrow-to-right' |
+ 'person-falling-burst' |
+ 'flag-pennant' |
+ 'pennant' |
+ 'conveyor-belt-empty' |
+ 'user-group-simple' |
+ 'award' |
+ 'ticket-simple' |
+ 'ticket-alt' |
+ 'building' |
+ 'angles-left' |
+ 'angle-double-left' |
+ 'camcorder' |
+ 'video-handheld' |
+ 'pancakes' |
+ 'album-circle-user' |
+ 'qrcode' |
+ 'dice-d10' |
+ 'fireplace' |
+ 'browser' |
+ 'pen-paintbrush' |
+ 'pencil-paintbrush' |
+ 'fish-cooked' |
+ 'chair-office' |
+ 'nesting-dolls' |
+ 'clock-rotate-left' |
+ 'history' |
+ 'trumpet' |
+ 'face-grin-beam-sweat' |
+ 'grin-beam-sweat' |
+ 'fire-smoke' |
+ 'phone-missed' |
+ 'file-export' |
+ 'arrow-right-from-file' |
+ 'shield' |
+ 'shield-blank' |
+ 'arrow-up-short-wide' |
+ 'sort-amount-up-alt' |
+ 'arrows-repeat-1' |
+ 'repeat1-alt' |
+ 'gun-slash' |
+ 'avocado' |
+ 'binary' |
+ 'glasses-round' |
+ 'glasses-alt' |
+ 'phone-plus' |
+ 'ditto' |
+ 'person-seat' |
+ 'house-medical' |
+ 'golf-ball-tee' |
+ 'golf-ball' |
+ 'circle-chevron-left' |
+ 'chevron-circle-left' |
+ 'house-chimney-window' |
+ 'scythe' |
+ 'pen-nib' |
+ 'ban-parking' |
+ 'parking-circle-slash' |
+ 'tent-arrow-turn-left' |
+ 'face-diagonal-mouth' |
+ 'diagram-cells' |
+ 'cricket-bat-ball' |
+ 'cricket' |
+ 'tents' |
+ 'wand-magic' |
+ 'magic' |
+ 'dog' |
+ 'pen-line' |
+ 'atom-simple' |
+ 'atom-alt' |
+ 'ampersand' |
+ 'carrot' |
+ 'arrow-up-from-line' |
+ 'arrow-from-bottom' |
+ 'moon' |
+ 'pen-slash' |
+ 'wine-glass-empty' |
+ 'wine-glass-alt' |
+ 'square-star' |
+ 'cheese' |
+ 'send-backward' |
+ 'yin-yang' |
+ 'music' |
+ 'compass-slash' |
+ 'clock-one' |
+ 'file-music' |
+ 'code-commit' |
+ 'temperature-low' |
+ 'person-biking' |
+ 'biking' |
+ 'display-chart-up-circle-currency' |
+ 'skeleton' |
+ 'circle-g' |
+ 'circle-arrow-up-left' |
+ 'coin-blank' |
+ 'broom' |
+ 'vacuum' |
+ 'shield-heart' |
+ 'card-heart' |
+ 'lightbulb-cfl-on' |
+ 'melon' |
+ 'gopuram' |
+ 'earth-oceania' |
+ 'globe-oceania' |
+ 'container-storage' |
+ 'face-pouting' |
+ 'square-xmark' |
+ 'times-square' |
+ 'xmark-square' |
+ 'face-explode' |
+ 'exploding-head' |
+ 'hashtag' |
+ 'up-right-and-down-left-from-center' |
+ 'expand-alt' |
+ 'oil-can' |
+ 't' |
+ 'transformer-bolt' |
+ 'hippo' |
+ 'chart-column' |
+ 'cassette-vhs' |
+ 'vhs' |
+ 'infinity' |
+ 'vial-circle-check' |
+ 'chimney' |
+ 'object-intersect' |
+ 'person-arrow-down-to-line' |
+ 'voicemail' |
+ 'block-brick' |
+ 'wall-brick' |
+ 'fan' |
+ 'bags-shopping' |
+ 'paragraph-left' |
+ 'paragraph-rtl' |
+ 'person-walking-luggage' |
+ 'caravan-simple' |
+ 'caravan-alt' |
+ 'turtle' |
+ 'pencil-mechanical' |
+ 'up-down' |
+ 'arrows-alt-v' |
+ 'cloud-moon-rain' |
+ 'booth-curtain' |
+ 'calendar' |
+ 'box-heart' |
+ 'trailer' |
+ 'user-doctor-message' |
+ 'user-md-chat' |
+ 'bahai' |
+ 'haykal' |
+ 'amp-guitar' |
+ 'sd-card' |
+ 'volume-slash' |
+ 'border-bottom' |
+ 'wifi-weak' |
+ 'wifi1' |
+ 'dragon' |
+ 'shoe-prints' |
+ 'circle-plus' |
+ 'plus-circle' |
+ 'face-grin-tongue-wink' |
+ 'grin-tongue-wink' |
+ 'hand-holding' |
+ 'plug-circle-exclamation' |
+ 'link-slash' |
+ 'chain-broken' |
+ 'chain-slash' |
+ 'unlink' |
+ 'clone' |
+ 'person-walking-arrow-loop-left' |
+ 'arrow-up-z-a' |
+ 'sort-alpha-up-alt' |
+ 'fire-flame-curved' |
+ 'fire-alt' |
+ 'tornado' |
+ 'file-circle-plus' |
+ 'delete-right' |
+ 'book-quran' |
+ 'quran' |
+ 'circle-quarter' |
+ 'anchor' |
+ 'border-all' |
+ 'function' |
+ 'face-angry' |
+ 'angry' |
+ 'people-simple' |
+ 'cookie-bite' |
+ 'arrow-trend-down' |
+ 'rss' |
+ 'feed' |
+ 'face-monocle' |
+ 'draw-polygon' |
+ 'scale-balanced' |
+ 'balance-scale' |
+ 'calendar-lines' |
+ 'calendar-note' |
+ 'arrow-down-big-small' |
+ 'sort-size-down' |
+ 'gauge-simple-high' |
+ 'tachometer' |
+ 'tachometer-fast' |
+ 'do-not-enter' |
+ 'shower' |
+ 'dice-d8' |
+ 'desktop' |
+ 'desktop-alt' |
+ 'm' |
+ 'grip-dots-vertical' |
+ 'face-viewfinder' |
+ 'soft-serve' |
+ 'creemee' |
+ 'h5' |
+ 'hand-back-point-down' |
+ 'table-list' |
+ 'th-list' |
+ 'comment-sms' |
+ 'sms' |
+ 'rectangle' |
+ 'rectangle-landscape' |
+ 'clipboard-list-check' |
+ 'turkey' |
+ 'book' |
+ 'user-plus' |
+ 'ice-skate' |
+ 'check' |
+ 'battery-three-quarters' |
+ 'battery4' |
+ 'tomato' |
+ 'sword-laser' |
+ 'house-circle-check' |
+ 'buildings' |
+ 'angle-left' |
+ 'cart-flatbed-boxes' |
+ 'dolly-flatbed-alt' |
+ 'diagram-successor' |
+ 'truck-arrow-right' |
+ 'square-w' |
+ 'arrows-split-up-and-left' |
+ 'lamp' |
+ 'airplay' |
+ 'hand-fist' |
+ 'fist-raised' |
+ 'shield-quartered' |
+ 'slash-forward' |
+ 'location-pen' |
+ 'map-marker-edit' |
+ 'cloud-moon' |
+ 'pot-food' |
+ 'briefcase' |
+ 'person-falling' |
+ 'image-portrait' |
+ 'portrait' |
+ 'user-tag' |
+ 'rug' |
+ 'print-slash' |
+ 'earth-europe' |
+ 'globe-europe' |
+ 'cart-flatbed-suitcase' |
+ 'luggage-cart' |
+ 'hand-back-point-ribbon' |
+ 'rectangle-xmark' |
+ 'rectangle-times' |
+ 'times-rectangle' |
+ 'window-close' |
+ 'tire-rugged' |
+ 'lightbulb-dollar' |
+ 'cowbell' |
+ 'baht-sign' |
+ 'corner' |
+ 'chevrons-right' |
+ 'chevron-double-right' |
+ 'book-open' |
+ 'book-journal-whills' |
+ 'journal-whills' |
+ 'inhaler' |
+ 'handcuffs' |
+ 'snake' |
+ 'triangle-exclamation' |
+ 'exclamation-triangle' |
+ 'warning' |
+ 'note-medical' |
+ 'database' |
+ 'down-left' |
+ 'share' |
+ 'arrow-turn-right' |
+ 'mail-forward' |
+ 'face-thinking' |
+ 'turn-down-right' |
+ 'bottle-droplet' |
+ 'mask-face' |
+ 'hill-rockslide' |
+ 'scanner-keyboard' |
+ 'circle-o' |
+ 'grid-horizontal' |
+ 'message-dollar' |
+ 'comment-alt-dollar' |
+ 'right-left' |
+ 'exchange-alt' |
+ 'columns-3' |
+ 'paper-plane' |
+ 'road-circle-exclamation' |
+ 'dungeon' |
+ 'hand-holding-box' |
+ 'input-text' |
+ 'window-flip' |
+ 'window-alt' |
+ 'align-right' |
+ 'scanner-gun' |
+ 'scanner' |
+ 'tire' |
+ 'engine' |
+ 'money-bill-1-wave' |
+ 'money-bill-wave-alt' |
+ 'life-ring' |
+ 'hands' |
+ 'sign-language' |
+ 'signing' |
+ 'circle-caret-right' |
+ 'caret-circle-right' |
+ 'wheat' |
+ 'file-spreadsheet' |
+ 'audio-description-slash' |
+ 'calendar-day' |
+ 'water-ladder' |
+ 'ladder-water' |
+ 'swimming-pool' |
+ 'arrows-up-down' |
+ 'arrows-v' |
+ 'chess-pawn-piece' |
+ 'chess-pawn-alt' |
+ 'face-grimace' |
+ 'grimace' |
+ 'wheelchair-move' |
+ 'wheelchair-alt' |
+ 'turn-down' |
+ 'level-down-alt' |
+ 'square-s' |
+ 'rectangle-barcode' |
+ 'barcode-alt' |
+ 'person-walking-arrow-right' |
+ 'square-envelope' |
+ 'envelope-square' |
+ 'dice' |
+ 'unicorn' |
+ 'bowling-ball' |
+ 'pompebled' |
+ 'brain' |
+ 'watch-smart' |
+ 'book-user' |
+ 'sensor-cloud' |
+ 'sensor-smoke' |
+ 'clapperboard-play' |
+ 'bandage' |
+ 'band-aid' |
+ 'calendar-minus' |
+ 'circle-xmark' |
+ 'times-circle' |
+ 'xmark-circle' |
+ 'circle-4' |
+ 'gifts' |
+ 'album-collection' |
+ 'hotel' |
+ 'earth-asia' |
+ 'globe-asia' |
+ 'id-card-clip' |
+ 'id-card-alt' |
+ 'magnifying-glass-plus' |
+ 'search-plus' |
+ 'thumbs-up' |
+ 'cloud-showers' |
+ 'user-clock' |
+ 'onion' |
+ 'clock-twelve-thirty' |
+ 'arrow-down-to-dotted-line' |
+ 'hand-dots' |
+ 'allergies' |
+ 'file-invoice' |
+ 'window-minimize' |
+ 'rectangle-wide' |
+ 'comment-arrow-up' |
+ 'garlic' |
+ 'mug-saucer' |
+ 'coffee' |
+ 'brush' |
+ 'tree-decorated' |
+ 'mask' |
+ 'calendar-heart' |
+ 'magnifying-glass-minus' |
+ 'search-minus' |
+ 'flower' |
+ 'right-left-large' |
+ 'ruler-vertical' |
+ 'circles-overlap' |
+ 'user-large' |
+ 'user-alt' |
+ 'starship-freighter' |
+ 'train-tram' |
+ 'bridge-suspension' |
+ 'trash-check' |
+ 'user-nurse' |
+ 'boombox' |
+ 'syringe' |
+ 'cloud-sun' |
+ 'shield-exclamation' |
+ 'stopwatch-20' |
+ 'square-full' |
+ 'grip-dots' |
+ 'comment-exclamation' |
+ 'pen-swirl' |
+ 'falafel' |
+ 'circle-2' |
+ 'magnet' |
+ 'jar' |
+ 'gramophone' |
+ 'dice-d12' |
+ 'note-sticky' |
+ 'sticky-note' |
+ 'down' |
+ 'arrow-alt-down' |
+ 'hundred-points' |
+ '100' |
+ 'paperclip-vertical' |
+ 'wind-warning' |
+ 'wind-circle-exclamation' |
+ 'location-pin-slash' |
+ 'map-marker-slash' |
+ 'face-sad-sweat' |
+ 'bug-slash' |
+ 'cupcake' |
+ 'light-switch-off' |
+ 'toggle-large-off' |
+ 'pen-fancy-slash' |
+ 'truck-container' |
+ 'boot' |
+ 'arrow-up-from-water-pump' |
+ 'file-check' |
+ 'bone' |
+ 'cards-blank' |
+ 'circle-3' |
+ 'bench-tree' |
+ 'keyboard-brightness-low' |
+ 'ski-boot-ski' |
+ 'brain-circuit' |
+ 'user-injured' |
+ 'block-brick-fire' |
+ 'firewall' |
+ 'face-sad-tear' |
+ 'sad-tear' |
+ 'plane' |
+ 'tent-arrows-down' |
+ 'exclamation' |
+ 'arrows-spin' |
+ 'face-smile-relaxed' |
+ 'comment-xmark' |
+ 'comment-times' |
+ 'print' |
+ 'turkish-lira-sign' |
+ 'try' |
+ 'turkish-lira' |
+ 'face-nose-steam' |
+ 'circle-waveform-lines' |
+ 'waveform-circle' |
+ 'dollar-sign' |
+ 'dollar' |
+ 'usd' |
+ 'ferris-wheel' |
+ 'computer-speaker' |
+ 'skull-cow' |
+ 'x' |
+ 'magnifying-glass-dollar' |
+ 'search-dollar' |
+ 'users-gear' |
+ 'users-cog' |
+ 'person-military-pointing' |
+ 'building-columns' |
+ 'bank' |
+ 'institution' |
+ 'museum' |
+ 'university' |
+ 'circle-t' |
+ 'sack' |
+ 'grid-2' |
+ 'camera-cctv' |
+ 'cctv' |
+ 'umbrella' |
+ 'trowel' |
+ 'horizontal-rule' |
+ 'bed-front' |
+ 'bed-alt' |
+ 'd' |
+ 'stapler' |
+ 'masks-theater' |
+ 'theater-masks' |
+ 'kip-sign' |
+ 'face-woozy' |
+ 'cloud-question' |
+ 'pineapple' |
+ 'hand-point-left' |
+ 'gallery-thumbnails' |
+ 'circle-j' |
+ 'eyes' |
+ 'handshake-simple' |
+ 'handshake-alt' |
+ 'page-caret-up' |
+ 'file-caret-up' |
+ 'jet-fighter' |
+ 'fighter-jet' |
+ 'comet' |
+ 'square-share-nodes' |
+ 'share-alt-square' |
+ 'shield-keyhole' |
+ 'barcode' |
+ 'plus-minus' |
+ 'square-sliders-vertical' |
+ 'sliders-v-square' |
+ 'video' |
+ 'video-camera' |
+ 'message-middle' |
+ 'comment-middle-alt' |
+ 'graduation-cap' |
+ 'mortar-board' |
+ 'hand-holding-medical' |
+ 'person-circle-check' |
+ 'square-z' |
+ 'message-text' |
+ 'comment-alt-text' |
+ 'turn-up' |
+ 'level-up-alt' |
+ '0' |
+ '1' |
+ '2' |
+ '3' |
+ '4' |
+ '5' |
+ '6' |
+ '7' |
+ '8' |
+ '9' |
+ 'fill-drip' |
+ 'arrows-to-circle' |
+ 'circle-chevron-right' |
+ 'chevron-circle-right' |
+ 'wagon-covered' |
+ 'line-height' |
+ 'bagel' |
+ 'transporter-7' |
+ 'at' |
+ 'rectangles-mixed' |
+ 'phone-arrow-up-right' |
+ 'phone-arrow-up' |
+ 'phone-outgoing' |
+ 'trash-can' |
+ 'trash-alt' |
+ 'circle-l' |
+ 'head-side-goggles' |
+ 'head-vr' |
+ 'text-height' |
+ 'user-xmark' |
+ 'user-times' |
+ 'face-hand-yawn' |
+ 'gauge-simple-min' |
+ 'tachometer-slowest' |
+ 'stethoscope' |
+ 'coffin' |
+ 'message' |
+ 'comment-alt' |
+ 'salad' |
+ 'bowl-salad' |
+ 'info' |
+ 'robot-astromech' |
+ 'ring-diamond' |
+ 'fondue-pot' |
+ 'theta' |
+ 'face-hand-peeking' |
+ 'square-user' |
+ 'down-left-and-up-right-to-center' |
+ 'compress-alt' |
+ 'explosion' |
+ 'file-lines' |
+ 'file-alt' |
+ 'file-text' |
+ 'wave-square' |
+ 'ring' |
+ 'building-un' |
+ 'dice-three' |
+ 'tire-pressure-warning' |
+ 'wifi-fair' |
+ 'wifi2' |
+ 'calendar-days' |
+ 'calendar-alt' |
+ 'mp3-player' |
+ 'anchor-circle-check' |
+ 'tally-4' |
+ 'rectangle-history' |
+ 'building-circle-arrow-right' |
+ 'volleyball' |
+ 'volleyball-ball' |
+ 'sun-haze' |
+ 'text-size' |
+ 'ufo' |
+ 'fork' |
+ 'utensil-fork' |
+ 'arrows-up-to-line' |
+ 'mobile-signal' |
+ 'barcode-scan' |
+ 'sort-down' |
+ 'sort-desc' |
+ 'folder-arrow-down' |
+ 'folder-download' |
+ 'circle-minus' |
+ 'minus-circle' |
+ 'face-icicles' |
+ 'shovel' |
+ 'door-open' |
+ 'films' |
+ 'right-from-bracket' |
+ 'sign-out-alt' |
+ 'face-glasses' |
+ 'nfc' |
+ 'atom' |
+ 'soap' |
+ 'icons' |
+ 'heart-music-camera-bolt' |
+ 'microphone-lines-slash' |
+ 'microphone-alt-slash' |
+ 'closed-captioning-slash' |
+ 'calculator-simple' |
+ 'calculator-alt' |
+ 'bridge-circle-check' |
+ 'sliders-up' |
+ 'sliders-v' |
+ 'location-minus' |
+ 'map-marker-minus' |
+ 'pump-medical' |
+ 'fingerprint' |
+ 'ski-boot' |
+ 'standard-definition' |
+ 'rectangle-sd' |
+ 'h1' |
+ 'hand-point-right' |
+ 'magnifying-glass-location' |
+ 'search-location' |
+ 'message-bot' |
+ 'forward-step' |
+ 'step-forward' |
+ 'face-smile-beam' |
+ 'smile-beam' |
+ 'light-ceiling' |
+ 'message-exclamation' |
+ 'comment-alt-exclamation' |
+ 'bowl-scoop' |
+ 'bowl-shaved-ice' |
+ 'square-x' |
+ 'utility-pole-double' |
+ 'flag-checkered' |
+ 'chevrons-up' |
+ 'chevron-double-up' |
+ 'football' |
+ 'football-ball' |
+ 'user-vneck' |
+ 'school-circle-exclamation' |
+ 'crop' |
+ 'angles-down' |
+ 'angle-double-down' |
+ 'users-rectangle' |
+ 'people-roof' |
+ 'square-arrow-right' |
+ 'arrow-square-right' |
+ 'location-plus' |
+ 'map-marker-plus' |
+ 'lightbulb-exclamation-on' |
+ 'people-line' |
+ 'beer-mug-empty' |
+ 'beer' |
+ 'crate-empty' |
+ 'diagram-predecessor' |
+ 'transporter' |
+ 'calendar-circle-user' |
+ 'arrow-up-long' |
+ 'long-arrow-up' |
+ 'person-carry-box' |
+ 'person-carry' |
+ 'fire-flame-simple' |
+ 'burn' |
+ 'person' |
+ 'male' |
+ 'laptop' |
+ 'file-csv' |
+ 'menorah' |
+ 'union' |
+ 'chevrons-left' |
+ 'chevron-double-left' |
+ 'circle-heart' |
+ 'heart-circle' |
+ 'truck-plane' |
+ 'record-vinyl' |
+ 'bring-forward' |
+ 'square-p' |
+ 'face-grin-stars' |
+ 'grin-stars' |
+ 'sigma' |
+ 'camera-movie' |
+ 'bong' |
+ 'clarinet' |
+ 'truck-flatbed' |
+ 'spaghetti-monster-flying' |
+ 'pastafarianism' |
+ 'arrow-down-up-across-line' |
+ 'leaf-heart' |
+ 'house-building' |
+ 'cheese-swiss' |
+ 'spoon' |
+ 'utensil-spoon' |
+ 'jar-wheat' |
+ 'envelopes-bulk' |
+ 'mail-bulk' |
+ 'file-circle-exclamation' |
+ 'bow-arrow' |
+ 'cart-xmark' |
+ 'hexagon-xmark' |
+ 'times-hexagon' |
+ 'xmark-hexagon' |
+ 'circle-h' |
+ 'hospital-symbol' |
+ 'merge' |
+ 'pager' |
+ 'cart-minus' |
+ 'address-book' |
+ 'contact-book' |
+ 'pan-frying' |
+ 'grid' |
+ 'grid3' |
+ 'football-helmet' |
+ 'hand-love' |
+ 'trees' |
+ 'strikethrough' |
+ 'page' |
+ 'k' |
+ 'diagram-previous' |
+ 'gauge-min' |
+ 'tachometer-alt-slowest' |
+ 'folder-grid' |
+ 'eggplant' |
+ 'ram' |
+ 'landmark-flag' |
+ 'lips' |
+ 'pencil' |
+ 'pencil-alt' |
+ 'backward' |
+ 'caret-right' |
+ 'comments' |
+ 'paste' |
+ 'file-clipboard' |
+ 'desktop-arrow-down' |
+ 'code-pull-request' |
+ 'pumpkin' |
+ 'clipboard-list' |
+ 'pen-field' |
+ 'blueberries' |
+ 'truck-ramp-box' |
+ 'truck-loading' |
+ 'note' |
+ 'arrow-down-to-square' |
+ 'user-check' |
+ 'cloud-xmark' |
+ 'vial-virus' |
+ 'book-blank' |
+ 'book-alt' |
+ 'golf-flag-hole' |
+ 'message-arrow-down' |
+ 'comment-alt-arrow-down' |
+ 'face-unamused' |
+ 'sheet-plastic' |
+ 'circle-9' |
+ 'blog' |
+ 'user-ninja' |
+ 'pencil-slash' |
+ 'bowling-pins' |
+ 'person-arrow-up-from-line' |
+ 'down-right' |
+ 'scroll-torah' |
+ 'torah' |
+ 'webhook' |
+ 'blinds-open' |
+ 'fence' |
+ 'up' |
+ 'arrow-alt-up' |
+ 'broom-ball' |
+ 'quidditch' |
+ 'quidditch-broom-ball' |
+ 'drumstick' |
+ 'square-v' |
+ 'face-awesome' |
+ 'gave-dandy' |
+ 'dial-off' |
+ 'toggle-off' |
+ 'face-smile-horns' |
+ 'box-archive' |
+ 'archive' |
+ 'grapes' |
+ 'person-drowning' |
+ 'dial-max' |
+ 'circle-m' |
+ 'calendar-image' |
+ 'circle-caret-down' |
+ 'caret-circle-down' |
+ 'arrow-down-9-1' |
+ 'sort-numeric-desc' |
+ 'sort-numeric-down-alt' |
+ 'face-grin-tongue-squint' |
+ 'grin-tongue-squint' |
+ 'shish-kebab' |
+ 'spray-can' |
+ 'alarm-snooze' |
+ 'scarecrow' |
+ 'truck-monster' |
+ 'gift-card' |
+ 'w' |
+ 'code-pull-request-draft' |
+ 'square-b' |
+ 'elephant' |
+ 'earth-africa' |
+ 'globe-africa' |
+ 'rainbow' |
+ 'circle-notch' |
+ 'tablet-screen-button' |
+ 'tablet-alt' |
+ 'paw' |
+ 'message-question' |
+ 'cloud' |
+ 'trowel-bricks' |
+ 'square-3' |
+ 'face-flushed' |
+ 'flushed' |
+ 'hospital-user' |
+ 'microwave' |
+ 'chf-sign' |
+ 'tent-arrow-left-right' |
+ 'cart-circle-arrow-up' |
+ 'trash-clock' |
+ 'gavel' |
+ 'legal' |
+ 'sprinkler-ceiling' |
+ 'browsers' |
+ 'trillium' |
+ 'music-slash' |
+ 'truck-ramp' |
+ 'binoculars' |
+ 'microphone-slash' |
+ 'box-tissue' |
+ 'circle-c' |
+ 'star-christmas' |
+ 'chart-bullet' |
+ 'motorcycle' |
+ 'tree-christmas' |
+ 'tire-flat' |
+ 'sunglasses' |
+ 'badge' |
+ 'message-pen' |
+ 'comment-alt-edit' |
+ 'message-edit' |
+ 'bell-concierge' |
+ 'concierge-bell' |
+ 'pen-ruler' |
+ 'pencil-ruler' |
+ 'arrow-progress' |
+ 'chess-rook-piece' |
+ 'chess-rook-alt' |
+ 'square-root' |
+ 'album-collection-circle-plus' |
+ 'people-arrows' |
+ 'people-arrows-left-right' |
+ 'face-angry-horns' |
+ 'mars-and-venus-burst' |
+ 'tombstone' |
+ 'square-caret-right' |
+ 'caret-square-right' |
+ 'scissors' |
+ 'cut' |
+ 'list-music' |
+ 'sun-plant-wilt' |
+ 'toilets-portable' |
+ 'hockey-puck' |
+ 'mustache' |
+ 'hyphen' |
+ 'table' |
+ 'user-chef' |
+ 'message-image' |
+ 'comment-alt-image' |
+ 'users-medical' |
+ 'sensor-triangle-exclamation' |
+ 'sensor-alert' |
+ 'magnifying-glass-arrow-right' |
+ 'tachograph-digital' |
+ 'digital-tachograph' |
+ 'face-mask' |
+ 'pickleball' |
+ 'star-sharp-half' |
+ 'users-slash' |
+ 'clover' |
+ 'meat' |
+ 'reply' |
+ 'mail-reply' |
+ 'star-and-crescent' |
+ 'empty-set' |
+ 'house-fire' |
+ 'square-minus' |
+ 'minus-square' |
+ 'helicopter' |
+ 'bird' |
+ 'compass' |
+ 'square-caret-down' |
+ 'caret-square-down' |
+ 'heart-half-stroke' |
+ 'heart-half-alt' |
+ 'file-circle-question' |
+ 'laptop-code' |
+ 'joystick' |
+ 'grill-fire' |
+ 'rectangle-vertical-history' |
+ 'swatchbook' |
+ 'prescription-bottle' |
+ 'bars' |
+ 'navicon' |
+ 'keyboard-left' |
+ 'people-group' |
+ 'hourglass-end' |
+ 'hourglass3' |
+ 'heart-crack' |
+ 'heart-broken' |
+ 'face-beam-hand-over-mouth' |
+ 'droplet-percent' |
+ 'humidity' |
+ 'square-up-right' |
+ 'external-link-square-alt' |
+ 'face-kiss-beam' |
+ 'kiss-beam' |
+ 'corn' |
+ 'roller-coaster' |
+ 'photo-film-music' |
+ 'radar' |
+ 'sickle' |
+ 'film' |
+ 'coconut' |
+ 'ruler-horizontal' |
+ 'shield-cross' |
+ 'cassette-tape' |
+ 'square-terminal' |
+ 'people-robbery' |
+ 'lightbulb' |
+ 'caret-left' |
+ 'comment-middle' |
+ 'trash-can-list' |
+ 'block' |
+ 'circle-exclamation' |
+ 'exclamation-circle' |
+ 'school-circle-xmark' |
+ 'arrow-right-from-bracket' |
+ 'sign-out' |
+ 'face-frown-slight' |
+ 'circle-chevron-down' |
+ 'chevron-circle-down' |
+ 'sidebar-flip' |
+ 'unlock-keyhole' |
+ 'unlock-alt' |
+ 'temperature-list' |
+ 'cloud-showers-heavy' |
+ 'headphones-simple' |
+ 'headphones-alt' |
+ 'sitemap' |
+ 'pipe-section' |
+ 'space-station-moon-construction' |
+ 'space-station-moon-alt' |
+ 'circle-dollar-to-slot' |
+ 'donate' |
+ 'memory' |
+ 'face-sleeping' |
+ 'road-spikes' |
+ 'fire-burner' |
+ 'squirrel' |
+ 'arrow-up-to-line' |
+ 'arrow-to-top' |
+ 'flag' |
+ 'face-cowboy-hat' |
+ 'hanukiah' |
+ 'chart-scatter-3d' |
+ 'display-chart-up' |
+ 'square-code' |
+ 'feather' |
+ 'volume-low' |
+ 'volume-down' |
+ 'xmark-to-slot' |
+ 'times-to-slot' |
+ 'vote-nay' |
+ 'box-taped' |
+ 'box-alt' |
+ 'comment-slash' |
+ 'swords' |
+ 'cloud-sun-rain' |
+ 'album' |
+ 'circle-n' |
+ 'compress' |
+ 'wheat-awn' |
+ 'wheat-alt' |
+ 'ankh' |
+ 'hands-holding-child' |
+ 'asterisk' |
+ 'key-skeleton-left-right' |
+ 'comment-lines' |
+ 'luchador-mask' |
+ 'luchador' |
+ 'mask-luchador' |
+ 'square-check' |
+ 'check-square' |
+ 'shredder' |
+ 'book-open-cover' |
+ 'book-open-alt' |
+ 'sandwich' |
+ 'peseta-sign' |
+ 'square-parking-slash' |
+ 'parking-slash' |
+ 'train-tunnel' |
+ 'heading' |
+ 'header' |
+ 'ghost' |
+ 'face-anguished' |
+ 'hockey-sticks' |
+ 'abacus' |
+ 'film-simple' |
+ 'film-alt' |
+ 'list' |
+ 'list-squares' |
+ 'tree-palm' |
+ 'square-phone-flip' |
+ 'phone-square-alt' |
+ 'cart-plus' |
+ 'gamepad' |
+ 'border-center-v' |
+ 'circle-dot' |
+ 'dot-circle' |
+ 'clipboard-medical' |
+ 'face-dizzy' |
+ 'dizzy' |
+ 'egg' |
+ 'up-to-line' |
+ 'arrow-alt-to-top' |
+ 'house-medical-circle-xmark' |
+ 'watch-fitness' |
+ 'clock-nine-thirty' |
+ 'campground' |
+ 'folder-plus' |
+ 'jug' |
+ 'futbol' |
+ 'futbol-ball' |
+ 'soccer-ball' |
+ 'snow-blowing' |
+ 'paintbrush' |
+ 'paint-brush' |
+ 'lock' |
+ 'arrow-down-from-line' |
+ 'arrow-from-top' |
+ 'gas-pump' |
+ 'signal-bars-slash' |
+ 'signal-alt-slash' |
+ 'monkey' |
+ 'rectangle-pro' |
+ 'pro' |
+ 'house-night' |
+ 'hot-tub-person' |
+ 'hot-tub' |
+ 'blanket' |
+ 'map-location' |
+ 'map-marked' |
+ 'house-flood-water' |
+ 'comments-question-check' |
+ 'tree' |
+ 'arrows-cross' |
+ 'backpack' |
+ 'square-small' |
+ 'folder-arrow-up' |
+ 'folder-upload' |
+ 'bridge-lock' |
+ 'crosshairs-simple' |
+ 'sack-dollar' |
+ 'pen-to-square' |
+ 'edit' |
+ 'square-sliders' |
+ 'sliders-h-square' |
+ 'car-side' |
+ 'message-middle-top' |
+ 'comment-middle-top-alt' |
+ 'lightbulb-on' |
+ 'knife' |
+ 'utensil-knife' |
+ 'share-nodes' |
+ 'share-alt' |
+ 'display-chart-up-circle-dollar' |
+ 'wave-sine' |
+ 'heart-circle-minus' |
+ 'circle-w' |
+ 'circle-calendar' |
+ 'calendar-circle' |
+ 'hourglass-half' |
+ 'hourglass2' |
+ 'microscope' |
+ 'sunset' |
+ 'sink' |
+ 'calendar-exclamation' |
+ 'truck-container-empty' |
+ 'hand-heart' |
+ 'bag-shopping' |
+ 'shopping-bag' |
+ 'arrow-down-z-a' |
+ 'sort-alpha-desc' |
+ 'sort-alpha-down-alt' |
+ 'mitten' |
+ 'reply-clock' |
+ 'reply-time' |
+ 'person-rays' |
+ 'right' |
+ 'arrow-alt-right' |
+ 'circle-f' |
+ 'users' |
+ 'face-pleading' |
+ 'eye-slash' |
+ 'flask-vial' |
+ 'police-box' |
+ 'cucumber' |
+ 'head-side-brain' |
+ 'hand' |
+ 'hand-paper' |
+ 'person-biking-mountain' |
+ 'biking-mountain' |
+ 'utensils-slash' |
+ 'print-magnifying-glass' |
+ 'print-search' |
+ 'folder-bookmark' |
+ 'om' |
+ 'pi' |
+ 'flask-round-potion' |
+ 'flask-potion' |
+ 'face-shush' |
+ 'worm' |
+ 'house-circle-xmark' |
+ 'plug' |
+ 'calendar-circle-exclamation' |
+ 'square-i' |
+ 'chevron-up' |
+ 'face-saluting' |
+ 'gauge-simple-low' |
+ 'tachometer-slow' |
+ 'face-persevering' |
+ 'circle-camera' |
+ 'camera-circle' |
+ 'hand-spock' |
+ 'spider-web' |
+ 'circle-microphone' |
+ 'microphone-circle' |
+ 'book-arrow-up' |
+ 'popsicle' |
+ 'command' |
+ 'blinds' |
+ 'stopwatch' |
+ 'saxophone' |
+ 'square-2' |
+ 'field-hockey-stick-ball' |
+ 'field-hockey' |
+ 'arrow-up-square-triangle' |
+ 'sort-shapes-up-alt' |
+ 'face-scream' |
+ 'square-m' |
+ 'camera-web' |
+ 'webcam' |
+ 'comment-arrow-down' |
+ 'lightbulb-cfl' |
+ 'window-frame-open' |
+ 'face-kiss' |
+ 'kiss' |
+ 'bridge-circle-xmark' |
+ 'period' |
+ 'face-grin-tongue' |
+ 'grin-tongue' |
+ 'up-to-dotted-line' |
+ 'thought-bubble' |
+ 'skeleton-ribs' |
+ 'raygun' |
+ 'flute' |
+ 'acorn' |
+ 'video-arrow-up-right' |
+ 'grate-droplet' |
+ 'seal-exclamation' |
+ 'chess-bishop' |
+ 'message-sms' |
+ 'coffee-beans' |
+ 'hat-witch' |
+ 'face-grin-wink' |
+ 'grin-wink' |
+ 'clock-three-thirty' |
+ 'ear-deaf' |
+ 'deaf' |
+ 'deafness' |
+ 'hard-of-hearing' |
+ 'alarm-clock' |
+ 'eclipse' |
+ 'face-relieved' |
+ 'road-circle-check' |
+ 'dice-five' |
+ 'octagon-minus' |
+ 'minus-octagon' |
+ 'square-rss' |
+ 'rss-square' |
+ 'face-zany' |
+ 'tricycle' |
+ 'land-mine-on' |
+ 'square-arrow-up-left' |
+ 'i-cursor' |
+ 'chart-mixed-up-circle-dollar' |
+ 'salt-shaker' |
+ 'stamp' |
+ 'file-plus' |
+ 'draw-square' |
+ 'toilet-paper-under-slash' |
+ 'toilet-paper-reverse-slash' |
+ 'stairs' |
+ 'drone-front' |
+ 'drone-alt' |
+ 'glass-empty' |
+ 'dial-high' |
+ 'user-helmet-safety' |
+ 'user-construction' |
+ 'user-hard-hat' |
+ 'i' |
+ 'hryvnia-sign' |
+ 'hryvnia' |
+ 'arrow-down-left-and-arrow-up-right-to-center' |
+ 'pills' |
+ 'face-grin-wide' |
+ 'grin-alt' |
+ 'tooth' |
+ 'basketball-hoop' |
+ 'objects-align-bottom' |
+ 'v' |
+ 'sparkles' |
+ 'squid' |
+ 'leafy-green' |
+ 'circle-arrow-up-right' |
+ 'calendars' |
+ 'bangladeshi-taka-sign' |
+ 'bicycle' |
+ 'hammer-war' |
+ 'circle-d' |
+ 'spider-black-widow' |
+ 'staff-snake' |
+ 'rod-asclepius' |
+ 'rod-snake' |
+ 'staff-aesculapius' |
+ 'pear' |
+ 'head-side-cough-slash' |
+ 'triangle' |
+ 'apartment' |
+ 'truck-medical' |
+ 'ambulance' |
+ 'pepper' |
+ 'piano' |
+ 'gun-squirt' |
+ 'wheat-awn-circle-exclamation' |
+ 'snowman' |
+ 'user-alien' |
+ 'shield-check' |
+ 'mortar-pestle' |
+ 'road-barrier' |
+ 'chart-candlestick' |
+ 'briefcase-blank' |
+ 'school' |
+ 'igloo' |
+ 'bracket-round' |
+ 'parenthesis' |
+ 'joint' |
+ 'horse-saddle' |
+ 'mug-marshmallows' |
+ 'filters' |
+ 'bell-on' |
+ 'angle-right' |
+ 'dial-med' |
+ 'horse' |
+ 'q' |
+ 'monitor-waveform' |
+ 'monitor-heart-rate' |
+ 'link-simple' |
+ 'whistle' |
+ 'g' |
+ 'wine-glass-crack' |
+ 'fragile' |
+ 'slot-machine' |
+ 'notes-medical' |
+ 'car-wash' |
+ 'escalator' |
+ 'comment-image' |
+ 'temperature-half' |
+ 'temperature2' |
+ 'thermometer2' |
+ 'thermometer-half' |
+ 'dong-sign' |
+ 'donut' |
+ 'doughnut' |
+ 'capsules' |
+ 'poo-storm' |
+ 'poo-bolt' |
+ 'tally-1' |
+ 'face-frown-open' |
+ 'frown-open' |
+ 'square-dashed' |
+ 'square-j' |
+ 'hand-point-up' |
+ 'money-bill' |
+ 'arrow-up-big-small' |
+ 'sort-size-up' |
+ 'barcode-read' |
+ 'baguette' |
+ 'bowl-soft-serve' |
+ 'face-holding-back-tears' |
+ 'square-up' |
+ 'arrow-alt-square-up' |
+ 'train-subway-tunnel' |
+ 'subway-tunnel' |
+ 'square-exclamation' |
+ 'exclamation-square' |
+ 'semicolon' |
+ 'bookmark' |
+ 'fan-table' |
+ 'align-justify' |
+ 'battery-low' |
+ 'battery1' |
+ 'credit-card-front' |
+ 'brain-arrow-curved-right' |
+ 'mind-share' |
+ 'umbrella-beach' |
+ 'helmet-un' |
+ 'location-smile' |
+ 'map-marker-smile' |
+ 'arrow-left-to-line' |
+ 'arrow-to-left' |
+ 'bullseye' |
+ 'sushi' |
+ 'nigiri' |
+ 'message-captions' |
+ 'comment-alt-captions' |
+ 'trash-list' |
+ 'bacon' |
+ 'option' |
+ 'hand-point-down' |
+ 'arrow-up-from-bracket' |
+ 'trash-plus' |
+ 'objects-align-top' |
+ 'folder' |
+ 'folder-blank' |
+ 'face-anxious-sweat' |
+ 'credit-card-blank' |
+ 'file-waveform' |
+ 'file-medical-alt' |
+ 'microchip-ai' |
+ 'mug' |
+ 'plane-up-slash' |
+ 'radiation' |
+ 'pen-circle' |
+ 'bag-seedling' |
+ 'chart-simple' |
+ 'crutches' |
+ 'circle-parking' |
+ 'parking-circle' |
+ 'mars-stroke' |
+ 'leaf-oak' |
+ 'square-bolt' |
+ 'vial' |
+ 'gauge' |
+ 'dashboard' |
+ 'gauge-med' |
+ 'tachometer-alt-average' |
+ 'wand-magic-sparkles' |
+ 'magic-wand-sparkles' |
+ 'lambda' |
+ 'e' |
+ 'pizza' |
+ 'bowl-chopsticks-noodles' |
+ 'h3' |
+ 'pen-clip' |
+ 'pen-alt' |
+ 'bridge-circle-exclamation' |
+ 'badge-percent' |
+ 'user' |
+ 'sensor' |
+ 'comma' |
+ 'school-circle-check' |
+ 'toilet-paper-under' |
+ 'toilet-paper-reverse' |
+ 'light-emergency' |
+ 'arrow-down-to-arc' |
+ 'dumpster' |
+ 'van-shuttle' |
+ 'shuttle-van' |
+ 'building-user' |
+ 'light-switch' |
+ 'square-caret-left' |
+ 'caret-square-left' |
+ 'highlighter' |
+ 'wave-pulse' |
+ 'heart-rate' |
+ 'key' |
+ 'hat-santa' |
+ 'tamale' |
+ 'box-check' |
+ 'bullhorn' |
+ 'steak' |
+ 'location-crosshairs-slash' |
+ 'location-slash' |
+ 'person-dolly' |
+ 'globe' |
+ 'synagogue' |
+ 'file-chart-column' |
+ 'file-chart-line' |
+ 'person-half-dress' |
+ 'folder-image' |
+ 'calendar-pen' |
+ 'calendar-edit' |
+ 'road-bridge' |
+ 'face-smile-tear' |
+ 'message-plus' |
+ 'comment-alt-plus' |
+ 'location-arrow' |
+ 'c' |
+ 'tablet-button' |
+ 'rectangle-history-circle-user' |
+ 'building-lock' |
+ 'chart-line-up' |
+ 'mailbox' |
+ 'truck-bolt' |
+ 'pizza-slice' |
+ 'money-bill-wave' |
+ 'chart-area' |
+ 'area-chart' |
+ 'house-flag' |
+ 'circle-three-quarters-stroke' |
+ 'person-circle-minus' |
+ 'scalpel' |
+ 'ban' |
+ 'cancel' |
+ 'bell-exclamation' |
+ 'circle-bookmark' |
+ 'bookmark-circle' |
+ 'egg-fried' |
+ 'face-weary' |
+ 'uniform-martial-arts' |
+ 'camera-rotate' |
+ 'sun-dust' |
+ 'comment-text' |
+ 'spray-can-sparkles' |
+ 'air-freshener' |
+ 'signal-bars' |
+ 'signal-alt' |
+ 'signal-alt4' |
+ 'signal-bars-strong' |
+ 'diamond-exclamation' |
+ 'star' |
+ 'dial-min' |
+ 'repeat' |
+ 'cross' |
+ 'page-caret-down' |
+ 'file-caret-down' |
+ 'box' |
+ 'venus-mars' |
+ 'clock-seven-thirty' |
+ 'arrow-pointer' |
+ 'mouse-pointer' |
+ 'clock-four-thirty' |
+ 'signal-bars-good' |
+ 'signal-alt3' |
+ 'cactus' |
+ 'lightbulb-gear' |
+ 'maximize' |
+ 'expand-arrows-alt' |
+ 'charging-station' |
+ 'shapes' |
+ 'triangle-circle-square' |
+ 'plane-tail' |
+ 'gauge-simple-max' |
+ 'tachometer-fastest' |
+ 'circle-u' |
+ 'shield-slash' |
+ 'square-phone-hangup' |
+ 'phone-square-down' |
+ 'arrow-up-left' |
+ 'transporter-1' |
+ 'peanuts' |
+ 'shuffle' |
+ 'random' |
+ 'person-running' |
+ 'running' |
+ 'mobile-retro' |
+ 'grip-lines-vertical' |
+ 'bin-bottles-recycle' |
+ 'arrow-up-from-square' |
+ 'file-dashed-line' |
+ 'page-break' |
+ 'bracket-curly-right' |
+ 'spider' |
+ 'clock-three' |
+ 'hands-bound' |
+ 'scalpel-line-dashed' |
+ 'scalpel-path' |
+ 'file-invoice-dollar' |
+ 'pipe-smoking' |
+ 'face-astonished' |
+ 'window' |
+ 'plane-circle-exclamation' |
+ 'ear' |
+ 'file-lock' |
+ 'diagram-venn' |
+ 'x-ray' |
+ 'goal-net' |
+ 'coffin-cross' |
+ 'spell-check' |
+ 'location-xmark' |
+ 'map-marker-times' |
+ 'map-marker-xmark' |
+ 'circle-quarter-stroke' |
+ 'lasso' |
+ 'slash' |
+ 'person-to-portal' |
+ 'portal-enter' |
+ 'calendar-star' |
+ 'computer-mouse' |
+ 'mouse' |
+ 'arrow-right-to-bracket' |
+ 'sign-in' |
+ 'pegasus' |
+ 'files-medical' |
+ 'nfc-lock' |
+ 'person-ski-lift' |
+ 'ski-lift' |
+ 'square-6' |
+ 'shop-slash' |
+ 'store-alt-slash' |
+ 'wind-turbine' |
+ 'sliders-simple' |
+ 'grid-round' |
+ 'badge-sheriff' |
+ 'server' |
+ 'virus-covid-slash' |
+ 'intersection' |
+ 'shop-lock' |
+ 'family' |
+ 'hourglass-start' |
+ 'hourglass1' |
+ 'user-hair-buns' |
+ 'blender-phone' |
+ 'hourglass-clock' |
+ 'person-seat-reclined' |
+ 'paper-plane-top' |
+ 'paper-plane-alt' |
+ 'send' |
+ 'message-arrow-up' |
+ 'comment-alt-arrow-up' |
+ 'lightbulb-exclamation' |
+ 'layer-minus' |
+ 'layer-group-minus' |
+ 'chart-pie-simple-circle-currency' |
+ 'circle-e' |
+ 'building-wheat' |
+ 'gauge-max' |
+ 'tachometer-alt-fastest' |
+ 'person-breastfeeding' |
+ 'apostrophe' |
+ 'fire-hydrant' |
+ 'right-to-bracket' |
+ 'sign-in-alt' |
+ 'video-plus' |
+ 'square-right' |
+ 'arrow-alt-square-right' |
+ 'comment-smile' |
+ 'venus' |
+ 'passport' |
+ 'inbox-in' |
+ 'inbox-arrow-down' |
+ 'heart-pulse' |
+ 'heartbeat' |
+ 'circle-8' |
+ 'clouds-moon' |
+ 'clock-ten-thirty' |
+ 'people-carry-box' |
+ 'people-carry' |
+ 'folder-user' |
+ 'trash-can-xmark' |
+ 'temperature-high' |
+ 'microchip' |
+ 'left-long-to-line' |
+ 'crown' |
+ 'weight-hanging' |
+ 'xmarks-lines' |
+ 'file-prescription' |
+ 'calendar-range' |
+ 'flower-daffodil' |
+ 'hand-back-point-up' |
+ 'weight-scale' |
+ 'weight' |
+ 'star-exclamation' |
+ 'books' |
+ 'user-group' |
+ 'user-friends' |
+ 'arrow-up-a-z' |
+ 'sort-alpha-up' |
+ 'layer-plus' |
+ 'layer-group-plus' |
+ 'play-pause' |
+ 'block-question' |
+ 'snooze' |
+ 'zzz' |
+ 'scanner-image' |
+ 'tv-retro' |
+ 'square-t' |
+ 'farm' |
+ 'barn-silo' |
+ 'chess-knight' |
+ 'bars-sort' |
+ 'pallet-boxes' |
+ 'palette-boxes' |
+ 'pallet-alt' |
+ 'face-laugh-squint' |
+ 'laugh-squint' |
+ 'code-simple' |
+ 'bolt-slash' |
+ 'panel-fire' |
+ 'binary-circle-check' |
+ 'comment-minus' |
+ 'burrito' |
+ 'violin' |
+ 'objects-column' |
+ 'square-chevron-down' |
+ 'chevron-square-down' |
+ 'comment-plus' |
+ 'triangle-instrument' |
+ 'triangle-music' |
+ 'wheelchair' |
+ 'user-pilot-tie' |
+ 'piano-keyboard' |
+ 'bed-empty' |
+ 'circle-arrow-up' |
+ 'arrow-circle-up' |
+ 'toggle-on' |
+ 'rectangle-vertical' |
+ 'rectangle-portrait' |
+ 'person-walking' |
+ 'walking' |
+ 'l' |
+ 'signal-stream' |
+ 'down-to-bracket' |
+ 'circle-z' |
+ 'stars' |
+ 'fire' |
+ 'bed-pulse' |
+ 'procedures' |
+ 'house-day' |
+ 'shuttle-space' |
+ 'space-shuttle' |
+ 'shirt-long-sleeve' |
+ 'chart-pie-simple' |
+ 'chart-pie-alt' |
+ 'face-laugh' |
+ 'laugh' |
+ 'folder-open' |
+ 'album-collection-circle-user' |
+ 'candy' |
+ 'bowl-hot' |
+ 'soup' |
+ 'flatbread' |
+ 'heart-circle-plus' |
+ 'code-fork' |
+ 'city' |
+ 'signal-bars-weak' |
+ 'signal-alt1' |
+ 'microphone-lines' |
+ 'microphone-alt' |
+ 'clock-twelve' |
+ 'pepper-hot' |
+ 'citrus-slice' |
+ 'sheep' |
+ 'unlock' |
+ 'colon-sign' |
+ 'headset' |
+ 'badger-honey' |
+ 'h4' |
+ 'store-slash' |
+ 'road-circle-xmark' |
+ 'signal-slash' |
+ 'user-minus' |
+ 'mars-stroke-up' |
+ 'mars-stroke-v' |
+ 'champagne-glasses' |
+ 'glass-cheers' |
+ 'taco' |
+ 'hexagon-plus' |
+ 'plus-hexagon' |
+ 'clipboard' |
+ 'house-circle-exclamation' |
+ 'file-arrow-up' |
+ 'file-upload' |
+ 'wifi' |
+ 'wifi3' |
+ 'wifi-strong' |
+ 'messages' |
+ 'comments-alt' |
+ 'bath' |
+ 'bathtub' |
+ 'umbrella-simple' |
+ 'umbrella-alt' |
+ 'rectangle-history-circle-plus' |
+ 'underline' |
+ 'prescription-bottle-pill' |
+ 'user-pen' |
+ 'user-edit' |
+ 'binary-slash' |
+ 'square-o' |
+ 'signature' |
+ 'stroopwafel' |
+ 'bold' |
+ 'anchor-lock' |
+ 'building-ngo' |
+ 'transporter-3' |
+ 'engine-warning' |
+ 'engine-exclamation' |
+ 'circle-down-right' |
+ 'square-k' |
+ 'manat-sign' |
+ 'money-check-pen' |
+ 'money-check-edit' |
+ 'not-equal' |
+ 'border-top-left' |
+ 'border-style' |
+ 'map-location-dot' |
+ 'map-marked-alt' |
+ 'tilde' |
+ 'jedi' |
+ 'square-poll-vertical' |
+ 'poll' |
+ 'arrow-down-square-triangle' |
+ 'sort-shapes-down-alt' |
+ 'mug-hot' |
+ 'dog-leashed' |
+ 'car-battery' |
+ 'battery-car' |
+ 'face-downcast-sweat' |
+ 'mailbox-flag-up' |
+ 'memo-circle-info' |
+ 'gift' |
+ 'dice-two' |
+ 'volume' |
+ 'volume-medium' |
+ 'transporter-5' |
+ 'gauge-circle-bolt' |
+ 'coin-front' |
+ 'file-slash' |
+ 'message-arrow-up-right' |
+ 'treasure-chest' |
+ 'chess-queen' |
+ 'paintbrush-fine' |
+ 'paint-brush-alt' |
+ 'paint-brush-fine' |
+ 'paintbrush-alt' |
+ 'glasses' |
+ 'hood-cloak' |
+ 'square-quote' |
+ 'up-left' |
+ 'bring-front' |
+ 'chess-board' |
+ 'burger-cheese' |
+ 'cheeseburger' |
+ 'building-circle-check' |
+ 'repeat-1' |
+ 'arrow-down-to-line' |
+ 'arrow-to-bottom' |
+ 'grid-5' |
+ 'right-long-to-line' |
+ 'person-chalkboard' |
+ 'mars-stroke-right' |
+ 'mars-stroke-h' |
+ 'hand-back-fist' |
+ 'hand-rock' |
+ 'grid-round-5' |
+ 'tally' |
+ 'tally5' |
+ 'square-caret-up' |
+ 'caret-square-up' |
+ 'cloud-showers-water' |
+ 'chart-bar' |
+ 'bar-chart' |
+ 'hands-bubbles' |
+ 'hands-wash' |
+ 'less-than-equal' |
+ 'train' |
+ 'up-from-dotted-line' |
+ 'eye-low-vision' |
+ 'low-vision' |
+ 'traffic-light-go' |
+ 'face-exhaling' |
+ 'sensor-fire' |
+ 'user-unlock' |
+ 'hexagon-divide' |
+ '00' |
+ 'crow' |
+ 'cassette-betamax' |
+ 'betamax' |
+ 'sailboat' |
+ 'window-restore' |
+ 'nfc-magnifying-glass' |
+ 'file-binary' |
+ 'circle-v' |
+ 'square-plus' |
+ 'plus-square' |
+ 'bowl-scoops' |
+ 'mistletoe' |
+ 'custard' |
+ 'lacrosse-stick' |
+ 'hockey-mask' |
+ 'sunrise' |
+ 'panel-ews' |
+ 'torii-gate' |
+ 'cloud-exclamation' |
+ 'message-lines' |
+ 'comment-alt-lines' |
+ 'frog' |
+ 'bucket' |
+ 'floppy-disk-pen' |
+ 'image' |
+ 'window-frame' |
+ 'microphone' |
+ 'cow' |
+ 'file-zip' |
+ 'square-ring' |
+ 'down-from-line' |
+ 'arrow-alt-from-top' |
+ 'caret-up' |
+ 'shield-xmark' |
+ 'shield-times' |
+ 'screwdriver' |
+ 'circle-sort-down' |
+ 'sort-circle-down' |
+ 'folder-closed' |
+ 'house-tsunami' |
+ 'square-nfi' |
+ 'forklift' |
+ 'arrow-up-from-ground-water' |
+ 'bracket-square-right' |
+ 'martini-glass' |
+ 'glass-martini-alt' |
+ 'rotate-left' |
+ 'rotate-back' |
+ 'rotate-backward' |
+ 'undo-alt' |
+ 'table-columns' |
+ 'columns' |
+ 'square-a' |
+ 'tick' |
+ 'lemon' |
+ 'head-side-mask' |
+ 'handshake' |
+ 'gem' |
+ 'dolly' |
+ 'dolly-box' |
+ 'smoking' |
+ 'minimize' |
+ 'compress-arrows-alt' |
+ 'refrigerator' |
+ 'monument' |
+ 'octagon-xmark' |
+ 'times-octagon' |
+ 'xmark-octagon' |
+ 'align-slash' |
+ 'snowplow' |
+ 'angles-right' |
+ 'angle-double-right' |
+ 'truck-ramp-couch' |
+ 'truck-couch' |
+ 'cannabis' |
+ 'circle-play' |
+ 'play-circle' |
+ 'arrow-up-right-and-arrow-down-left-from-center' |
+ 'tablets' |
+ '360-degrees' |
+ 'ethernet' |
+ 'euro-sign' |
+ 'eur' |
+ 'euro' |
+ 'chair' |
+ 'circle-check' |
+ 'check-circle' |
+ 'square-dashed-circle-plus' |
+ 'money-simple-from-bracket' |
+ 'bat' |
+ 'circle-stop' |
+ 'stop-circle' |
+ 'head-side-headphones' |
+ 'phone-rotary' |
+ 'compass-drafting' |
+ 'drafting-compass' |
+ 'plate-wheat' |
+ 'calendar-circle-minus' |
+ 'chopsticks' |
+ 'car-wrench' |
+ 'car-mechanic' |
+ 'icicles' |
+ 'person-shelter' |
+ 'neuter' |
+ 'id-badge' |
+ 'kazoo' |
+ 'marker' |
+ 'bin-bottles' |
+ 'face-laugh-beam' |
+ 'laugh-beam' |
+ 'square-arrow-down-left' |
+ 'battery-bolt' |
+ 'tree-large' |
+ 'helicopter-symbol' |
+ 'aperture' |
+ 'universal-access' |
+ 'gear-complex' |
+ 'file-magnifying-glass' |
+ 'file-search' |
+ 'up-right' |
+ 'circle-chevron-up' |
+ 'chevron-circle-up' |
+ 'user-police' |
+ 'lari-sign' |
+ 'volcano' |
+ 'teddy-bear' |
+ 'stocking' |
+ 'person-walking-dashed-line-arrow-right' |
+ 'image-slash' |
+ 'mask-snorkel' |
+ 'smoke' |
+ 'sterling-sign' |
+ 'gbp' |
+ 'pound-sign' |
+ 'battery-exclamation' |
+ 'viruses' |
+ 'square-person-confined' |
+ 'user-tie' |
+ 'arrow-down-long' |
+ 'long-arrow-down' |
+ 'tent-arrow-down-to-line' |
+ 'certificate' |
+ 'crystal-ball' |
+ 'reply-all' |
+ 'mail-reply-all' |
+ 'suitcase' |
+ 'person-skating' |
+ 'skating' |
+ 'star-shooting' |
+ 'binary-lock' |
+ 'filter-circle-dollar' |
+ 'funnel-dollar' |
+ 'camera-retro' |
+ 'circle-arrow-down' |
+ 'arrow-circle-down' |
+ 'comment-pen' |
+ 'comment-edit' |
+ 'file-import' |
+ 'arrow-right-to-file' |
+ 'banjo' |
+ 'square-arrow-up-right' |
+ 'external-link-square' |
+ 'light-emergency-on' |
+ 'kerning' |
+ 'box-open' |
+ 'square-f' |
+ 'scroll' |
+ 'spa' |
+ 'arrow-left-from-line' |
+ 'arrow-from-right' |
+ 'strawberry' |
+ 'location-pin-lock' |
+ 'pause' |
+ 'clock-eight-thirty' |
+ 'plane-engines' |
+ 'plane-alt' |
+ 'hill-avalanche' |
+ 'temperature-empty' |
+ 'temperature0' |
+ 'thermometer0' |
+ 'thermometer-empty' |
+ 'bomb' |
+ 'gauge-low' |
+ 'tachometer-alt-slow' |
+ 'registered' |
+ 'trash-can-plus' |
+ 'address-card' |
+ 'contact-card' |
+ 'vcard' |
+ 'scale-unbalanced-flip' |
+ 'balance-scale-right' |
+ 'globe-snow' |
+ 'subscript' |
+ 'diamond-turn-right' |
+ 'directions' |
+ 'integral' |
+ 'burst' |
+ 'house-laptop' |
+ 'laptop-house' |
+ 'face-tired' |
+ 'tired' |
+ 'money-bills' |
+ 'blinds-raised' |
+ 'smog' |
+ 'ufo-beam' |
+ 'circle-caret-up' |
+ 'caret-circle-up' |
+ 'user-vneck-hair-long' |
+ 'square-a-lock' |
+ 'crutch' |
+ 'gas-pump-slash' |
+ 'font-awesome' |
+ 'font-awesome-flag' |
+ 'font-awesome-logo-full' |
+ 'cloud-arrow-up' |
+ 'cloud-upload' |
+ 'cloud-upload-alt' |
+ 'palette' |
+ 'transporter-4' |
+ 'chart-mixed-up-circle-currency' |
+ 'objects-align-right' |
+ 'arrows-turn-right' |
+ 'vest' |
+ 'pig' |
+ 'inbox-full' |
+ 'circle-envelope' |
+ 'envelope-circle' |
+ 'triangle-person-digging' |
+ 'construction' |
+ 'ferry' |
+ 'bullseye-arrow' |
+ 'arrows-down-to-people' |
+ 'seedling' |
+ 'sprout' |
+ 'clock-seven' |
+ 'left-right' |
+ 'arrows-alt-h' |
+ 'boxes-packing' |
+ 'circle-arrow-left' |
+ 'arrow-circle-left' |
+ 'flashlight' |
+ 'group-arrows-rotate' |
+ 'bowl-food' |
+ 'square-9' |
+ 'candy-cane' |
+ 'arrow-down-wide-short' |
+ 'sort-amount-asc' |
+ 'sort-amount-down' |
+ 'square-dollar' |
+ 'dollar-square' |
+ 'usd-square' |
+ 'phone-arrow-right' |
+ 'hand-holding-seedling' |
+ 'message-check' |
+ 'comment-alt-check' |
+ 'cloud-bolt' |
+ 'thunderstorm' |
+ 'chart-line-up-down' |
+ 'text-slash' |
+ 'remove-format' |
+ 'watch' |
+ 'circle-down-left' |
+ 'text' |
+ 'projector' |
+ 'face-smile-wink' |
+ 'smile-wink' |
+ 'tombstone-blank' |
+ 'tombstone-alt' |
+ 'chess-king-piece' |
+ 'chess-king-alt' |
+ 'circle-6' |
+ 'left' |
+ 'arrow-alt-left' |
+ 'file-word' |
+ 'file-powerpoint' |
+ 'square-down' |
+ 'arrow-alt-square-down' |
+ 'objects-align-center-vertical' |
+ 'arrows-left-right' |
+ 'arrows-h' |
+ 'house-lock' |
+ 'cloud-arrow-down' |
+ 'cloud-download' |
+ 'cloud-download-alt' |
+ 'wreath' |
+ 'children' |
+ 'meter-droplet' |
+ 'chalkboard' |
+ 'blackboard' |
+ 'user-large-slash' |
+ 'user-alt-slash' |
+ 'signal-strong' |
+ 'signal4' |
+ 'lollipop' |
+ 'lollypop' |
+ 'list-tree' |
+ 'envelope-open' |
+ 'draw-circle' |
+ 'cat-space' |
+ 'handshake-simple-slash' |
+ 'handshake-alt-slash' |
+ 'rabbit-running' |
+ 'rabbit-fast' |
+ 'memo-pad' |
+ 'mattress-pillow' |
+ 'alarm-plus' |
+ 'alicorn' |
+ 'comment-question' |
+ 'gingerbread-man' |
+ 'guarani-sign' |
+ 'burger-fries' |
+ 'mug-tea' |
+ 'border-top' |
+ 'arrows-rotate' |
+ 'refresh' |
+ 'sync' |
+ 'circle-book-open' |
+ 'book-circle' |
+ 'arrows-to-dotted-line' |
+ 'fire-extinguisher' |
+ 'garage-open' |
+ 'shelves-empty' |
+ 'cruzeiro-sign' |
+ 'watch-apple' |
+ 'watch-calculator' |
+ 'list-dropdown' |
+ 'cabinet-filing' |
+ 'burger-soda' |
+ 'square-arrow-up' |
+ 'arrow-square-up' |
+ 'greater-than-equal' |
+ 'pallet-box' |
+ 'face-confounded' |
+ 'shield-halved' |
+ 'shield-alt' |
+ 'truck-plow' |
+ 'book-atlas' |
+ 'atlas' |
+ 'virus' |
+ 'grid-round-2' |
+ 'comment-middle-top' |
+ 'envelope-circle-check' |
+ 'layer-group' |
+ 'restroom-simple' |
+ 'arrows-to-dot' |
+ 'border-outer' |
+ 'hashtag-lock' |
+ 'clock-two-thirty' |
+ 'archway' |
+ 'heart-circle-check' |
+ 'house-chimney-crack' |
+ 'house-damage' |
+ 'file-zipper' |
+ 'file-archive' |
+ 'heart-half' |
+ 'comment-check' |
+ 'square' |
+ 'memo' |
+ 'martini-glass-empty' |
+ 'glass-martini' |
+ 'couch' |
+ 'cedi-sign' |
+ 'italic' |
+ 'glass-citrus' |
+ 'calendar-lines-pen' |
+ 'church' |
+ 'person-snowmobiling' |
+ 'snowmobile' |
+ 'face-hushed' |
+ 'comments-dollar' |
+ 'pickaxe' |
+ 'link-simple-slash' |
+ 'democrat' |
+ 'face-confused' |
+ 'pinball' |
+ 'z' |
+ 'person-skiing' |
+ 'skiing' |
+ 'deer' |
+ 'input-pipe' |
+ 'road-lock' |
+ 'a' |
+ 'bookmark-slash' |
+ 'temperature-arrow-down' |
+ 'temperature-down' |
+ 'mace' |
+ 'feather-pointed' |
+ 'feather-alt' |
+ 'sausage' |
+ 'trash-can-clock' |
+ 'p' |
+ 'broom-wide' |
+ 'snowflake' |
+ 'stomach' |
+ 'newspaper' |
+ 'rectangle-ad' |
+ 'ad' |
+ 'guitar-electric' |
+ 'arrow-turn-down-right' |
+ 'moon-cloud' |
+ 'bread-slice-butter' |
+ 'circle-arrow-right' |
+ 'arrow-circle-right' |
+ 'user-group-crown' |
+ 'users-crown' |
+ 'circle-i' |
+ 'toilet-paper-check' |
+ 'filter-circle-xmark' |
+ 'locust' |
+ 'sort' |
+ 'unsorted' |
+ 'list-ol' |
+ 'list12' |
+ 'list-numeric' |
+ 'chart-waterfall' |
+ 'sparkle' |
+ 'face-party' |
+ 'kidneys' |
+ 'wifi-exclamation' |
+ 'chart-network' |
+ 'person-dress-burst' |
+ 'dice-d4' |
+ 'money-check-dollar' |
+ 'money-check-alt' |
+ 'vector-square' |
+ 'bread-slice' |
+ 'language' |
+ 'wheat-awn-slash' |
+ 'face-kiss-wink-heart' |
+ 'kiss-wink-heart' |
+ 'dagger' |
+ 'podium' |
+ 'memo-circle-check' |
+ 'route-highway' |
+ 'down-to-line' |
+ 'arrow-alt-to-bottom' |
+ 'filter' |
+ 'square-g' |
+ 'circle-phone' |
+ 'phone-circle' |
+ 'clipboard-prescription' |
+ 'user-nurse-hair' |
+ 'question' |
+ 'file-signature' |
+ 'toggle-large-on' |
+ 'up-down-left-right' |
+ 'arrows-alt' |
+ 'dryer-heat' |
+ 'dryer-alt' |
+ 'house-chimney-user' |
+ 'hand-holding-heart' |
+ 'arrow-up-small-big' |
+ 'sort-size-up-alt' |
+ 'train-track' |
+ 'puzzle-piece' |
+ 'money-check' |
+ 'star-half-stroke' |
+ 'star-half-alt' |
+ 'file-exclamation' |
+ 'code' |
+ 'whiskey-glass' |
+ 'glass-whiskey' |
+ 'moon-stars' |
+ 'building-circle-exclamation' |
+ 'clothes-hanger' |
+ 'mobile-notch' |
+ 'mobile-iphone' |
+ 'magnifying-glass-chart' |
+ 'arrow-up-right-from-square' |
+ 'external-link' |
+ 'cubes-stacked' |
+ 'images-user' |
+ 'won-sign' |
+ 'krw' |
+ 'won' |
+ 'image-polaroid-user' |
+ 'virus-covid' |
+ 'square-ellipsis' |
+ 'pie' |
+ 'chess-knight-piece' |
+ 'chess-knight-alt' |
+ 'austral-sign' |
+ 'cloud-plus' |
+ 'f' |
+ 'leaf' |
+ 'bed-bunk' |
+ 'road' |
+ 'taxi' |
+ 'cab' |
+ 'person-circle-plus' |
+ 'chart-pie' |
+ 'pie-chart' |
+ 'bolt-lightning' |
+ 'clock-eight' |
+ 'sack-xmark' |
+ 'file-excel' |
+ 'file-contract' |
+ 'fish-fins' |
+ 'circle-q' |
+ 'building-flag' |
+ 'face-grin-beam' |
+ 'grin-beam' |
+ 'object-ungroup' |
+ 'face-disguise' |
+ 'circle-arrow-down-right' |
+ 'alien-8bit' |
+ 'alien-monster' |
+ 'hand-point-ribbon' |
+ 'poop' |
+ 'object-exclude' |
+ 'telescope' |
+ 'location-pin' |
+ 'map-marker' |
+ 'square-list' |
+ 'kaaba' |
+ 'toilet-paper' |
+ 'helmet-safety' |
+ 'hard-hat' |
+ 'hat-hard' |
+ 'comment-code' |
+ 'sim-cards' |
+ 'starship' |
+ 'eject' |
+ 'circle-right' |
+ 'arrow-alt-circle-right' |
+ 'plane-circle-check' |
+ 'seal' |
+ 'user-cowboy' |
+ 'hexagon-vertical-nft' |
+ 'face-rolling-eyes' |
+ 'meh-rolling-eyes' |
+ 'bread-loaf' |
+ 'rings-wedding' |
+ 'object-group' |
+ 'french-fries' |
+ 'chart-line' |
+ 'line-chart' |
+ 'calendar-arrow-down' |
+ 'calendar-download' |
+ 'send-back' |
+ 'mask-ventilator' |
+ 'signature-lock' |
+ 'arrow-right' |
+ 'signs-post' |
+ 'map-signs' |
+ 'octagon-plus' |
+ 'plus-octagon' |
+ 'cash-register' |
+ 'person-circle-question' |
+ 'melon-slice' |
+ 'space-station-moon' |
+ 'message-smile' |
+ 'comment-alt-smile' |
+ 'cup-straw' |
+ 'left-from-line' |
+ 'arrow-alt-from-right' |
+ 'h' |
+ 'basket-shopping-simple' |
+ 'shopping-basket-alt' |
+ 'hands-holding-heart' |
+ 'hands-heart' |
+ 'clock-nine' |
+ 'tarp' |
+ 'face-sleepy' |
+ 'hand-horns' |
+ 'screwdriver-wrench' |
+ 'tools' |
+ 'arrows-to-eye' |
+ 'circle-three-quarters' |
+ 'trophy-star' |
+ 'trophy-alt' |
+ 'plug-circle-bolt' |
+ 'face-thermometer' |
+ 'grid-round-4' |
+ 'shirt-running' |
+ 'book-circle-arrow-up' |
+ 'face-nauseated' |
+ 'heart' |
+ 'file-chart-pie' |
+ 'mars-and-venus' |
+ 'house-user' |
+ 'home-user' |
+ 'circle-arrow-down-left' |
+ 'dumpster-fire' |
+ 'hexagon-minus' |
+ 'minus-hexagon' |
+ 'left-to-line' |
+ 'arrow-alt-to-left' |
+ 'house-crack' |
+ 'paw-simple' |
+ 'paw-alt' |
+ 'arrow-left-long-to-line' |
+ 'brackets-round' |
+ 'parentheses' |
+ 'martini-glass-citrus' |
+ 'cocktail' |
+ 'user-shakespeare' |
+ 'arrow-right-to-arc' |
+ 'face-surprise' |
+ 'surprise' |
+ 'bottle-water' |
+ 'circle-pause' |
+ 'pause-circle' |
+ 'gauge-circle-plus' |
+ 'folders' |
+ 'angel' |
+ 'value-absolute' |
+ 'rabbit' |
+ 'toilet-paper-slash' |
+ 'circle-euro' |
+ 'apple-whole' |
+ 'apple-alt' |
+ 'kitchen-set' |
+ 'diamond-half' |
+ 'lock-keyhole' |
+ 'lock-alt' |
+ 'r' |
+ 'temperature-quarter' |
+ 'temperature1' |
+ 'thermometer1' |
+ 'thermometer-quarter' |
+ 'square-info' |
+ 'info-square' |
+ 'wifi-slash' |
+ 'toilet-paper-xmark' |
+ 'hands-holding-dollar' |
+ 'hands-usd' |
+ 'cube' |
+ 'arrow-down-triangle-square' |
+ 'sort-shapes-down' |
+ 'bitcoin-sign' |
+ 'shutters' |
+ 'shield-dog' |
+ 'solar-panel' |
+ 'lock-open' |
+ 'table-tree' |
+ 'house-chimney-heart' |
+ 'tally-3' |
+ 'elevator' |
+ 'money-bill-transfer' |
+ 'money-bill-trend-up' |
+ 'house-flood-water-circle-arrow-right' |
+ 'square-poll-horizontal' |
+ 'poll-h' |
+ 'circle' |
+ 'cart-circle-exclamation' |
+ 'sword' |
+ 'backward-fast' |
+ 'fast-backward' |
+ 'recycle' |
+ 'user-astronaut' |
+ 'interrobang' |
+ 'plane-slash' |
+ 'circle-dashed' |
+ 'trademark' |
+ 'basketball' |
+ 'basketball-ball' |
+ 'fork-knife' |
+ 'utensils-alt' |
+ 'satellite-dish' |
+ 'badge-check' |
+ 'circle-up' |
+ 'arrow-alt-circle-up' |
+ 'slider' |
+ 'mobile-screen-button' |
+ 'mobile-alt' |
+ 'clock-one-thirty' |
+ 'inbox-out' |
+ 'inbox-arrow-up' |
+ 'cloud-slash' |
+ 'volume-high' |
+ 'volume-up' |
+ 'users-rays' |
+ 'wallet' |
+ 'octagon-check' |
+ 'flatbread-stuffed' |
+ 'clipboard-check' |
+ 'cart-circle-plus' |
+ 'truck-clock' |
+ 'shipping-timed' |
+ 'pool-8-ball' |
+ 'file-audio' |
+ 'turn-down-left' |
+ 'lock-hashtag' |
+ 'chart-radar' |
+ 'staff' |
+ 'burger' |
+ 'hamburger' |
+ 'utility-pole' |
+ 'transporter-6' |
+ 'wrench' |
+ 'bugs' |
+ 'vector-polygon' |
+ 'diagram-nested' |
+ 'rupee-sign' |
+ 'rupee' |
+ 'file-image' |
+ 'circle-question' |
+ 'question-circle' |
+ 'image-user' |
+ 'buoy' |
+ 'plane-departure' |
+ 'handshake-slash' |
+ 'book-bookmark' |
+ 'border-center-h' |
+ 'can-food' |
+ 'typewriter' |
+ 'arrow-right-from-arc' |
+ 'circle-k' |
+ 'face-hand-over-mouth' |
+ 'popcorn' |
+ 'house-water' |
+ 'house-flood' |
+ 'object-subtract' |
+ 'code-branch' |
+ 'warehouse-full' |
+ 'warehouse-alt' |
+ 'hat-cowboy' |
+ 'bridge' |
+ 'phone-flip' |
+ 'phone-alt' |
+ 'arrow-down-from-dotted-line' |
+ 'file-doc' |
+ 'square-quarters' |
+ 'truck-front' |
+ 'cat' |
+ 'trash-xmark' |
+ 'circle-caret-left' |
+ 'caret-circle-left' |
+ 'files' |
+ 'anchor-circle-exclamation' |
+ 'face-clouds' |
+ 'user-crown' |
+ 'truck-field' |
+ 'route' |
+ 'cart-circle-check' |
+ 'clipboard-question' |
+ 'panorama' |
+ 'comment-medical' |
+ 'teeth-open' |
+ 'user-tie-hair-long' |
+ 'file-circle-minus' |
+ 'head-side-medical' |
+ 'tags' |
+ 'wine-glass' |
+ 'forward-fast' |
+ 'fast-forward' |
+ 'face-meh-blank' |
+ 'meh-blank' |
+ 'user-robot' |
+ 'square-parking' |
+ 'parking' |
+ 'card-diamond' |
+ 'face-zipper' |
+ 'face-raised-eyebrow' |
+ 'house-signal' |
+ 'square-chevron-up' |
+ 'chevron-square-up' |
+ 'nfc-symbol' |
+ 'bars-progress' |
+ 'tasks-alt' |
+ 'faucet-drip' |
+ 'arrows-to-line' |
+ 'dolphin' |
+ 'arrow-up-right' |
+ 'circle-r' |
+ 'cart-flatbed' |
+ 'dolly-flatbed' |
+ 'ban-smoking' |
+ 'smoking-ban' |
+ 'circle-sort-up' |
+ 'sort-circle-up' |
+ 'terminal' |
+ 'mobile-button' |
+ 'house-medical-flag' |
+ 'basket-shopping' |
+ 'shopping-basket' |
+ 'tape' |
+ 'chestnut' |
+ 'bus-simple' |
+ 'bus-alt' |
+ 'eye' |
+ 'face-sad-cry' |
+ 'sad-cry' |
+ 'heat' |
+ 'ticket-airline' |
+ 'boot-heeled' |
+ 'arrows-minimize' |
+ 'compress-arrows' |
+ 'audio-description' |
+ 'person-military-to-person' |
+ 'file-shield' |
+ 'hexagon' |
+ 'manhole' |
+ 'user-slash' |
+ 'pen' |
+ 'tower-observation' |
+ 'floppy-disks' |
+ 'toilet-paper-blank-under' |
+ 'toilet-paper-reverse-alt' |
+ 'file-code' |
+ 'signal' |
+ 'signal5' |
+ 'signal-perfect' |
+ 'pump' |
+ 'bus' |
+ 'heart-circle-xmark' |
+ 'arrow-up-left-from-circle' |
+ 'house-chimney' |
+ 'home-lg' |
+ 'window-maximize' |
+ 'dryer' |
+ 'face-frown' |
+ 'frown' |
+ 'chess-bishop-piece' |
+ 'chess-bishop-alt' |
+ 'shirt-tank-top' |
+ 'diploma' |
+ 'scroll-ribbon' |
+ 'screencast' |
+ 'walker' |
+ 'prescription' |
+ 'shop' |
+ 'store-alt' |
+ 'floppy-disk' |
+ 'save' |
+ 'vihara' |
+ 'face-kiss-closed-eyes' |
+ 'scale-unbalanced' |
+ 'balance-scale-left' |
+ 'file-user' |
+ 'user-police-tie' |
+ 'face-tongue-money' |
+ 'tennis-ball' |
+ 'square-l' |
+ 'sort-up' |
+ 'sort-asc' |
+ 'calendar-arrow-up' |
+ 'calendar-upload' |
+ 'comment-dots' |
+ 'commenting' |
+ 'plant-wilt' |
+ 'scarf' |
+ 'album-circle-plus' |
+ 'user-nurse-hair-long' |
+ 'diamond' |
+ 'square-left' |
+ 'arrow-alt-square-left' |
+ 'face-grin-squint' |
+ 'grin-squint' |
+ 'circle-ellipsis-vertical' |
+ 'hand-holding-dollar' |
+ 'hand-holding-usd' |
+ 'grid-dividers' |
+ 'bacterium' |
+ 'hand-pointer' |
+ 'drum-steelpan' |
+ 'hand-scissors' |
+ 'hands-praying' |
+ 'praying-hands' |
+ 'face-pensive' |
+ 'user-music' |
+ 'arrow-rotate-right' |
+ 'arrow-right-rotate' |
+ 'arrow-rotate-forward' |
+ 'redo' |
+ 'messages-dollar' |
+ 'comments-alt-dollar' |
+ 'sensor-on' |
+ 'balloon' |
+ 'biohazard' |
+ 'chess-queen-piece' |
+ 'chess-queen-alt' |
+ 'location-crosshairs' |
+ 'location' |
+ 'mars-double' |
+ 'house-person-leave' |
+ 'house-leave' |
+ 'house-person-depart' |
+ 'ruler-triangle' |
+ 'card-club' |
+ 'child-dress' |
+ 'users-between-lines' |
+ 'lungs-virus' |
+ 'spinner-third' |
+ 'face-grin-tears' |
+ 'grin-tears' |
+ 'phone' |
+ 'computer-mouse-scrollwheel' |
+ 'mouse-alt' |
+ 'calendar-xmark' |
+ 'calendar-times' |
+ 'child-reaching' |
+ 'table-layout' |
+ 'narwhal' |
+ 'ramp-loading' |
+ 'calendar-circle-plus' |
+ 'toothbrush' |
+ 'border-inner' |
+ 'paw-claws' |
+ 'kiwi-fruit' |
+ 'traffic-light-slow' |
+ 'rectangle-code' |
+ 'head-side-virus' |
+ 'keyboard-brightness' |
+ 'books-medical' |
+ 'lightbulb-slash' |
+ 'house-blank' |
+ 'home-blank' |
+ 'square-5' |
+ 'square-heart' |
+ 'heart-square' |
+ 'puzzle' |
+ 'user-gear' |
+ 'user-cog' |
+ 'pipe-circle-check' |
+ 'arrow-up-1-9' |
+ 'sort-numeric-up' |
+ 'octagon-exclamation' |
+ 'dial-low' |
+ 'door-closed' |
+ 'laptop-mobile' |
+ 'phone-laptop' |
+ 'conveyor-belt-boxes' |
+ 'conveyor-belt-alt' |
+ 'shield-virus' |
+ 'starfighter-twin-ion-engine-advanced' |
+ 'starfighter-alt-advanced' |
+ 'dice-six' |
+ 'starfighter-twin-ion-engine' |
+ 'starfighter-alt' |
+ 'rocket-launch' |
+ 'mosquito-net' |
+ 'vent-damper' |
+ 'bridge-water' |
+ 'ban-bug' |
+ 'debug' |
+ 'person-booth' |
+ 'text-width' |
+ 'garage-car' |
+ 'square-kanban' |
+ 'hat-wizard' |
+ 'pen-fancy' |
+ 'coffee-pot' |
+ 'mouse-field' |
+ 'person-digging' |
+ 'digging' |
+ 'shower-down' |
+ 'shower-alt' |
+ 'box-circle-check' |
+ 'brightness' |
+ 'car-side-bolt' |
+ 'ornament' |
+ 'phone-arrow-down-left' |
+ 'phone-arrow-down' |
+ 'phone-incoming' |
+ 'cloud-word' |
+ 'hand-fingers-crossed' |
+ 'trash' |
+ 'gauge-simple' |
+ 'gauge-simple-med' |
+ 'tachometer-average' |
+ 'arrow-down-small-big' |
+ 'sort-size-down-alt' |
+ 'book-medical' |
+ 'face-melting' |
+ 'poo' |
+ 'pen-clip-slash' |
+ 'pen-alt-slash' |
+ 'quote-right' |
+ 'quote-right-alt' |
+ 'scroll-old' |
+ 'guitars' |
+ 'phone-xmark' |
+ 'hose' |
+ 'clock-six' |
+ 'shirt' |
+ 't-shirt' |
+ 'tshirt' |
+ 'billboard' |
+ 'square-r' |
+ 'cubes' |
+ 'envelope-open-dollar' |
+ 'divide' |
+ 'sun-cloud' |
+ 'lamp-floor' |
+ 'square-7' |
+ 'tenge-sign' |
+ 'tenge' |
+ 'headphones' |
+ 'hands-holding' |
+ 'campfire' |
+ 'circle-ampersand' |
+ 'snowflakes' |
+ 'hands-clapping' |
+ 'republican' |
+ 'leaf-maple' |
+ 'arrow-left' |
+ 'person-circle-xmark' |
+ 'ruler' |
+ 'cup-straw-swoosh' |
+ 'temperature-sun' |
+ 'temperature-hot' |
+ 'align-left' |
+ 'dice-d6' |
+ 'restroom' |
+ 'high-definition' |
+ 'rectangle-hd' |
+ 'j' |
+ 'galaxy' |
+ 'users-viewfinder' |
+ 'file-video' |
+ 'cherries' |
+ 'up-right-from-square' |
+ 'external-link-alt' |
+ 'circle-sort' |
+ 'sort-circle' |
+ 'table-cells' |
+ 'th' |
+ 'file-pdf' |
+ 'siren' |
+ 'arrow-up-to-dotted-line' |
+ 'image-landscape' |
+ 'landscape' |
+ 'tank-water' |
+ 'curling-stone' |
+ 'curling' |
+ 'gamepad-modern' |
+ 'gamepad-alt' |
+ 'messages-question' |
+ 'book-bible' |
+ 'bible' |
+ 'o' |
+ 'suitcase-medical' |
+ 'medkit' |
+ 'briefcase-arrow-right' |
+ 'expand-wide' |
+ 'clock-eleven-thirty' |
+ 'rv' |
+ 'user-secret' |
+ 'otter' |
+ 'dreidel' |
+ 'person-dress' |
+ 'female' |
+ 'comment-dollar' |
+ 'business-time' |
+ 'briefcase-clock' |
+ 'flower-tulip' |
+ 'people-pants-simple' |
+ 'cloud-drizzle' |
+ 'table-cells-large' |
+ 'th-large' |
+ 'book-tanakh' |
+ 'tanakh' |
+ 'solar-system' |
+ 'seal-question' |
+ 'phone-volume' |
+ 'volume-control-phone' |
+ 'disc-drive' |
+ 'hat-cowboy-side' |
+ 'table-rows' |
+ 'rows' |
+ 'location-exclamation' |
+ 'map-marker-exclamation' |
+ 'face-fearful' |
+ 'clipboard-user' |
+ 'bus-school' |
+ 'film-slash' |
+ 'square-arrow-down-right' |
+ 'book-sparkles' |
+ 'book-spells' |
+ 'washing-machine' |
+ 'washer' |
+ 'child' |
+ 'lira-sign' |
+ 'user-visor' |
+ 'file-plus-minus' |
+ 'chess-clock-flip' |
+ 'chess-clock-alt' |
+ 'satellite' |
+ 'plane-lock' |
+ 'steering-wheel' |
+ 'tag' |
+ 'stretcher' |
+ 'book-section' |
+ 'book-law' |
+ 'inboxes' |
+ 'coffee-bean' |
+ 'circle-yen' |
+ 'brackets-curly' |
+ 'ellipsis-stroke-vertical' |
+ 'ellipsis-v-alt' |
+ 'comment' |
+ 'square-1' |
+ 'cake-candles' |
+ 'birthday-cake' |
+ 'cake' |
+ 'head-side' |
+ 'envelope' |
+ 'dolly-empty' |
+ 'face-tissue' |
+ 'angles-up' |
+ 'angle-double-up' |
+ 'bin-recycle' |
+ 'paperclip' |
+ 'chart-line-down' |
+ 'arrow-right-to-city' |
+ 'lock-a' |
+ 'ribbon' |
+ 'lungs' |
+ 'person-pinball' |
+ 'arrow-up-9-1' |
+ 'sort-numeric-up-alt' |
+ 'apple-core' |
+ 'circle-y' |
+ 'h6' |
+ 'litecoin-sign' |
+ 'circle-small' |
+ 'border-none' |
+ 'arrow-turn-down-left' |
+ 'circle-nodes' |
+ 'parachute-box' |
+ 'message-medical' |
+ 'comment-alt-medical' |
+ 'rugby-ball' |
+ 'comment-music' |
+ 'indent' |
+ 'tree-deciduous' |
+ 'tree-alt' |
+ 'puzzle-piece-simple' |
+ 'puzzle-piece-alt' |
+ 'truck-field-un' |
+ 'nfc-trash' |
+ 'hourglass' |
+ 'hourglass-empty' |
+ 'mountain' |
+ 'file-xmark' |
+ 'file-times' |
+ 'house-heart' |
+ 'home-heart' |
+ 'house-chimney-blank' |
+ 'meter-bolt' |
+ 'user-doctor' |
+ 'user-md' |
+ 'slash-back' |
+ 'circle-info' |
+ 'info-circle' |
+ 'fishing-rod' |
+ 'hammer-crash' |
+ 'message-heart' |
+ 'cloud-meatball' |
+ 'camera-polaroid' |
+ 'camera' |
+ 'camera-alt' |
+ 'square-virus' |
+ 'cart-arrow-up' |
+ 'meteor' |
+ 'car-on' |
+ 'sleigh' |
+ 'arrow-down-1-9' |
+ 'sort-numeric-asc' |
+ 'sort-numeric-down' |
+ 'buoy-mooring' |
+ 'square-4' |
+ 'hand-holding-droplet' |
+ 'hand-holding-water' |
+ 'tricycle-adult' |
+ 'waveform' |
+ 'water' |
+ 'star-sharp-half-stroke' |
+ 'star-sharp-half-alt' |
+ 'nfc-signal' |
+ 'plane-prop' |
+ 'calendar-check' |
+ 'clock-desk' |
+ 'calendar-clock' |
+ 'calendar-time' |
+ 'braille' |
+ 'prescription-bottle-medical' |
+ 'prescription-bottle-alt' |
+ 'plate-utensils' |
+ 'family-pants' |
+ 'hose-reel' |
+ 'house-window' |
+ 'landmark' |
+ 'truck' |
+ 'crosshairs' |
+ 'cloud-rainbow' |
+ 'person-cane' |
+ 'alien' |
+ 'tent' |
+ 'laptop-binary' |
+ 'vest-patches' |
+ 'people-dress-simple' |
+ 'check-double' |
+ 'arrow-down-a-z' |
+ 'sort-alpha-asc' |
+ 'sort-alpha-down' |
+ 'bowling-ball-pin' |
+ 'bell-school-slash' |
+ 'plus-large' |
+ 'money-bill-wheat' |
+ 'camera-viewfinder' |
+ 'screenshot' |
+ 'message-music' |
+ 'comment-alt-music' |
+ 'car-building' |
+ 'border-bottom-right' |
+ 'border-style-alt' |
+ 'octagon' |
+ 'comment-arrow-up-right' |
+ 'octagon-divide' |
+ 'cookie' |
+ 'arrow-rotate-left' |
+ 'arrow-left-rotate' |
+ 'arrow-rotate-back' |
+ 'arrow-rotate-backward' |
+ 'undo' |
+ 'tv-music' |
+ 'hard-drive' |
+ 'hdd' |
+ 'reel' |
+ 'face-grin-squint-tears' |
+ 'grin-squint-tears' |
+ 'dumbbell' |
+ 'rectangle-list' |
+ 'list-alt' |
+ 'tarp-droplet' |
+ 'alarm-exclamation' |
+ 'house-medical-circle-check' |
+ 'traffic-cone' |
+ 'grate' |
+ 'arrow-down-right' |
+ 'person-skiing-nordic' |
+ 'skiing-nordic' |
+ 'calendar-plus' |
+ 'person-from-portal' |
+ 'portal-exit' |
+ 'plane-arrival' |
+ 'cowbell-circle-plus' |
+ 'cowbell-more' |
+ 'circle-left' |
+ 'arrow-alt-circle-left' |
+ 'distribute-spacing-vertical' |
+ 'signal-bars-fair' |
+ 'signal-alt2' |
+ 'sportsball' |
+ 'game-console-handheld-crank' |
+ 'train-subway' |
+ 'subway' |
+ 'chart-gantt' |
+ 'face-smile-upside-down' |
+ 'ball-pile' |
+ 'badge-dollar' |
+ 'money-bills-simple' |
+ 'money-bills-alt' |
+ 'list-timeline' |
+ 'indian-rupee-sign' |
+ 'indian-rupee' |
+ 'inr' |
+ 'crop-simple' |
+ 'crop-alt' |
+ 'money-bill-1' |
+ 'money-bill-alt' |
+ 'left-long' |
+ 'long-arrow-alt-left' |
+ 'keyboard-down' |
+ 'circle-up-right' |
+ 'cloud-bolt-moon' |
+ 'thunderstorm-moon' |
+ 'dna' |
+ 'virus-slash' |
+ 'bracket-round-right' |
+ 'circle-sterling' |
+ 'circle-5' |
+ 'minus' |
+ 'subtract' |
+ 'fire-flame' |
+ 'flame' |
+ 'right-to-line' |
+ 'arrow-alt-to-right' |
+ 'gif' |
+ 'chess' |
+ 'trash-slash' |
+ 'arrow-left-long' |
+ 'long-arrow-left' |
+ 'plug-circle-check' |
+ 'font-case' |
+ 'street-view' |
+ 'arrow-down-left' |
+ 'franc-sign' |
+ 'flask-round-poison' |
+ 'flask-poison' |
+ 'volume-off' |
+ 'book-circle-arrow-right' |
+ 'chart-user' |
+ 'user-chart' |
+ 'hands-asl-interpreting' |
+ 'american-sign-language-interpreting' |
+ 'asl-interpreting' |
+ 'hands-american-sign-language-interpreting' |
+ 'presentation-screen' |
+ 'presentation' |
+ 'circle-bolt' |
+ 'face-smile-halo' |
+ 'cart-circle-arrow-down' |
+ 'house-person-return' |
+ 'house-person-arrive' |
+ 'house-return' |
+ 'message-xmark' |
+ 'comment-alt-times' |
+ 'message-times' |
+ 'file-certificate' |
+ 'file-award' |
+ 'user-doctor-hair-long' |
+ 'camera-security' |
+ 'camera-home' |
+ 'gear' |
+ 'cog' |
+ 'droplet-slash' |
+ 'tint-slash' |
+ 'book-heart' |
+ 'mosque' |
+ 'duck' |
+ 'mosquito' |
+ 'star-of-david' |
+ 'flag-swallowtail' |
+ 'flag-alt' |
+ 'person-military-rifle' |
+ 'car-garage' |
+ 'cart-shopping' |
+ 'shopping-cart' |
+ 'book-font' |
+ 'shield-plus' |
+ 'vials' |
+ 'eye-dropper-full' |
+ 'distribute-spacing-horizontal' |
+ 'tablet-rugged' |
+ 'temperature-snow' |
+ 'temperature-frigid' |
+ 'moped' |
+ 'face-smile-plus' |
+ 'smile-plus' |
+ 'radio-tuner' |
+ 'radio-alt' |
+ 'face-swear' |
+ 'water-arrow-down' |
+ 'water-lower' |
+ 'scanner-touchscreen' |
+ 'circle-7' |
+ 'plug-circle-plus' |
+ 'person-ski-jumping' |
+ 'ski-jump' |
+ 'place-of-worship' |
+ 'water-arrow-up' |
+ 'water-rise' |
+ 'waveform-lines' |
+ 'waveform-path' |
+ 'split' |
+ 'film-canister' |
+ 'film-cannister' |
+ 'folder-xmark' |
+ 'folder-times' |
+ 'toilet-paper-blank' |
+ 'toilet-paper-alt' |
+ 'tablet-screen' |
+ 'tablet-android-alt' |
+ 'hexagon-vertical-nft-slanted' |
+ 'folder-music' |
+ 'display-medical' |
+ 'desktop-medical' |
+ 'share-all' |
+ 'peapod' |
+ 'chess-clock' |
+ 'axe' |
+ 'square-d' |
+ 'grip-vertical' |
+ 'mobile-signal-out' |
+ 'arrow-turn-up' |
+ 'level-up' |
+ 'u' |
+ 'arrow-up-from-dotted-line' |
+ 'square-root-variable' |
+ 'square-root-alt' |
+ 'light-switch-on' |
+ 'arrow-down-arrow-up' |
+ 'sort-alt' |
+ 'raindrops' |
+ 'dash' |
+ 'minus-large' |
+ 'clock' |
+ 'clock-four' |
+ 'input-numeric' |
+ 'truck-tow' |
+ 'backward-step' |
+ 'step-backward' |
+ 'pallet' |
+ 'car-bolt' |
+ 'arrows-maximize' |
+ 'expand-arrows' |
+ 'faucet' |
+ 'cloud-sleet' |
+ 'lamp-street' |
+ 'list-radio' |
+ 'pen-nib-slash' |
+ 'baseball-bat-ball' |
+ 'square-up-left' |
+ 'overline' |
+ 's' |
+ 'timeline' |
+ 'keyboard' |
+ 'arrows-from-dotted-line' |
+ 'usb-drive' |
+ 'ballot' |
+ 'caret-down' |
+ 'location-dot-slash' |
+ 'map-marker-alt-slash' |
+ 'cards' |
+ 'house-chimney-medical' |
+ 'clinic-medical' |
+ 'boxing-glove' |
+ 'glove-boxing' |
+ 'temperature-three-quarters' |
+ 'temperature3' |
+ 'thermometer3' |
+ 'thermometer-three-quarters' |
+ 'bell-school' |
+ 'mobile-screen' |
+ 'mobile-android-alt' |
+ 'plane-up' |
+ 'folder-heart' |
+ 'circle-location-arrow' |
+ 'location-circle' |
+ 'face-head-bandage' |
+ 'sushi-roll' |
+ 'maki-roll' |
+ 'makizushi' |
+ 'car-bump' |
+ 'piggy-bank' |
+ 'racquet' |
+ 'car-mirrors' |
+ 'industry-windows' |
+ 'industry-alt' |
+ 'bolt-auto' |
+ 'battery-half' |
+ 'battery3' |
+ 'flux-capacitor' |
+ 'mountain-city' |
+ 'coins' |
+ 'honey-pot' |
+ 'olive' |
+ 'khanda' |
+ 'filter-list' |
+ 'outlet' |
+ 'sliders' |
+ 'sliders-h' |
+ 'cauldron' |
+ 'people' |
+ 'folder-tree' |
+ 'network-wired' |
+ 'croissant' |
+ 'map-pin' |
+ 'hamsa' |
+ 'cent-sign' |
+ 'swords-laser' |
+ 'flask' |
+ 'person-pregnant' |
+ 'square-u' |
+ 'wand-sparkles' |
+ 'router' |
+ 'ellipsis-vertical' |
+ 'ellipsis-v' |
+ 'sword-laser-alt' |
+ 'ticket' |
+ 'power-off' |
+ 'coin' |
+ 'laptop-slash' |
+ 'right-long' |
+ 'long-arrow-alt-right' |
+ 'circle-b' |
+ 'person-dress-simple' |
+ 'pipe-collar' |
+ 'lights-holiday' |
+ 'citrus' |
+ 'flag-usa' |
+ 'laptop-file' |
+ 'tty' |
+ 'teletype' |
+ 'chart-tree-map' |
+ 'diagram-next' |
+ 'person-rifle' |
+ 'clock-five-thirty' |
+ 'pipe-valve' |
+ 'arrow-up-from-arc' |
+ 'face-spiral-eyes' |
+ 'compress-wide' |
+ 'circle-phone-hangup' |
+ 'phone-circle-down' |
+ 'gear-complex-code' |
+ 'house-medical-circle-exclamation' |
+ 'badminton' |
+ 'closed-captioning' |
+ 'person-hiking' |
+ 'hiking' |
+ 'right-from-line' |
+ 'arrow-alt-from-left' |
+ 'venus-double' |
+ 'images' |
+ 'calculator' |
+ 'shuttlecock' |
+ 'user-hair' |
+ 'eye-evil' |
+ 'people-pulling' |
+ 'n' |
+ 'garage' |
+ 'cable-car' |
+ 'tram' |
+ 'shovel-snow' |
+ 'cloud-rain' |
+ 'face-lying' |
+ 'sprinkler' |
+ 'building-circle-xmark' |
+ 'person-sledding' |
+ 'sledding' |
+ 'game-console-handheld' |
+ 'ship' |
+ 'clock-six-thirty' |
+ 'battery-slash' |
+ 'tugrik-sign' |
+ 'arrows-down-to-line' |
+ 'download' |
+ 'shelves' |
+ 'inventory' |
+ 'cloud-snow' |
+ 'face-grin' |
+ 'grin' |
+ 'delete-left' |
+ 'backspace' |
+ 'oven' |
+ 'cloud-binary' |
+ 'eye-dropper' |
+ 'eye-dropper-empty' |
+ 'eyedropper' |
+ 'comment-captions' |
+ 'comments-question' |
+ 'scribble' |
+ 'rotate-exclamation' |
+ 'file-circle-check' |
+ 'glass' |
+ 'loader' |
+ 'forward' |
+ 'user-pilot' |
+ 'mobile' |
+ 'mobile-android' |
+ 'mobile-phone' |
+ 'code-pull-request-closed' |
+ 'face-meh' |
+ 'meh' |
+ 'align-center' |
+ 'book-skull' |
+ 'book-dead' |
+ 'id-card' |
+ 'drivers-license' |
+ 'face-dotted' |
+ 'face-worried' |
+ 'outdent' |
+ 'dedent' |
+ 'heart-circle-exclamation' |
+ 'house' |
+ 'home' |
+ 'home-alt' |
+ 'home-lg-alt' |
+ 'vector-circle' |
+ 'car-circle-bolt' |
+ 'calendar-week' |
+ 'flying-disc' |
+ 'laptop-medical' |
+ 'square-down-right' |
+ 'b' |
+ 'seat-airline' |
+ 'moon-over-sun' |
+ 'eclipse-alt' |
+ 'pipe' |
+ 'file-medical' |
+ 'potato' |
+ 'dice-one' |
+ 'circle-a' |
+ 'helmet-battle' |
+ 'butter' |
+ 'blanket-fire' |
+ 'kiwi-bird' |
+ 'castle' |
+ 'golf-club' |
+ 'arrow-right-arrow-left' |
+ 'exchange' |
+ 'rotate-right' |
+ 'redo-alt' |
+ 'rotate-forward' |
+ 'utensils' |
+ 'cutlery' |
+ 'arrow-up-wide-short' |
+ 'sort-amount-up' |
+ 'chart-pie-simple-circle-dollar' |
+ 'balloons' |
+ 'mill-sign' |
+ 'bowl-rice' |
+ 'timeline-arrow' |
+ 'skull' |
+ 'game-board-simple' |
+ 'game-board-alt' |
+ 'circle-video' |
+ 'video-circle' |
+ 'chart-scatter-bubble' |
+ 'house-turret' |
+ 'banana' |
+ 'hand-holding-skull' |
+ 'people-dress' |
+ 'loveseat' |
+ 'couch-small' |
+ 'tower-broadcast' |
+ 'broadcast-tower' |
+ 'truck-pickup' |
+ 'block-quote' |
+ 'up-long' |
+ 'long-arrow-alt-up' |
+ 'stop' |
+ 'code-merge' |
+ 'money-check-dollar-pen' |
+ 'money-check-edit-alt' |
+ 'up-from-line' |
+ 'arrow-alt-from-bottom' |
+ 'upload' |
+ 'hurricane' |
+ 'grid-round-2-plus' |
+ 'people-pants' |
+ 'mound' |
+ 'windsock' |
+ 'circle-half' |
+ 'brake-warning' |
+ 'toilet-portable' |
+ 'compact-disc' |
+ 'file-arrow-down' |
+ 'file-download' |
+ 'saxophone-fire' |
+ 'sax-hot' |
+ 'camera-web-slash' |
+ 'webcam-slash' |
+ 'folder-medical' |
+ 'folder-gear' |
+ 'folder-cog' |
+ 'hand-wave' |
+ 'arrow-up-arrow-down' |
+ 'sort-up-down' |
+ 'caravan' |
+ 'shield-cat' |
+ 'message-slash' |
+ 'comment-alt-slash' |
+ 'bolt' |
+ 'zap' |
+ 'trash-can-check' |
+ 'glass-water' |
+ 'oil-well' |
+ 'person-simple' |
+ 'vault' |
+ 'mars' |
+ 'toilet' |
+ 'plane-circle-xmark' |
+ 'yen-sign' |
+ 'cny' |
+ 'jpy' |
+ 'rmb' |
+ 'yen' |
+ 'gear-code' |
+ 'notes' |
+ 'ruble-sign' |
+ 'rouble' |
+ 'rub' |
+ 'ruble' |
+ 'trash-undo' |
+ 'trash-arrow-turn-left' |
+ 'champagne-glass' |
+ 'glass-champagne' |
+ 'objects-align-center-horizontal' |
+ 'sun' |
+ 'trash-can-slash' |
+ 'trash-alt-slash' |
+ 'screen-users' |
+ 'users-class' |
+ 'guitar' |
+ 'square-arrow-left' |
+ 'arrow-square-left' |
+ 'square-8' |
+ 'face-smile-hearts' |
+ 'brackets-square' |
+ 'brackets' |
+ 'laptop-arrow-down' |
+ 'hockey-stick-puck' |
+ 'house-tree' |
+ 'signal-fair' |
+ 'signal2' |
+ 'face-laugh-wink' |
+ 'laugh-wink' |
+ 'circle-dollar' |
+ 'dollar-circle' |
+ 'usd-circle' |
+ 'horse-head' |
+ 'arrows-repeat' |
+ 'repeat-alt' |
+ 'bore-hole' |
+ 'industry' |
+ 'image-polaroid' |
+ 'wave-triangle' |
+ 'person-running-fast' |
+ 'circle-down' |
+ 'arrow-alt-circle-down' |
+ 'grill' |
+ 'arrows-turn-to-dots' |
+ 'chart-mixed' |
+ 'analytics' |
+ 'florin-sign' |
+ 'arrow-down-short-wide' |
+ 'sort-amount-desc' |
+ 'sort-amount-down-alt' |
+ 'less-than' |
+ 'display-code' |
+ 'desktop-code' |
+ 'face-drooling' |
+ 'oil-temperature' |
+ 'oil-temp' |
+ 'square-question' |
+ 'question-square' |
+ 'air-conditioner' |
+ 'angle-down' |
+ 'mountains' |
+ 'omega' |
+ 'car-tunnel' |
+ 'person-dolly-empty' |
+ 'pan-food' |
+ 'head-side-cough' |
+ 'grip-lines' |
+ 'thumbs-down' |
+ 'user-lock' |
+ 'arrow-right-long' |
+ 'long-arrow-right' |
+ 'tickets-airline' |
+ 'anchor-circle-xmark' |
+ 'ellipsis' |
+ 'ellipsis-h' |
+ 'nfc-slash' |
+ 'chess-pawn' |
+ 'kit-medical' |
+ 'first-aid' |
+ 'grid-2-plus' |
+ 'bells' |
+ 'person-through-window' |
+ 'toolbox' |
+ 'envelope-dot' |
+ 'envelope-badge' |
+ 'hands-holding-circle' |
+ 'bug' |
+ 'bowl-chopsticks' |
+ 'credit-card' |
+ 'credit-card-alt' |
+ 'circle-s' |
+ 'box-ballot' |
+ 'car' |
+ 'automobile' |
+ 'hand-holding-hand' |
+ 'user-tie-hair' |
+ 'podium-star' |
+ 'user-hair-mullet' |
+ 'business-front' |
+ 'party-back' |
+ 'trian-balbot' |
+ 'microphone-stand' |
+ 'book-open-reader' |
+ 'book-reader' |
+ 'family-dress' |
+ 'circle-x' |
+ 'cabin' |
+ 'mountain-sun' |
+ 'chart-simple-horizontal' |
+ 'bluetooth' |
+ 'arrows-left-right-to-line' |
+ 'hand-back-point-left' |
+ 'message-dots' |
+ 'comment-alt-dots' |
+ 'messaging' |
+ 'file-heart' |
+ 'beer-mug' |
+ 'beer-foam' |
+ 'dice-d20' |
+ 'drone' |
+ 'truck-droplet' |
+ 'file-circle-xmark' |
+ 'temperature-arrow-up' |
+ 'temperature-up' |
+ 'medal' |
+ 'bed' |
+ 'book-copy' |
+ 'square-h' |
+ 'h-square' |
+ 'square-c' |
+ 'clock-two' |
+ 'square-ellipsis-vertical' |
+ 'calendar-users' |
+ 'podcast' |
+ 'bee' |
+ 'temperature-full' |
+ 'temperature4' |
+ 'thermometer4' |
+ 'thermometer-full' |
+ 'bell' |
+ 'candy-bar' |
+ 'chocolate-bar' |
+ 'xmark-large' |
+ 'pinata' |
+ 'arrows-from-line' |
+ 'superscript' |
+ 'bowl-spoon' |
+ 'hexagon-check' |
+ 'plug-circle-xmark' |
+ 'star-of-life' |
+ 'phone-slash' |
+ 'traffic-light-stop' |
+ 'paint-roller' |
+ 'accent-grave' |
+ 'handshake-angle' |
+ 'hands-helping' |
+ 'circle-0' |
+ 'dial-med-low' |
+ 'location-dot' |
+ 'map-marker-alt' |
+ 'crab' |
+ 'box-open-full' |
+ 'box-full' |
+ 'file' |
+ 'greater-than' |
+ 'quotes' |
+ 'pretzel' |
+ 'person-swimming' |
+ 'swimmer' |
+ 'arrow-down' |
+ 'user-robot-xmarks' |
+ 'message-quote' |
+ 'comment-alt-quote' |
+ 'candy-corn' |
+ 'folder-magnifying-glass' |
+ 'folder-search' |
+ 'notebook' |
+ 'droplet' |
+ 'tint' |
+ 'bullseye-pointer' |
+ 'eraser' |
+ 'hexagon-image' |
+ 'earth-americas' |
+ 'earth' |
+ 'earth-america' |
+ 'globe-americas' |
+ 'crate-apple' |
+ 'apple-crate' |
+ 'person-burst' |
+ 'game-board' |
+ 'hat-chef' |
+ 'hand-back-point-right' |
+ 'dove' |
+ 'snowflake-droplets' |
+ 'battery-empty' |
+ 'battery0' |
+ 'grid-4' |
+ 'socks' |
+ 'face-sunglasses' |
+ 'inbox' |
+ 'square-0' |
+ 'section' |
+ 'square-this-way-up' |
+ 'box-up' |
+ 'gauge-high' |
+ 'tachometer-alt' |
+ 'tachometer-alt-fast' |
+ 'square-ampersand' |
+ 'envelope-open-text' |
+ 'lamp-desk' |
+ 'hospital' |
+ 'hospital-alt' |
+ 'hospital-wide' |
+ 'poll-people' |
+ 'whiskey-glass-ice' |
+ 'glass-whiskey-rocks' |
+ 'wine-bottle' |
+ 'chess-rook' |
+ 'user-bounty-hunter' |
+ 'bars-staggered' |
+ 'reorder' |
+ 'stream' |
+ 'diagram-sankey' |
+ 'cloud-hail-mixed' |
+ 'circle-up-left' |
+ 'dharmachakra' |
+ 'objects-align-left' |
+ 'oil-can-drip' |
+ 'face-smiling-hands' |
+ 'broccoli' |
+ 'route-interstate' |
+ 'ear-muffs' |
+ 'hotdog' |
+ 'transporter-empty' |
+ 'person-walking-with-cane' |
+ 'blind' |
+ 'angle-90' |
+ 'rectangle-terminal' |
+ 'kite' |
+ 'drum' |
+ 'scrubber' |
+ 'ice-cream' |
+ 'heart-circle-bolt' |
+ 'fish-bones' |
+ 'deer-rudolph' |
+ 'fax' |
+ 'paragraph' |
+ 'head-side-heart' |
+ 'square-e' |
+ 'meter-fire' |
+ 'cloud-hail' |
+ 'check-to-slot' |
+ 'vote-yea' |
+ 'money-from-bracket' |
+ 'star-half' |
+ 'car-bus' |
+ 'speaker' |
+ 'timer' |
+ 'boxes-stacked' |
+ 'boxes' |
+ 'boxes-alt' |
+ 'grill-hot' |
+ 'ballot-check' |
+ 'link' |
+ 'chain' |
+ 'ear-listen' |
+ 'assistive-listening-systems' |
+ 'file-minus' |
+ 'tree-city' |
+ 'play' |
+ 'font' |
+ 'cup-togo' |
+ 'coffee-togo' |
+ 'square-down-left' |
+ 'burger-lettuce' |
+ 'rupiah-sign' |
+ 'magnifying-glass' |
+ 'search' |
+ 'table-tennis-paddle-ball' |
+ 'ping-pong-paddle-ball' |
+ 'table-tennis' |
+ 'person-dots-from-line' |
+ 'diagnoses' |
+ 'chevrons-down' |
+ 'chevron-double-down' |
+ 'trash-can-arrow-up' |
+ 'trash-restore-alt' |
+ 'signal-good' |
+ 'signal3' |
+ 'location-question' |
+ 'map-marker-question' |
+ 'floppy-disk-circle-xmark' |
+ 'floppy-disk-times' |
+ 'save-circle-xmark' |
+ 'save-times' |
+ 'naira-sign' |
+ 'peach' |
+ 'taxi-bus' |
+ 'bracket-curly' |
+ 'bracket-curly-left' |
+ 'lobster' |
+ 'cart-flatbed-empty' |
+ 'dolly-flatbed-empty' |
+ 'colon' |
+ 'cart-arrow-down' |
+ 'wand' |
+ 'walkie-talkie' |
+ 'file-pen' |
+ 'file-edit' |
+ 'receipt' |
+ 'table-picnic' |
+ 'square-pen' |
+ 'pen-square' |
+ 'pencil-square' |
+ 'circle-microphone-lines' |
+ 'microphone-circle-alt' |
+ 'display-slash' |
+ 'desktop-slash' |
+ 'suitcase-rolling' |
+ 'person-circle-exclamation' |
+ 'transporter-2' |
+ 'hands-holding-diamond' |
+ 'hand-receiving' |
+ 'money-bill-simple-wave' |
+ 'chevron-down' |
+ 'battery-full' |
+ 'battery' |
+ 'battery5' |
+ 'bell-plus' |
+ 'book-arrow-right' |
+ 'hospitals' |
+ 'club' |
+ 'skull-crossbones' |
+ 'droplet-degree' |
+ 'dewpoint' |
+ 'code-compare' |
+ 'list-ul' |
+ 'list-dots' |
+ 'hand-holding-magic' |
+ 'watermelon-slice' |
+ 'circle-ellipsis' |
+ 'school-lock' |
+ 'tower-cell' |
+ 'sd-cards' |
+ 'jug-bottle' |
+ 'down-long' |
+ 'long-arrow-alt-down' |
+ 'envelopes' |
+ 'phone-office' |
+ 'ranking-star' |
+ 'chess-king' |
+ 'nfc-pen' |
+ 'person-harassing' |
+ 'hat-winter' |
+ 'brazilian-real-sign' |
+ 'landmark-dome' |
+ 'landmark-alt' |
+ 'bone-break' |
+ 'arrow-up' |
+ 'down-from-dotted-line' |
+ 'tv' |
+ 'television' |
+ 'tv-alt' |
+ 'border-left' |
+ 'circle-divide' |
+ 'shrimp' |
+ 'list-check' |
+ 'tasks' |
+ 'diagram-subtask' |
+ 'jug-detergent' |
+ 'circle-user' |
+ 'user-circle' |
+ 'square-y' |
+ 'user-doctor-hair' |
+ 'planet-ringed' |
+ 'mushroom' |
+ 'user-shield' |
+ 'megaphone' |
+ 'wreath-laurel' |
+ 'circle-exclamation-check' |
+ 'wind' |
+ 'box-dollar' |
+ 'box-usd' |
+ 'car-burst' |
+ 'car-crash' |
+ 'y' |
+ 'user-headset' |
+ 'arrows-retweet' |
+ 'retweet-alt' |
+ 'person-snowboarding' |
+ 'snowboarding' |
+ 'square-chevron-right' |
+ 'chevron-square-right' |
+ 'lacrosse-stick-ball' |
+ 'truck-fast' |
+ 'shipping-fast' |
+ 'user-magnifying-glass' |
+ 'star-sharp' |
+ 'comment-heart' |
+ 'circle-1' |
+ 'circle-star' |
+ 'star-circle' |
+ 'fish' |
+ 'cloud-fog' |
+ 'fog' |
+ 'waffle' |
+ 'music-note' |
+ 'music-alt' |
+ 'hexagon-exclamation' |
+ 'cart-shopping-fast' |
+ 'object-union' |
+ 'user-graduate' |
+ 'starfighter' |
+ 'circle-half-stroke' |
+ 'adjust' |
+ 'arrow-right-long-to-line' |
+ 'square-arrow-down' |
+ 'arrow-square-down' |
+ 'diamond-half-stroke' |
+ 'clapperboard' |
+ 'square-chevron-left' |
+ 'chevron-square-left' |
+ 'phone-intercom' |
+ 'link-horizontal' |
+ 'chain-horizontal' |
+ 'mango' |
+ 'music-note-slash' |
+ 'music-alt-slash' |
+ 'circle-radiation' |
+ 'radiation-alt' |
+ 'face-tongue-sweat' |
+ 'globe-stand' |
+ 'baseball' |
+ 'baseball-ball' |
+ 'circle-p' |
+ 'award-simple' |
+ 'jet-fighter-up' |
+ 'diagram-project' |
+ 'project-diagram' |
+ 'pedestal' |
+ 'chart-pyramid' |
+ 'sidebar' |
+ 'snowman-head' |
+ 'frosty-head' |
+ 'copy' |
+ 'burger-glass' |
+ 'volume-xmark' |
+ 'volume-mute' |
+ 'volume-times' |
+ 'hand-sparkles' |
+ 'bars-filter' |
+ 'paintbrush-pencil' |
+ 'party-bell' |
+ 'user-vneck-hair' |
+ 'jack-o-lantern' |
+ 'grip' |
+ 'grip-horizontal' |
+ 'share-from-square' |
+ 'share-square' |
+ 'keynote' |
+ 'child-combatant' |
+ 'child-rifle' |
+ 'gun' |
+ 'square-phone' |
+ 'phone-square' |
+ 'hat-beach' |
+ 'plus' |
+ 'add' |
+ 'expand' |
+ 'computer' |
+ 'fort' |
+ 'cloud-check' |
+ 'xmark' |
+ 'close' |
+ 'multiply' |
+ 'remove' |
+ 'times' |
+ 'face-smirking' |
+ 'arrows-up-down-left-right' |
+ 'arrows' |
+ 'chalkboard-user' |
+ 'chalkboard-teacher' |
+ 'rhombus' |
+ 'claw-marks' |
+ 'peso-sign' |
+ 'face-smile-tongue' |
+ 'cart-circle-xmark' |
+ 'building-shield' |
+ 'circle-phone-flip' |
+ 'phone-circle-alt' |
+ 'baby' |
+ 'users-line' |
+ 'quote-left' |
+ 'quote-left-alt' |
+ 'tractor' |
+ 'key-skeleton' |
+ 'trash-arrow-up' |
+ 'trash-restore' |
+ 'arrow-down-up-lock' |
+ 'arrow-down-to-bracket' |
+ 'lines-leaning' |
+ 'square-q' |
+ 'ruler-combined' |
+ 'symbols' |
+ 'icons-alt' |
+ 'copyright' |
+ 'flask-gear' |
+ 'highlighter-line' |
+ 'bracket-square' |
+ 'bracket' |
+ 'bracket-left' |
+ 'island-tropical' |
+ 'island-tree-palm' |
+ 'arrow-right-from-line' |
+ 'arrow-from-left' |
+ 'h2' |
+ 'equals' |
+ 'cake-slice' |
+ 'shortcake' |
+ 'peanut' |
+ 'wrench-simple' |
+ 'blender' |
+ 'teeth' |
+ 'tally-2' |
+ 'shekel-sign' |
+ 'ils' |
+ 'shekel' |
+ 'sheqel' |
+ 'sheqel-sign' |
+ 'cars' |
+ 'axe-battle' |
+ 'user-hair-long' |
+ 'map' |
+ 'file-circle-info' |
+ 'face-disappointed' |
+ 'lasso-sparkles' |
+ 'clock-eleven' |
+ 'rocket' |
+ 'siren-on' |
+ 'clock-ten' |
+ 'candle-holder' |
+ 'video-arrow-down-left' |
+ 'photo-film' |
+ 'photo-video' |
+ 'floppy-disk-circle-arrow-right' |
+ 'save-circle-arrow-right' |
+ 'folder-minus' |
+ 'planet-moon' |
+ 'face-eyes-xmarks' |
+ 'chart-scatter' |
+ 'display-arrow-down' |
+ 'store' |
+ 'arrow-trend-up' |
+ 'plug-circle-minus' |
+ 'olive-branch' |
+ 'angle' |
+ 'vacuum-robot' |
+ 'sign-hanging' |
+ 'sign' |
+ 'square-divide' |
+ 'signal-stream-slash' |
+ 'bezier-curve' |
+ 'eye-dropper-half' |
+ 'store-lock' |
+ 'bell-slash' |
+ 'cloud-bolt-sun' |
+ 'thunderstorm-sun' |
+ 'camera-slash' |
+ 'comment-quote' |
+ 'tablet' |
+ 'tablet-android' |
+ 'school-flag' |
+ 'message-code' |
+ 'glass-half' |
+ 'glass-half-empty' |
+ 'glass-half-full' |
+ 'fill' |
+ 'message-minus' |
+ 'comment-alt-minus' |
+ 'angle-up' |
+ 'dinosaur' |
+ 'drumstick-bite' |
+ 'link-horizontal-slash' |
+ 'chain-horizontal-slash' |
+ 'holly-berry' |
+ 'nose' |
+ 'chevron-left' |
+ 'bacteria' |
+ 'clouds' |
+ 'money-bill-simple' |
+ 'hand-lizard' |
+ 'table-pivot' |
+ 'filter-slash' |
+ 'trash-can-undo' |
+ 'trash-can-arrow-turn-left' |
+ 'trash-undo-alt' |
+ 'notdef' |
+ 'disease' |
+ 'person-to-door' |
+ 'turntable' |
+ 'briefcase-medical' |
+ 'genderless' |
+ 'chevron-right' |
+ 'signal-weak' |
+ 'signal1' |
+ 'clock-five' |
+ 'retweet' |
+ 'car-rear' |
+ 'car-alt' |
+ 'pump-soap' |
+ 'computer-classic' |
+ 'frame' |
+ 'video-slash' |
+ 'battery-quarter' |
+ 'battery2' |
+ 'ellipsis-stroke' |
+ 'ellipsis-h-alt' |
+ 'radio' |
+ 'baby-carriage' |
+ 'carriage-baby' |
+ 'face-expressionless' |
+ 'down-to-dotted-line' |
+ 'cloud-music' |
+ 'traffic-light' |
+ 'cloud-minus' |
+ 'thermometer' |
+ 'shield-minus' |
+ 'vr-cardboard' |
+ 'car-tilt' |
+ 'gauge-circle-minus' |
+ 'brightness-low' |
+ 'hand-middle-finger' |
+ 'percent' |
+ 'percentage' |
+ 'truck-moving' |
+ 'glass-water-droplet' |
+ 'conveyor-belt' |
+ 'location-check' |
+ 'map-marker-check' |
+ 'coin-vertical' |
+ 'display' |
+ 'person-sign' |
+ 'face-smile' |
+ 'smile' |
+ 'phone-hangup' |
+ 'signature-slash' |
+ 'thumbtack' |
+ 'thumb-tack' |
+ 'wheat-slash' |
+ 'trophy' |
+ 'clouds-sun' |
+ 'person-praying' |
+ 'pray' |
+ 'hammer' |
+ 'face-vomit' |
+ 'speakers' |
+ 'tty-answer' |
+ 'teletype-answer' |
+ 'mug-tea-saucer' |
+ 'diagram-lean-canvas' |
+ 'alt' |
+ 'dial' |
+ 'dial-med-high' |
+ 'hand-peace' |
+ 'circle-trash' |
+ 'trash-circle' |
+ 'rotate' |
+ 'sync-alt' |
+ 'circle-quarters' |
+ 'spinner' |
+ 'tower-control' |
+ 'arrow-up-triangle-square' |
+ 'sort-shapes-up' |
+ 'whale' |
+ 'robot' |
+ 'peace' |
+ 'party-horn' |
+ 'gears' |
+ 'cogs' |
+ 'sun-bright' |
+ 'sun-alt' |
+ 'warehouse' |
+ 'conveyor-belt-arm' |
+ 'lock-keyhole-open' |
+ 'lock-open-alt' |
+ 'square-fragile' |
+ 'box-fragile' |
+ 'square-wine-glass-crack' |
+ 'arrow-up-right-dots' |
+ 'square-n' |
+ 'splotch' |
+ 'face-grin-hearts' |
+ 'grin-hearts' |
+ 'meter' |
+ 'mandolin' |
+ 'dice-four' |
+ 'sim-card' |
+ 'transgender' |
+ 'transgender-alt' |
+ 'mercury' |
+ 'up-from-bracket' |
+ 'knife-kitchen' |
+ 'border-right' |
+ 'arrow-turn-down' |
+ 'level-down' |
+ 'spade' |
+ 'card-spade' |
+ 'line-columns' |
+ 'arrow-right-to-line' |
+ 'arrow-to-right' |
+ 'person-falling-burst' |
+ 'flag-pennant' |
+ 'pennant' |
+ 'conveyor-belt-empty' |
+ 'user-group-simple' |
+ 'award' |
+ 'ticket-simple' |
+ 'ticket-alt' |
+ 'building' |
+ 'angles-left' |
+ 'angle-double-left' |
+ 'camcorder' |
+ 'video-handheld' |
+ 'pancakes' |
+ 'album-circle-user' |
+ 'qrcode' |
+ 'dice-d10' |
+ 'fireplace' |
+ 'browser' |
+ 'pen-paintbrush' |
+ 'pencil-paintbrush' |
+ 'fish-cooked' |
+ 'chair-office' |
+ 'nesting-dolls' |
+ 'clock-rotate-left' |
+ 'history' |
+ 'trumpet' |
+ 'face-grin-beam-sweat' |
+ 'grin-beam-sweat' |
+ 'fire-smoke' |
+ 'phone-missed' |
+ 'file-export' |
+ 'arrow-right-from-file' |
+ 'shield' |
+ 'shield-blank' |
+ 'arrow-up-short-wide' |
+ 'sort-amount-up-alt' |
+ 'arrows-repeat-1' |
+ 'repeat1-alt' |
+ 'gun-slash' |
+ 'avocado' |
+ 'binary' |
+ 'glasses-round' |
+ 'glasses-alt' |
+ 'phone-plus' |
+ 'ditto' |
+ 'person-seat' |
+ 'house-medical' |
+ 'golf-ball-tee' |
+ 'golf-ball' |
+ 'circle-chevron-left' |
+ 'chevron-circle-left' |
+ 'house-chimney-window' |
+ 'scythe' |
+ 'pen-nib' |
+ 'ban-parking' |
+ 'parking-circle-slash' |
+ 'tent-arrow-turn-left' |
+ 'face-diagonal-mouth' |
+ 'diagram-cells' |
+ 'cricket-bat-ball' |
+ 'cricket' |
+ 'tents' |
+ 'wand-magic' |
+ 'magic' |
+ 'dog' |
+ 'pen-line' |
+ 'atom-simple' |
+ 'atom-alt' |
+ 'ampersand' |
+ 'carrot' |
+ 'arrow-up-from-line' |
+ 'arrow-from-bottom' |
+ 'moon' |
+ 'pen-slash' |
+ 'wine-glass-empty' |
+ 'wine-glass-alt' |
+ 'square-star' |
+ 'cheese' |
+ 'send-backward' |
+ 'yin-yang' |
+ 'music' |
+ 'compass-slash' |
+ 'clock-one' |
+ 'file-music' |
+ 'code-commit' |
+ 'temperature-low' |
+ 'person-biking' |
+ 'biking' |
+ 'display-chart-up-circle-currency' |
+ 'skeleton' |
+ 'circle-g' |
+ 'circle-arrow-up-left' |
+ 'coin-blank' |
+ 'broom' |
+ 'vacuum' |
+ 'shield-heart' |
+ 'card-heart' |
+ 'lightbulb-cfl-on' |
+ 'melon' |
+ 'gopuram' |
+ 'earth-oceania' |
+ 'globe-oceania' |
+ 'container-storage' |
+ 'face-pouting' |
+ 'square-xmark' |
+ 'times-square' |
+ 'xmark-square' |
+ 'face-explode' |
+ 'exploding-head' |
+ 'hashtag' |
+ 'up-right-and-down-left-from-center' |
+ 'expand-alt' |
+ 'oil-can' |
+ 't' |
+ 'transformer-bolt' |
+ 'hippo' |
+ 'chart-column' |
+ 'cassette-vhs' |
+ 'vhs' |
+ 'infinity' |
+ 'vial-circle-check' |
+ 'chimney' |
+ 'object-intersect' |
+ 'person-arrow-down-to-line' |
+ 'voicemail' |
+ 'block-brick' |
+ 'wall-brick' |
+ 'fan' |
+ 'bags-shopping' |
+ 'paragraph-left' |
+ 'paragraph-rtl' |
+ 'person-walking-luggage' |
+ 'caravan-simple' |
+ 'caravan-alt' |
+ 'turtle' |
+ 'pencil-mechanical' |
+ 'up-down' |
+ 'arrows-alt-v' |
+ 'cloud-moon-rain' |
+ 'booth-curtain' |
+ 'calendar' |
+ 'box-heart' |
+ 'trailer' |
+ 'user-doctor-message' |
+ 'user-md-chat' |
+ 'bahai' |
+ 'haykal' |
+ 'amp-guitar' |
+ 'sd-card' |
+ 'volume-slash' |
+ 'border-bottom' |
+ 'wifi-weak' |
+ 'wifi1' |
+ 'dragon' |
+ 'shoe-prints' |
+ 'circle-plus' |
+ 'plus-circle' |
+ 'face-grin-tongue-wink' |
+ 'grin-tongue-wink' |
+ 'hand-holding' |
+ 'plug-circle-exclamation' |
+ 'link-slash' |
+ 'chain-broken' |
+ 'chain-slash' |
+ 'unlink' |
+ 'clone' |
+ 'person-walking-arrow-loop-left' |
+ 'arrow-up-z-a' |
+ 'sort-alpha-up-alt' |
+ 'fire-flame-curved' |
+ 'fire-alt' |
+ 'tornado' |
+ 'file-circle-plus' |
+ 'delete-right' |
+ 'book-quran' |
+ 'quran' |
+ 'circle-quarter' |
+ 'anchor' |
+ 'border-all' |
+ 'function' |
+ 'face-angry' |
+ 'angry' |
+ 'people-simple' |
+ 'cookie-bite' |
+ 'arrow-trend-down' |
+ 'rss' |
+ 'feed' |
+ 'face-monocle' |
+ 'draw-polygon' |
+ 'scale-balanced' |
+ 'balance-scale' |
+ 'calendar-lines' |
+ 'calendar-note' |
+ 'arrow-down-big-small' |
+ 'sort-size-down' |
+ 'gauge-simple-high' |
+ 'tachometer' |
+ 'tachometer-fast' |
+ 'do-not-enter' |
+ 'shower' |
+ 'dice-d8' |
+ 'desktop' |
+ 'desktop-alt' |
+ 'm' |
+ 'grip-dots-vertical' |
+ 'face-viewfinder' |
+ 'soft-serve' |
+ 'creemee' |
+ 'h5' |
+ 'hand-back-point-down' |
+ 'table-list' |
+ 'th-list' |
+ 'comment-sms' |
+ 'sms' |
+ 'rectangle' |
+ 'rectangle-landscape' |
+ 'clipboard-list-check' |
+ 'turkey' |
+ 'book' |
+ 'user-plus' |
+ 'ice-skate' |
+ 'check' |
+ 'battery-three-quarters' |
+ 'battery4' |
+ 'tomato' |
+ 'sword-laser' |
+ 'house-circle-check' |
+ 'buildings' |
+ 'angle-left' |
+ 'cart-flatbed-boxes' |
+ 'dolly-flatbed-alt' |
+ 'diagram-successor' |
+ 'truck-arrow-right' |
+ 'square-w' |
+ 'arrows-split-up-and-left' |
+ 'lamp' |
+ 'airplay' |
+ 'hand-fist' |
+ 'fist-raised' |
+ 'shield-quartered' |
+ 'slash-forward' |
+ 'location-pen' |
+ 'map-marker-edit' |
+ 'cloud-moon' |
+ 'pot-food' |
+ 'briefcase' |
+ 'person-falling' |
+ 'image-portrait' |
+ 'portrait' |
+ 'user-tag' |
+ 'rug' |
+ 'print-slash' |
+ 'earth-europe' |
+ 'globe-europe' |
+ 'cart-flatbed-suitcase' |
+ 'luggage-cart' |
+ 'hand-back-point-ribbon' |
+ 'rectangle-xmark' |
+ 'rectangle-times' |
+ 'times-rectangle' |
+ 'window-close' |
+ 'tire-rugged' |
+ 'lightbulb-dollar' |
+ 'cowbell' |
+ 'baht-sign' |
+ 'corner' |
+ 'chevrons-right' |
+ 'chevron-double-right' |
+ 'book-open' |
+ 'book-journal-whills' |
+ 'journal-whills' |
+ 'inhaler' |
+ 'handcuffs' |
+ 'snake' |
+ 'triangle-exclamation' |
+ 'exclamation-triangle' |
+ 'warning' |
+ 'note-medical' |
+ 'database' |
+ 'down-left' |
+ 'share' |
+ 'arrow-turn-right' |
+ 'mail-forward' |
+ 'face-thinking' |
+ 'turn-down-right' |
+ 'bottle-droplet' |
+ 'mask-face' |
+ 'hill-rockslide' |
+ 'scanner-keyboard' |
+ 'circle-o' |
+ 'grid-horizontal' |
+ 'message-dollar' |
+ 'comment-alt-dollar' |
+ 'right-left' |
+ 'exchange-alt' |
+ 'columns-3' |
+ 'paper-plane' |
+ 'road-circle-exclamation' |
+ 'dungeon' |
+ 'hand-holding-box' |
+ 'input-text' |
+ 'window-flip' |
+ 'window-alt' |
+ 'align-right' |
+ 'scanner-gun' |
+ 'scanner' |
+ 'tire' |
+ 'engine' |
+ 'money-bill-1-wave' |
+ 'money-bill-wave-alt' |
+ 'life-ring' |
+ 'hands' |
+ 'sign-language' |
+ 'signing' |
+ 'circle-caret-right' |
+ 'caret-circle-right' |
+ 'wheat' |
+ 'file-spreadsheet' |
+ 'audio-description-slash' |
+ 'calendar-day' |
+ 'water-ladder' |
+ 'ladder-water' |
+ 'swimming-pool' |
+ 'arrows-up-down' |
+ 'arrows-v' |
+ 'chess-pawn-piece' |
+ 'chess-pawn-alt' |
+ 'face-grimace' |
+ 'grimace' |
+ 'wheelchair-move' |
+ 'wheelchair-alt' |
+ 'turn-down' |
+ 'level-down-alt' |
+ 'square-s' |
+ 'rectangle-barcode' |
+ 'barcode-alt' |
+ 'person-walking-arrow-right' |
+ 'square-envelope' |
+ 'envelope-square' |
+ 'dice' |
+ 'unicorn' |
+ 'bowling-ball' |
+ 'pompebled' |
+ 'brain' |
+ 'watch-smart' |
+ 'book-user' |
+ 'sensor-cloud' |
+ 'sensor-smoke' |
+ 'clapperboard-play' |
+ 'bandage' |
+ 'band-aid' |
+ 'calendar-minus' |
+ 'circle-xmark' |
+ 'times-circle' |
+ 'xmark-circle' |
+ 'circle-4' |
+ 'gifts' |
+ 'album-collection' |
+ 'hotel' |
+ 'earth-asia' |
+ 'globe-asia' |
+ 'id-card-clip' |
+ 'id-card-alt' |
+ 'magnifying-glass-plus' |
+ 'search-plus' |
+ 'thumbs-up' |
+ 'cloud-showers' |
+ 'user-clock' |
+ 'onion' |
+ 'clock-twelve-thirty' |
+ 'arrow-down-to-dotted-line' |
+ 'hand-dots' |
+ 'allergies' |
+ 'file-invoice' |
+ 'window-minimize' |
+ 'rectangle-wide' |
+ 'comment-arrow-up' |
+ 'garlic' |
+ 'mug-saucer' |
+ 'coffee' |
+ 'brush' |
+ 'tree-decorated' |
+ 'mask' |
+ 'calendar-heart' |
+ 'magnifying-glass-minus' |
+ 'search-minus' |
+ 'flower' |
+ 'right-left-large' |
+ 'ruler-vertical' |
+ 'circles-overlap' |
+ 'user-large' |
+ 'user-alt' |
+ 'starship-freighter' |
+ 'train-tram' |
+ 'bridge-suspension' |
+ 'trash-check' |
+ 'user-nurse' |
+ 'boombox' |
+ 'syringe' |
+ 'cloud-sun' |
+ 'shield-exclamation' |
+ 'stopwatch-20' |
+ 'square-full' |
+ 'grip-dots' |
+ 'comment-exclamation' |
+ 'pen-swirl' |
+ 'falafel' |
+ 'circle-2' |
+ 'magnet' |
+ 'jar' |
+ 'gramophone' |
+ 'dice-d12' |
+ 'note-sticky' |
+ 'sticky-note' |
+ 'down' |
+ 'arrow-alt-down' |
+ 'hundred-points' |
+ '100' |
+ 'paperclip-vertical' |
+ 'wind-warning' |
+ 'wind-circle-exclamation' |
+ 'location-pin-slash' |
+ 'map-marker-slash' |
+ 'face-sad-sweat' |
+ 'bug-slash' |
+ 'cupcake' |
+ 'light-switch-off' |
+ 'toggle-large-off' |
+ 'pen-fancy-slash' |
+ 'truck-container' |
+ 'boot' |
+ 'arrow-up-from-water-pump' |
+ 'file-check' |
+ 'bone' |
+ 'cards-blank' |
+ 'circle-3' |
+ 'bench-tree' |
+ 'keyboard-brightness-low' |
+ 'ski-boot-ski' |
+ 'brain-circuit' |
+ 'user-injured' |
+ 'block-brick-fire' |
+ 'firewall' |
+ 'face-sad-tear' |
+ 'sad-tear' |
+ 'plane' |
+ 'tent-arrows-down' |
+ 'exclamation' |
+ 'arrows-spin' |
+ 'face-smile-relaxed' |
+ 'comment-xmark' |
+ 'comment-times' |
+ 'print' |
+ 'turkish-lira-sign' |
+ 'try' |
+ 'turkish-lira' |
+ 'face-nose-steam' |
+ 'circle-waveform-lines' |
+ 'waveform-circle' |
+ 'dollar-sign' |
+ 'dollar' |
+ 'usd' |
+ 'ferris-wheel' |
+ 'computer-speaker' |
+ 'skull-cow' |
+ 'x' |
+ 'magnifying-glass-dollar' |
+ 'search-dollar' |
+ 'users-gear' |
+ 'users-cog' |
+ 'person-military-pointing' |
+ 'building-columns' |
+ 'bank' |
+ 'institution' |
+ 'museum' |
+ 'university' |
+ 'circle-t' |
+ 'sack' |
+ 'grid-2' |
+ 'camera-cctv' |
+ 'cctv' |
+ 'umbrella' |
+ 'trowel' |
+ 'horizontal-rule' |
+ 'bed-front' |
+ 'bed-alt' |
+ 'd' |
+ 'stapler' |
+ 'masks-theater' |
+ 'theater-masks' |
+ 'kip-sign' |
+ 'face-woozy' |
+ 'cloud-question' |
+ 'pineapple' |
+ 'hand-point-left' |
+ 'gallery-thumbnails' |
+ 'circle-j' |
+ 'eyes' |
+ 'handshake-simple' |
+ 'handshake-alt' |
+ 'page-caret-up' |
+ 'file-caret-up' |
+ 'jet-fighter' |
+ 'fighter-jet' |
+ 'comet' |
+ 'square-share-nodes' |
+ 'share-alt-square' |
+ 'shield-keyhole' |
+ 'barcode' |
+ 'plus-minus' |
+ 'square-sliders-vertical' |
+ 'sliders-v-square' |
+ 'video' |
+ 'video-camera' |
+ 'message-middle' |
+ 'comment-middle-alt' |
+ 'graduation-cap' |
+ 'mortar-board' |
+ 'hand-holding-medical' |
+ 'person-circle-check' |
+ 'square-z' |
+ 'message-text' |
+ 'comment-alt-text' |
+ 'turn-up' |
+ 'level-up-alt' |
+ '0' |
+ '1' |
+ '2' |
+ '3' |
+ '4' |
+ '5' |
+ '6' |
+ '7' |
+ '8' |
+ '9' |
+ 'fill-drip' |
+ 'arrows-to-circle' |
+ 'circle-chevron-right' |
+ 'chevron-circle-right' |
+ 'wagon-covered' |
+ 'line-height' |
+ 'bagel' |
+ 'transporter-7' |
+ 'at' |
+ 'rectangles-mixed' |
+ 'phone-arrow-up-right' |
+ 'phone-arrow-up' |
+ 'phone-outgoing' |
+ 'trash-can' |
+ 'trash-alt' |
+ 'circle-l' |
+ 'head-side-goggles' |
+ 'head-vr' |
+ 'text-height' |
+ 'user-xmark' |
+ 'user-times' |
+ 'face-hand-yawn' |
+ 'gauge-simple-min' |
+ 'tachometer-slowest' |
+ 'stethoscope' |
+ 'coffin' |
+ 'message' |
+ 'comment-alt' |
+ 'salad' |
+ 'bowl-salad' |
+ 'info' |
+ 'robot-astromech' |
+ 'ring-diamond' |
+ 'fondue-pot' |
+ 'theta' |
+ 'face-hand-peeking' |
+ 'square-user' |
+ 'down-left-and-up-right-to-center' |
+ 'compress-alt' |
+ 'explosion' |
+ 'file-lines' |
+ 'file-alt' |
+ 'file-text' |
+ 'wave-square' |
+ 'ring' |
+ 'building-un' |
+ 'dice-three' |
+ 'tire-pressure-warning' |
+ 'wifi-fair' |
+ 'wifi2' |
+ 'calendar-days' |
+ 'calendar-alt' |
+ 'mp3-player' |
+ 'anchor-circle-check' |
+ 'tally-4' |
+ 'rectangle-history' |
+ 'building-circle-arrow-right' |
+ 'volleyball' |
+ 'volleyball-ball' |
+ 'sun-haze' |
+ 'text-size' |
+ 'ufo' |
+ 'fork' |
+ 'utensil-fork' |
+ 'arrows-up-to-line' |
+ 'mobile-signal' |
+ 'barcode-scan' |
+ 'sort-down' |
+ 'sort-desc' |
+ 'folder-arrow-down' |
+ 'folder-download' |
+ 'circle-minus' |
+ 'minus-circle' |
+ 'face-icicles' |
+ 'shovel' |
+ 'door-open' |
+ 'films' |
+ 'right-from-bracket' |
+ 'sign-out-alt' |
+ 'face-glasses' |
+ 'nfc' |
+ 'atom' |
+ 'soap' |
+ 'icons' |
+ 'heart-music-camera-bolt' |
+ 'microphone-lines-slash' |
+ 'microphone-alt-slash' |
+ 'closed-captioning-slash' |
+ 'calculator-simple' |
+ 'calculator-alt' |
+ 'bridge-circle-check' |
+ 'sliders-up' |
+ 'sliders-v' |
+ 'location-minus' |
+ 'map-marker-minus' |
+ 'pump-medical' |
+ 'fingerprint' |
+ 'ski-boot' |
+ 'standard-definition' |
+ 'rectangle-sd' |
+ 'h1' |
+ 'hand-point-right' |
+ 'magnifying-glass-location' |
+ 'search-location' |
+ 'message-bot' |
+ 'forward-step' |
+ 'step-forward' |
+ 'face-smile-beam' |
+ 'smile-beam' |
+ 'light-ceiling' |
+ 'message-exclamation' |
+ 'comment-alt-exclamation' |
+ 'bowl-scoop' |
+ 'bowl-shaved-ice' |
+ 'square-x' |
+ 'utility-pole-double' |
+ 'flag-checkered' |
+ 'chevrons-up' |
+ 'chevron-double-up' |
+ 'football' |
+ 'football-ball' |
+ 'user-vneck' |
+ 'school-circle-exclamation' |
+ 'crop' |
+ 'angles-down' |
+ 'angle-double-down' |
+ 'users-rectangle' |
+ 'people-roof' |
+ 'square-arrow-right' |
+ 'arrow-square-right' |
+ 'location-plus' |
+ 'map-marker-plus' |
+ 'lightbulb-exclamation-on' |
+ 'people-line' |
+ 'beer-mug-empty' |
+ 'beer' |
+ 'crate-empty' |
+ 'diagram-predecessor' |
+ 'transporter' |
+ 'calendar-circle-user' |
+ 'arrow-up-long' |
+ 'long-arrow-up' |
+ 'person-carry-box' |
+ 'person-carry' |
+ 'fire-flame-simple' |
+ 'burn' |
+ 'person' |
+ 'male' |
+ 'laptop' |
+ 'file-csv' |
+ 'menorah' |
+ 'union' |
+ 'chevrons-left' |
+ 'chevron-double-left' |
+ 'circle-heart' |
+ 'heart-circle' |
+ 'truck-plane' |
+ 'record-vinyl' |
+ 'bring-forward' |
+ 'square-p' |
+ 'face-grin-stars' |
+ 'grin-stars' |
+ 'sigma' |
+ 'camera-movie' |
+ 'bong' |
+ 'clarinet' |
+ 'truck-flatbed' |
+ 'spaghetti-monster-flying' |
+ 'pastafarianism' |
+ 'arrow-down-up-across-line' |
+ 'leaf-heart' |
+ 'house-building' |
+ 'cheese-swiss' |
+ 'spoon' |
+ 'utensil-spoon' |
+ 'jar-wheat' |
+ 'envelopes-bulk' |
+ 'mail-bulk' |
+ 'file-circle-exclamation' |
+ 'bow-arrow' |
+ 'cart-xmark' |
+ 'hexagon-xmark' |
+ 'times-hexagon' |
+ 'xmark-hexagon' |
+ 'circle-h' |
+ 'hospital-symbol' |
+ 'merge' |
+ 'pager' |
+ 'cart-minus' |
+ 'address-book' |
+ 'contact-book' |
+ 'pan-frying' |
+ 'grid' |
+ 'grid3' |
+ 'football-helmet' |
+ 'hand-love' |
+ 'trees' |
+ 'strikethrough' |
+ 'page' |
+ 'k' |
+ 'diagram-previous' |
+ 'gauge-min' |
+ 'tachometer-alt-slowest' |
+ 'folder-grid' |
+ 'eggplant' |
+ 'ram' |
+ 'landmark-flag' |
+ 'lips' |
+ 'pencil' |
+ 'pencil-alt' |
+ 'backward' |
+ 'caret-right' |
+ 'comments' |
+ 'paste' |
+ 'file-clipboard' |
+ 'desktop-arrow-down' |
+ 'code-pull-request' |
+ 'pumpkin' |
+ 'clipboard-list' |
+ 'pen-field' |
+ 'blueberries' |
+ 'truck-ramp-box' |
+ 'truck-loading' |
+ 'note' |
+ 'arrow-down-to-square' |
+ 'user-check' |
+ 'cloud-xmark' |
+ 'vial-virus' |
+ 'book-blank' |
+ 'book-alt' |
+ 'golf-flag-hole' |
+ 'message-arrow-down' |
+ 'comment-alt-arrow-down' |
+ 'face-unamused' |
+ 'sheet-plastic' |
+ 'circle-9' |
+ 'blog' |
+ 'user-ninja' |
+ 'pencil-slash' |
+ 'bowling-pins' |
+ 'person-arrow-up-from-line' |
+ 'down-right' |
+ 'scroll-torah' |
+ 'torah' |
+ 'webhook' |
+ 'blinds-open' |
+ 'fence' |
+ 'up' |
+ 'arrow-alt-up' |
+ 'broom-ball' |
+ 'quidditch' |
+ 'quidditch-broom-ball' |
+ 'drumstick' |
+ 'square-v' |
+ 'face-awesome' |
+ 'gave-dandy' |
+ 'dial-off' |
+ 'toggle-off' |
+ 'face-smile-horns' |
+ 'box-archive' |
+ 'archive' |
+ 'grapes' |
+ 'person-drowning' |
+ 'dial-max' |
+ 'circle-m' |
+ 'calendar-image' |
+ 'circle-caret-down' |
+ 'caret-circle-down' |
+ 'arrow-down-9-1' |
+ 'sort-numeric-desc' |
+ 'sort-numeric-down-alt' |
+ 'face-grin-tongue-squint' |
+ 'grin-tongue-squint' |
+ 'shish-kebab' |
+ 'spray-can' |
+ 'alarm-snooze' |
+ 'scarecrow' |
+ 'truck-monster' |
+ 'gift-card' |
+ 'w' |
+ 'code-pull-request-draft' |
+ 'square-b' |
+ 'elephant' |
+ 'earth-africa' |
+ 'globe-africa' |
+ 'rainbow' |
+ 'circle-notch' |
+ 'tablet-screen-button' |
+ 'tablet-alt' |
+ 'paw' |
+ 'message-question' |
+ 'cloud' |
+ 'trowel-bricks' |
+ 'square-3' |
+ 'face-flushed' |
+ 'flushed' |
+ 'hospital-user' |
+ 'microwave' |
+ 'chf-sign' |
+ 'tent-arrow-left-right' |
+ 'cart-circle-arrow-up' |
+ 'trash-clock' |
+ 'gavel' |
+ 'legal' |
+ 'sprinkler-ceiling' |
+ 'browsers' |
+ 'trillium' |
+ 'music-slash' |
+ 'truck-ramp' |
+ 'binoculars' |
+ 'microphone-slash' |
+ 'box-tissue' |
+ 'circle-c' |
+ 'star-christmas' |
+ 'chart-bullet' |
+ 'motorcycle' |
+ 'tree-christmas' |
+ 'tire-flat' |
+ 'sunglasses' |
+ 'badge' |
+ 'message-pen' |
+ 'comment-alt-edit' |
+ 'message-edit' |
+ 'bell-concierge' |
+ 'concierge-bell' |
+ 'pen-ruler' |
+ 'pencil-ruler' |
+ 'arrow-progress' |
+ 'chess-rook-piece' |
+ 'chess-rook-alt' |
+ 'square-root' |
+ 'album-collection-circle-plus' |
+ 'people-arrows' |
+ 'people-arrows-left-right' |
+ 'face-angry-horns' |
+ 'mars-and-venus-burst' |
+ 'tombstone' |
+ 'square-caret-right' |
+ 'caret-square-right' |
+ 'scissors' |
+ 'cut' |
+ 'list-music' |
+ 'sun-plant-wilt' |
+ 'toilets-portable' |
+ 'hockey-puck' |
+ 'mustache' |
+ 'hyphen' |
+ 'table' |
+ 'user-chef' |
+ 'message-image' |
+ 'comment-alt-image' |
+ 'users-medical' |
+ 'sensor-triangle-exclamation' |
+ 'sensor-alert' |
+ 'magnifying-glass-arrow-right' |
+ 'tachograph-digital' |
+ 'digital-tachograph' |
+ 'face-mask' |
+ 'pickleball' |
+ 'star-sharp-half' |
+ 'users-slash' |
+ 'clover' |
+ 'meat' |
+ 'reply' |
+ 'mail-reply' |
+ 'star-and-crescent' |
+ 'empty-set' |
+ 'house-fire' |
+ 'square-minus' |
+ 'minus-square' |
+ 'helicopter' |
+ 'bird' |
+ 'compass' |
+ 'square-caret-down' |
+ 'caret-square-down' |
+ 'heart-half-stroke' |
+ 'heart-half-alt' |
+ 'file-circle-question' |
+ 'laptop-code' |
+ 'joystick' |
+ 'grill-fire' |
+ 'rectangle-vertical-history' |
+ 'swatchbook' |
+ 'prescription-bottle' |
+ 'bars' |
+ 'navicon' |
+ 'keyboard-left' |
+ 'people-group' |
+ 'hourglass-end' |
+ 'hourglass3' |
+ 'heart-crack' |
+ 'heart-broken' |
+ 'face-beam-hand-over-mouth' |
+ 'droplet-percent' |
+ 'humidity' |
+ 'square-up-right' |
+ 'external-link-square-alt' |
+ 'face-kiss-beam' |
+ 'kiss-beam' |
+ 'corn' |
+ 'roller-coaster' |
+ 'photo-film-music' |
+ 'radar' |
+ 'sickle' |
+ 'film' |
+ 'coconut' |
+ 'ruler-horizontal' |
+ 'shield-cross' |
+ 'cassette-tape' |
+ 'square-terminal' |
+ 'people-robbery' |
+ 'lightbulb' |
+ 'caret-left' |
+ 'comment-middle' |
+ 'trash-can-list' |
+ 'block' |
+ 'circle-exclamation' |
+ 'exclamation-circle' |
+ 'school-circle-xmark' |
+ 'arrow-right-from-bracket' |
+ 'sign-out' |
+ 'face-frown-slight' |
+ 'circle-chevron-down' |
+ 'chevron-circle-down' |
+ 'sidebar-flip' |
+ 'unlock-keyhole' |
+ 'unlock-alt' |
+ 'temperature-list' |
+ 'cloud-showers-heavy' |
+ 'headphones-simple' |
+ 'headphones-alt' |
+ 'sitemap' |
+ 'pipe-section' |
+ 'space-station-moon-construction' |
+ 'space-station-moon-alt' |
+ 'circle-dollar-to-slot' |
+ 'donate' |
+ 'memory' |
+ 'face-sleeping' |
+ 'road-spikes' |
+ 'fire-burner' |
+ 'squirrel' |
+ 'arrow-up-to-line' |
+ 'arrow-to-top' |
+ 'flag' |
+ 'face-cowboy-hat' |
+ 'hanukiah' |
+ 'chart-scatter-3d' |
+ 'display-chart-up' |
+ 'square-code' |
+ 'feather' |
+ 'volume-low' |
+ 'volume-down' |
+ 'xmark-to-slot' |
+ 'times-to-slot' |
+ 'vote-nay' |
+ 'box-taped' |
+ 'box-alt' |
+ 'comment-slash' |
+ 'swords' |
+ 'cloud-sun-rain' |
+ 'album' |
+ 'circle-n' |
+ 'compress' |
+ 'wheat-awn' |
+ 'wheat-alt' |
+ 'ankh' |
+ 'hands-holding-child' |
+ 'asterisk' |
+ 'key-skeleton-left-right' |
+ 'comment-lines' |
+ 'luchador-mask' |
+ 'luchador' |
+ 'mask-luchador' |
+ 'square-check' |
+ 'check-square' |
+ 'shredder' |
+ 'book-open-cover' |
+ 'book-open-alt' |
+ 'sandwich' |
+ 'peseta-sign' |
+ 'square-parking-slash' |
+ 'parking-slash' |
+ 'train-tunnel' |
+ 'heading' |
+ 'header' |
+ 'ghost' |
+ 'face-anguished' |
+ 'hockey-sticks' |
+ 'abacus' |
+ 'film-simple' |
+ 'film-alt' |
+ 'list' |
+ 'list-squares' |
+ 'tree-palm' |
+ 'square-phone-flip' |
+ 'phone-square-alt' |
+ 'cart-plus' |
+ 'gamepad' |
+ 'border-center-v' |
+ 'circle-dot' |
+ 'dot-circle' |
+ 'clipboard-medical' |
+ 'face-dizzy' |
+ 'dizzy' |
+ 'egg' |
+ 'up-to-line' |
+ 'arrow-alt-to-top' |
+ 'house-medical-circle-xmark' |
+ 'watch-fitness' |
+ 'clock-nine-thirty' |
+ 'campground' |
+ 'folder-plus' |
+ 'jug' |
+ 'futbol' |
+ 'futbol-ball' |
+ 'soccer-ball' |
+ 'snow-blowing' |
+ 'paintbrush' |
+ 'paint-brush' |
+ 'lock' |
+ 'arrow-down-from-line' |
+ 'arrow-from-top' |
+ 'gas-pump' |
+ 'signal-bars-slash' |
+ 'signal-alt-slash' |
+ 'monkey' |
+ 'rectangle-pro' |
+ 'pro' |
+ 'house-night' |
+ 'hot-tub-person' |
+ 'hot-tub' |
+ 'blanket' |
+ 'map-location' |
+ 'map-marked' |
+ 'house-flood-water' |
+ 'comments-question-check' |
+ 'tree' |
+ 'arrows-cross' |
+ 'backpack' |
+ 'square-small' |
+ 'folder-arrow-up' |
+ 'folder-upload' |
+ 'bridge-lock' |
+ 'crosshairs-simple' |
+ 'sack-dollar' |
+ 'pen-to-square' |
+ 'edit' |
+ 'square-sliders' |
+ 'sliders-h-square' |
+ 'car-side' |
+ 'message-middle-top' |
+ 'comment-middle-top-alt' |
+ 'lightbulb-on' |
+ 'knife' |
+ 'utensil-knife' |
+ 'share-nodes' |
+ 'share-alt' |
+ 'display-chart-up-circle-dollar' |
+ 'wave-sine' |
+ 'heart-circle-minus' |
+ 'circle-w' |
+ 'circle-calendar' |
+ 'calendar-circle' |
+ 'hourglass-half' |
+ 'hourglass2' |
+ 'microscope' |
+ 'sunset' |
+ 'sink' |
+ 'calendar-exclamation' |
+ 'truck-container-empty' |
+ 'hand-heart' |
+ 'bag-shopping' |
+ 'shopping-bag' |
+ 'arrow-down-z-a' |
+ 'sort-alpha-desc' |
+ 'sort-alpha-down-alt' |
+ 'mitten' |
+ 'reply-clock' |
+ 'reply-time' |
+ 'person-rays' |
+ 'right' |
+ 'arrow-alt-right' |
+ 'circle-f' |
+ 'users' |
+ 'face-pleading' |
+ 'eye-slash' |
+ 'flask-vial' |
+ 'police-box' |
+ 'cucumber' |
+ 'head-side-brain' |
+ 'hand' |
+ 'hand-paper' |
+ 'person-biking-mountain' |
+ 'biking-mountain' |
+ 'utensils-slash' |
+ 'print-magnifying-glass' |
+ 'print-search' |
+ 'folder-bookmark' |
+ 'om' |
+ 'pi' |
+ 'flask-round-potion' |
+ 'flask-potion' |
+ 'face-shush' |
+ 'worm' |
+ 'house-circle-xmark' |
+ 'plug' |
+ 'calendar-circle-exclamation' |
+ 'square-i' |
+ 'chevron-up' |
+ 'face-saluting' |
+ 'gauge-simple-low' |
+ 'tachometer-slow' |
+ 'face-persevering' |
+ 'circle-camera' |
+ 'camera-circle' |
+ 'hand-spock' |
+ 'spider-web' |
+ 'circle-microphone' |
+ 'microphone-circle' |
+ 'book-arrow-up' |
+ 'popsicle' |
+ 'command' |
+ 'blinds' |
+ 'stopwatch' |
+ 'saxophone' |
+ 'square-2' |
+ 'field-hockey-stick-ball' |
+ 'field-hockey' |
+ 'arrow-up-square-triangle' |
+ 'sort-shapes-up-alt' |
+ 'face-scream' |
+ 'square-m' |
+ 'camera-web' |
+ 'webcam' |
+ 'comment-arrow-down' |
+ 'lightbulb-cfl' |
+ 'window-frame-open' |
+ 'face-kiss' |
+ 'kiss' |
+ 'bridge-circle-xmark' |
+ 'period' |
+ 'face-grin-tongue' |
+ 'grin-tongue' |
+ 'up-to-dotted-line' |
+ 'thought-bubble' |
+ 'skeleton-ribs' |
+ 'raygun' |
+ 'flute' |
+ 'acorn' |
+ 'video-arrow-up-right' |
+ 'grate-droplet' |
+ 'seal-exclamation' |
+ 'chess-bishop' |
+ 'message-sms' |
+ 'coffee-beans' |
+ 'hat-witch' |
+ 'face-grin-wink' |
+ 'grin-wink' |
+ 'clock-three-thirty' |
+ 'ear-deaf' |
+ 'deaf' |
+ 'deafness' |
+ 'hard-of-hearing' |
+ 'alarm-clock' |
+ 'eclipse' |
+ 'face-relieved' |
+ 'road-circle-check' |
+ 'dice-five' |
+ 'octagon-minus' |
+ 'minus-octagon' |
+ 'square-rss' |
+ 'rss-square' |
+ 'face-zany' |
+ 'tricycle' |
+ 'land-mine-on' |
+ 'square-arrow-up-left' |
+ 'i-cursor' |
+ 'chart-mixed-up-circle-dollar' |
+ 'salt-shaker' |
+ 'stamp' |
+ 'file-plus' |
+ 'draw-square' |
+ 'toilet-paper-under-slash' |
+ 'toilet-paper-reverse-slash' |
+ 'stairs' |
+ 'drone-front' |
+ 'drone-alt' |
+ 'glass-empty' |
+ 'dial-high' |
+ 'user-helmet-safety' |
+ 'user-construction' |
+ 'user-hard-hat' |
+ 'i' |
+ 'hryvnia-sign' |
+ 'hryvnia' |
+ 'arrow-down-left-and-arrow-up-right-to-center' |
+ 'pills' |
+ 'face-grin-wide' |
+ 'grin-alt' |
+ 'tooth' |
+ 'basketball-hoop' |
+ 'objects-align-bottom' |
+ 'v' |
+ 'sparkles' |
+ 'squid' |
+ 'leafy-green' |
+ 'circle-arrow-up-right' |
+ 'calendars' |
+ 'bangladeshi-taka-sign' |
+ 'bicycle' |
+ 'hammer-war' |
+ 'circle-d' |
+ 'spider-black-widow' |
+ 'staff-snake' |
+ 'rod-asclepius' |
+ 'rod-snake' |
+ 'staff-aesculapius' |
+ 'pear' |
+ 'head-side-cough-slash' |
+ 'triangle' |
+ 'apartment' |
+ 'truck-medical' |
+ 'ambulance' |
+ 'pepper' |
+ 'piano' |
+ 'gun-squirt' |
+ 'wheat-awn-circle-exclamation' |
+ 'snowman' |
+ 'user-alien' |
+ 'shield-check' |
+ 'mortar-pestle' |
+ 'road-barrier' |
+ 'chart-candlestick' |
+ 'briefcase-blank' |
+ 'school' |
+ 'igloo' |
+ 'bracket-round' |
+ 'parenthesis' |
+ 'joint' |
+ 'horse-saddle' |
+ 'mug-marshmallows' |
+ 'filters' |
+ 'bell-on' |
+ 'angle-right' |
+ 'dial-med' |
+ 'horse' |
+ 'q' |
+ 'monitor-waveform' |
+ 'monitor-heart-rate' |
+ 'link-simple' |
+ 'whistle' |
+ 'g' |
+ 'wine-glass-crack' |
+ 'fragile' |
+ 'slot-machine' |
+ 'notes-medical' |
+ 'car-wash' |
+ 'escalator' |
+ 'comment-image' |
+ 'temperature-half' |
+ 'temperature2' |
+ 'thermometer2' |
+ 'thermometer-half' |
+ 'dong-sign' |
+ 'donut' |
+ 'doughnut' |
+ 'capsules' |
+ 'poo-storm' |
+ 'poo-bolt' |
+ 'tally-1' |
+ 'face-frown-open' |
+ 'frown-open' |
+ 'square-dashed' |
+ 'square-j' |
+ 'hand-point-up' |
+ 'money-bill' |
+ 'arrow-up-big-small' |
+ 'sort-size-up' |
+ 'barcode-read' |
+ 'baguette' |
+ 'bowl-soft-serve' |
+ 'face-holding-back-tears' |
+ 'square-up' |
+ 'arrow-alt-square-up' |
+ 'train-subway-tunnel' |
+ 'subway-tunnel' |
+ 'square-exclamation' |
+ 'exclamation-square' |
+ 'semicolon' |
+ 'bookmark' |
+ 'fan-table' |
+ 'align-justify' |
+ 'battery-low' |
+ 'battery1' |
+ 'credit-card-front' |
+ 'brain-arrow-curved-right' |
+ 'mind-share' |
+ 'umbrella-beach' |
+ 'helmet-un' |
+ 'location-smile' |
+ 'map-marker-smile' |
+ 'arrow-left-to-line' |
+ 'arrow-to-left' |
+ 'bullseye' |
+ 'sushi' |
+ 'nigiri' |
+ 'message-captions' |
+ 'comment-alt-captions' |
+ 'trash-list' |
+ 'bacon' |
+ 'option' |
+ 'hand-point-down' |
+ 'arrow-up-from-bracket' |
+ 'trash-plus' |
+ 'objects-align-top' |
+ 'folder' |
+ 'folder-blank' |
+ 'face-anxious-sweat' |
+ 'credit-card-blank' |
+ 'file-waveform' |
+ 'file-medical-alt' |
+ 'microchip-ai' |
+ 'mug' |
+ 'plane-up-slash' |
+ 'radiation' |
+ 'pen-circle' |
+ 'bag-seedling' |
+ 'chart-simple' |
+ 'crutches' |
+ 'circle-parking' |
+ 'parking-circle' |
+ 'mars-stroke' |
+ 'leaf-oak' |
+ 'square-bolt' |
+ 'vial' |
+ 'gauge' |
+ 'dashboard' |
+ 'gauge-med' |
+ 'tachometer-alt-average' |
+ 'wand-magic-sparkles' |
+ 'magic-wand-sparkles' |
+ 'lambda' |
+ 'e' |
+ 'pizza' |
+ 'bowl-chopsticks-noodles' |
+ 'h3' |
+ 'pen-clip' |
+ 'pen-alt' |
+ 'bridge-circle-exclamation' |
+ 'badge-percent' |
+ 'user' |
+ 'sensor' |
+ 'comma' |
+ 'school-circle-check' |
+ 'toilet-paper-under' |
+ 'toilet-paper-reverse' |
+ 'light-emergency' |
+ 'arrow-down-to-arc' |
+ 'dumpster' |
+ 'van-shuttle' |
+ 'shuttle-van' |
+ 'building-user' |
+ 'light-switch' |
+ 'square-caret-left' |
+ 'caret-square-left' |
+ 'highlighter' |
+ 'wave-pulse' |
+ 'heart-rate' |
+ 'key' |
+ 'hat-santa' |
+ 'tamale' |
+ 'box-check' |
+ 'bullhorn' |
+ 'steak' |
+ 'location-crosshairs-slash' |
+ 'location-slash' |
+ 'person-dolly' |
+ 'globe' |
+ 'synagogue' |
+ 'file-chart-column' |
+ 'file-chart-line' |
+ 'person-half-dress' |
+ 'folder-image' |
+ 'calendar-pen' |
+ 'calendar-edit' |
+ 'road-bridge' |
+ 'face-smile-tear' |
+ 'message-plus' |
+ 'comment-alt-plus' |
+ 'location-arrow' |
+ 'c' |
+ 'tablet-button' |
+ 'rectangle-history-circle-user' |
+ 'building-lock' |
+ 'chart-line-up' |
+ 'mailbox' |
+ 'truck-bolt' |
+ 'pizza-slice' |
+ 'money-bill-wave' |
+ 'chart-area' |
+ 'area-chart' |
+ 'house-flag' |
+ 'circle-three-quarters-stroke' |
+ 'person-circle-minus' |
+ 'scalpel' |
+ 'ban' |
+ 'cancel' |
+ 'bell-exclamation' |
+ 'circle-bookmark' |
+ 'bookmark-circle' |
+ 'egg-fried' |
+ 'face-weary' |
+ 'uniform-martial-arts' |
+ 'camera-rotate' |
+ 'sun-dust' |
+ 'comment-text' |
+ 'spray-can-sparkles' |
+ 'air-freshener' |
+ 'signal-bars' |
+ 'signal-alt' |
+ 'signal-alt4' |
+ 'signal-bars-strong' |
+ 'diamond-exclamation' |
+ 'star' |
+ 'dial-min' |
+ 'repeat' |
+ 'cross' |
+ 'page-caret-down' |
+ 'file-caret-down' |
+ 'box' |
+ 'venus-mars' |
+ 'clock-seven-thirty' |
+ 'arrow-pointer' |
+ 'mouse-pointer' |
+ 'clock-four-thirty' |
+ 'signal-bars-good' |
+ 'signal-alt3' |
+ 'cactus' |
+ 'lightbulb-gear' |
+ 'maximize' |
+ 'expand-arrows-alt' |
+ 'charging-station' |
+ 'shapes' |
+ 'triangle-circle-square' |
+ 'plane-tail' |
+ 'gauge-simple-max' |
+ 'tachometer-fastest' |
+ 'circle-u' |
+ 'shield-slash' |
+ 'square-phone-hangup' |
+ 'phone-square-down' |
+ 'arrow-up-left' |
+ 'transporter-1' |
+ 'peanuts' |
+ 'shuffle' |
+ 'random' |
+ 'person-running' |
+ 'running' |
+ 'mobile-retro' |
+ 'grip-lines-vertical' |
+ 'bin-bottles-recycle' |
+ 'arrow-up-from-square' |
+ 'file-dashed-line' |
+ 'page-break' |
+ 'bracket-curly-right' |
+ 'spider' |
+ 'clock-three' |
+ 'hands-bound' |
+ 'scalpel-line-dashed' |
+ 'scalpel-path' |
+ 'file-invoice-dollar' |
+ 'pipe-smoking' |
+ 'face-astonished' |
+ 'window' |
+ 'plane-circle-exclamation' |
+ 'ear' |
+ 'file-lock' |
+ 'diagram-venn' |
+ 'x-ray' |
+ 'goal-net' |
+ 'coffin-cross' |
+ 'spell-check' |
+ 'location-xmark' |
+ 'map-marker-times' |
+ 'map-marker-xmark' |
+ 'circle-quarter-stroke' |
+ 'lasso' |
+ 'slash' |
+ 'person-to-portal' |
+ 'portal-enter' |
+ 'calendar-star' |
+ 'computer-mouse' |
+ 'mouse' |
+ 'arrow-right-to-bracket' |
+ 'sign-in' |
+ 'pegasus' |
+ 'files-medical' |
+ 'nfc-lock' |
+ 'person-ski-lift' |
+ 'ski-lift' |
+ 'square-6' |
+ 'shop-slash' |
+ 'store-alt-slash' |
+ 'wind-turbine' |
+ 'sliders-simple' |
+ 'grid-round' |
+ 'badge-sheriff' |
+ 'server' |
+ 'virus-covid-slash' |
+ 'intersection' |
+ 'shop-lock' |
+ 'family' |
+ 'hourglass-start' |
+ 'hourglass1' |
+ 'user-hair-buns' |
+ 'blender-phone' |
+ 'hourglass-clock' |
+ 'person-seat-reclined' |
+ 'paper-plane-top' |
+ 'paper-plane-alt' |
+ 'send' |
+ 'message-arrow-up' |
+ 'comment-alt-arrow-up' |
+ 'lightbulb-exclamation' |
+ 'layer-minus' |
+ 'layer-group-minus' |
+ 'chart-pie-simple-circle-currency' |
+ 'circle-e' |
+ 'building-wheat' |
+ 'gauge-max' |
+ 'tachometer-alt-fastest' |
+ 'person-breastfeeding' |
+ 'apostrophe' |
+ 'fire-hydrant' |
+ 'right-to-bracket' |
+ 'sign-in-alt' |
+ 'video-plus' |
+ 'square-right' |
+ 'arrow-alt-square-right' |
+ 'comment-smile' |
+ 'venus' |
+ 'passport' |
+ 'inbox-in' |
+ 'inbox-arrow-down' |
+ 'heart-pulse' |
+ 'heartbeat' |
+ 'circle-8' |
+ 'clouds-moon' |
+ 'clock-ten-thirty' |
+ 'people-carry-box' |
+ 'people-carry' |
+ 'folder-user' |
+ 'trash-can-xmark' |
+ 'temperature-high' |
+ 'microchip' |
+ 'left-long-to-line' |
+ 'crown' |
+ 'weight-hanging' |
+ 'xmarks-lines' |
+ 'file-prescription' |
+ 'calendar-range' |
+ 'flower-daffodil' |
+ 'hand-back-point-up' |
+ 'weight-scale' |
+ 'weight' |
+ 'star-exclamation' |
+ 'books' |
+ 'user-group' |
+ 'user-friends' |
+ 'arrow-up-a-z' |
+ 'sort-alpha-up' |
+ 'layer-plus' |
+ 'layer-group-plus' |
+ 'play-pause' |
+ 'block-question' |
+ 'snooze' |
+ 'zzz' |
+ 'scanner-image' |
+ 'tv-retro' |
+ 'square-t' |
+ 'farm' |
+ 'barn-silo' |
+ 'chess-knight' |
+ 'bars-sort' |
+ 'pallet-boxes' |
+ 'palette-boxes' |
+ 'pallet-alt' |
+ 'face-laugh-squint' |
+ 'laugh-squint' |
+ 'code-simple' |
+ 'bolt-slash' |
+ 'panel-fire' |
+ 'binary-circle-check' |
+ 'comment-minus' |
+ 'burrito' |
+ 'violin' |
+ 'objects-column' |
+ 'square-chevron-down' |
+ 'chevron-square-down' |
+ 'comment-plus' |
+ 'triangle-instrument' |
+ 'triangle-music' |
+ 'wheelchair' |
+ 'user-pilot-tie' |
+ 'piano-keyboard' |
+ 'bed-empty' |
+ 'circle-arrow-up' |
+ 'arrow-circle-up' |
+ 'toggle-on' |
+ 'rectangle-vertical' |
+ 'rectangle-portrait' |
+ 'person-walking' |
+ 'walking' |
+ 'l' |
+ 'signal-stream' |
+ 'down-to-bracket' |
+ 'circle-z' |
+ 'stars' |
+ 'fire' |
+ 'bed-pulse' |
+ 'procedures' |
+ 'house-day' |
+ 'shuttle-space' |
+ 'space-shuttle' |
+ 'shirt-long-sleeve' |
+ 'chart-pie-simple' |
+ 'chart-pie-alt' |
+ 'face-laugh' |
+ 'laugh' |
+ 'folder-open' |
+ 'album-collection-circle-user' |
+ 'candy' |
+ 'bowl-hot' |
+ 'soup' |
+ 'flatbread' |
+ 'heart-circle-plus' |
+ 'code-fork' |
+ 'city' |
+ 'signal-bars-weak' |
+ 'signal-alt1' |
+ 'microphone-lines' |
+ 'microphone-alt' |
+ 'clock-twelve' |
+ 'pepper-hot' |
+ 'citrus-slice' |
+ 'sheep' |
+ 'unlock' |
+ 'colon-sign' |
+ 'headset' |
+ 'badger-honey' |
+ 'h4' |
+ 'store-slash' |
+ 'road-circle-xmark' |
+ 'signal-slash' |
+ 'user-minus' |
+ 'mars-stroke-up' |
+ 'mars-stroke-v' |
+ 'champagne-glasses' |
+ 'glass-cheers' |
+ 'taco' |
+ 'hexagon-plus' |
+ 'plus-hexagon' |
+ 'clipboard' |
+ 'house-circle-exclamation' |
+ 'file-arrow-up' |
+ 'file-upload' |
+ 'wifi' |
+ 'wifi3' |
+ 'wifi-strong' |
+ 'messages' |
+ 'comments-alt' |
+ 'bath' |
+ 'bathtub' |
+ 'umbrella-simple' |
+ 'umbrella-alt' |
+ 'rectangle-history-circle-plus' |
+ 'underline' |
+ 'prescription-bottle-pill' |
+ 'user-pen' |
+ 'user-edit' |
+ 'binary-slash' |
+ 'square-o' |
+ 'signature' |
+ 'stroopwafel' |
+ 'bold' |
+ 'anchor-lock' |
+ 'building-ngo' |
+ 'transporter-3' |
+ 'engine-warning' |
+ 'engine-exclamation' |
+ 'circle-down-right' |
+ 'square-k' |
+ 'manat-sign' |
+ 'money-check-pen' |
+ 'money-check-edit' |
+ 'not-equal' |
+ 'border-top-left' |
+ 'border-style' |
+ 'map-location-dot' |
+ 'map-marked-alt' |
+ 'tilde' |
+ 'jedi' |
+ 'square-poll-vertical' |
+ 'poll' |
+ 'arrow-down-square-triangle' |
+ 'sort-shapes-down-alt' |
+ 'mug-hot' |
+ 'dog-leashed' |
+ 'car-battery' |
+ 'battery-car' |
+ 'face-downcast-sweat' |
+ 'mailbox-flag-up' |
+ 'memo-circle-info' |
+ 'gift' |
+ 'dice-two' |
+ 'volume' |
+ 'volume-medium' |
+ 'transporter-5' |
+ 'gauge-circle-bolt' |
+ 'coin-front' |
+ 'file-slash' |
+ 'message-arrow-up-right' |
+ 'treasure-chest' |
+ 'chess-queen' |
+ 'paintbrush-fine' |
+ 'paint-brush-alt' |
+ 'paint-brush-fine' |
+ 'paintbrush-alt' |
+ 'glasses' |
+ 'hood-cloak' |
+ 'square-quote' |
+ 'up-left' |
+ 'bring-front' |
+ 'chess-board' |
+ 'burger-cheese' |
+ 'cheeseburger' |
+ 'building-circle-check' |
+ 'repeat-1' |
+ 'arrow-down-to-line' |
+ 'arrow-to-bottom' |
+ 'grid-5' |
+ 'right-long-to-line' |
+ 'person-chalkboard' |
+ 'mars-stroke-right' |
+ 'mars-stroke-h' |
+ 'hand-back-fist' |
+ 'hand-rock' |
+ 'grid-round-5' |
+ 'tally' |
+ 'tally5' |
+ 'square-caret-up' |
+ 'caret-square-up' |
+ 'cloud-showers-water' |
+ 'chart-bar' |
+ 'bar-chart' |
+ 'hands-bubbles' |
+ 'hands-wash' |
+ 'less-than-equal' |
+ 'train' |
+ 'up-from-dotted-line' |
+ 'eye-low-vision' |
+ 'low-vision' |
+ 'traffic-light-go' |
+ 'face-exhaling' |
+ 'sensor-fire' |
+ 'user-unlock' |
+ 'hexagon-divide' |
+ '00' |
+ 'crow' |
+ 'cassette-betamax' |
+ 'betamax' |
+ 'sailboat' |
+ 'window-restore' |
+ 'nfc-magnifying-glass' |
+ 'file-binary' |
+ 'circle-v' |
+ 'square-plus' |
+ 'plus-square' |
+ 'bowl-scoops' |
+ 'mistletoe' |
+ 'custard' |
+ 'lacrosse-stick' |
+ 'hockey-mask' |
+ 'sunrise' |
+ 'panel-ews' |
+ 'torii-gate' |
+ 'cloud-exclamation' |
+ 'message-lines' |
+ 'comment-alt-lines' |
+ 'frog' |
+ 'bucket' |
+ 'floppy-disk-pen' |
+ 'image' |
+ 'window-frame' |
+ 'microphone' |
+ 'cow' |
+ 'file-zip' |
+ 'square-ring' |
+ 'down-from-line' |
+ 'arrow-alt-from-top' |
+ 'caret-up' |
+ 'shield-xmark' |
+ 'shield-times' |
+ 'screwdriver' |
+ 'circle-sort-down' |
+ 'sort-circle-down' |
+ 'folder-closed' |
+ 'house-tsunami' |
+ 'square-nfi' |
+ 'forklift' |
+ 'arrow-up-from-ground-water' |
+ 'bracket-square-right' |
+ 'martini-glass' |
+ 'glass-martini-alt' |
+ 'rotate-left' |
+ 'rotate-back' |
+ 'rotate-backward' |
+ 'undo-alt' |
+ 'table-columns' |
+ 'columns' |
+ 'square-a' |
+ 'tick' |
+ 'lemon' |
+ 'head-side-mask' |
+ 'handshake' |
+ 'gem' |
+ 'dolly' |
+ 'dolly-box' |
+ 'smoking' |
+ 'minimize' |
+ 'compress-arrows-alt' |
+ 'refrigerator' |
+ 'monument' |
+ 'octagon-xmark' |
+ 'times-octagon' |
+ 'xmark-octagon' |
+ 'align-slash' |
+ 'snowplow' |
+ 'angles-right' |
+ 'angle-double-right' |
+ 'truck-ramp-couch' |
+ 'truck-couch' |
+ 'cannabis' |
+ 'circle-play' |
+ 'play-circle' |
+ 'arrow-up-right-and-arrow-down-left-from-center' |
+ 'tablets' |
+ '360-degrees' |
+ 'ethernet' |
+ 'euro-sign' |
+ 'eur' |
+ 'euro' |
+ 'chair' |
+ 'circle-check' |
+ 'check-circle' |
+ 'square-dashed-circle-plus' |
+ 'money-simple-from-bracket' |
+ 'bat' |
+ 'circle-stop' |
+ 'stop-circle' |
+ 'head-side-headphones' |
+ 'phone-rotary' |
+ 'compass-drafting' |
+ 'drafting-compass' |
+ 'plate-wheat' |
+ 'calendar-circle-minus' |
+ 'chopsticks' |
+ 'car-wrench' |
+ 'car-mechanic' |
+ 'icicles' |
+ 'person-shelter' |
+ 'neuter' |
+ 'id-badge' |
+ 'kazoo' |
+ 'marker' |
+ 'bin-bottles' |
+ 'face-laugh-beam' |
+ 'laugh-beam' |
+ 'square-arrow-down-left' |
+ 'battery-bolt' |
+ 'tree-large' |
+ 'helicopter-symbol' |
+ 'aperture' |
+ 'universal-access' |
+ 'gear-complex' |
+ 'file-magnifying-glass' |
+ 'file-search' |
+ 'up-right' |
+ 'circle-chevron-up' |
+ 'chevron-circle-up' |
+ 'user-police' |
+ 'lari-sign' |
+ 'volcano' |
+ 'teddy-bear' |
+ 'stocking' |
+ 'person-walking-dashed-line-arrow-right' |
+ 'image-slash' |
+ 'mask-snorkel' |
+ 'smoke' |
+ 'sterling-sign' |
+ 'gbp' |
+ 'pound-sign' |
+ 'battery-exclamation' |
+ 'viruses' |
+ 'square-person-confined' |
+ 'user-tie' |
+ 'arrow-down-long' |
+ 'long-arrow-down' |
+ 'tent-arrow-down-to-line' |
+ 'certificate' |
+ 'crystal-ball' |
+ 'reply-all' |
+ 'mail-reply-all' |
+ 'suitcase' |
+ 'person-skating' |
+ 'skating' |
+ 'star-shooting' |
+ 'binary-lock' |
+ 'filter-circle-dollar' |
+ 'funnel-dollar' |
+ 'camera-retro' |
+ 'circle-arrow-down' |
+ 'arrow-circle-down' |
+ 'comment-pen' |
+ 'comment-edit' |
+ 'file-import' |
+ 'arrow-right-to-file' |
+ 'banjo' |
+ 'square-arrow-up-right' |
+ 'external-link-square' |
+ 'light-emergency-on' |
+ 'kerning' |
+ 'box-open' |
+ 'square-f' |
+ 'scroll' |
+ 'spa' |
+ 'arrow-left-from-line' |
+ 'arrow-from-right' |
+ 'strawberry' |
+ 'location-pin-lock' |
+ 'pause' |
+ 'clock-eight-thirty' |
+ 'plane-engines' |
+ 'plane-alt' |
+ 'hill-avalanche' |
+ 'temperature-empty' |
+ 'temperature0' |
+ 'thermometer0' |
+ 'thermometer-empty' |
+ 'bomb' |
+ 'gauge-low' |
+ 'tachometer-alt-slow' |
+ 'registered' |
+ 'trash-can-plus' |
+ 'address-card' |
+ 'contact-card' |
+ 'vcard' |
+ 'scale-unbalanced-flip' |
+ 'balance-scale-right' |
+ 'globe-snow' |
+ 'subscript' |
+ 'diamond-turn-right' |
+ 'directions' |
+ 'integral' |
+ 'burst' |
+ 'house-laptop' |
+ 'laptop-house' |
+ 'face-tired' |
+ 'tired' |
+ 'money-bills' |
+ 'blinds-raised' |
+ 'smog' |
+ 'ufo-beam' |
+ 'circle-caret-up' |
+ 'caret-circle-up' |
+ 'user-vneck-hair-long' |
+ 'square-a-lock' |
+ 'crutch' |
+ 'gas-pump-slash' |
+ 'font-awesome' |
+ 'font-awesome-flag' |
+ 'font-awesome-logo-full' |
+ 'cloud-arrow-up' |
+ 'cloud-upload' |
+ 'cloud-upload-alt' |
+ 'palette' |
+ 'transporter-4' |
+ 'chart-mixed-up-circle-currency' |
+ 'objects-align-right' |
+ 'arrows-turn-right' |
+ 'vest' |
+ 'pig' |
+ 'inbox-full' |
+ 'circle-envelope' |
+ 'envelope-circle' |
+ 'triangle-person-digging' |
+ 'construction' |
+ 'ferry' |
+ 'bullseye-arrow' |
+ 'arrows-down-to-people' |
+ 'seedling' |
+ 'sprout' |
+ 'clock-seven' |
+ 'left-right' |
+ 'arrows-alt-h' |
+ 'boxes-packing' |
+ 'circle-arrow-left' |
+ 'arrow-circle-left' |
+ 'flashlight' |
+ 'group-arrows-rotate' |
+ 'bowl-food' |
+ 'square-9' |
+ 'candy-cane' |
+ 'arrow-down-wide-short' |
+ 'sort-amount-asc' |
+ 'sort-amount-down' |
+ 'square-dollar' |
+ 'dollar-square' |
+ 'usd-square' |
+ 'phone-arrow-right' |
+ 'hand-holding-seedling' |
+ 'message-check' |
+ 'comment-alt-check' |
+ 'cloud-bolt' |
+ 'thunderstorm' |
+ 'chart-line-up-down' |
+ 'text-slash' |
+ 'remove-format' |
+ 'watch' |
+ 'circle-down-left' |
+ 'text' |
+ 'projector' |
+ 'face-smile-wink' |
+ 'smile-wink' |
+ 'tombstone-blank' |
+ 'tombstone-alt' |
+ 'chess-king-piece' |
+ 'chess-king-alt' |
+ 'circle-6' |
+ 'left' |
+ 'arrow-alt-left' |
+ 'file-word' |
+ 'file-powerpoint' |
+ 'square-down' |
+ 'arrow-alt-square-down' |
+ 'objects-align-center-vertical' |
+ 'arrows-left-right' |
+ 'arrows-h' |
+ 'house-lock' |
+ 'cloud-arrow-down' |
+ 'cloud-download' |
+ 'cloud-download-alt' |
+ 'wreath' |
+ 'children' |
+ 'meter-droplet' |
+ 'chalkboard' |
+ 'blackboard' |
+ 'user-large-slash' |
+ 'user-alt-slash' |
+ 'signal-strong' |
+ 'signal4' |
+ 'lollipop' |
+ 'lollypop' |
+ 'list-tree' |
+ 'envelope-open' |
+ 'draw-circle' |
+ 'cat-space' |
+ 'handshake-simple-slash' |
+ 'handshake-alt-slash' |
+ 'rabbit-running' |
+ 'rabbit-fast' |
+ 'memo-pad' |
+ 'mattress-pillow' |
+ 'alarm-plus' |
+ 'alicorn' |
+ 'comment-question' |
+ 'gingerbread-man' |
+ 'guarani-sign' |
+ 'burger-fries' |
+ 'mug-tea' |
+ 'border-top' |
+ 'arrows-rotate' |
+ 'refresh' |
+ 'sync' |
+ 'circle-book-open' |
+ 'book-circle' |
+ 'arrows-to-dotted-line' |
+ 'fire-extinguisher' |
+ 'garage-open' |
+ 'shelves-empty' |
+ 'cruzeiro-sign' |
+ 'watch-apple' |
+ 'watch-calculator' |
+ 'list-dropdown' |
+ 'cabinet-filing' |
+ 'burger-soda' |
+ 'square-arrow-up' |
+ 'arrow-square-up' |
+ 'greater-than-equal' |
+ 'pallet-box' |
+ 'face-confounded' |
+ 'shield-halved' |
+ 'shield-alt' |
+ 'truck-plow' |
+ 'book-atlas' |
+ 'atlas' |
+ 'virus' |
+ 'grid-round-2' |
+ 'comment-middle-top' |
+ 'envelope-circle-check' |
+ 'layer-group' |
+ 'restroom-simple' |
+ 'arrows-to-dot' |
+ 'border-outer' |
+ 'hashtag-lock' |
+ 'clock-two-thirty' |
+ 'archway' |
+ 'heart-circle-check' |
+ 'house-chimney-crack' |
+ 'house-damage' |
+ 'file-zipper' |
+ 'file-archive' |
+ 'heart-half' |
+ 'comment-check' |
+ 'square' |
+ 'memo' |
+ 'martini-glass-empty' |
+ 'glass-martini' |
+ 'couch' |
+ 'cedi-sign' |
+ 'italic' |
+ 'glass-citrus' |
+ 'calendar-lines-pen' |
+ 'church' |
+ 'person-snowmobiling' |
+ 'snowmobile' |
+ 'face-hushed' |
+ 'comments-dollar' |
+ 'pickaxe' |
+ 'link-simple-slash' |
+ 'democrat' |
+ 'face-confused' |
+ 'pinball' |
+ 'z' |
+ 'person-skiing' |
+ 'skiing' |
+ 'deer' |
+ 'input-pipe' |
+ 'road-lock' |
+ 'a' |
+ 'bookmark-slash' |
+ 'temperature-arrow-down' |
+ 'temperature-down' |
+ 'mace' |
+ 'feather-pointed' |
+ 'feather-alt' |
+ 'sausage' |
+ 'trash-can-clock' |
+ 'p' |
+ 'broom-wide' |
+ 'snowflake' |
+ 'stomach' |
+ 'newspaper' |
+ 'rectangle-ad' |
+ 'ad' |
+ 'guitar-electric' |
+ 'arrow-turn-down-right' |
+ 'moon-cloud' |
+ 'bread-slice-butter' |
+ 'circle-arrow-right' |
+ 'arrow-circle-right' |
+ 'user-group-crown' |
+ 'users-crown' |
+ 'circle-i' |
+ 'toilet-paper-check' |
+ 'filter-circle-xmark' |
+ 'locust' |
+ 'sort' |
+ 'unsorted' |
+ 'list-ol' |
+ 'list12' |
+ 'list-numeric' |
+ 'chart-waterfall' |
+ 'sparkle' |
+ 'face-party' |
+ 'kidneys' |
+ 'wifi-exclamation' |
+ 'chart-network' |
+ 'person-dress-burst' |
+ 'dice-d4' |
+ 'money-check-dollar' |
+ 'money-check-alt' |
+ 'vector-square' |
+ 'bread-slice' |
+ 'language' |
+ 'wheat-awn-slash' |
+ 'face-kiss-wink-heart' |
+ 'kiss-wink-heart' |
+ 'dagger' |
+ 'podium' |
+ 'memo-circle-check' |
+ 'route-highway' |
+ 'down-to-line' |
+ 'arrow-alt-to-bottom' |
+ 'filter' |
+ 'square-g' |
+ 'circle-phone' |
+ 'phone-circle' |
+ 'clipboard-prescription' |
+ 'user-nurse-hair' |
+ 'question' |
+ 'file-signature' |
+ 'toggle-large-on' |
+ 'up-down-left-right' |
+ 'arrows-alt' |
+ 'dryer-heat' |
+ 'dryer-alt' |
+ 'house-chimney-user' |
+ 'hand-holding-heart' |
+ 'arrow-up-small-big' |
+ 'sort-size-up-alt' |
+ 'train-track' |
+ 'puzzle-piece' |
+ 'money-check' |
+ 'star-half-stroke' |
+ 'star-half-alt' |
+ 'file-exclamation' |
+ 'code' |
+ 'whiskey-glass' |
+ 'glass-whiskey' |
+ 'moon-stars' |
+ 'building-circle-exclamation' |
+ 'clothes-hanger' |
+ 'mobile-notch' |
+ 'mobile-iphone' |
+ 'magnifying-glass-chart' |
+ 'arrow-up-right-from-square' |
+ 'external-link' |
+ 'cubes-stacked' |
+ 'images-user' |
+ 'won-sign' |
+ 'krw' |
+ 'won' |
+ 'image-polaroid-user' |
+ 'virus-covid' |
+ 'square-ellipsis' |
+ 'pie' |
+ 'chess-knight-piece' |
+ 'chess-knight-alt' |
+ 'austral-sign' |
+ 'cloud-plus' |
+ 'f' |
+ 'leaf' |
+ 'bed-bunk' |
+ 'road' |
+ 'taxi' |
+ 'cab' |
+ 'person-circle-plus' |
+ 'chart-pie' |
+ 'pie-chart' |
+ 'bolt-lightning' |
+ 'clock-eight' |
+ 'sack-xmark' |
+ 'file-excel' |
+ 'file-contract' |
+ 'fish-fins' |
+ 'circle-q' |
+ 'building-flag' |
+ 'face-grin-beam' |
+ 'grin-beam' |
+ 'object-ungroup' |
+ 'face-disguise' |
+ 'circle-arrow-down-right' |
+ 'alien-8bit' |
+ 'alien-monster' |
+ 'hand-point-ribbon' |
+ 'poop' |
+ 'object-exclude' |
+ 'telescope' |
+ 'location-pin' |
+ 'map-marker' |
+ 'square-list' |
+ 'kaaba' |
+ 'toilet-paper' |
+ 'helmet-safety' |
+ 'hard-hat' |
+ 'hat-hard' |
+ 'comment-code' |
+ 'sim-cards' |
+ 'starship' |
+ 'eject' |
+ 'circle-right' |
+ 'arrow-alt-circle-right' |
+ 'plane-circle-check' |
+ 'seal' |
+ 'user-cowboy' |
+ 'hexagon-vertical-nft' |
+ 'face-rolling-eyes' |
+ 'meh-rolling-eyes' |
+ 'bread-loaf' |
+ 'rings-wedding' |
+ 'object-group' |
+ 'french-fries' |
+ 'chart-line' |
+ 'line-chart' |
+ 'calendar-arrow-down' |
+ 'calendar-download' |
+ 'send-back' |
+ 'mask-ventilator' |
+ 'signature-lock' |
+ 'arrow-right' |
+ 'signs-post' |
+ 'map-signs' |
+ 'octagon-plus' |
+ 'plus-octagon' |
+ 'cash-register' |
+ 'person-circle-question' |
+ 'melon-slice' |
+ 'space-station-moon' |
+ 'message-smile' |
+ 'comment-alt-smile' |
+ 'cup-straw' |
+ 'left-from-line' |
+ 'arrow-alt-from-right' |
+ 'h' |
+ 'basket-shopping-simple' |
+ 'shopping-basket-alt' |
+ 'hands-holding-heart' |
+ 'hands-heart' |
+ 'clock-nine' |
+ 'tarp' |
+ 'face-sleepy' |
+ 'hand-horns' |
+ 'screwdriver-wrench' |
+ 'tools' |
+ 'arrows-to-eye' |
+ 'circle-three-quarters' |
+ 'trophy-star' |
+ 'trophy-alt' |
+ 'plug-circle-bolt' |
+ 'face-thermometer' |
+ 'grid-round-4' |
+ 'shirt-running' |
+ 'book-circle-arrow-up' |
+ 'face-nauseated' |
+ 'heart' |
+ 'file-chart-pie' |
+ 'mars-and-venus' |
+ 'house-user' |
+ 'home-user' |
+ 'circle-arrow-down-left' |
+ 'dumpster-fire' |
+ 'hexagon-minus' |
+ 'minus-hexagon' |
+ 'left-to-line' |
+ 'arrow-alt-to-left' |
+ 'house-crack' |
+ 'paw-simple' |
+ 'paw-alt' |
+ 'arrow-left-long-to-line' |
+ 'brackets-round' |
+ 'parentheses' |
+ 'martini-glass-citrus' |
+ 'cocktail' |
+ 'user-shakespeare' |
+ 'arrow-right-to-arc' |
+ 'face-surprise' |
+ 'surprise' |
+ 'bottle-water' |
+ 'circle-pause' |
+ 'pause-circle' |
+ 'gauge-circle-plus' |
+ 'folders' |
+ 'angel' |
+ 'value-absolute' |
+ 'rabbit' |
+ 'toilet-paper-slash' |
+ 'circle-euro' |
+ 'apple-whole' |
+ 'apple-alt' |
+ 'kitchen-set' |
+ 'diamond-half' |
+ 'lock-keyhole' |
+ 'lock-alt' |
+ 'r' |
+ 'temperature-quarter' |
+ 'temperature1' |
+ 'thermometer1' |
+ 'thermometer-quarter' |
+ 'square-info' |
+ 'info-square' |
+ 'wifi-slash' |
+ 'toilet-paper-xmark' |
+ 'hands-holding-dollar' |
+ 'hands-usd' |
+ 'cube' |
+ 'arrow-down-triangle-square' |
+ 'sort-shapes-down' |
+ 'bitcoin-sign' |
+ 'shutters' |
+ 'shield-dog' |
+ 'solar-panel' |
+ 'lock-open' |
+ 'table-tree' |
+ 'house-chimney-heart' |
+ 'tally-3' |
+ 'elevator' |
+ 'money-bill-transfer' |
+ 'money-bill-trend-up' |
+ 'house-flood-water-circle-arrow-right' |
+ 'square-poll-horizontal' |
+ 'poll-h' |
+ 'circle' |
+ 'cart-circle-exclamation' |
+ 'sword' |
+ 'backward-fast' |
+ 'fast-backward' |
+ 'recycle' |
+ 'user-astronaut' |
+ 'interrobang' |
+ 'plane-slash' |
+ 'circle-dashed' |
+ 'trademark' |
+ 'basketball' |
+ 'basketball-ball' |
+ 'fork-knife' |
+ 'utensils-alt' |
+ 'satellite-dish' |
+ 'badge-check' |
+ 'circle-up' |
+ 'arrow-alt-circle-up' |
+ 'slider' |
+ 'mobile-screen-button' |
+ 'mobile-alt' |
+ 'clock-one-thirty' |
+ 'inbox-out' |
+ 'inbox-arrow-up' |
+ 'cloud-slash' |
+ 'volume-high' |
+ 'volume-up' |
+ 'users-rays' |
+ 'wallet' |
+ 'octagon-check' |
+ 'flatbread-stuffed' |
+ 'clipboard-check' |
+ 'cart-circle-plus' |
+ 'truck-clock' |
+ 'shipping-timed' |
+ 'pool-8-ball' |
+ 'file-audio' |
+ 'turn-down-left' |
+ 'lock-hashtag' |
+ 'chart-radar' |
+ 'staff' |
+ 'burger' |
+ 'hamburger' |
+ 'utility-pole' |
+ 'transporter-6' |
+ 'wrench' |
+ 'bugs' |
+ 'vector-polygon' |
+ 'diagram-nested' |
+ 'rupee-sign' |
+ 'rupee' |
+ 'file-image' |
+ 'circle-question' |
+ 'question-circle' |
+ 'image-user' |
+ 'buoy' |
+ 'plane-departure' |
+ 'handshake-slash' |
+ 'book-bookmark' |
+ 'border-center-h' |
+ 'can-food' |
+ 'typewriter' |
+ 'arrow-right-from-arc' |
+ 'circle-k' |
+ 'face-hand-over-mouth' |
+ 'popcorn' |
+ 'house-water' |
+ 'house-flood' |
+ 'object-subtract' |
+ 'code-branch' |
+ 'warehouse-full' |
+ 'warehouse-alt' |
+ 'hat-cowboy' |
+ 'bridge' |
+ 'phone-flip' |
+ 'phone-alt' |
+ 'arrow-down-from-dotted-line' |
+ 'file-doc' |
+ 'square-quarters' |
+ 'truck-front' |
+ 'cat' |
+ 'trash-xmark' |
+ 'circle-caret-left' |
+ 'caret-circle-left' |
+ 'files' |
+ 'anchor-circle-exclamation' |
+ 'face-clouds' |
+ 'user-crown' |
+ 'truck-field' |
+ 'route' |
+ 'cart-circle-check' |
+ 'clipboard-question' |
+ 'panorama' |
+ 'comment-medical' |
+ 'teeth-open' |
+ 'user-tie-hair-long' |
+ 'file-circle-minus' |
+ 'head-side-medical' |
+ 'tags' |
+ 'wine-glass' |
+ 'forward-fast' |
+ 'fast-forward' |
+ 'face-meh-blank' |
+ 'meh-blank' |
+ 'user-robot' |
+ 'square-parking' |
+ 'parking' |
+ 'card-diamond' |
+ 'face-zipper' |
+ 'face-raised-eyebrow' |
+ 'house-signal' |
+ 'square-chevron-up' |
+ 'chevron-square-up' |
+ 'nfc-symbol' |
+ 'bars-progress' |
+ 'tasks-alt' |
+ 'faucet-drip' |
+ 'arrows-to-line' |
+ 'dolphin' |
+ 'arrow-up-right' |
+ 'circle-r' |
+ 'cart-flatbed' |
+ 'dolly-flatbed' |
+ 'ban-smoking' |
+ 'smoking-ban' |
+ 'circle-sort-up' |
+ 'sort-circle-up' |
+ 'terminal' |
+ 'mobile-button' |
+ 'house-medical-flag' |
+ 'basket-shopping' |
+ 'shopping-basket' |
+ 'tape' |
+ 'chestnut' |
+ 'bus-simple' |
+ 'bus-alt' |
+ 'eye' |
+ 'face-sad-cry' |
+ 'sad-cry' |
+ 'heat' |
+ 'ticket-airline' |
+ 'boot-heeled' |
+ 'arrows-minimize' |
+ 'compress-arrows' |
+ 'audio-description' |
+ 'person-military-to-person' |
+ 'file-shield' |
+ 'hexagon' |
+ 'manhole' |
+ 'user-slash' |
+ 'pen' |
+ 'tower-observation' |
+ 'floppy-disks' |
+ 'toilet-paper-blank-under' |
+ 'toilet-paper-reverse-alt' |
+ 'file-code' |
+ 'signal' |
+ 'signal5' |
+ 'signal-perfect' |
+ 'pump' |
+ 'bus' |
+ 'heart-circle-xmark' |
+ 'arrow-up-left-from-circle' |
+ 'house-chimney' |
+ 'home-lg' |
+ 'window-maximize' |
+ 'dryer' |
+ 'face-frown' |
+ 'frown' |
+ 'chess-bishop-piece' |
+ 'chess-bishop-alt' |
+ 'shirt-tank-top' |
+ 'diploma' |
+ 'scroll-ribbon' |
+ 'screencast' |
+ 'walker' |
+ 'prescription' |
+ 'shop' |
+ 'store-alt' |
+ 'floppy-disk' |
+ 'save' |
+ 'vihara' |
+ 'face-kiss-closed-eyes' |
+ 'scale-unbalanced' |
+ 'balance-scale-left' |
+ 'file-user' |
+ 'user-police-tie' |
+ 'face-tongue-money' |
+ 'tennis-ball' |
+ 'square-l' |
+ 'sort-up' |
+ 'sort-asc' |
+ 'calendar-arrow-up' |
+ 'calendar-upload' |
+ 'comment-dots' |
+ 'commenting' |
+ 'plant-wilt' |
+ 'scarf' |
+ 'album-circle-plus' |
+ 'user-nurse-hair-long' |
+ 'diamond' |
+ 'square-left' |
+ 'arrow-alt-square-left' |
+ 'face-grin-squint' |
+ 'grin-squint' |
+ 'circle-ellipsis-vertical' |
+ 'hand-holding-dollar' |
+ 'hand-holding-usd' |
+ 'grid-dividers' |
+ 'bacterium' |
+ 'hand-pointer' |
+ 'drum-steelpan' |
+ 'hand-scissors' |
+ 'hands-praying' |
+ 'praying-hands' |
+ 'face-pensive' |
+ 'user-music' |
+ 'arrow-rotate-right' |
+ 'arrow-right-rotate' |
+ 'arrow-rotate-forward' |
+ 'redo' |
+ 'messages-dollar' |
+ 'comments-alt-dollar' |
+ 'sensor-on' |
+ 'balloon' |
+ 'biohazard' |
+ 'chess-queen-piece' |
+ 'chess-queen-alt' |
+ 'location-crosshairs' |
+ 'location' |
+ 'mars-double' |
+ 'house-person-leave' |
+ 'house-leave' |
+ 'house-person-depart' |
+ 'ruler-triangle' |
+ 'card-club' |
+ 'child-dress' |
+ 'users-between-lines' |
+ 'lungs-virus' |
+ 'spinner-third' |
+ 'face-grin-tears' |
+ 'grin-tears' |
+ 'phone' |
+ 'computer-mouse-scrollwheel' |
+ 'mouse-alt' |
+ 'calendar-xmark' |
+ 'calendar-times' |
+ 'child-reaching' |
+ 'table-layout' |
+ 'narwhal' |
+ 'ramp-loading' |
+ 'calendar-circle-plus' |
+ 'toothbrush' |
+ 'border-inner' |
+ 'paw-claws' |
+ 'kiwi-fruit' |
+ 'traffic-light-slow' |
+ 'rectangle-code' |
+ 'head-side-virus' |
+ 'keyboard-brightness' |
+ 'books-medical' |
+ 'lightbulb-slash' |
+ 'house-blank' |
+ 'home-blank' |
+ 'square-5' |
+ 'square-heart' |
+ 'heart-square' |
+ 'puzzle' |
+ 'user-gear' |
+ 'user-cog' |
+ 'pipe-circle-check' |
+ 'arrow-up-1-9' |
+ 'sort-numeric-up' |
+ 'octagon-exclamation' |
+ 'dial-low' |
+ 'door-closed' |
+ 'laptop-mobile' |
+ 'phone-laptop' |
+ 'conveyor-belt-boxes' |
+ 'conveyor-belt-alt' |
+ 'shield-virus' |
+ 'starfighter-twin-ion-engine-advanced' |
+ 'starfighter-alt-advanced' |
+ 'dice-six' |
+ 'starfighter-twin-ion-engine' |
+ 'starfighter-alt' |
+ 'rocket-launch' |
+ 'mosquito-net' |
+ 'vent-damper' |
+ 'bridge-water' |
+ 'ban-bug' |
+ 'debug' |
+ 'person-booth' |
+ 'text-width' |
+ 'garage-car' |
+ 'square-kanban' |
+ 'hat-wizard' |
+ 'pen-fancy' |
+ 'coffee-pot' |
+ 'mouse-field' |
+ 'person-digging' |
+ 'digging' |
+ 'shower-down' |
+ 'shower-alt' |
+ 'box-circle-check' |
+ 'brightness' |
+ 'car-side-bolt' |
+ 'ornament' |
+ 'phone-arrow-down-left' |
+ 'phone-arrow-down' |
+ 'phone-incoming' |
+ 'cloud-word' |
+ 'hand-fingers-crossed' |
+ 'trash' |
+ 'gauge-simple' |
+ 'gauge-simple-med' |
+ 'tachometer-average' |
+ 'arrow-down-small-big' |
+ 'sort-size-down-alt' |
+ 'book-medical' |
+ 'face-melting' |
+ 'poo' |
+ 'pen-clip-slash' |
+ 'pen-alt-slash' |
+ 'quote-right' |
+ 'quote-right-alt' |
+ 'scroll-old' |
+ 'guitars' |
+ 'phone-xmark' |
+ 'hose' |
+ 'clock-six' |
+ 'shirt' |
+ 't-shirt' |
+ 'tshirt' |
+ 'billboard' |
+ 'square-r' |
+ 'cubes' |
+ 'envelope-open-dollar' |
+ 'divide' |
+ 'sun-cloud' |
+ 'lamp-floor' |
+ 'square-7' |
+ 'tenge-sign' |
+ 'tenge' |
+ 'headphones' |
+ 'hands-holding' |
+ 'campfire' |
+ 'circle-ampersand' |
+ 'snowflakes' |
+ 'hands-clapping' |
+ 'republican' |
+ 'leaf-maple' |
+ 'arrow-left' |
+ 'person-circle-xmark' |
+ 'ruler' |
+ 'cup-straw-swoosh' |
+ 'temperature-sun' |
+ 'temperature-hot' |
+ 'align-left' |
+ 'dice-d6' |
+ 'restroom' |
+ 'high-definition' |
+ 'rectangle-hd' |
+ 'j' |
+ 'galaxy' |
+ 'users-viewfinder' |
+ 'file-video' |
+ 'cherries' |
+ 'up-right-from-square' |
+ 'external-link-alt' |
+ 'circle-sort' |
+ 'sort-circle' |
+ 'table-cells' |
+ 'th' |
+ 'file-pdf' |
+ 'siren' |
+ 'arrow-up-to-dotted-line' |
+ 'image-landscape' |
+ 'landscape' |
+ 'tank-water' |
+ 'curling-stone' |
+ 'curling' |
+ 'gamepad-modern' |
+ 'gamepad-alt' |
+ 'messages-question' |
+ 'book-bible' |
+ 'bible' |
+ 'o' |
+ 'suitcase-medical' |
+ 'medkit' |
+ 'briefcase-arrow-right' |
+ 'expand-wide' |
+ 'clock-eleven-thirty' |
+ 'rv' |
+ 'user-secret' |
+ 'otter' |
+ 'dreidel' |
+ 'person-dress' |
+ 'female' |
+ 'comment-dollar' |
+ 'business-time' |
+ 'briefcase-clock' |
+ 'flower-tulip' |
+ 'people-pants-simple' |
+ 'cloud-drizzle' |
+ 'table-cells-large' |
+ 'th-large' |
+ 'book-tanakh' |
+ 'tanakh' |
+ 'solar-system' |
+ 'seal-question' |
+ 'phone-volume' |
+ 'volume-control-phone' |
+ 'disc-drive' |
+ 'hat-cowboy-side' |
+ 'table-rows' |
+ 'rows' |
+ 'location-exclamation' |
+ 'map-marker-exclamation' |
+ 'face-fearful' |
+ 'clipboard-user' |
+ 'bus-school' |
+ 'film-slash' |
+ 'square-arrow-down-right' |
+ 'book-sparkles' |
+ 'book-spells' |
+ 'washing-machine' |
+ 'washer' |
+ 'child' |
+ 'lira-sign' |
+ 'user-visor' |
+ 'file-plus-minus' |
+ 'chess-clock-flip' |
+ 'chess-clock-alt' |
+ 'satellite' |
+ 'plane-lock' |
+ 'steering-wheel' |
+ 'tag' |
+ 'stretcher' |
+ 'book-section' |
+ 'book-law' |
+ 'inboxes' |
+ 'coffee-bean' |
+ 'circle-yen' |
+ 'brackets-curly' |
+ 'ellipsis-stroke-vertical' |
+ 'ellipsis-v-alt' |
+ 'comment' |
+ 'square-1' |
+ 'cake-candles' |
+ 'birthday-cake' |
+ 'cake' |
+ 'head-side' |
+ 'envelope' |
+ 'dolly-empty' |
+ 'face-tissue' |
+ 'angles-up' |
+ 'angle-double-up' |
+ 'bin-recycle' |
+ 'paperclip' |
+ 'chart-line-down' |
+ 'arrow-right-to-city' |
+ 'lock-a' |
+ 'ribbon' |
+ 'lungs' |
+ 'person-pinball' |
+ 'arrow-up-9-1' |
+ 'sort-numeric-up-alt' |
+ 'apple-core' |
+ 'circle-y' |
+ 'h6' |
+ 'litecoin-sign' |
+ 'circle-small' |
+ 'border-none' |
+ 'arrow-turn-down-left' |
+ 'circle-nodes' |
+ 'parachute-box' |
+ 'message-medical' |
+ 'comment-alt-medical' |
+ 'rugby-ball' |
+ 'comment-music' |
+ 'indent' |
+ 'tree-deciduous' |
+ 'tree-alt' |
+ 'puzzle-piece-simple' |
+ 'puzzle-piece-alt' |
+ 'truck-field-un' |
+ 'nfc-trash' |
+ 'hourglass' |
+ 'hourglass-empty' |
+ 'mountain' |
+ 'file-xmark' |
+ 'file-times' |
+ 'house-heart' |
+ 'home-heart' |
+ 'house-chimney-blank' |
+ 'meter-bolt' |
+ 'user-doctor' |
+ 'user-md' |
+ 'slash-back' |
+ 'circle-info' |
+ 'info-circle' |
+ 'fishing-rod' |
+ 'hammer-crash' |
+ 'message-heart' |
+ 'cloud-meatball' |
+ 'camera-polaroid' |
+ 'camera' |
+ 'camera-alt' |
+ 'square-virus' |
+ 'cart-arrow-up' |
+ 'meteor' |
+ 'car-on' |
+ 'sleigh' |
+ 'arrow-down-1-9' |
+ 'sort-numeric-asc' |
+ 'sort-numeric-down' |
+ 'buoy-mooring' |
+ 'square-4' |
+ 'hand-holding-droplet' |
+ 'hand-holding-water' |
+ 'tricycle-adult' |
+ 'waveform' |
+ 'water' |
+ 'star-sharp-half-stroke' |
+ 'star-sharp-half-alt' |
+ 'nfc-signal' |
+ 'plane-prop' |
+ 'calendar-check' |
+ 'clock-desk' |
+ 'calendar-clock' |
+ 'calendar-time' |
+ 'braille' |
+ 'prescription-bottle-medical' |
+ 'prescription-bottle-alt' |
+ 'plate-utensils' |
+ 'family-pants' |
+ 'hose-reel' |
+ 'house-window' |
+ 'landmark' |
+ 'truck' |
+ 'crosshairs' |
+ 'cloud-rainbow' |
+ 'person-cane' |
+ 'alien' |
+ 'tent' |
+ 'laptop-binary' |
+ 'vest-patches' |
+ 'people-dress-simple' |
+ 'check-double' |
+ 'arrow-down-a-z' |
+ 'sort-alpha-asc' |
+ 'sort-alpha-down' |
+ 'bowling-ball-pin' |
+ 'bell-school-slash' |
+ 'plus-large' |
+ 'money-bill-wheat' |
+ 'camera-viewfinder' |
+ 'screenshot' |
+ 'message-music' |
+ 'comment-alt-music' |
+ 'car-building' |
+ 'border-bottom-right' |
+ 'border-style-alt' |
+ 'octagon' |
+ 'comment-arrow-up-right' |
+ 'octagon-divide' |
+ 'cookie' |
+ 'arrow-rotate-left' |
+ 'arrow-left-rotate' |
+ 'arrow-rotate-back' |
+ 'arrow-rotate-backward' |
+ 'undo' |
+ 'tv-music' |
+ 'hard-drive' |
+ 'hdd' |
+ 'reel' |
+ 'face-grin-squint-tears' |
+ 'grin-squint-tears' |
+ 'dumbbell' |
+ 'rectangle-list' |
+ 'list-alt' |
+ 'tarp-droplet' |
+ 'alarm-exclamation' |
+ 'house-medical-circle-check' |
+ 'traffic-cone' |
+ 'grate' |
+ 'arrow-down-right' |
+ 'person-skiing-nordic' |
+ 'skiing-nordic' |
+ 'calendar-plus' |
+ 'person-from-portal' |
+ 'portal-exit' |
+ 'plane-arrival' |
+ 'cowbell-circle-plus' |
+ 'cowbell-more' |
+ 'circle-left' |
+ 'arrow-alt-circle-left' |
+ 'distribute-spacing-vertical' |
+ 'signal-bars-fair' |
+ 'signal-alt2' |
+ 'sportsball' |
+ 'game-console-handheld-crank' |
+ 'train-subway' |
+ 'subway' |
+ 'chart-gantt' |
+ 'face-smile-upside-down' |
+ 'ball-pile' |
+ 'badge-dollar' |
+ 'money-bills-simple' |
+ 'money-bills-alt' |
+ 'list-timeline' |
+ 'indian-rupee-sign' |
+ 'indian-rupee' |
+ 'inr' |
+ 'crop-simple' |
+ 'crop-alt' |
+ 'money-bill-1' |
+ 'money-bill-alt' |
+ 'left-long' |
+ 'long-arrow-alt-left' |
+ 'keyboard-down' |
+ 'circle-up-right' |
+ 'cloud-bolt-moon' |
+ 'thunderstorm-moon' |
+ 'dna' |
+ 'virus-slash' |
+ 'bracket-round-right' |
+ 'circle-sterling' |
+ 'circle-5' |
+ 'minus' |
+ 'subtract' |
+ 'fire-flame' |
+ 'flame' |
+ 'right-to-line' |
+ 'arrow-alt-to-right' |
+ 'gif' |
+ 'chess' |
+ 'trash-slash' |
+ 'arrow-left-long' |
+ 'long-arrow-left' |
+ 'plug-circle-check' |
+ 'font-case' |
+ 'street-view' |
+ 'arrow-down-left' |
+ 'franc-sign' |
+ 'flask-round-poison' |
+ 'flask-poison' |
+ 'volume-off' |
+ 'book-circle-arrow-right' |
+ 'chart-user' |
+ 'user-chart' |
+ 'hands-asl-interpreting' |
+ 'american-sign-language-interpreting' |
+ 'asl-interpreting' |
+ 'hands-american-sign-language-interpreting' |
+ 'presentation-screen' |
+ 'presentation' |
+ 'circle-bolt' |
+ 'face-smile-halo' |
+ 'cart-circle-arrow-down' |
+ 'house-person-return' |
+ 'house-person-arrive' |
+ 'house-return' |
+ 'message-xmark' |
+ 'comment-alt-times' |
+ 'message-times' |
+ 'file-certificate' |
+ 'file-award' |
+ 'user-doctor-hair-long' |
+ 'camera-security' |
+ 'camera-home' |
+ 'gear' |
+ 'cog' |
+ 'droplet-slash' |
+ 'tint-slash' |
+ 'book-heart' |
+ 'mosque' |
+ 'duck' |
+ 'mosquito' |
+ 'star-of-david' |
+ 'flag-swallowtail' |
+ 'flag-alt' |
+ 'person-military-rifle' |
+ 'car-garage' |
+ 'cart-shopping' |
+ 'shopping-cart' |
+ 'book-font' |
+ 'shield-plus' |
+ 'vials' |
+ 'eye-dropper-full' |
+ 'distribute-spacing-horizontal' |
+ 'tablet-rugged' |
+ 'temperature-snow' |
+ 'temperature-frigid' |
+ 'moped' |
+ 'face-smile-plus' |
+ 'smile-plus' |
+ 'radio-tuner' |
+ 'radio-alt' |
+ 'face-swear' |
+ 'water-arrow-down' |
+ 'water-lower' |
+ 'scanner-touchscreen' |
+ 'circle-7' |
+ 'plug-circle-plus' |
+ 'person-ski-jumping' |
+ 'ski-jump' |
+ 'place-of-worship' |
+ 'water-arrow-up' |
+ 'water-rise' |
+ 'waveform-lines' |
+ 'waveform-path' |
+ 'split' |
+ 'film-canister' |
+ 'film-cannister' |
+ 'folder-xmark' |
+ 'folder-times' |
+ 'toilet-paper-blank' |
+ 'toilet-paper-alt' |
+ 'tablet-screen' |
+ 'tablet-android-alt' |
+ 'hexagon-vertical-nft-slanted' |
+ 'folder-music' |
+ 'display-medical' |
+ 'desktop-medical' |
+ 'share-all' |
+ 'peapod' |
+ 'chess-clock' |
+ 'axe' |
+ 'square-d' |
+ 'grip-vertical' |
+ 'mobile-signal-out' |
+ 'arrow-turn-up' |
+ 'level-up' |
+ 'u' |
+ 'arrow-up-from-dotted-line' |
+ 'square-root-variable' |
+ 'square-root-alt' |
+ 'light-switch-on' |
+ 'arrow-down-arrow-up' |
+ 'sort-alt' |
+ 'raindrops' |
+ 'dash' |
+ 'minus-large' |
+ 'clock' |
+ 'clock-four' |
+ 'input-numeric' |
+ 'truck-tow' |
+ 'backward-step' |
+ 'step-backward' |
+ 'pallet' |
+ 'car-bolt' |
+ 'arrows-maximize' |
+ 'expand-arrows' |
+ 'faucet' |
+ 'cloud-sleet' |
+ 'lamp-street' |
+ 'list-radio' |
+ 'pen-nib-slash' |
+ 'baseball-bat-ball' |
+ 'square-up-left' |
+ 'overline' |
+ 's' |
+ 'timeline' |
+ 'keyboard' |
+ 'arrows-from-dotted-line' |
+ 'usb-drive' |
+ 'ballot' |
+ 'caret-down' |
+ 'location-dot-slash' |
+ 'map-marker-alt-slash' |
+ 'cards' |
+ 'house-chimney-medical' |
+ 'clinic-medical' |
+ 'boxing-glove' |
+ 'glove-boxing' |
+ 'temperature-three-quarters' |
+ 'temperature3' |
+ 'thermometer3' |
+ 'thermometer-three-quarters' |
+ 'bell-school' |
+ 'mobile-screen' |
+ 'mobile-android-alt' |
+ 'plane-up' |
+ 'folder-heart' |
+ 'circle-location-arrow' |
+ 'location-circle' |
+ 'face-head-bandage' |
+ 'sushi-roll' |
+ 'maki-roll' |
+ 'makizushi' |
+ 'car-bump' |
+ 'piggy-bank' |
+ 'racquet' |
+ 'car-mirrors' |
+ 'industry-windows' |
+ 'industry-alt' |
+ 'bolt-auto' |
+ 'battery-half' |
+ 'battery3' |
+ 'flux-capacitor' |
+ 'mountain-city' |
+ 'coins' |
+ 'honey-pot' |
+ 'olive' |
+ 'khanda' |
+ 'filter-list' |
+ 'outlet' |
+ 'sliders' |
+ 'sliders-h' |
+ 'cauldron' |
+ 'people' |
+ 'folder-tree' |
+ 'network-wired' |
+ 'croissant' |
+ 'map-pin' |
+ 'hamsa' |
+ 'cent-sign' |
+ 'swords-laser' |
+ 'flask' |
+ 'person-pregnant' |
+ 'square-u' |
+ 'wand-sparkles' |
+ 'router' |
+ 'ellipsis-vertical' |
+ 'ellipsis-v' |
+ 'sword-laser-alt' |
+ 'ticket' |
+ 'power-off' |
+ 'coin' |
+ 'laptop-slash' |
+ 'right-long' |
+ 'long-arrow-alt-right' |
+ 'circle-b' |
+ 'person-dress-simple' |
+ 'pipe-collar' |
+ 'lights-holiday' |
+ 'citrus' |
+ 'flag-usa' |
+ 'laptop-file' |
+ 'tty' |
+ 'teletype' |
+ 'chart-tree-map' |
+ 'diagram-next' |
+ 'person-rifle' |
+ 'clock-five-thirty' |
+ 'pipe-valve' |
+ 'arrow-up-from-arc' |
+ 'face-spiral-eyes' |
+ 'compress-wide' |
+ 'circle-phone-hangup' |
+ 'phone-circle-down' |
+ 'gear-complex-code' |
+ 'house-medical-circle-exclamation' |
+ 'badminton' |
+ 'closed-captioning' |
+ 'person-hiking' |
+ 'hiking' |
+ 'right-from-line' |
+ 'arrow-alt-from-left' |
+ 'venus-double' |
+ 'images' |
+ 'calculator' |
+ 'shuttlecock' |
+ 'user-hair' |
+ 'eye-evil' |
+ 'people-pulling' |
+ 'n' |
+ 'garage' |
+ 'cable-car' |
+ 'tram' |
+ 'shovel-snow' |
+ 'cloud-rain' |
+ 'face-lying' |
+ 'sprinkler' |
+ 'building-circle-xmark' |
+ 'person-sledding' |
+ 'sledding' |
+ 'game-console-handheld' |
+ 'ship' |
+ 'clock-six-thirty' |
+ 'battery-slash' |
+ 'tugrik-sign' |
+ 'arrows-down-to-line' |
+ 'download' |
+ 'shelves' |
+ 'inventory' |
+ 'cloud-snow' |
+ 'face-grin' |
+ 'grin' |
+ 'delete-left' |
+ 'backspace' |
+ 'oven' |
+ 'cloud-binary' |
+ 'eye-dropper' |
+ 'eye-dropper-empty' |
+ 'eyedropper' |
+ 'comment-captions' |
+ 'comments-question' |
+ 'scribble' |
+ 'rotate-exclamation' |
+ 'file-circle-check' |
+ 'glass' |
+ 'loader' |
+ 'forward' |
+ 'user-pilot' |
+ 'mobile' |
+ 'mobile-android' |
+ 'mobile-phone' |
+ 'code-pull-request-closed' |
+ 'face-meh' |
+ 'meh' |
+ 'align-center' |
+ 'book-skull' |
+ 'book-dead' |
+ 'id-card' |
+ 'drivers-license' |
+ 'face-dotted' |
+ 'face-worried' |
+ 'outdent' |
+ 'dedent' |
+ 'heart-circle-exclamation' |
+ 'house' |
+ 'home' |
+ 'home-alt' |
+ 'home-lg-alt' |
+ 'vector-circle' |
+ 'car-circle-bolt' |
+ 'calendar-week' |
+ 'flying-disc' |
+ 'laptop-medical' |
+ 'square-down-right' |
+ 'b' |
+ 'seat-airline' |
+ 'moon-over-sun' |
+ 'eclipse-alt' |
+ 'pipe' |
+ 'file-medical' |
+ 'potato' |
+ 'dice-one' |
+ 'circle-a' |
+ 'helmet-battle' |
+ 'butter' |
+ 'blanket-fire' |
+ 'kiwi-bird' |
+ 'castle' |
+ 'golf-club' |
+ 'arrow-right-arrow-left' |
+ 'exchange' |
+ 'rotate-right' |
+ 'redo-alt' |
+ 'rotate-forward' |
+ 'utensils' |
+ 'cutlery' |
+ 'arrow-up-wide-short' |
+ 'sort-amount-up' |
+ 'chart-pie-simple-circle-dollar' |
+ 'balloons' |
+ 'mill-sign' |
+ 'bowl-rice' |
+ 'timeline-arrow' |
+ 'skull' |
+ 'game-board-simple' |
+ 'game-board-alt' |
+ 'circle-video' |
+ 'video-circle' |
+ 'chart-scatter-bubble' |
+ 'house-turret' |
+ 'banana' |
+ 'hand-holding-skull' |
+ 'people-dress' |
+ 'loveseat' |
+ 'couch-small' |
+ 'tower-broadcast' |
+ 'broadcast-tower' |
+ 'truck-pickup' |
+ 'block-quote' |
+ 'up-long' |
+ 'long-arrow-alt-up' |
+ 'stop' |
+ 'code-merge' |
+ 'money-check-dollar-pen' |
+ 'money-check-edit-alt' |
+ 'up-from-line' |
+ 'arrow-alt-from-bottom' |
+ 'upload' |
+ 'hurricane' |
+ 'grid-round-2-plus' |
+ 'people-pants' |
+ 'mound' |
+ 'windsock' |
+ 'circle-half' |
+ 'brake-warning' |
+ 'toilet-portable' |
+ 'compact-disc' |
+ 'file-arrow-down' |
+ 'file-download' |
+ 'saxophone-fire' |
+ 'sax-hot' |
+ 'camera-web-slash' |
+ 'webcam-slash' |
+ 'folder-medical' |
+ 'folder-gear' |
+ 'folder-cog' |
+ 'hand-wave' |
+ 'arrow-up-arrow-down' |
+ 'sort-up-down' |
+ 'caravan' |
+ 'shield-cat' |
+ 'message-slash' |
+ 'comment-alt-slash' |
+ 'bolt' |
+ 'zap' |
+ 'trash-can-check' |
+ 'glass-water' |
+ 'oil-well' |
+ 'person-simple' |
+ 'vault' |
+ 'mars' |
+ 'toilet' |
+ 'plane-circle-xmark' |
+ 'yen-sign' |
+ 'cny' |
+ 'jpy' |
+ 'rmb' |
+ 'yen' |
+ 'gear-code' |
+ 'notes' |
+ 'ruble-sign' |
+ 'rouble' |
+ 'rub' |
+ 'ruble' |
+ 'trash-undo' |
+ 'trash-arrow-turn-left' |
+ 'champagne-glass' |
+ 'glass-champagne' |
+ 'objects-align-center-horizontal' |
+ 'sun' |
+ 'trash-can-slash' |
+ 'trash-alt-slash' |
+ 'screen-users' |
+ 'users-class' |
+ 'guitar' |
+ 'square-arrow-left' |
+ 'arrow-square-left' |
+ 'square-8' |
+ 'face-smile-hearts' |
+ 'brackets-square' |
+ 'brackets' |
+ 'laptop-arrow-down' |
+ 'hockey-stick-puck' |
+ 'house-tree' |
+ 'signal-fair' |
+ 'signal2' |
+ 'face-laugh-wink' |
+ 'laugh-wink' |
+ 'circle-dollar' |
+ 'dollar-circle' |
+ 'usd-circle' |
+ 'horse-head' |
+ 'arrows-repeat' |
+ 'repeat-alt' |
+ 'bore-hole' |
+ 'industry' |
+ 'image-polaroid' |
+ 'wave-triangle' |
+ 'person-running-fast' |
+ 'circle-down' |
+ 'arrow-alt-circle-down' |
+ 'grill' |
+ 'arrows-turn-to-dots' |
+ 'chart-mixed' |
+ 'analytics' |
+ 'florin-sign' |
+ 'arrow-down-short-wide' |
+ 'sort-amount-desc' |
+ 'sort-amount-down-alt' |
+ 'less-than' |
+ 'display-code' |
+ 'desktop-code' |
+ 'face-drooling' |
+ 'oil-temperature' |
+ 'oil-temp' |
+ 'square-question' |
+ 'question-square' |
+ 'air-conditioner' |
+ 'angle-down' |
+ 'mountains' |
+ 'omega' |
+ 'car-tunnel' |
+ 'person-dolly-empty' |
+ 'pan-food' |
+ 'head-side-cough' |
+ 'grip-lines' |
+ 'thumbs-down' |
+ 'user-lock' |
+ 'arrow-right-long' |
+ 'long-arrow-right' |
+ 'tickets-airline' |
+ 'anchor-circle-xmark' |
+ 'ellipsis' |
+ 'ellipsis-h' |
+ 'nfc-slash' |
+ 'chess-pawn' |
+ 'kit-medical' |
+ 'first-aid' |
+ 'grid-2-plus' |
+ 'bells' |
+ 'person-through-window' |
+ 'toolbox' |
+ 'envelope-dot' |
+ 'envelope-badge' |
+ 'hands-holding-circle' |
+ 'bug' |
+ 'bowl-chopsticks' |
+ 'credit-card' |
+ 'credit-card-alt' |
+ 'circle-s' |
+ 'box-ballot' |
+ 'car' |
+ 'automobile' |
+ 'hand-holding-hand' |
+ 'user-tie-hair' |
+ 'podium-star' |
+ 'user-hair-mullet' |
+ 'business-front' |
+ 'party-back' |
+ 'trian-balbot' |
+ 'microphone-stand' |
+ 'book-open-reader' |
+ 'book-reader' |
+ 'family-dress' |
+ 'circle-x' |
+ 'cabin' |
+ 'mountain-sun' |
+ 'chart-simple-horizontal' |
+ 'bluetooth' |
+ 'arrows-left-right-to-line' |
+ 'hand-back-point-left' |
+ 'message-dots' |
+ 'comment-alt-dots' |
+ 'messaging' |
+ 'file-heart' |
+ 'beer-mug' |
+ 'beer-foam' |
+ 'dice-d20' |
+ 'drone' |
+ 'truck-droplet' |
+ 'file-circle-xmark' |
+ 'temperature-arrow-up' |
+ 'temperature-up' |
+ 'medal' |
+ 'bed' |
+ 'book-copy' |
+ 'square-h' |
+ 'h-square' |
+ 'square-c' |
+ 'clock-two' |
+ 'square-ellipsis-vertical' |
+ 'calendar-users' |
+ 'podcast' |
+ 'bee' |
+ 'temperature-full' |
+ 'temperature4' |
+ 'thermometer4' |
+ 'thermometer-full' |
+ 'bell' |
+ 'candy-bar' |
+ 'chocolate-bar' |
+ 'xmark-large' |
+ 'pinata' |
+ 'arrows-from-line' |
+ 'superscript' |
+ 'bowl-spoon' |
+ 'hexagon-check' |
+ 'plug-circle-xmark' |
+ 'star-of-life' |
+ 'phone-slash' |
+ 'traffic-light-stop' |
+ 'paint-roller' |
+ 'accent-grave' |
+ 'handshake-angle' |
+ 'hands-helping' |
+ 'circle-0' |
+ 'dial-med-low' |
+ 'location-dot' |
+ 'map-marker-alt' |
+ 'crab' |
+ 'box-open-full' |
+ 'box-full' |
+ 'file' |
+ 'greater-than' |
+ 'quotes' |
+ 'pretzel' |
+ 'person-swimming' |
+ 'swimmer' |
+ 'arrow-down' |
+ 'user-robot-xmarks' |
+ 'message-quote' |
+ 'comment-alt-quote' |
+ 'candy-corn' |
+ 'folder-magnifying-glass' |
+ 'folder-search' |
+ 'notebook' |
+ 'droplet' |
+ 'tint' |
+ 'bullseye-pointer' |
+ 'eraser' |
+ 'hexagon-image' |
+ 'earth-americas' |
+ 'earth' |
+ 'earth-america' |
+ 'globe-americas' |
+ 'crate-apple' |
+ 'apple-crate' |
+ 'person-burst' |
+ 'game-board' |
+ 'hat-chef' |
+ 'hand-back-point-right' |
+ 'dove' |
+ 'snowflake-droplets' |
+ 'battery-empty' |
+ 'battery0' |
+ 'grid-4' |
+ 'socks' |
+ 'face-sunglasses' |
+ 'inbox' |
+ 'square-0' |
+ 'section' |
+ 'square-this-way-up' |
+ 'box-up' |
+ 'gauge-high' |
+ 'tachometer-alt' |
+ 'tachometer-alt-fast' |
+ 'square-ampersand' |
+ 'envelope-open-text' |
+ 'lamp-desk' |
+ 'hospital' |
+ 'hospital-alt' |
+ 'hospital-wide' |
+ 'poll-people' |
+ 'whiskey-glass-ice' |
+ 'glass-whiskey-rocks' |
+ 'wine-bottle' |
+ 'chess-rook' |
+ 'user-bounty-hunter' |
+ 'bars-staggered' |
+ 'reorder' |
+ 'stream' |
+ 'diagram-sankey' |
+ 'cloud-hail-mixed' |
+ 'circle-up-left' |
+ 'dharmachakra' |
+ 'objects-align-left' |
+ 'oil-can-drip' |
+ 'face-smiling-hands' |
+ 'broccoli' |
+ 'route-interstate' |
+ 'ear-muffs' |
+ 'hotdog' |
+ 'transporter-empty' |
+ 'person-walking-with-cane' |
+ 'blind' |
+ 'angle-90' |
+ 'rectangle-terminal' |
+ 'kite' |
+ 'drum' |
+ 'scrubber' |
+ 'ice-cream' |
+ 'heart-circle-bolt' |
+ 'fish-bones' |
+ 'deer-rudolph' |
+ 'fax' |
+ 'paragraph' |
+ 'head-side-heart' |
+ 'square-e' |
+ 'meter-fire' |
+ 'cloud-hail' |
+ 'check-to-slot' |
+ 'vote-yea' |
+ 'money-from-bracket' |
+ 'star-half' |
+ 'car-bus' |
+ 'speaker' |
+ 'timer' |
+ 'boxes-stacked' |
+ 'boxes' |
+ 'boxes-alt' |
+ 'grill-hot' |
+ 'ballot-check' |
+ 'link' |
+ 'chain' |
+ 'ear-listen' |
+ 'assistive-listening-systems' |
+ 'file-minus' |
+ 'tree-city' |
+ 'play' |
+ 'font' |
+ 'cup-togo' |
+ 'coffee-togo' |
+ 'square-down-left' |
+ 'burger-lettuce' |
+ 'rupiah-sign' |
+ 'magnifying-glass' |
+ 'search' |
+ 'table-tennis-paddle-ball' |
+ 'ping-pong-paddle-ball' |
+ 'table-tennis' |
+ 'person-dots-from-line' |
+ 'diagnoses' |
+ 'chevrons-down' |
+ 'chevron-double-down' |
+ 'trash-can-arrow-up' |
+ 'trash-restore-alt' |
+ 'signal-good' |
+ 'signal3' |
+ 'location-question' |
+ 'map-marker-question' |
+ 'floppy-disk-circle-xmark' |
+ 'floppy-disk-times' |
+ 'save-circle-xmark' |
+ 'save-times' |
+ 'naira-sign' |
+ 'peach' |
+ 'taxi-bus' |
+ 'bracket-curly' |
+ 'bracket-curly-left' |
+ 'lobster' |
+ 'cart-flatbed-empty' |
+ 'dolly-flatbed-empty' |
+ 'colon' |
+ 'cart-arrow-down' |
+ 'wand' |
+ 'walkie-talkie' |
+ 'file-pen' |
+ 'file-edit' |
+ 'receipt' |
+ 'table-picnic' |
+ 'square-pen' |
+ 'pen-square' |
+ 'pencil-square' |
+ 'circle-microphone-lines' |
+ 'microphone-circle-alt' |
+ 'display-slash' |
+ 'desktop-slash' |
+ 'suitcase-rolling' |
+ 'person-circle-exclamation' |
+ 'transporter-2' |
+ 'hands-holding-diamond' |
+ 'hand-receiving' |
+ 'money-bill-simple-wave' |
+ 'chevron-down' |
+ 'battery-full' |
+ 'battery' |
+ 'battery5' |
+ 'bell-plus' |
+ 'book-arrow-right' |
+ 'hospitals' |
+ 'club' |
+ 'skull-crossbones' |
+ 'droplet-degree' |
+ 'dewpoint' |
+ 'code-compare' |
+ 'list-ul' |
+ 'list-dots' |
+ 'hand-holding-magic' |
+ 'watermelon-slice' |
+ 'circle-ellipsis' |
+ 'school-lock' |
+ 'tower-cell' |
+ 'sd-cards' |
+ 'jug-bottle' |
+ 'down-long' |
+ 'long-arrow-alt-down' |
+ 'envelopes' |
+ 'phone-office' |
+ 'ranking-star' |
+ 'chess-king' |
+ 'nfc-pen' |
+ 'person-harassing' |
+ 'hat-winter' |
+ 'brazilian-real-sign' |
+ 'landmark-dome' |
+ 'landmark-alt' |
+ 'bone-break' |
+ 'arrow-up' |
+ 'down-from-dotted-line' |
+ 'tv' |
+ 'television' |
+ 'tv-alt' |
+ 'border-left' |
+ 'circle-divide' |
+ 'shrimp' |
+ 'list-check' |
+ 'tasks' |
+ 'diagram-subtask' |
+ 'jug-detergent' |
+ 'circle-user' |
+ 'user-circle' |
+ 'square-y' |
+ 'user-doctor-hair' |
+ 'planet-ringed' |
+ 'mushroom' |
+ 'user-shield' |
+ 'megaphone' |
+ 'wreath-laurel' |
+ 'circle-exclamation-check' |
+ 'wind' |
+ 'box-dollar' |
+ 'box-usd' |
+ 'car-burst' |
+ 'car-crash' |
+ 'y' |
+ 'user-headset' |
+ 'arrows-retweet' |
+ 'retweet-alt' |
+ 'person-snowboarding' |
+ 'snowboarding' |
+ 'square-chevron-right' |
+ 'chevron-square-right' |
+ 'lacrosse-stick-ball' |
+ 'truck-fast' |
+ 'shipping-fast' |
+ 'user-magnifying-glass' |
+ 'star-sharp' |
+ 'comment-heart' |
+ 'circle-1' |
+ 'circle-star' |
+ 'star-circle' |
+ 'fish' |
+ 'cloud-fog' |
+ 'fog' |
+ 'waffle' |
+ 'music-note' |
+ 'music-alt' |
+ 'hexagon-exclamation' |
+ 'cart-shopping-fast' |
+ 'object-union' |
+ 'user-graduate' |
+ 'starfighter' |
+ 'circle-half-stroke' |
+ 'adjust' |
+ 'arrow-right-long-to-line' |
+ 'square-arrow-down' |
+ 'arrow-square-down' |
+ 'diamond-half-stroke' |
+ 'clapperboard' |
+ 'square-chevron-left' |
+ 'chevron-square-left' |
+ 'phone-intercom' |
+ 'link-horizontal' |
+ 'chain-horizontal' |
+ 'mango' |
+ 'music-note-slash' |
+ 'music-alt-slash' |
+ 'circle-radiation' |
+ 'radiation-alt' |
+ 'face-tongue-sweat' |
+ 'globe-stand' |
+ 'baseball' |
+ 'baseball-ball' |
+ 'circle-p' |
+ 'award-simple' |
+ 'jet-fighter-up' |
+ 'diagram-project' |
+ 'project-diagram' |
+ 'pedestal' |
+ 'chart-pyramid' |
+ 'sidebar' |
+ 'snowman-head' |
+ 'frosty-head' |
+ 'copy' |
+ 'burger-glass' |
+ 'volume-xmark' |
+ 'volume-mute' |
+ 'volume-times' |
+ 'hand-sparkles' |
+ 'bars-filter' |
+ 'paintbrush-pencil' |
+ 'party-bell' |
+ 'user-vneck-hair' |
+ 'jack-o-lantern' |
+ 'grip' |
+ 'grip-horizontal' |
+ 'share-from-square' |
+ 'share-square' |
+ 'keynote' |
+ 'child-combatant' |
+ 'child-rifle' |
+ 'gun' |
+ 'square-phone' |
+ 'phone-square' |
+ 'hat-beach' |
+ 'plus' |
+ 'add' |
+ 'expand' |
+ 'computer' |
+ 'fort' |
+ 'cloud-check' |
+ 'xmark' |
+ 'close' |
+ 'multiply' |
+ 'remove' |
+ 'times' |
+ 'face-smirking' |
+ 'arrows-up-down-left-right' |
+ 'arrows' |
+ 'chalkboard-user' |
+ 'chalkboard-teacher' |
+ 'rhombus' |
+ 'claw-marks' |
+ 'peso-sign' |
+ 'face-smile-tongue' |
+ 'cart-circle-xmark' |
+ 'building-shield' |
+ 'circle-phone-flip' |
+ 'phone-circle-alt' |
+ 'baby' |
+ 'users-line' |
+ 'quote-left' |
+ 'quote-left-alt' |
+ 'tractor' |
+ 'key-skeleton' |
+ 'trash-arrow-up' |
+ 'trash-restore' |
+ 'arrow-down-up-lock' |
+ 'arrow-down-to-bracket' |
+ 'lines-leaning' |
+ 'square-q' |
+ 'ruler-combined' |
+ 'symbols' |
+ 'icons-alt' |
+ 'copyright' |
+ 'flask-gear' |
+ 'highlighter-line' |
+ 'bracket-square' |
+ 'bracket' |
+ 'bracket-left' |
+ 'island-tropical' |
+ 'island-tree-palm' |
+ 'arrow-right-from-line' |
+ 'arrow-from-left' |
+ 'h2' |
+ 'equals' |
+ 'cake-slice' |
+ 'shortcake' |
+ 'peanut' |
+ 'wrench-simple' |
+ 'blender' |
+ 'teeth' |
+ 'tally-2' |
+ 'shekel-sign' |
+ 'ils' |
+ 'shekel' |
+ 'sheqel' |
+ 'sheqel-sign' |
+ 'cars' |
+ 'axe-battle' |
+ 'user-hair-long' |
+ 'map' |
+ 'file-circle-info' |
+ 'face-disappointed' |
+ 'lasso-sparkles' |
+ 'clock-eleven' |
+ 'rocket' |
+ 'siren-on' |
+ 'clock-ten' |
+ 'candle-holder' |
+ 'video-arrow-down-left' |
+ 'photo-film' |
+ 'photo-video' |
+ 'floppy-disk-circle-arrow-right' |
+ 'save-circle-arrow-right' |
+ 'folder-minus' |
+ 'planet-moon' |
+ 'face-eyes-xmarks' |
+ 'chart-scatter' |
+ 'display-arrow-down' |
+ 'store' |
+ 'arrow-trend-up' |
+ 'plug-circle-minus' |
+ 'olive-branch' |
+ 'angle' |
+ 'vacuum-robot' |
+ 'sign-hanging' |
+ 'sign' |
+ 'square-divide' |
+ 'signal-stream-slash' |
+ 'bezier-curve' |
+ 'eye-dropper-half' |
+ 'store-lock' |
+ 'bell-slash' |
+ 'cloud-bolt-sun' |
+ 'thunderstorm-sun' |
+ 'camera-slash' |
+ 'comment-quote' |
+ 'tablet' |
+ 'tablet-android' |
+ 'school-flag' |
+ 'message-code' |
+ 'glass-half' |
+ 'glass-half-empty' |
+ 'glass-half-full' |
+ 'fill' |
+ 'message-minus' |
+ 'comment-alt-minus' |
+ 'angle-up' |
+ 'dinosaur' |
+ 'drumstick-bite' |
+ 'link-horizontal-slash' |
+ 'chain-horizontal-slash' |
+ 'holly-berry' |
+ 'nose' |
+ 'chevron-left' |
+ 'bacteria' |
+ 'clouds' |
+ 'money-bill-simple' |
+ 'hand-lizard' |
+ 'table-pivot' |
+ 'filter-slash' |
+ 'trash-can-undo' |
+ 'trash-can-arrow-turn-left' |
+ 'trash-undo-alt' |
+ 'notdef' |
+ 'disease' |
+ 'person-to-door' |
+ 'turntable' |
+ 'briefcase-medical' |
+ 'genderless' |
+ 'chevron-right' |
+ 'signal-weak' |
+ 'signal1' |
+ 'clock-five' |
+ 'retweet' |
+ 'car-rear' |
+ 'car-alt' |
+ 'pump-soap' |
+ 'computer-classic' |
+ 'frame' |
+ 'video-slash' |
+ 'battery-quarter' |
+ 'battery2' |
+ 'ellipsis-stroke' |
+ 'ellipsis-h-alt' |
+ 'radio' |
+ 'baby-carriage' |
+ 'carriage-baby' |
+ 'face-expressionless' |
+ 'down-to-dotted-line' |
+ 'cloud-music' |
+ 'traffic-light' |
+ 'cloud-minus' |
+ 'thermometer' |
+ 'shield-minus' |
+ 'vr-cardboard' |
+ 'car-tilt' |
+ 'gauge-circle-minus' |
+ 'brightness-low' |
+ 'hand-middle-finger' |
+ 'percent' |
+ 'percentage' |
+ 'truck-moving' |
+ 'glass-water-droplet' |
+ 'conveyor-belt' |
+ 'location-check' |
+ 'map-marker-check' |
+ 'coin-vertical' |
+ 'display' |
+ 'person-sign' |
+ 'face-smile' |
+ 'smile' |
+ 'phone-hangup' |
+ 'signature-slash' |
+ 'thumbtack' |
+ 'thumb-tack' |
+ 'wheat-slash' |
+ 'trophy' |
+ 'clouds-sun' |
+ 'person-praying' |
+ 'pray' |
+ 'hammer' |
+ 'face-vomit' |
+ 'speakers' |
+ 'tty-answer' |
+ 'teletype-answer' |
+ 'mug-tea-saucer' |
+ 'diagram-lean-canvas' |
+ 'alt' |
+ 'dial' |
+ 'dial-med-high' |
+ 'hand-peace' |
+ 'circle-trash' |
+ 'trash-circle' |
+ 'rotate' |
+ 'sync-alt' |
+ 'circle-quarters' |
+ 'spinner' |
+ 'tower-control' |
+ 'arrow-up-triangle-square' |
+ 'sort-shapes-up' |
+ 'whale' |
+ 'robot' |
+ 'peace' |
+ 'party-horn' |
+ 'gears' |
+ 'cogs' |
+ 'sun-bright' |
+ 'sun-alt' |
+ 'warehouse' |
+ 'conveyor-belt-arm' |
+ 'lock-keyhole-open' |
+ 'lock-open-alt' |
+ 'square-fragile' |
+ 'box-fragile' |
+ 'square-wine-glass-crack' |
+ 'arrow-up-right-dots' |
+ 'square-n' |
+ 'splotch' |
+ 'face-grin-hearts' |
+ 'grin-hearts' |
+ 'meter' |
+ 'mandolin' |
+ 'dice-four' |
+ 'sim-card' |
+ 'transgender' |
+ 'transgender-alt' |
+ 'mercury' |
+ 'up-from-bracket' |
+ 'knife-kitchen' |
+ 'border-right' |
+ 'arrow-turn-down' |
+ 'level-down' |
+ 'spade' |
+ 'card-spade' |
+ 'line-columns' |
+ 'arrow-right-to-line' |
+ 'arrow-to-right' |
+ 'person-falling-burst' |
+ 'flag-pennant' |
+ 'pennant' |
+ 'conveyor-belt-empty' |
+ 'user-group-simple' |
+ 'award' |
+ 'ticket-simple' |
+ 'ticket-alt' |
+ 'building' |
+ 'angles-left' |
+ 'angle-double-left' |
+ 'camcorder' |
+ 'video-handheld' |
+ 'pancakes' |
+ 'album-circle-user' |
+ 'qrcode' |
+ 'dice-d10' |
+ 'fireplace' |
+ 'browser' |
+ 'pen-paintbrush' |
+ 'pencil-paintbrush' |
+ 'fish-cooked' |
+ 'chair-office' |
+ 'nesting-dolls' |
+ 'clock-rotate-left' |
+ 'history' |
+ 'trumpet' |
+ 'face-grin-beam-sweat' |
+ 'grin-beam-sweat' |
+ 'fire-smoke' |
+ 'phone-missed' |
+ 'file-export' |
+ 'arrow-right-from-file' |
+ 'shield' |
+ 'shield-blank' |
+ 'arrow-up-short-wide' |
+ 'sort-amount-up-alt' |
+ 'arrows-repeat-1' |
+ 'repeat1-alt' |
+ 'gun-slash' |
+ 'avocado' |
+ 'binary' |
+ 'glasses-round' |
+ 'glasses-alt' |
+ 'phone-plus' |
+ 'ditto' |
+ 'person-seat' |
+ 'house-medical' |
+ 'golf-ball-tee' |
+ 'golf-ball' |
+ 'circle-chevron-left' |
+ 'chevron-circle-left' |
+ 'house-chimney-window' |
+ 'scythe' |
+ 'pen-nib' |
+ 'ban-parking' |
+ 'parking-circle-slash' |
+ 'tent-arrow-turn-left' |
+ 'face-diagonal-mouth' |
+ 'diagram-cells' |
+ 'cricket-bat-ball' |
+ 'cricket' |
+ 'tents' |
+ 'wand-magic' |
+ 'magic' |
+ 'dog' |
+ 'pen-line' |
+ 'atom-simple' |
+ 'atom-alt' |
+ 'ampersand' |
+ 'carrot' |
+ 'arrow-up-from-line' |
+ 'arrow-from-bottom' |
+ 'moon' |
+ 'pen-slash' |
+ 'wine-glass-empty' |
+ 'wine-glass-alt' |
+ 'square-star' |
+ 'cheese' |
+ 'send-backward' |
+ 'yin-yang' |
+ 'music' |
+ 'compass-slash' |
+ 'clock-one' |
+ 'file-music' |
+ 'code-commit' |
+ 'temperature-low' |
+ 'person-biking' |
+ 'biking' |
+ 'display-chart-up-circle-currency' |
+ 'skeleton' |
+ 'circle-g' |
+ 'circle-arrow-up-left' |
+ 'coin-blank' |
+ 'broom' |
+ 'vacuum' |
+ 'shield-heart' |
+ 'card-heart' |
+ 'lightbulb-cfl-on' |
+ 'melon' |
+ 'gopuram' |
+ 'earth-oceania' |
+ 'globe-oceania' |
+ 'container-storage' |
+ 'face-pouting' |
+ 'square-xmark' |
+ 'times-square' |
+ 'xmark-square' |
+ 'face-explode' |
+ 'exploding-head' |
+ 'hashtag' |
+ 'up-right-and-down-left-from-center' |
+ 'expand-alt' |
+ 'oil-can' |
+ 't' |
+ 'transformer-bolt' |
+ 'hippo' |
+ 'chart-column' |
+ 'cassette-vhs' |
+ 'vhs' |
+ 'infinity' |
+ 'vial-circle-check' |
+ 'chimney' |
+ 'object-intersect' |
+ 'person-arrow-down-to-line' |
+ 'voicemail' |
+ 'block-brick' |
+ 'wall-brick' |
+ 'fan' |
+ 'bags-shopping' |
+ 'paragraph-left' |
+ 'paragraph-rtl' |
+ 'person-walking-luggage' |
+ 'caravan-simple' |
+ 'caravan-alt' |
+ 'turtle' |
+ 'pencil-mechanical' |
+ 'up-down' |
+ 'arrows-alt-v' |
+ 'cloud-moon-rain' |
+ 'booth-curtain' |
+ 'calendar' |
+ 'box-heart' |
+ 'trailer' |
+ 'user-doctor-message' |
+ 'user-md-chat' |
+ 'bahai' |
+ 'haykal' |
+ 'amp-guitar' |
+ 'sd-card' |
+ 'volume-slash' |
+ 'border-bottom' |
+ 'wifi-weak' |
+ 'wifi1' |
+ 'dragon' |
+ 'shoe-prints' |
+ 'circle-plus' |
+ 'plus-circle' |
+ 'face-grin-tongue-wink' |
+ 'grin-tongue-wink' |
+ 'hand-holding' |
+ 'plug-circle-exclamation' |
+ 'link-slash' |
+ 'chain-broken' |
+ 'chain-slash' |
+ 'unlink' |
+ 'clone' |
+ 'person-walking-arrow-loop-left' |
+ 'arrow-up-z-a' |
+ 'sort-alpha-up-alt' |
+ 'fire-flame-curved' |
+ 'fire-alt' |
+ 'tornado' |
+ 'file-circle-plus' |
+ 'delete-right' |
+ 'book-quran' |
+ 'quran' |
+ 'circle-quarter' |
+ 'anchor' |
+ 'border-all' |
+ 'function' |
+ 'face-angry' |
+ 'angry' |
+ 'people-simple' |
+ 'cookie-bite' |
+ 'arrow-trend-down' |
+ 'rss' |
+ 'feed' |
+ 'face-monocle' |
+ 'draw-polygon' |
+ 'scale-balanced' |
+ 'balance-scale' |
+ 'calendar-lines' |
+ 'calendar-note' |
+ 'arrow-down-big-small' |
+ 'sort-size-down' |
+ 'gauge-simple-high' |
+ 'tachometer' |
+ 'tachometer-fast' |
+ 'do-not-enter' |
+ 'shower' |
+ 'dice-d8' |
+ 'desktop' |
+ 'desktop-alt' |
+ 'm' |
+ 'grip-dots-vertical' |
+ 'face-viewfinder' |
+ 'soft-serve' |
+ 'creemee' |
+ 'h5' |
+ 'hand-back-point-down' |
+ 'table-list' |
+ 'th-list' |
+ 'comment-sms' |
+ 'sms' |
+ 'rectangle' |
+ 'rectangle-landscape' |
+ 'clipboard-list-check' |
+ 'turkey' |
+ 'book' |
+ 'user-plus' |
+ 'ice-skate' |
+ 'check' |
+ 'battery-three-quarters' |
+ 'battery4' |
+ 'tomato' |
+ 'sword-laser' |
+ 'house-circle-check' |
+ 'buildings' |
+ 'angle-left' |
+ 'cart-flatbed-boxes' |
+ 'dolly-flatbed-alt' |
+ 'diagram-successor' |
+ 'truck-arrow-right' |
+ 'square-w' |
+ 'arrows-split-up-and-left' |
+ 'lamp' |
+ 'airplay' |
+ 'hand-fist' |
+ 'fist-raised' |
+ 'shield-quartered' |
+ 'slash-forward' |
+ 'location-pen' |
+ 'map-marker-edit' |
+ 'cloud-moon' |
+ 'pot-food' |
+ 'briefcase' |
+ 'person-falling' |
+ 'image-portrait' |
+ 'portrait' |
+ 'user-tag' |
+ 'rug' |
+ 'print-slash' |
+ 'earth-europe' |
+ 'globe-europe' |
+ 'cart-flatbed-suitcase' |
+ 'luggage-cart' |
+ 'hand-back-point-ribbon' |
+ 'rectangle-xmark' |
+ 'rectangle-times' |
+ 'times-rectangle' |
+ 'window-close' |
+ 'tire-rugged' |
+ 'lightbulb-dollar' |
+ 'cowbell' |
+ 'baht-sign' |
+ 'corner' |
+ 'chevrons-right' |
+ 'chevron-double-right' |
+ 'book-open' |
+ 'book-journal-whills' |
+ 'journal-whills' |
+ 'inhaler' |
+ 'handcuffs' |
+ 'snake' |
+ 'triangle-exclamation' |
+ 'exclamation-triangle' |
+ 'warning' |
+ 'note-medical' |
+ 'database' |
+ 'down-left' |
+ 'share' |
+ 'arrow-turn-right' |
+ 'mail-forward' |
+ 'face-thinking' |
+ 'turn-down-right' |
+ 'bottle-droplet' |
+ 'mask-face' |
+ 'hill-rockslide' |
+ 'scanner-keyboard' |
+ 'circle-o' |
+ 'grid-horizontal' |
+ 'message-dollar' |
+ 'comment-alt-dollar' |
+ 'right-left' |
+ 'exchange-alt' |
+ 'columns-3' |
+ 'paper-plane' |
+ 'road-circle-exclamation' |
+ 'dungeon' |
+ 'hand-holding-box' |
+ 'input-text' |
+ 'window-flip' |
+ 'window-alt' |
+ 'align-right' |
+ 'scanner-gun' |
+ 'scanner' |
+ 'tire' |
+ 'engine' |
+ 'money-bill-1-wave' |
+ 'money-bill-wave-alt' |
+ 'life-ring' |
+ 'hands' |
+ 'sign-language' |
+ 'signing' |
+ 'circle-caret-right' |
+ 'caret-circle-right' |
+ 'wheat' |
+ 'file-spreadsheet' |
+ 'audio-description-slash' |
+ 'calendar-day' |
+ 'water-ladder' |
+ 'ladder-water' |
+ 'swimming-pool' |
+ 'arrows-up-down' |
+ 'arrows-v' |
+ 'chess-pawn-piece' |
+ 'chess-pawn-alt' |
+ 'face-grimace' |
+ 'grimace' |
+ 'wheelchair-move' |
+ 'wheelchair-alt' |
+ 'turn-down' |
+ 'level-down-alt' |
+ 'square-s' |
+ 'rectangle-barcode' |
+ 'barcode-alt' |
+ 'person-walking-arrow-right' |
+ 'square-envelope' |
+ 'envelope-square' |
+ 'dice' |
+ 'unicorn' |
+ 'bowling-ball' |
+ 'pompebled' |
+ 'brain' |
+ 'watch-smart' |
+ 'book-user' |
+ 'sensor-cloud' |
+ 'sensor-smoke' |
+ 'clapperboard-play' |
+ 'bandage' |
+ 'band-aid' |
+ 'calendar-minus' |
+ 'circle-xmark' |
+ 'times-circle' |
+ 'xmark-circle' |
+ 'circle-4' |
+ 'gifts' |
+ 'album-collection' |
+ 'hotel' |
+ 'earth-asia' |
+ 'globe-asia' |
+ 'id-card-clip' |
+ 'id-card-alt' |
+ 'magnifying-glass-plus' |
+ 'search-plus' |
+ 'thumbs-up' |
+ 'cloud-showers' |
+ 'user-clock' |
+ 'onion' |
+ 'clock-twelve-thirty' |
+ 'arrow-down-to-dotted-line' |
+ 'hand-dots' |
+ 'allergies' |
+ 'file-invoice' |
+ 'window-minimize' |
+ 'rectangle-wide' |
+ 'comment-arrow-up' |
+ 'garlic' |
+ 'mug-saucer' |
+ 'coffee' |
+ 'brush' |
+ 'tree-decorated' |
+ 'mask' |
+ 'calendar-heart' |
+ 'magnifying-glass-minus' |
+ 'search-minus' |
+ 'flower' |
+ 'right-left-large' |
+ 'ruler-vertical' |
+ 'circles-overlap' |
+ 'user-large' |
+ 'user-alt' |
+ 'starship-freighter' |
+ 'train-tram' |
+ 'bridge-suspension' |
+ 'trash-check' |
+ 'user-nurse' |
+ 'boombox' |
+ 'syringe' |
+ 'cloud-sun' |
+ 'shield-exclamation' |
+ 'stopwatch-20' |
+ 'square-full' |
+ 'grip-dots' |
+ 'comment-exclamation' |
+ 'pen-swirl' |
+ 'falafel' |
+ 'circle-2' |
+ 'magnet' |
+ 'jar' |
+ 'gramophone' |
+ 'dice-d12' |
+ 'note-sticky' |
+ 'sticky-note' |
+ 'down' |
+ 'arrow-alt-down' |
+ 'hundred-points' |
+ '100' |
+ 'paperclip-vertical' |
+ 'wind-warning' |
+ 'wind-circle-exclamation' |
+ 'location-pin-slash' |
+ 'map-marker-slash' |
+ 'face-sad-sweat' |
+ 'bug-slash' |
+ 'cupcake' |
+ 'light-switch-off' |
+ 'toggle-large-off' |
+ 'pen-fancy-slash' |
+ 'truck-container' |
+ 'boot' |
+ 'arrow-up-from-water-pump' |
+ 'file-check' |
+ 'bone' |
+ 'cards-blank' |
+ 'circle-3' |
+ 'bench-tree' |
+ 'keyboard-brightness-low' |
+ 'ski-boot-ski' |
+ 'brain-circuit' |
+ 'user-injured' |
+ 'block-brick-fire' |
+ 'firewall' |
+ 'face-sad-tear' |
+ 'sad-tear' |
+ 'plane' |
+ 'tent-arrows-down' |
+ 'exclamation' |
+ 'arrows-spin' |
+ 'face-smile-relaxed' |
+ 'comment-xmark' |
+ 'comment-times' |
+ 'print' |
+ 'turkish-lira-sign' |
+ 'try' |
+ 'turkish-lira' |
+ 'face-nose-steam' |
+ 'circle-waveform-lines' |
+ 'waveform-circle' |
+ 'dollar-sign' |
+ 'dollar' |
+ 'usd' |
+ 'ferris-wheel' |
+ 'computer-speaker' |
+ 'skull-cow' |
+ 'x' |
+ 'magnifying-glass-dollar' |
+ 'search-dollar' |
+ 'users-gear' |
+ 'users-cog' |
+ 'person-military-pointing' |
+ 'building-columns' |
+ 'bank' |
+ 'institution' |
+ 'museum' |
+ 'university' |
+ 'circle-t' |
+ 'sack' |
+ 'grid-2' |
+ 'camera-cctv' |
+ 'cctv' |
+ 'umbrella' |
+ 'trowel' |
+ 'horizontal-rule' |
+ 'bed-front' |
+ 'bed-alt' |
+ 'd' |
+ 'stapler' |
+ 'masks-theater' |
+ 'theater-masks' |
+ 'kip-sign' |
+ 'face-woozy' |
+ 'cloud-question' |
+ 'pineapple' |
+ 'hand-point-left' |
+ 'gallery-thumbnails' |
+ 'circle-j' |
+ 'eyes' |
+ 'handshake-simple' |
+ 'handshake-alt' |
+ 'page-caret-up' |
+ 'file-caret-up' |
+ 'jet-fighter' |
+ 'fighter-jet' |
+ 'comet' |
+ 'square-share-nodes' |
+ 'share-alt-square' |
+ 'shield-keyhole' |
+ 'barcode' |
+ 'plus-minus' |
+ 'square-sliders-vertical' |
+ 'sliders-v-square' |
+ 'video' |
+ 'video-camera' |
+ 'message-middle' |
+ 'comment-middle-alt' |
+ 'graduation-cap' |
+ 'mortar-board' |
+ 'hand-holding-medical' |
+ 'person-circle-check' |
+ 'square-z' |
+ 'message-text' |
+ 'comment-alt-text' |
+ 'turn-up' |
+ 'level-up-alt' |
+ '0' |
+ '1' |
+ '2' |
+ '3' |
+ '4' |
+ '5' |
+ '6' |
+ '7' |
+ '8' |
+ '9' |
+ 'fill-drip' |
+ 'arrows-to-circle' |
+ 'circle-chevron-right' |
+ 'chevron-circle-right' |
+ 'wagon-covered' |
+ 'line-height' |
+ 'bagel' |
+ 'transporter-7' |
+ 'at' |
+ 'rectangles-mixed' |
+ 'phone-arrow-up-right' |
+ 'phone-arrow-up' |
+ 'phone-outgoing' |
+ 'trash-can' |
+ 'trash-alt' |
+ 'circle-l' |
+ 'head-side-goggles' |
+ 'head-vr' |
+ 'text-height' |
+ 'user-xmark' |
+ 'user-times' |
+ 'face-hand-yawn' |
+ 'gauge-simple-min' |
+ 'tachometer-slowest' |
+ 'stethoscope' |
+ 'coffin' |
+ 'message' |
+ 'comment-alt' |
+ 'salad' |
+ 'bowl-salad' |
+ 'info' |
+ 'robot-astromech' |
+ 'ring-diamond' |
+ 'fondue-pot' |
+ 'theta' |
+ 'face-hand-peeking' |
+ 'square-user' |
+ 'down-left-and-up-right-to-center' |
+ 'compress-alt' |
+ 'explosion' |
+ 'file-lines' |
+ 'file-alt' |
+ 'file-text' |
+ 'wave-square' |
+ 'ring' |
+ 'building-un' |
+ 'dice-three' |
+ 'tire-pressure-warning' |
+ 'wifi-fair' |
+ 'wifi2' |
+ 'calendar-days' |
+ 'calendar-alt' |
+ 'mp3-player' |
+ 'anchor-circle-check' |
+ 'tally-4' |
+ 'rectangle-history' |
+ 'building-circle-arrow-right' |
+ 'volleyball' |
+ 'volleyball-ball' |
+ 'sun-haze' |
+ 'text-size' |
+ 'ufo' |
+ 'fork' |
+ 'utensil-fork' |
+ 'arrows-up-to-line' |
+ 'mobile-signal' |
+ 'barcode-scan' |
+ 'sort-down' |
+ 'sort-desc' |
+ 'folder-arrow-down' |
+ 'folder-download' |
+ 'circle-minus' |
+ 'minus-circle' |
+ 'face-icicles' |
+ 'shovel' |
+ 'door-open' |
+ 'films' |
+ 'right-from-bracket' |
+ 'sign-out-alt' |
+ 'face-glasses' |
+ 'nfc' |
+ 'atom' |
+ 'soap' |
+ 'icons' |
+ 'heart-music-camera-bolt' |
+ 'microphone-lines-slash' |
+ 'microphone-alt-slash' |
+ 'closed-captioning-slash' |
+ 'calculator-simple' |
+ 'calculator-alt' |
+ 'bridge-circle-check' |
+ 'sliders-up' |
+ 'sliders-v' |
+ 'location-minus' |
+ 'map-marker-minus' |
+ 'pump-medical' |
+ 'fingerprint' |
+ 'ski-boot' |
+ 'standard-definition' |
+ 'rectangle-sd' |
+ 'h1' |
+ 'hand-point-right' |
+ 'magnifying-glass-location' |
+ 'search-location' |
+ 'message-bot' |
+ 'forward-step' |
+ 'step-forward' |
+ 'face-smile-beam' |
+ 'smile-beam' |
+ 'light-ceiling' |
+ 'message-exclamation' |
+ 'comment-alt-exclamation' |
+ 'bowl-scoop' |
+ 'bowl-shaved-ice' |
+ 'square-x' |
+ 'utility-pole-double' |
+ 'flag-checkered' |
+ 'chevrons-up' |
+ 'chevron-double-up' |
+ 'football' |
+ 'football-ball' |
+ 'user-vneck' |
+ 'school-circle-exclamation' |
+ 'crop' |
+ 'angles-down' |
+ 'angle-double-down' |
+ 'users-rectangle' |
+ 'people-roof' |
+ 'square-arrow-right' |
+ 'arrow-square-right' |
+ 'location-plus' |
+ 'map-marker-plus' |
+ 'lightbulb-exclamation-on' |
+ 'people-line' |
+ 'beer-mug-empty' |
+ 'beer' |
+ 'crate-empty' |
+ 'diagram-predecessor' |
+ 'transporter' |
+ 'calendar-circle-user' |
+ 'arrow-up-long' |
+ 'long-arrow-up' |
+ 'person-carry-box' |
+ 'person-carry' |
+ 'fire-flame-simple' |
+ 'burn' |
+ 'person' |
+ 'male' |
+ 'laptop' |
+ 'file-csv' |
+ 'menorah' |
+ 'union' |
+ 'chevrons-left' |
+ 'chevron-double-left' |
+ 'circle-heart' |
+ 'heart-circle' |
+ 'truck-plane' |
+ 'record-vinyl' |
+ 'bring-forward' |
+ 'square-p' |
+ 'face-grin-stars' |
+ 'grin-stars' |
+ 'sigma' |
+ 'camera-movie' |
+ 'bong' |
+ 'clarinet' |
+ 'truck-flatbed' |
+ 'spaghetti-monster-flying' |
+ 'pastafarianism' |
+ 'arrow-down-up-across-line' |
+ 'leaf-heart' |
+ 'house-building' |
+ 'cheese-swiss' |
+ 'spoon' |
+ 'utensil-spoon' |
+ 'jar-wheat' |
+ 'envelopes-bulk' |
+ 'mail-bulk' |
+ 'file-circle-exclamation' |
+ 'bow-arrow' |
+ 'cart-xmark' |
+ 'hexagon-xmark' |
+ 'times-hexagon' |
+ 'xmark-hexagon' |
+ 'circle-h' |
+ 'hospital-symbol' |
+ 'merge' |
+ 'pager' |
+ 'cart-minus' |
+ 'address-book' |
+ 'contact-book' |
+ 'pan-frying' |
+ 'grid' |
+ 'grid3' |
+ 'football-helmet' |
+ 'hand-love' |
+ 'trees' |
+ 'strikethrough' |
+ 'page' |
+ 'k' |
+ 'diagram-previous' |
+ 'gauge-min' |
+ 'tachometer-alt-slowest' |
+ 'folder-grid' |
+ 'eggplant' |
+ 'ram' |
+ 'landmark-flag' |
+ 'lips' |
+ 'pencil' |
+ 'pencil-alt' |
+ 'backward' |
+ 'caret-right' |
+ 'comments' |
+ 'paste' |
+ 'file-clipboard' |
+ 'desktop-arrow-down' |
+ 'code-pull-request' |
+ 'pumpkin' |
+ 'clipboard-list' |
+ 'pen-field' |
+ 'blueberries' |
+ 'truck-ramp-box' |
+ 'truck-loading' |
+ 'note' |
+ 'arrow-down-to-square' |
+ 'user-check' |
+ 'cloud-xmark' |
+ 'vial-virus' |
+ 'book-blank' |
+ 'book-alt' |
+ 'golf-flag-hole' |
+ 'message-arrow-down' |
+ 'comment-alt-arrow-down' |
+ 'face-unamused' |
+ 'sheet-plastic' |
+ 'circle-9' |
+ 'blog' |
+ 'user-ninja' |
+ 'pencil-slash' |
+ 'bowling-pins' |
+ 'person-arrow-up-from-line' |
+ 'down-right' |
+ 'scroll-torah' |
+ 'torah' |
+ 'webhook' |
+ 'blinds-open' |
+ 'fence' |
+ 'up' |
+ 'arrow-alt-up' |
+ 'broom-ball' |
+ 'quidditch' |
+ 'quidditch-broom-ball' |
+ 'drumstick' |
+ 'square-v' |
+ 'face-awesome' |
+ 'gave-dandy' |
+ 'dial-off' |
+ 'toggle-off' |
+ 'face-smile-horns' |
+ 'box-archive' |
+ 'archive' |
+ 'grapes' |
+ 'person-drowning' |
+ 'dial-max' |
+ 'circle-m' |
+ 'calendar-image' |
+ 'circle-caret-down' |
+ 'caret-circle-down' |
+ 'arrow-down-9-1' |
+ 'sort-numeric-desc' |
+ 'sort-numeric-down-alt' |
+ 'face-grin-tongue-squint' |
+ 'grin-tongue-squint' |
+ 'shish-kebab' |
+ 'spray-can' |
+ 'alarm-snooze' |
+ 'scarecrow' |
+ 'truck-monster' |
+ 'gift-card' |
+ 'w' |
+ 'code-pull-request-draft' |
+ 'square-b' |
+ 'elephant' |
+ 'earth-africa' |
+ 'globe-africa' |
+ 'rainbow' |
+ 'circle-notch' |
+ 'tablet-screen-button' |
+ 'tablet-alt' |
+ 'paw' |
+ 'message-question' |
+ 'cloud' |
+ 'trowel-bricks' |
+ 'square-3' |
+ 'face-flushed' |
+ 'flushed' |
+ 'hospital-user' |
+ 'microwave' |
+ 'chf-sign' |
+ 'tent-arrow-left-right' |
+ 'cart-circle-arrow-up' |
+ 'trash-clock' |
+ 'gavel' |
+ 'legal' |
+ 'sprinkler-ceiling' |
+ 'browsers' |
+ 'trillium' |
+ 'music-slash' |
+ 'truck-ramp' |
+ 'binoculars' |
+ 'microphone-slash' |
+ 'box-tissue' |
+ 'circle-c' |
+ 'star-christmas' |
+ 'chart-bullet' |
+ 'motorcycle' |
+ 'tree-christmas' |
+ 'tire-flat' |
+ 'sunglasses' |
+ 'badge' |
+ 'message-pen' |
+ 'comment-alt-edit' |
+ 'message-edit' |
+ 'bell-concierge' |
+ 'concierge-bell' |
+ 'pen-ruler' |
+ 'pencil-ruler' |
+ 'arrow-progress' |
+ 'chess-rook-piece' |
+ 'chess-rook-alt' |
+ 'square-root' |
+ 'album-collection-circle-plus' |
+ 'people-arrows' |
+ 'people-arrows-left-right' |
+ 'face-angry-horns' |
+ 'mars-and-venus-burst' |
+ 'tombstone' |
+ 'square-caret-right' |
+ 'caret-square-right' |
+ 'scissors' |
+ 'cut' |
+ 'list-music' |
+ 'sun-plant-wilt' |
+ 'toilets-portable' |
+ 'hockey-puck' |
+ 'mustache' |
+ 'hyphen' |
+ 'table' |
+ 'user-chef' |
+ 'message-image' |
+ 'comment-alt-image' |
+ 'users-medical' |
+ 'sensor-triangle-exclamation' |
+ 'sensor-alert' |
+ 'magnifying-glass-arrow-right' |
+ 'tachograph-digital' |
+ 'digital-tachograph' |
+ 'face-mask' |
+ 'pickleball' |
+ 'star-sharp-half' |
+ 'users-slash' |
+ 'clover' |
+ 'meat' |
+ 'reply' |
+ 'mail-reply' |
+ 'star-and-crescent' |
+ 'empty-set' |
+ 'house-fire' |
+ 'square-minus' |
+ 'minus-square' |
+ 'helicopter' |
+ 'bird' |
+ 'compass' |
+ 'square-caret-down' |
+ 'caret-square-down' |
+ 'heart-half-stroke' |
+ 'heart-half-alt' |
+ 'file-circle-question' |
+ 'laptop-code' |
+ 'joystick' |
+ 'grill-fire' |
+ 'rectangle-vertical-history' |
+ 'swatchbook' |
+ 'prescription-bottle' |
+ 'bars' |
+ 'navicon' |
+ 'keyboard-left' |
+ 'people-group' |
+ 'hourglass-end' |
+ 'hourglass3' |
+ 'heart-crack' |
+ 'heart-broken' |
+ 'face-beam-hand-over-mouth' |
+ 'droplet-percent' |
+ 'humidity' |
+ 'square-up-right' |
+ 'external-link-square-alt' |
+ 'face-kiss-beam' |
+ 'kiss-beam' |
+ 'corn' |
+ 'roller-coaster' |
+ 'photo-film-music' |
+ 'radar' |
+ 'sickle' |
+ 'film' |
+ 'coconut' |
+ 'ruler-horizontal' |
+ 'shield-cross' |
+ 'cassette-tape' |
+ 'square-terminal' |
+ 'people-robbery' |
+ 'lightbulb' |
+ 'caret-left' |
+ 'comment-middle' |
+ 'trash-can-list' |
+ 'block' |
+ 'circle-exclamation' |
+ 'exclamation-circle' |
+ 'school-circle-xmark' |
+ 'arrow-right-from-bracket' |
+ 'sign-out' |
+ 'face-frown-slight' |
+ 'circle-chevron-down' |
+ 'chevron-circle-down' |
+ 'sidebar-flip' |
+ 'unlock-keyhole' |
+ 'unlock-alt' |
+ 'temperature-list' |
+ 'cloud-showers-heavy' |
+ 'headphones-simple' |
+ 'headphones-alt' |
+ 'sitemap' |
+ 'pipe-section' |
+ 'space-station-moon-construction' |
+ 'space-station-moon-alt' |
+ 'circle-dollar-to-slot' |
+ 'donate' |
+ 'memory' |
+ 'face-sleeping' |
+ 'road-spikes' |
+ 'fire-burner' |
+ 'squirrel' |
+ 'arrow-up-to-line' |
+ 'arrow-to-top' |
+ 'flag' |
+ 'face-cowboy-hat' |
+ 'hanukiah' |
+ 'chart-scatter-3d' |
+ 'display-chart-up' |
+ 'square-code' |
+ 'feather' |
+ 'volume-low' |
+ 'volume-down' |
+ 'xmark-to-slot' |
+ 'times-to-slot' |
+ 'vote-nay' |
+ 'box-taped' |
+ 'box-alt' |
+ 'comment-slash' |
+ 'swords' |
+ 'cloud-sun-rain' |
+ 'album' |
+ 'circle-n' |
+ 'compress' |
+ 'wheat-awn' |
+ 'wheat-alt' |
+ 'ankh' |
+ 'hands-holding-child' |
+ 'asterisk' |
+ 'key-skeleton-left-right' |
+ 'comment-lines' |
+ 'luchador-mask' |
+ 'luchador' |
+ 'mask-luchador' |
+ 'square-check' |
+ 'check-square' |
+ 'shredder' |
+ 'book-open-cover' |
+ 'book-open-alt' |
+ 'sandwich' |
+ 'peseta-sign' |
+ 'square-parking-slash' |
+ 'parking-slash' |
+ 'train-tunnel' |
+ 'heading' |
+ 'header' |
+ 'ghost' |
+ 'face-anguished' |
+ 'hockey-sticks' |
+ 'abacus' |
+ 'film-simple' |
+ 'film-alt' |
+ 'list' |
+ 'list-squares' |
+ 'tree-palm' |
+ 'square-phone-flip' |
+ 'phone-square-alt' |
+ 'cart-plus' |
+ 'gamepad' |
+ 'border-center-v' |
+ 'circle-dot' |
+ 'dot-circle' |
+ 'clipboard-medical' |
+ 'face-dizzy' |
+ 'dizzy' |
+ 'egg' |
+ 'up-to-line' |
+ 'arrow-alt-to-top' |
+ 'house-medical-circle-xmark' |
+ 'watch-fitness' |
+ 'clock-nine-thirty' |
+ 'campground' |
+ 'folder-plus' |
+ 'jug' |
+ 'futbol' |
+ 'futbol-ball' |
+ 'soccer-ball' |
+ 'snow-blowing' |
+ 'paintbrush' |
+ 'paint-brush' |
+ 'lock' |
+ 'arrow-down-from-line' |
+ 'arrow-from-top' |
+ 'gas-pump' |
+ 'signal-bars-slash' |
+ 'signal-alt-slash' |
+ 'monkey' |
+ 'rectangle-pro' |
+ 'pro' |
+ 'house-night' |
+ 'hot-tub-person' |
+ 'hot-tub' |
+ 'blanket' |
+ 'map-location' |
+ 'map-marked' |
+ 'house-flood-water' |
+ 'comments-question-check' |
+ 'tree' |
+ 'arrows-cross' |
+ 'backpack' |
+ 'square-small' |
+ 'folder-arrow-up' |
+ 'folder-upload' |
+ 'bridge-lock' |
+ 'crosshairs-simple' |
+ 'sack-dollar' |
+ 'pen-to-square' |
+ 'edit' |
+ 'square-sliders' |
+ 'sliders-h-square' |
+ 'car-side' |
+ 'message-middle-top' |
+ 'comment-middle-top-alt' |
+ 'lightbulb-on' |
+ 'knife' |
+ 'utensil-knife' |
+ 'share-nodes' |
+ 'share-alt' |
+ 'display-chart-up-circle-dollar' |
+ 'wave-sine' |
+ 'heart-circle-minus' |
+ 'circle-w' |
+ 'circle-calendar' |
+ 'calendar-circle' |
+ 'hourglass-half' |
+ 'hourglass2' |
+ 'microscope' |
+ 'sunset' |
+ 'sink' |
+ 'calendar-exclamation' |
+ 'truck-container-empty' |
+ 'hand-heart' |
+ 'bag-shopping' |
+ 'shopping-bag' |
+ 'arrow-down-z-a' |
+ 'sort-alpha-desc' |
+ 'sort-alpha-down-alt' |
+ 'mitten' |
+ 'reply-clock' |
+ 'reply-time' |
+ 'person-rays' |
+ 'right' |
+ 'arrow-alt-right' |
+ 'circle-f' |
+ 'users' |
+ 'face-pleading' |
+ 'eye-slash' |
+ 'flask-vial' |
+ 'police-box' |
+ 'cucumber' |
+ 'head-side-brain' |
+ 'hand' |
+ 'hand-paper' |
+ 'person-biking-mountain' |
+ 'biking-mountain' |
+ 'utensils-slash' |
+ 'print-magnifying-glass' |
+ 'print-search' |
+ 'folder-bookmark' |
+ 'om' |
+ 'pi' |
+ 'flask-round-potion' |
+ 'flask-potion' |
+ 'face-shush' |
+ 'worm' |
+ 'house-circle-xmark' |
+ 'plug' |
+ 'calendar-circle-exclamation' |
+ 'square-i' |
+ 'chevron-up' |
+ 'face-saluting' |
+ 'gauge-simple-low' |
+ 'tachometer-slow' |
+ 'face-persevering' |
+ 'circle-camera' |
+ 'camera-circle' |
+ 'hand-spock' |
+ 'spider-web' |
+ 'circle-microphone' |
+ 'microphone-circle' |
+ 'book-arrow-up' |
+ 'popsicle' |
+ 'command' |
+ 'blinds' |
+ 'stopwatch' |
+ 'saxophone' |
+ 'square-2' |
+ 'field-hockey-stick-ball' |
+ 'field-hockey' |
+ 'arrow-up-square-triangle' |
+ 'sort-shapes-up-alt' |
+ 'face-scream' |
+ 'square-m' |
+ 'camera-web' |
+ 'webcam' |
+ 'comment-arrow-down' |
+ 'lightbulb-cfl' |
+ 'window-frame-open' |
+ 'face-kiss' |
+ 'kiss' |
+ 'bridge-circle-xmark' |
+ 'period' |
+ 'face-grin-tongue' |
+ 'grin-tongue' |
+ 'up-to-dotted-line' |
+ 'thought-bubble' |
+ 'skeleton-ribs' |
+ 'raygun' |
+ 'flute' |
+ 'acorn' |
+ 'video-arrow-up-right' |
+ 'grate-droplet' |
+ 'seal-exclamation' |
+ 'chess-bishop' |
+ 'message-sms' |
+ 'coffee-beans' |
+ 'hat-witch' |
+ 'face-grin-wink' |
+ 'grin-wink' |
+ 'clock-three-thirty' |
+ 'ear-deaf' |
+ 'deaf' |
+ 'deafness' |
+ 'hard-of-hearing' |
+ 'alarm-clock' |
+ 'eclipse' |
+ 'face-relieved' |
+ 'road-circle-check' |
+ 'dice-five' |
+ 'octagon-minus' |
+ 'minus-octagon' |
+ 'square-rss' |
+ 'rss-square' |
+ 'face-zany' |
+ 'tricycle' |
+ 'land-mine-on' |
+ 'square-arrow-up-left' |
+ 'i-cursor' |
+ 'chart-mixed-up-circle-dollar' |
+ 'salt-shaker' |
+ 'stamp' |
+ 'file-plus' |
+ 'draw-square' |
+ 'toilet-paper-under-slash' |
+ 'toilet-paper-reverse-slash' |
+ 'stairs' |
+ 'drone-front' |
+ 'drone-alt' |
+ 'glass-empty' |
+ 'dial-high' |
+ 'user-helmet-safety' |
+ 'user-construction' |
+ 'user-hard-hat' |
+ 'i' |
+ 'hryvnia-sign' |
+ 'hryvnia' |
+ 'arrow-down-left-and-arrow-up-right-to-center' |
+ 'pills' |
+ 'face-grin-wide' |
+ 'grin-alt' |
+ 'tooth' |
+ 'basketball-hoop' |
+ 'objects-align-bottom' |
+ 'v' |
+ 'sparkles' |
+ 'squid' |
+ 'leafy-green' |
+ 'circle-arrow-up-right' |
+ 'calendars' |
+ 'bangladeshi-taka-sign' |
+ 'bicycle' |
+ 'hammer-war' |
+ 'circle-d' |
+ 'spider-black-widow' |
+ 'staff-snake' |
+ 'rod-asclepius' |
+ 'rod-snake' |
+ 'staff-aesculapius' |
+ 'pear' |
+ 'head-side-cough-slash' |
+ 'triangle' |
+ 'apartment' |
+ 'truck-medical' |
+ 'ambulance' |
+ 'pepper' |
+ 'piano' |
+ 'gun-squirt' |
+ 'wheat-awn-circle-exclamation' |
+ 'snowman' |
+ 'user-alien' |
+ 'shield-check' |
+ 'mortar-pestle' |
+ 'road-barrier' |
+ 'chart-candlestick' |
+ 'briefcase-blank' |
+ 'school' |
+ 'igloo' |
+ 'bracket-round' |
+ 'parenthesis' |
+ 'joint' |
+ 'horse-saddle' |
+ 'mug-marshmallows' |
+ 'filters' |
+ 'bell-on' |
+ 'angle-right' |
+ 'dial-med' |
+ 'horse' |
+ 'q' |
+ 'monitor-waveform' |
+ 'monitor-heart-rate' |
+ 'link-simple' |
+ 'whistle' |
+ 'g' |
+ 'wine-glass-crack' |
+ 'fragile' |
+ 'slot-machine' |
+ 'notes-medical' |
+ 'car-wash' |
+ 'escalator' |
+ 'comment-image' |
+ 'temperature-half' |
+ 'temperature2' |
+ 'thermometer2' |
+ 'thermometer-half' |
+ 'dong-sign' |
+ 'donut' |
+ 'doughnut' |
+ 'capsules' |
+ 'poo-storm' |
+ 'poo-bolt' |
+ 'tally-1' |
+ 'face-frown-open' |
+ 'frown-open' |
+ 'square-dashed' |
+ 'square-j' |
+ 'hand-point-up' |
+ 'money-bill' |
+ 'arrow-up-big-small' |
+ 'sort-size-up' |
+ 'barcode-read' |
+ 'baguette' |
+ 'bowl-soft-serve' |
+ 'face-holding-back-tears' |
+ 'square-up' |
+ 'arrow-alt-square-up' |
+ 'train-subway-tunnel' |
+ 'subway-tunnel' |
+ 'square-exclamation' |
+ 'exclamation-square' |
+ 'semicolon' |
+ 'bookmark' |
+ 'fan-table' |
+ 'align-justify' |
+ 'battery-low' |
+ 'battery1' |
+ 'credit-card-front' |
+ 'brain-arrow-curved-right' |
+ 'mind-share' |
+ 'umbrella-beach' |
+ 'helmet-un' |
+ 'location-smile' |
+ 'map-marker-smile' |
+ 'arrow-left-to-line' |
+ 'arrow-to-left' |
+ 'bullseye' |
+ 'sushi' |
+ 'nigiri' |
+ 'message-captions' |
+ 'comment-alt-captions' |
+ 'trash-list' |
+ 'bacon' |
+ 'option' |
+ 'hand-point-down' |
+ 'arrow-up-from-bracket' |
+ 'trash-plus' |
+ 'objects-align-top' |
+ 'folder' |
+ 'folder-blank' |
+ 'face-anxious-sweat' |
+ 'credit-card-blank' |
+ 'file-waveform' |
+ 'file-medical-alt' |
+ 'microchip-ai' |
+ 'mug' |
+ 'plane-up-slash' |
+ 'radiation' |
+ 'pen-circle' |
+ 'bag-seedling' |
+ 'chart-simple' |
+ 'crutches' |
+ 'circle-parking' |
+ 'parking-circle' |
+ 'mars-stroke' |
+ 'leaf-oak' |
+ 'square-bolt' |
+ 'vial' |
+ 'gauge' |
+ 'dashboard' |
+ 'gauge-med' |
+ 'tachometer-alt-average' |
+ 'wand-magic-sparkles' |
+ 'magic-wand-sparkles' |
+ 'lambda' |
+ 'e' |
+ 'pizza' |
+ 'bowl-chopsticks-noodles' |
+ 'h3' |
+ 'pen-clip' |
+ 'pen-alt' |
+ 'bridge-circle-exclamation' |
+ 'badge-percent' |
+ 'user' |
+ 'sensor' |
+ 'comma' |
+ 'school-circle-check' |
+ 'toilet-paper-under' |
+ 'toilet-paper-reverse' |
+ 'light-emergency' |
+ 'arrow-down-to-arc' |
+ 'dumpster' |
+ 'van-shuttle' |
+ 'shuttle-van' |
+ 'building-user' |
+ 'light-switch' |
+ 'square-caret-left' |
+ 'caret-square-left' |
+ 'highlighter' |
+ 'wave-pulse' |
+ 'heart-rate' |
+ 'key' |
+ 'hat-santa' |
+ 'tamale' |
+ 'box-check' |
+ 'bullhorn' |
+ 'steak' |
+ 'location-crosshairs-slash' |
+ 'location-slash' |
+ 'person-dolly' |
+ 'globe' |
+ 'synagogue' |
+ 'file-chart-column' |
+ 'file-chart-line' |
+ 'person-half-dress' |
+ 'folder-image' |
+ 'calendar-pen' |
+ 'calendar-edit' |
+ 'road-bridge' |
+ 'face-smile-tear' |
+ 'message-plus' |
+ 'comment-alt-plus' |
+ 'location-arrow' |
+ 'c' |
+ 'tablet-button' |
+ 'rectangle-history-circle-user' |
+ 'building-lock' |
+ 'chart-line-up' |
+ 'mailbox' |
+ 'truck-bolt' |
+ 'pizza-slice' |
+ 'money-bill-wave' |
+ 'chart-area' |
+ 'area-chart' |
+ 'house-flag' |
+ 'circle-three-quarters-stroke' |
+ 'person-circle-minus' |
+ 'scalpel' |
+ 'ban' |
+ 'cancel' |
+ 'bell-exclamation' |
+ 'circle-bookmark' |
+ 'bookmark-circle' |
+ 'egg-fried' |
+ 'face-weary' |
+ 'uniform-martial-arts' |
+ 'camera-rotate' |
+ 'sun-dust' |
+ 'comment-text' |
+ 'spray-can-sparkles' |
+ 'air-freshener' |
+ 'signal-bars' |
+ 'signal-alt' |
+ 'signal-alt4' |
+ 'signal-bars-strong' |
+ 'diamond-exclamation' |
+ 'star' |
+ 'dial-min' |
+ 'repeat' |
+ 'cross' |
+ 'page-caret-down' |
+ 'file-caret-down' |
+ 'box' |
+ 'venus-mars' |
+ 'clock-seven-thirty' |
+ 'arrow-pointer' |
+ 'mouse-pointer' |
+ 'clock-four-thirty' |
+ 'signal-bars-good' |
+ 'signal-alt3' |
+ 'cactus' |
+ 'lightbulb-gear' |
+ 'maximize' |
+ 'expand-arrows-alt' |
+ 'charging-station' |
+ 'shapes' |
+ 'triangle-circle-square' |
+ 'plane-tail' |
+ 'gauge-simple-max' |
+ 'tachometer-fastest' |
+ 'circle-u' |
+ 'shield-slash' |
+ 'square-phone-hangup' |
+ 'phone-square-down' |
+ 'arrow-up-left' |
+ 'transporter-1' |
+ 'peanuts' |
+ 'shuffle' |
+ 'random' |
+ 'person-running' |
+ 'running' |
+ 'mobile-retro' |
+ 'grip-lines-vertical' |
+ 'bin-bottles-recycle' |
+ 'arrow-up-from-square' |
+ 'file-dashed-line' |
+ 'page-break' |
+ 'bracket-curly-right' |
+ 'spider' |
+ 'clock-three' |
+ 'hands-bound' |
+ 'scalpel-line-dashed' |
+ 'scalpel-path' |
+ 'file-invoice-dollar' |
+ 'pipe-smoking' |
+ 'face-astonished' |
+ 'window' |
+ 'plane-circle-exclamation' |
+ 'ear' |
+ 'file-lock' |
+ 'diagram-venn' |
+ 'x-ray' |
+ 'goal-net' |
+ 'coffin-cross' |
+ 'spell-check' |
+ 'location-xmark' |
+ 'map-marker-times' |
+ 'map-marker-xmark' |
+ 'circle-quarter-stroke' |
+ 'lasso' |
+ 'slash' |
+ 'person-to-portal' |
+ 'portal-enter' |
+ 'calendar-star' |
+ 'computer-mouse' |
+ 'mouse' |
+ 'arrow-right-to-bracket' |
+ 'sign-in' |
+ 'pegasus' |
+ 'files-medical' |
+ 'nfc-lock' |
+ 'person-ski-lift' |
+ 'ski-lift' |
+ 'square-6' |
+ 'shop-slash' |
+ 'store-alt-slash' |
+ 'wind-turbine' |
+ 'sliders-simple' |
+ 'grid-round' |
+ 'badge-sheriff' |
+ 'server' |
+ 'virus-covid-slash' |
+ 'intersection' |
+ 'shop-lock' |
+ 'family' |
+ 'hourglass-start' |
+ 'hourglass1' |
+ 'user-hair-buns' |
+ 'blender-phone' |
+ 'hourglass-clock' |
+ 'person-seat-reclined' |
+ 'paper-plane-top' |
+ 'paper-plane-alt' |
+ 'send' |
+ 'message-arrow-up' |
+ 'comment-alt-arrow-up' |
+ 'lightbulb-exclamation' |
+ 'layer-minus' |
+ 'layer-group-minus' |
+ 'chart-pie-simple-circle-currency' |
+ 'circle-e' |
+ 'building-wheat' |
+ 'gauge-max' |
+ 'tachometer-alt-fastest' |
+ 'person-breastfeeding' |
+ 'apostrophe' |
+ 'fire-hydrant' |
+ 'right-to-bracket' |
+ 'sign-in-alt' |
+ 'video-plus' |
+ 'square-right' |
+ 'arrow-alt-square-right' |
+ 'comment-smile' |
+ 'venus' |
+ 'passport' |
+ 'inbox-in' |
+ 'inbox-arrow-down' |
+ 'heart-pulse' |
+ 'heartbeat' |
+ 'circle-8' |
+ 'clouds-moon' |
+ 'clock-ten-thirty' |
+ 'people-carry-box' |
+ 'people-carry' |
+ 'folder-user' |
+ 'trash-can-xmark' |
+ 'temperature-high' |
+ 'microchip' |
+ 'left-long-to-line' |
+ 'crown' |
+ 'weight-hanging' |
+ 'xmarks-lines' |
+ 'file-prescription' |
+ 'calendar-range' |
+ 'flower-daffodil' |
+ 'hand-back-point-up' |
+ 'weight-scale' |
+ 'weight' |
+ 'star-exclamation' |
+ 'books' |
+ 'user-group' |
+ 'user-friends' |
+ 'arrow-up-a-z' |
+ 'sort-alpha-up' |
+ 'layer-plus' |
+ 'layer-group-plus' |
+ 'play-pause' |
+ 'block-question' |
+ 'snooze' |
+ 'zzz' |
+ 'scanner-image' |
+ 'tv-retro' |
+ 'square-t' |
+ 'farm' |
+ 'barn-silo' |
+ 'chess-knight' |
+ 'bars-sort' |
+ 'pallet-boxes' |
+ 'palette-boxes' |
+ 'pallet-alt' |
+ 'face-laugh-squint' |
+ 'laugh-squint' |
+ 'code-simple' |
+ 'bolt-slash' |
+ 'panel-fire' |
+ 'binary-circle-check' |
+ 'comment-minus' |
+ 'burrito' |
+ 'violin' |
+ 'objects-column' |
+ 'square-chevron-down' |
+ 'chevron-square-down' |
+ 'comment-plus' |
+ 'triangle-instrument' |
+ 'triangle-music' |
+ 'wheelchair' |
+ 'user-pilot-tie' |
+ 'piano-keyboard' |
+ 'bed-empty' |
+ 'circle-arrow-up' |
+ 'arrow-circle-up' |
+ 'toggle-on' |
+ 'rectangle-vertical' |
+ 'rectangle-portrait' |
+ 'person-walking' |
+ 'walking' |
+ 'l' |
+ 'signal-stream' |
+ 'down-to-bracket' |
+ 'circle-z' |
+ 'stars' |
+ 'fire' |
+ 'bed-pulse' |
+ 'procedures' |
+ 'house-day' |
+ 'shuttle-space' |
+ 'space-shuttle' |
+ 'shirt-long-sleeve' |
+ 'chart-pie-simple' |
+ 'chart-pie-alt' |
+ 'face-laugh' |
+ 'laugh' |
+ 'folder-open' |
+ 'album-collection-circle-user' |
+ 'candy' |
+ 'bowl-hot' |
+ 'soup' |
+ 'flatbread' |
+ 'heart-circle-plus' |
+ 'code-fork' |
+ 'city' |
+ 'signal-bars-weak' |
+ 'signal-alt1' |
+ 'microphone-lines' |
+ 'microphone-alt' |
+ 'clock-twelve' |
+ 'pepper-hot' |
+ 'citrus-slice' |
+ 'sheep' |
+ 'unlock' |
+ 'colon-sign' |
+ 'headset' |
+ 'badger-honey' |
+ 'h4' |
+ 'store-slash' |
+ 'road-circle-xmark' |
+ 'signal-slash' |
+ 'user-minus' |
+ 'mars-stroke-up' |
+ 'mars-stroke-v' |
+ 'champagne-glasses' |
+ 'glass-cheers' |
+ 'taco' |
+ 'hexagon-plus' |
+ 'plus-hexagon' |
+ 'clipboard' |
+ 'house-circle-exclamation' |
+ 'file-arrow-up' |
+ 'file-upload' |
+ 'wifi' |
+ 'wifi3' |
+ 'wifi-strong' |
+ 'messages' |
+ 'comments-alt' |
+ 'bath' |
+ 'bathtub' |
+ 'umbrella-simple' |
+ 'umbrella-alt' |
+ 'rectangle-history-circle-plus' |
+ 'underline' |
+ 'prescription-bottle-pill' |
+ 'user-pen' |
+ 'user-edit' |
+ 'binary-slash' |
+ 'square-o' |
+ 'signature' |
+ 'stroopwafel' |
+ 'bold' |
+ 'anchor-lock' |
+ 'building-ngo' |
+ 'transporter-3' |
+ 'engine-warning' |
+ 'engine-exclamation' |
+ 'circle-down-right' |
+ 'square-k' |
+ 'manat-sign' |
+ 'money-check-pen' |
+ 'money-check-edit' |
+ 'not-equal' |
+ 'border-top-left' |
+ 'border-style' |
+ 'map-location-dot' |
+ 'map-marked-alt' |
+ 'tilde' |
+ 'jedi' |
+ 'square-poll-vertical' |
+ 'poll' |
+ 'arrow-down-square-triangle' |
+ 'sort-shapes-down-alt' |
+ 'mug-hot' |
+ 'dog-leashed' |
+ 'car-battery' |
+ 'battery-car' |
+ 'face-downcast-sweat' |
+ 'mailbox-flag-up' |
+ 'memo-circle-info' |
+ 'gift' |
+ 'dice-two' |
+ 'volume' |
+ 'volume-medium' |
+ 'transporter-5' |
+ 'gauge-circle-bolt' |
+ 'coin-front' |
+ 'file-slash' |
+ 'message-arrow-up-right' |
+ 'treasure-chest' |
+ 'chess-queen' |
+ 'paintbrush-fine' |
+ 'paint-brush-alt' |
+ 'paint-brush-fine' |
+ 'paintbrush-alt' |
+ 'glasses' |
+ 'hood-cloak' |
+ 'square-quote' |
+ 'up-left' |
+ 'bring-front' |
+ 'chess-board' |
+ 'burger-cheese' |
+ 'cheeseburger' |
+ 'building-circle-check' |
+ 'repeat-1' |
+ 'arrow-down-to-line' |
+ 'arrow-to-bottom' |
+ 'grid-5' |
+ 'right-long-to-line' |
+ 'person-chalkboard' |
+ 'mars-stroke-right' |
+ 'mars-stroke-h' |
+ 'hand-back-fist' |
+ 'hand-rock' |
+ 'grid-round-5' |
+ 'tally' |
+ 'tally5' |
+ 'square-caret-up' |
+ 'caret-square-up' |
+ 'cloud-showers-water' |
+ 'chart-bar' |
+ 'bar-chart' |
+ 'hands-bubbles' |
+ 'hands-wash' |
+ 'less-than-equal' |
+ 'train' |
+ 'up-from-dotted-line' |
+ 'eye-low-vision' |
+ 'low-vision' |
+ 'traffic-light-go' |
+ 'face-exhaling' |
+ 'sensor-fire' |
+ 'user-unlock' |
+ 'hexagon-divide' |
+ '00' |
+ 'crow' |
+ 'cassette-betamax' |
+ 'betamax' |
+ 'sailboat' |
+ 'window-restore' |
+ 'nfc-magnifying-glass' |
+ 'file-binary' |
+ 'circle-v' |
+ 'square-plus' |
+ 'plus-square' |
+ 'bowl-scoops' |
+ 'mistletoe' |
+ 'custard' |
+ 'lacrosse-stick' |
+ 'hockey-mask' |
+ 'sunrise' |
+ 'panel-ews' |
+ 'torii-gate' |
+ 'cloud-exclamation' |
+ 'message-lines' |
+ 'comment-alt-lines' |
+ 'frog' |
+ 'bucket' |
+ 'floppy-disk-pen' |
+ 'image' |
+ 'window-frame' |
+ 'microphone' |
+ 'cow' |
+ 'file-zip' |
+ 'square-ring' |
+ 'down-from-line' |
+ 'arrow-alt-from-top' |
+ 'caret-up' |
+ 'shield-xmark' |
+ 'shield-times' |
+ 'screwdriver' |
+ 'circle-sort-down' |
+ 'sort-circle-down' |
+ 'folder-closed' |
+ 'house-tsunami' |
+ 'square-nfi' |
+ 'forklift' |
+ 'arrow-up-from-ground-water' |
+ 'bracket-square-right' |
+ 'martini-glass' |
+ 'glass-martini-alt' |
+ 'rotate-left' |
+ 'rotate-back' |
+ 'rotate-backward' |
+ 'undo-alt' |
+ 'table-columns' |
+ 'columns' |
+ 'square-a' |
+ 'tick' |
+ 'lemon' |
+ 'head-side-mask' |
+ 'handshake' |
+ 'gem' |
+ 'dolly' |
+ 'dolly-box' |
+ 'smoking' |
+ 'minimize' |
+ 'compress-arrows-alt' |
+ 'refrigerator' |
+ 'monument' |
+ 'octagon-xmark' |
+ 'times-octagon' |
+ 'xmark-octagon' |
+ 'align-slash' |
+ 'snowplow' |
+ 'angles-right' |
+ 'angle-double-right' |
+ 'truck-ramp-couch' |
+ 'truck-couch' |
+ 'cannabis' |
+ 'circle-play' |
+ 'play-circle' |
+ 'arrow-up-right-and-arrow-down-left-from-center' |
+ 'tablets' |
+ '360-degrees' |
+ 'ethernet' |
+ 'euro-sign' |
+ 'eur' |
+ 'euro' |
+ 'chair' |
+ 'circle-check' |
+ 'check-circle' |
+ 'square-dashed-circle-plus' |
+ 'money-simple-from-bracket' |
+ 'bat' |
+ 'circle-stop' |
+ 'stop-circle' |
+ 'head-side-headphones' |
+ 'phone-rotary' |
+ 'compass-drafting' |
+ 'drafting-compass' |
+ 'plate-wheat' |
+ 'calendar-circle-minus' |
+ 'chopsticks' |
+ 'car-wrench' |
+ 'car-mechanic' |
+ 'icicles' |
+ 'person-shelter' |
+ 'neuter' |
+ 'id-badge' |
+ 'kazoo' |
+ 'marker' |
+ 'bin-bottles' |
+ 'face-laugh-beam' |
+ 'laugh-beam' |
+ 'square-arrow-down-left' |
+ 'battery-bolt' |
+ 'tree-large' |
+ 'helicopter-symbol' |
+ 'aperture' |
+ 'universal-access' |
+ 'gear-complex' |
+ 'file-magnifying-glass' |
+ 'file-search' |
+ 'up-right' |
+ 'circle-chevron-up' |
+ 'chevron-circle-up' |
+ 'user-police' |
+ 'lari-sign' |
+ 'volcano' |
+ 'teddy-bear' |
+ 'stocking' |
+ 'person-walking-dashed-line-arrow-right' |
+ 'image-slash' |
+ 'mask-snorkel' |
+ 'smoke' |
+ 'sterling-sign' |
+ 'gbp' |
+ 'pound-sign' |
+ 'battery-exclamation' |
+ 'viruses' |
+ 'square-person-confined' |
+ 'user-tie' |
+ 'arrow-down-long' |
+ 'long-arrow-down' |
+ 'tent-arrow-down-to-line' |
+ 'certificate' |
+ 'crystal-ball' |
+ 'reply-all' |
+ 'mail-reply-all' |
+ 'suitcase' |
+ 'person-skating' |
+ 'skating' |
+ 'star-shooting' |
+ 'binary-lock' |
+ 'filter-circle-dollar' |
+ 'funnel-dollar' |
+ 'camera-retro' |
+ 'circle-arrow-down' |
+ 'arrow-circle-down' |
+ 'comment-pen' |
+ 'comment-edit' |
+ 'file-import' |
+ 'arrow-right-to-file' |
+ 'banjo' |
+ 'square-arrow-up-right' |
+ 'external-link-square' |
+ 'light-emergency-on' |
+ 'kerning' |
+ 'box-open' |
+ 'square-f' |
+ 'scroll' |
+ 'spa' |
+ 'arrow-left-from-line' |
+ 'arrow-from-right' |
+ 'strawberry' |
+ 'location-pin-lock' |
+ 'pause' |
+ 'clock-eight-thirty' |
+ 'plane-engines' |
+ 'plane-alt' |
+ 'hill-avalanche' |
+ 'temperature-empty' |
+ 'temperature0' |
+ 'thermometer0' |
+ 'thermometer-empty' |
+ 'bomb' |
+ 'gauge-low' |
+ 'tachometer-alt-slow' |
+ 'registered' |
+ 'trash-can-plus' |
+ 'address-card' |
+ 'contact-card' |
+ 'vcard' |
+ 'scale-unbalanced-flip' |
+ 'balance-scale-right' |
+ 'globe-snow' |
+ 'subscript' |
+ 'diamond-turn-right' |
+ 'directions' |
+ 'integral' |
+ 'burst' |
+ 'house-laptop' |
+ 'laptop-house' |
+ 'face-tired' |
+ 'tired' |
+ 'money-bills' |
+ 'blinds-raised' |
+ 'smog' |
+ 'ufo-beam' |
+ 'circle-caret-up' |
+ 'caret-circle-up' |
+ 'user-vneck-hair-long' |
+ 'square-a-lock' |
+ 'crutch' |
+ 'gas-pump-slash' |
+ 'font-awesome' |
+ 'font-awesome-flag' |
+ 'font-awesome-logo-full' |
+ 'cloud-arrow-up' |
+ 'cloud-upload' |
+ 'cloud-upload-alt' |
+ 'palette' |
+ 'transporter-4' |
+ 'chart-mixed-up-circle-currency' |
+ 'objects-align-right' |
+ 'arrows-turn-right' |
+ 'vest' |
+ 'pig' |
+ 'inbox-full' |
+ 'circle-envelope' |
+ 'envelope-circle' |
+ 'triangle-person-digging' |
+ 'construction' |
+ 'ferry' |
+ 'bullseye-arrow' |
+ 'arrows-down-to-people' |
+ 'seedling' |
+ 'sprout' |
+ 'clock-seven' |
+ 'left-right' |
+ 'arrows-alt-h' |
+ 'boxes-packing' |
+ 'circle-arrow-left' |
+ 'arrow-circle-left' |
+ 'flashlight' |
+ 'group-arrows-rotate' |
+ 'bowl-food' |
+ 'square-9' |
+ 'candy-cane' |
+ 'arrow-down-wide-short' |
+ 'sort-amount-asc' |
+ 'sort-amount-down' |
+ 'square-dollar' |
+ 'dollar-square' |
+ 'usd-square' |
+ 'phone-arrow-right' |
+ 'hand-holding-seedling' |
+ 'message-check' |
+ 'comment-alt-check' |
+ 'cloud-bolt' |
+ 'thunderstorm' |
+ 'chart-line-up-down' |
+ 'text-slash' |
+ 'remove-format' |
+ 'watch' |
+ 'circle-down-left' |
+ 'text' |
+ 'projector' |
+ 'face-smile-wink' |
+ 'smile-wink' |
+ 'tombstone-blank' |
+ 'tombstone-alt' |
+ 'chess-king-piece' |
+ 'chess-king-alt' |
+ 'circle-6' |
+ 'left' |
+ 'arrow-alt-left' |
+ 'file-word' |
+ 'file-powerpoint' |
+ 'square-down' |
+ 'arrow-alt-square-down' |
+ 'objects-align-center-vertical' |
+ 'arrows-left-right' |
+ 'arrows-h' |
+ 'house-lock' |
+ 'cloud-arrow-down' |
+ 'cloud-download' |
+ 'cloud-download-alt' |
+ 'wreath' |
+ 'children' |
+ 'meter-droplet' |
+ 'chalkboard' |
+ 'blackboard' |
+ 'user-large-slash' |
+ 'user-alt-slash' |
+ 'signal-strong' |
+ 'signal4' |
+ 'lollipop' |
+ 'lollypop' |
+ 'list-tree' |
+ 'envelope-open' |
+ 'draw-circle' |
+ 'cat-space' |
+ 'handshake-simple-slash' |
+ 'handshake-alt-slash' |
+ 'rabbit-running' |
+ 'rabbit-fast' |
+ 'memo-pad' |
+ 'mattress-pillow' |
+ 'alarm-plus' |
+ 'alicorn' |
+ 'comment-question' |
+ 'gingerbread-man' |
+ 'guarani-sign' |
+ 'burger-fries' |
+ 'mug-tea' |
+ 'border-top' |
+ 'arrows-rotate' |
+ 'refresh' |
+ 'sync' |
+ 'circle-book-open' |
+ 'book-circle' |
+ 'arrows-to-dotted-line' |
+ 'fire-extinguisher' |
+ 'garage-open' |
+ 'shelves-empty' |
+ 'cruzeiro-sign' |
+ 'watch-apple' |
+ 'watch-calculator' |
+ 'list-dropdown' |
+ 'cabinet-filing' |
+ 'burger-soda' |
+ 'square-arrow-up' |
+ 'arrow-square-up' |
+ 'greater-than-equal' |
+ 'pallet-box' |
+ 'face-confounded' |
+ 'shield-halved' |
+ 'shield-alt' |
+ 'truck-plow' |
+ 'book-atlas' |
+ 'atlas' |
+ 'virus' |
+ 'grid-round-2' |
+ 'comment-middle-top' |
+ 'envelope-circle-check' |
+ 'layer-group' |
+ 'restroom-simple' |
+ 'arrows-to-dot' |
+ 'border-outer' |
+ 'hashtag-lock' |
+ 'clock-two-thirty' |
+ 'archway' |
+ 'heart-circle-check' |
+ 'house-chimney-crack' |
+ 'house-damage' |
+ 'file-zipper' |
+ 'file-archive' |
+ 'heart-half' |
+ 'comment-check' |
+ 'square' |
+ 'memo' |
+ 'martini-glass-empty' |
+ 'glass-martini' |
+ 'couch' |
+ 'cedi-sign' |
+ 'italic' |
+ 'glass-citrus' |
+ 'calendar-lines-pen' |
+ 'church' |
+ 'person-snowmobiling' |
+ 'snowmobile' |
+ 'face-hushed' |
+ 'comments-dollar' |
+ 'pickaxe' |
+ 'link-simple-slash' |
+ 'democrat' |
+ 'face-confused' |
+ 'pinball' |
+ 'z' |
+ 'person-skiing' |
+ 'skiing' |
+ 'deer' |
+ 'input-pipe' |
+ 'road-lock' |
+ 'a' |
+ 'bookmark-slash' |
+ 'temperature-arrow-down' |
+ 'temperature-down' |
+ 'mace' |
+ 'feather-pointed' |
+ 'feather-alt' |
+ 'sausage' |
+ 'trash-can-clock' |
+ 'p' |
+ 'broom-wide' |
+ 'snowflake' |
+ 'stomach' |
+ 'newspaper' |
+ 'rectangle-ad' |
+ 'ad' |
+ 'guitar-electric' |
+ 'arrow-turn-down-right' |
+ 'moon-cloud' |
+ 'bread-slice-butter' |
+ 'circle-arrow-right' |
+ 'arrow-circle-right' |
+ 'user-group-crown' |
+ 'users-crown' |
+ 'circle-i' |
+ 'toilet-paper-check' |
+ 'filter-circle-xmark' |
+ 'locust' |
+ 'sort' |
+ 'unsorted' |
+ 'list-ol' |
+ 'list12' |
+ 'list-numeric' |
+ 'chart-waterfall' |
+ 'sparkle' |
+ 'face-party' |
+ 'kidneys' |
+ 'wifi-exclamation' |
+ 'chart-network' |
+ 'person-dress-burst' |
+ 'dice-d4' |
+ 'money-check-dollar' |
+ 'money-check-alt' |
+ 'vector-square' |
+ 'bread-slice' |
+ 'language' |
+ 'wheat-awn-slash' |
+ 'face-kiss-wink-heart' |
+ 'kiss-wink-heart' |
+ 'dagger' |
+ 'podium' |
+ 'memo-circle-check' |
+ 'route-highway' |
+ 'down-to-line' |
+ 'arrow-alt-to-bottom' |
+ 'filter' |
+ 'square-g' |
+ 'circle-phone' |
+ 'phone-circle' |
+ 'clipboard-prescription' |
+ 'user-nurse-hair' |
+ 'question' |
+ 'file-signature' |
+ 'toggle-large-on' |
+ 'up-down-left-right' |
+ 'arrows-alt' |
+ 'dryer-heat' |
+ 'dryer-alt' |
+ 'house-chimney-user' |
+ 'hand-holding-heart' |
+ 'arrow-up-small-big' |
+ 'sort-size-up-alt' |
+ 'train-track' |
+ 'puzzle-piece' |
+ 'money-check' |
+ 'star-half-stroke' |
+ 'star-half-alt' |
+ 'file-exclamation' |
+ 'code' |
+ 'whiskey-glass' |
+ 'glass-whiskey' |
+ 'moon-stars' |
+ 'building-circle-exclamation' |
+ 'clothes-hanger' |
+ 'mobile-notch' |
+ 'mobile-iphone' |
+ 'magnifying-glass-chart' |
+ 'arrow-up-right-from-square' |
+ 'external-link' |
+ 'cubes-stacked' |
+ 'images-user' |
+ 'won-sign' |
+ 'krw' |
+ 'won' |
+ 'image-polaroid-user' |
+ 'virus-covid' |
+ 'square-ellipsis' |
+ 'pie' |
+ 'chess-knight-piece' |
+ 'chess-knight-alt' |
+ 'austral-sign' |
+ 'cloud-plus' |
+ 'f' |
+ 'leaf' |
+ 'bed-bunk' |
+ 'road' |
+ 'taxi' |
+ 'cab' |
+ 'person-circle-plus' |
+ 'chart-pie' |
+ 'pie-chart' |
+ 'bolt-lightning' |
+ 'clock-eight' |
+ 'sack-xmark' |
+ 'file-excel' |
+ 'file-contract' |
+ 'fish-fins' |
+ 'circle-q' |
+ 'building-flag' |
+ 'face-grin-beam' |
+ 'grin-beam' |
+ 'object-ungroup' |
+ 'face-disguise' |
+ 'circle-arrow-down-right' |
+ 'alien-8bit' |
+ 'alien-monster' |
+ 'hand-point-ribbon' |
+ 'poop' |
+ 'object-exclude' |
+ 'telescope' |
+ 'location-pin' |
+ 'map-marker' |
+ 'square-list' |
+ 'kaaba' |
+ 'toilet-paper' |
+ 'helmet-safety' |
+ 'hard-hat' |
+ 'hat-hard' |
+ 'comment-code' |
+ 'sim-cards' |
+ 'starship' |
+ 'eject' |
+ 'circle-right' |
+ 'arrow-alt-circle-right' |
+ 'plane-circle-check' |
+ 'seal' |
+ 'user-cowboy' |
+ 'hexagon-vertical-nft' |
+ 'face-rolling-eyes' |
+ 'meh-rolling-eyes' |
+ 'bread-loaf' |
+ 'rings-wedding' |
+ 'object-group' |
+ 'french-fries' |
+ 'chart-line' |
+ 'line-chart' |
+ 'calendar-arrow-down' |
+ 'calendar-download' |
+ 'send-back' |
+ 'mask-ventilator' |
+ 'signature-lock' |
+ 'arrow-right' |
+ 'signs-post' |
+ 'map-signs' |
+ 'octagon-plus' |
+ 'plus-octagon' |
+ 'cash-register' |
+ 'person-circle-question' |
+ 'melon-slice' |
+ 'space-station-moon' |
+ 'message-smile' |
+ 'comment-alt-smile' |
+ 'cup-straw' |
+ 'left-from-line' |
+ 'arrow-alt-from-right' |
+ 'h' |
+ 'basket-shopping-simple' |
+ 'shopping-basket-alt' |
+ 'hands-holding-heart' |
+ 'hands-heart' |
+ 'clock-nine' |
+ 'tarp' |
+ 'face-sleepy' |
+ 'hand-horns' |
+ 'screwdriver-wrench' |
+ 'tools' |
+ 'arrows-to-eye' |
+ 'circle-three-quarters' |
+ 'trophy-star' |
+ 'trophy-alt' |
+ 'plug-circle-bolt' |
+ 'face-thermometer' |
+ 'grid-round-4' |
+ 'shirt-running' |
+ 'book-circle-arrow-up' |
+ 'face-nauseated' |
+ 'heart' |
+ 'file-chart-pie' |
+ 'mars-and-venus' |
+ 'house-user' |
+ 'home-user' |
+ 'circle-arrow-down-left' |
+ 'dumpster-fire' |
+ 'hexagon-minus' |
+ 'minus-hexagon' |
+ 'left-to-line' |
+ 'arrow-alt-to-left' |
+ 'house-crack' |
+ 'paw-simple' |
+ 'paw-alt' |
+ 'arrow-left-long-to-line' |
+ 'brackets-round' |
+ 'parentheses' |
+ 'martini-glass-citrus' |
+ 'cocktail' |
+ 'user-shakespeare' |
+ 'arrow-right-to-arc' |
+ 'face-surprise' |
+ 'surprise' |
+ 'bottle-water' |
+ 'circle-pause' |
+ 'pause-circle' |
+ 'gauge-circle-plus' |
+ 'folders' |
+ 'angel' |
+ 'value-absolute' |
+ 'rabbit' |
+ 'toilet-paper-slash' |
+ 'circle-euro' |
+ 'apple-whole' |
+ 'apple-alt' |
+ 'kitchen-set' |
+ 'diamond-half' |
+ 'lock-keyhole' |
+ 'lock-alt' |
+ 'r' |
+ 'temperature-quarter' |
+ 'temperature1' |
+ 'thermometer1' |
+ 'thermometer-quarter' |
+ 'square-info' |
+ 'info-square' |
+ 'wifi-slash' |
+ 'toilet-paper-xmark' |
+ 'hands-holding-dollar' |
+ 'hands-usd' |
+ 'cube' |
+ 'arrow-down-triangle-square' |
+ 'sort-shapes-down' |
+ 'bitcoin-sign' |
+ 'shutters' |
+ 'shield-dog' |
+ 'solar-panel' |
+ 'lock-open' |
+ 'table-tree' |
+ 'house-chimney-heart' |
+ 'tally-3' |
+ 'elevator' |
+ 'money-bill-transfer' |
+ 'money-bill-trend-up' |
+ 'house-flood-water-circle-arrow-right' |
+ 'square-poll-horizontal' |
+ 'poll-h' |
+ 'circle' |
+ 'cart-circle-exclamation' |
+ 'sword' |
+ 'backward-fast' |
+ 'fast-backward' |
+ 'recycle' |
+ 'user-astronaut' |
+ 'interrobang' |
+ 'plane-slash' |
+ 'circle-dashed' |
+ 'trademark' |
+ 'basketball' |
+ 'basketball-ball' |
+ 'fork-knife' |
+ 'utensils-alt' |
+ 'satellite-dish' |
+ 'badge-check' |
+ 'circle-up' |
+ 'arrow-alt-circle-up' |
+ 'slider' |
+ 'mobile-screen-button' |
+ 'mobile-alt' |
+ 'clock-one-thirty' |
+ 'inbox-out' |
+ 'inbox-arrow-up' |
+ 'cloud-slash' |
+ 'volume-high' |
+ 'volume-up' |
+ 'users-rays' |
+ 'wallet' |
+ 'octagon-check' |
+ 'flatbread-stuffed' |
+ 'clipboard-check' |
+ 'cart-circle-plus' |
+ 'truck-clock' |
+ 'shipping-timed' |
+ 'pool-8-ball' |
+ 'file-audio' |
+ 'turn-down-left' |
+ 'lock-hashtag' |
+ 'chart-radar' |
+ 'staff' |
+ 'burger' |
+ 'hamburger' |
+ 'utility-pole' |
+ 'transporter-6' |
+ 'wrench' |
+ 'bugs' |
+ 'vector-polygon' |
+ 'diagram-nested' |
+ 'rupee-sign' |
+ 'rupee' |
+ 'file-image' |
+ 'circle-question' |
+ 'question-circle' |
+ 'image-user' |
+ 'buoy' |
+ 'plane-departure' |
+ 'handshake-slash' |
+ 'book-bookmark' |
+ 'border-center-h' |
+ 'can-food' |
+ 'typewriter' |
+ 'arrow-right-from-arc' |
+ 'circle-k' |
+ 'face-hand-over-mouth' |
+ 'popcorn' |
+ 'house-water' |
+ 'house-flood' |
+ 'object-subtract' |
+ 'code-branch' |
+ 'warehouse-full' |
+ 'warehouse-alt' |
+ 'hat-cowboy' |
+ 'bridge' |
+ 'phone-flip' |
+ 'phone-alt' |
+ 'arrow-down-from-dotted-line' |
+ 'file-doc' |
+ 'square-quarters' |
+ 'truck-front' |
+ 'cat' |
+ 'trash-xmark' |
+ 'circle-caret-left' |
+ 'caret-circle-left' |
+ 'files' |
+ 'anchor-circle-exclamation' |
+ 'face-clouds' |
+ 'user-crown' |
+ 'truck-field' |
+ 'route' |
+ 'cart-circle-check' |
+ 'clipboard-question' |
+ 'panorama' |
+ 'comment-medical' |
+ 'teeth-open' |
+ 'user-tie-hair-long' |
+ 'file-circle-minus' |
+ 'head-side-medical' |
+ 'tags' |
+ 'wine-glass' |
+ 'forward-fast' |
+ 'fast-forward' |
+ 'face-meh-blank' |
+ 'meh-blank' |
+ 'user-robot' |
+ 'square-parking' |
+ 'parking' |
+ 'card-diamond' |
+ 'face-zipper' |
+ 'face-raised-eyebrow' |
+ 'house-signal' |
+ 'square-chevron-up' |
+ 'chevron-square-up' |
+ 'nfc-symbol' |
+ 'bars-progress' |
+ 'tasks-alt' |
+ 'faucet-drip' |
+ 'arrows-to-line' |
+ 'dolphin' |
+ 'arrow-up-right' |
+ 'circle-r' |
+ 'cart-flatbed' |
+ 'dolly-flatbed' |
+ 'ban-smoking' |
+ 'smoking-ban' |
+ 'circle-sort-up' |
+ 'sort-circle-up' |
+ 'terminal' |
+ 'mobile-button' |
+ 'house-medical-flag' |
+ 'basket-shopping' |
+ 'shopping-basket' |
+ 'tape' |
+ 'chestnut' |
+ 'bus-simple' |
+ 'bus-alt' |
+ 'eye' |
+ 'face-sad-cry' |
+ 'sad-cry' |
+ 'heat' |
+ 'ticket-airline' |
+ 'boot-heeled' |
+ 'arrows-minimize' |
+ 'compress-arrows' |
+ 'audio-description' |
+ 'person-military-to-person' |
+ 'file-shield' |
+ 'hexagon' |
+ 'manhole' |
+ 'user-slash' |
+ 'pen' |
+ 'tower-observation' |
+ 'floppy-disks' |
+ 'toilet-paper-blank-under' |
+ 'toilet-paper-reverse-alt' |
+ 'file-code' |
+ 'signal' |
+ 'signal5' |
+ 'signal-perfect' |
+ 'pump' |
+ 'bus' |
+ 'heart-circle-xmark' |
+ 'arrow-up-left-from-circle' |
+ 'house-chimney' |
+ 'home-lg' |
+ 'window-maximize' |
+ 'dryer' |
+ 'face-frown' |
+ 'frown' |
+ 'chess-bishop-piece' |
+ 'chess-bishop-alt' |
+ 'shirt-tank-top' |
+ 'diploma' |
+ 'scroll-ribbon' |
+ 'screencast' |
+ 'walker' |
+ 'prescription' |
+ 'shop' |
+ 'store-alt' |
+ 'floppy-disk' |
+ 'save' |
+ 'vihara' |
+ 'face-kiss-closed-eyes' |
+ 'scale-unbalanced' |
+ 'balance-scale-left' |
+ 'file-user' |
+ 'user-police-tie' |
+ 'face-tongue-money' |
+ 'tennis-ball' |
+ 'square-l' |
+ 'sort-up' |
+ 'sort-asc' |
+ 'calendar-arrow-up' |
+ 'calendar-upload' |
+ 'comment-dots' |
+ 'commenting' |
+ 'plant-wilt' |
+ 'scarf' |
+ 'album-circle-plus' |
+ 'user-nurse-hair-long' |
+ 'diamond' |
+ 'square-left' |
+ 'arrow-alt-square-left' |
+ 'face-grin-squint' |
+ 'grin-squint' |
+ 'circle-ellipsis-vertical' |
+ 'hand-holding-dollar' |
+ 'hand-holding-usd' |
+ 'grid-dividers' |
+ 'bacterium' |
+ 'hand-pointer' |
+ 'drum-steelpan' |
+ 'hand-scissors' |
+ 'hands-praying' |
+ 'praying-hands' |
+ 'face-pensive' |
+ 'user-music' |
+ 'arrow-rotate-right' |
+ 'arrow-right-rotate' |
+ 'arrow-rotate-forward' |
+ 'redo' |
+ 'messages-dollar' |
+ 'comments-alt-dollar' |
+ 'sensor-on' |
+ 'balloon' |
+ 'biohazard' |
+ 'chess-queen-piece' |
+ 'chess-queen-alt' |
+ 'location-crosshairs' |
+ 'location' |
+ 'mars-double' |
+ 'house-person-leave' |
+ 'house-leave' |
+ 'house-person-depart' |
+ 'ruler-triangle' |
+ 'card-club' |
+ 'child-dress' |
+ 'users-between-lines' |
+ 'lungs-virus' |
+ 'spinner-third' |
+ 'face-grin-tears' |
+ 'grin-tears' |
+ 'phone' |
+ 'computer-mouse-scrollwheel' |
+ 'mouse-alt' |
+ 'calendar-xmark' |
+ 'calendar-times' |
+ 'child-reaching' |
+ 'table-layout' |
+ 'narwhal' |
+ 'ramp-loading' |
+ 'calendar-circle-plus' |
+ 'toothbrush' |
+ 'border-inner' |
+ 'paw-claws' |
+ 'kiwi-fruit' |
+ 'traffic-light-slow' |
+ 'rectangle-code' |
+ 'head-side-virus' |
+ 'keyboard-brightness' |
+ 'books-medical' |
+ 'lightbulb-slash' |
+ 'house-blank' |
+ 'home-blank' |
+ 'square-5' |
+ 'square-heart' |
+ 'heart-square' |
+ 'puzzle' |
+ 'user-gear' |
+ 'user-cog' |
+ 'pipe-circle-check' |
+ 'arrow-up-1-9' |
+ 'sort-numeric-up' |
+ 'octagon-exclamation' |
+ 'dial-low' |
+ 'door-closed' |
+ 'laptop-mobile' |
+ 'phone-laptop' |
+ 'conveyor-belt-boxes' |
+ 'conveyor-belt-alt' |
+ 'shield-virus' |
+ 'starfighter-twin-ion-engine-advanced' |
+ 'starfighter-alt-advanced' |
+ 'dice-six' |
+ 'starfighter-twin-ion-engine' |
+ 'starfighter-alt' |
+ 'rocket-launch' |
+ 'mosquito-net' |
+ 'vent-damper' |
+ 'bridge-water' |
+ 'ban-bug' |
+ 'debug' |
+ 'person-booth' |
+ 'text-width' |
+ 'garage-car' |
+ 'square-kanban' |
+ 'hat-wizard' |
+ 'pen-fancy' |
+ 'coffee-pot' |
+ 'mouse-field' |
+ 'person-digging' |
+ 'digging' |
+ 'shower-down' |
+ 'shower-alt' |
+ 'box-circle-check' |
+ 'brightness' |
+ 'car-side-bolt' |
+ 'ornament' |
+ 'phone-arrow-down-left' |
+ 'phone-arrow-down' |
+ 'phone-incoming' |
+ 'cloud-word' |
+ 'hand-fingers-crossed' |
+ 'trash' |
+ 'gauge-simple' |
+ 'gauge-simple-med' |
+ 'tachometer-average' |
+ 'arrow-down-small-big' |
+ 'sort-size-down-alt' |
+ 'book-medical' |
+ 'face-melting' |
+ 'poo' |
+ 'pen-clip-slash' |
+ 'pen-alt-slash' |
+ 'quote-right' |
+ 'quote-right-alt' |
+ 'scroll-old' |
+ 'guitars' |
+ 'phone-xmark' |
+ 'hose' |
+ 'clock-six' |
+ 'shirt' |
+ 't-shirt' |
+ 'tshirt' |
+ 'billboard' |
+ 'square-r' |
+ 'cubes' |
+ 'envelope-open-dollar' |
+ 'divide' |
+ 'sun-cloud' |
+ 'lamp-floor' |
+ 'square-7' |
+ 'tenge-sign' |
+ 'tenge' |
+ 'headphones' |
+ 'hands-holding' |
+ 'campfire' |
+ 'circle-ampersand' |
+ 'snowflakes' |
+ 'hands-clapping' |
+ 'republican' |
+ 'leaf-maple' |
+ 'arrow-left' |
+ 'person-circle-xmark' |
+ 'ruler' |
+ 'cup-straw-swoosh' |
+ 'temperature-sun' |
+ 'temperature-hot' |
+ 'align-left' |
+ 'dice-d6' |
+ 'restroom' |
+ 'high-definition' |
+ 'rectangle-hd' |
+ 'j' |
+ 'galaxy' |
+ 'users-viewfinder' |
+ 'file-video' |
+ 'cherries' |
+ 'up-right-from-square' |
+ 'external-link-alt' |
+ 'circle-sort' |
+ 'sort-circle' |
+ 'table-cells' |
+ 'th' |
+ 'file-pdf' |
+ 'siren' |
+ 'arrow-up-to-dotted-line' |
+ 'image-landscape' |
+ 'landscape' |
+ 'tank-water' |
+ 'curling-stone' |
+ 'curling' |
+ 'gamepad-modern' |
+ 'gamepad-alt' |
+ 'messages-question' |
+ 'book-bible' |
+ 'bible' |
+ 'o' |
+ 'suitcase-medical' |
+ 'medkit' |
+ 'briefcase-arrow-right' |
+ 'expand-wide' |
+ 'clock-eleven-thirty' |
+ 'rv' |
+ 'user-secret' |
+ 'otter' |
+ 'dreidel' |
+ 'person-dress' |
+ 'female' |
+ 'comment-dollar' |
+ 'business-time' |
+ 'briefcase-clock' |
+ 'flower-tulip' |
+ 'people-pants-simple' |
+ 'cloud-drizzle' |
+ 'table-cells-large' |
+ 'th-large' |
+ 'book-tanakh' |
+ 'tanakh' |
+ 'solar-system' |
+ 'seal-question' |
+ 'phone-volume' |
+ 'volume-control-phone' |
+ 'disc-drive' |
+ 'hat-cowboy-side' |
+ 'table-rows' |
+ 'rows' |
+ 'location-exclamation' |
+ 'map-marker-exclamation' |
+ 'face-fearful' |
+ 'clipboard-user' |
+ 'bus-school' |
+ 'film-slash' |
+ 'square-arrow-down-right' |
+ 'book-sparkles' |
+ 'book-spells' |
+ 'washing-machine' |
+ 'washer' |
+ 'child' |
+ 'lira-sign' |
+ 'user-visor' |
+ 'file-plus-minus' |
+ 'chess-clock-flip' |
+ 'chess-clock-alt' |
+ 'satellite' |
+ 'plane-lock' |
+ 'steering-wheel' |
+ 'tag' |
+ 'stretcher' |
+ 'book-section' |
+ 'book-law' |
+ 'inboxes' |
+ 'coffee-bean' |
+ 'circle-yen' |
+ 'brackets-curly' |
+ 'ellipsis-stroke-vertical' |
+ 'ellipsis-v-alt' |
+ 'comment' |
+ 'square-1' |
+ 'cake-candles' |
+ 'birthday-cake' |
+ 'cake' |
+ 'head-side' |
+ 'envelope' |
+ 'dolly-empty' |
+ 'face-tissue' |
+ 'angles-up' |
+ 'angle-double-up' |
+ 'bin-recycle' |
+ 'paperclip' |
+ 'chart-line-down' |
+ 'arrow-right-to-city' |
+ 'lock-a' |
+ 'ribbon' |
+ 'lungs' |
+ 'person-pinball' |
+ 'arrow-up-9-1' |
+ 'sort-numeric-up-alt' |
+ 'apple-core' |
+ 'circle-y' |
+ 'h6' |
+ 'litecoin-sign' |
+ 'circle-small' |
+ 'border-none' |
+ 'arrow-turn-down-left' |
+ 'circle-nodes' |
+ 'parachute-box' |
+ 'message-medical' |
+ 'comment-alt-medical' |
+ 'rugby-ball' |
+ 'comment-music' |
+ 'indent' |
+ 'tree-deciduous' |
+ 'tree-alt' |
+ 'puzzle-piece-simple' |
+ 'puzzle-piece-alt' |
+ 'truck-field-un' |
+ 'nfc-trash' |
+ 'hourglass' |
+ 'hourglass-empty' |
+ 'mountain' |
+ 'file-xmark' |
+ 'file-times' |
+ 'house-heart' |
+ 'home-heart' |
+ 'house-chimney-blank' |
+ 'meter-bolt' |
+ 'user-doctor' |
+ 'user-md' |
+ 'slash-back' |
+ 'circle-info' |
+ 'info-circle' |
+ 'fishing-rod' |
+ 'hammer-crash' |
+ 'message-heart' |
+ 'cloud-meatball' |
+ 'camera-polaroid' |
+ 'camera' |
+ 'camera-alt' |
+ 'square-virus' |
+ 'cart-arrow-up' |
+ 'meteor' |
+ 'car-on' |
+ 'sleigh' |
+ 'arrow-down-1-9' |
+ 'sort-numeric-asc' |
+ 'sort-numeric-down' |
+ 'buoy-mooring' |
+ 'square-4' |
+ 'hand-holding-droplet' |
+ 'hand-holding-water' |
+ 'tricycle-adult' |
+ 'waveform' |
+ 'water' |
+ 'star-sharp-half-stroke' |
+ 'star-sharp-half-alt' |
+ 'nfc-signal' |
+ 'plane-prop' |
+ 'calendar-check' |
+ 'clock-desk' |
+ 'calendar-clock' |
+ 'calendar-time' |
+ 'braille' |
+ 'prescription-bottle-medical' |
+ 'prescription-bottle-alt' |
+ 'plate-utensils' |
+ 'family-pants' |
+ 'hose-reel' |
+ 'house-window' |
+ 'landmark' |
+ 'truck' |
+ 'crosshairs' |
+ 'cloud-rainbow' |
+ 'person-cane' |
+ 'alien' |
+ 'tent' |
+ 'laptop-binary' |
+ 'vest-patches' |
+ 'people-dress-simple' |
+ 'check-double' |
+ 'arrow-down-a-z' |
+ 'sort-alpha-asc' |
+ 'sort-alpha-down' |
+ 'bowling-ball-pin' |
+ 'bell-school-slash' |
+ 'plus-large' |
+ 'money-bill-wheat' |
+ 'camera-viewfinder' |
+ 'screenshot' |
+ 'message-music' |
+ 'comment-alt-music' |
+ 'car-building' |
+ 'border-bottom-right' |
+ 'border-style-alt' |
+ 'octagon' |
+ 'comment-arrow-up-right' |
+ 'octagon-divide' |
+ 'cookie' |
+ 'arrow-rotate-left' |
+ 'arrow-left-rotate' |
+ 'arrow-rotate-back' |
+ 'arrow-rotate-backward' |
+ 'undo' |
+ 'tv-music' |
+ 'hard-drive' |
+ 'hdd' |
+ 'reel' |
+ 'face-grin-squint-tears' |
+ 'grin-squint-tears' |
+ 'dumbbell' |
+ 'rectangle-list' |
+ 'list-alt' |
+ 'tarp-droplet' |
+ 'alarm-exclamation' |
+ 'house-medical-circle-check' |
+ 'traffic-cone' |
+ 'grate' |
+ 'arrow-down-right' |
+ 'person-skiing-nordic' |
+ 'skiing-nordic' |
+ 'calendar-plus' |
+ 'person-from-portal' |
+ 'portal-exit' |
+ 'plane-arrival' |
+ 'cowbell-circle-plus' |
+ 'cowbell-more' |
+ 'circle-left' |
+ 'arrow-alt-circle-left' |
+ 'distribute-spacing-vertical' |
+ 'signal-bars-fair' |
+ 'signal-alt2' |
+ 'sportsball' |
+ 'game-console-handheld-crank' |
+ 'train-subway' |
+ 'subway' |
+ 'chart-gantt' |
+ 'face-smile-upside-down' |
+ 'ball-pile' |
+ 'badge-dollar' |
+ 'money-bills-simple' |
+ 'money-bills-alt' |
+ 'list-timeline' |
+ 'indian-rupee-sign' |
+ 'indian-rupee' |
+ 'inr' |
+ 'crop-simple' |
+ 'crop-alt' |
+ 'money-bill-1' |
+ 'money-bill-alt' |
+ 'left-long' |
+ 'long-arrow-alt-left' |
+ 'keyboard-down' |
+ 'circle-up-right' |
+ 'cloud-bolt-moon' |
+ 'thunderstorm-moon' |
+ 'dna' |
+ 'virus-slash' |
+ 'bracket-round-right' |
+ 'circle-sterling' |
+ 'circle-5' |
+ 'minus' |
+ 'subtract' |
+ 'fire-flame' |
+ 'flame' |
+ 'right-to-line' |
+ 'arrow-alt-to-right' |
+ 'gif' |
+ 'chess' |
+ 'trash-slash' |
+ 'arrow-left-long' |
+ 'long-arrow-left' |
+ 'plug-circle-check' |
+ 'font-case' |
+ 'street-view' |
+ 'arrow-down-left' |
+ 'franc-sign' |
+ 'flask-round-poison' |
+ 'flask-poison' |
+ 'volume-off' |
+ 'book-circle-arrow-right' |
+ 'chart-user' |
+ 'user-chart' |
+ 'hands-asl-interpreting' |
+ 'american-sign-language-interpreting' |
+ 'asl-interpreting' |
+ 'hands-american-sign-language-interpreting' |
+ 'presentation-screen' |
+ 'presentation' |
+ 'circle-bolt' |
+ 'face-smile-halo' |
+ 'cart-circle-arrow-down' |
+ 'house-person-return' |
+ 'house-person-arrive' |
+ 'house-return' |
+ 'message-xmark' |
+ 'comment-alt-times' |
+ 'message-times' |
+ 'file-certificate' |
+ 'file-award' |
+ 'user-doctor-hair-long' |
+ 'camera-security' |
+ 'camera-home' |
+ 'gear' |
+ 'cog' |
+ 'droplet-slash' |
+ 'tint-slash' |
+ 'book-heart' |
+ 'mosque' |
+ 'duck' |
+ 'mosquito' |
+ 'star-of-david' |
+ 'flag-swallowtail' |
+ 'flag-alt' |
+ 'person-military-rifle' |
+ 'car-garage' |
+ 'cart-shopping' |
+ 'shopping-cart' |
+ 'book-font' |
+ 'shield-plus' |
+ 'vials' |
+ 'eye-dropper-full' |
+ 'distribute-spacing-horizontal' |
+ 'tablet-rugged' |
+ 'temperature-snow' |
+ 'temperature-frigid' |
+ 'moped' |
+ 'face-smile-plus' |
+ 'smile-plus' |
+ 'radio-tuner' |
+ 'radio-alt' |
+ 'face-swear' |
+ 'water-arrow-down' |
+ 'water-lower' |
+ 'scanner-touchscreen' |
+ 'circle-7' |
+ 'plug-circle-plus' |
+ 'person-ski-jumping' |
+ 'ski-jump' |
+ 'place-of-worship' |
+ 'water-arrow-up' |
+ 'water-rise' |
+ 'waveform-lines' |
+ 'waveform-path' |
+ 'split' |
+ 'film-canister' |
+ 'film-cannister' |
+ 'folder-xmark' |
+ 'folder-times' |
+ 'toilet-paper-blank' |
+ 'toilet-paper-alt' |
+ 'tablet-screen' |
+ 'tablet-android-alt' |
+ 'hexagon-vertical-nft-slanted' |
+ 'folder-music' |
+ 'display-medical' |
+ 'desktop-medical' |
+ 'share-all' |
+ 'peapod' |
+ 'chess-clock' |
+ 'axe' |
+ 'square-d' |
+ 'grip-vertical' |
+ 'mobile-signal-out' |
+ 'arrow-turn-up' |
+ 'level-up' |
+ 'u' |
+ 'arrow-up-from-dotted-line' |
+ 'square-root-variable' |
+ 'square-root-alt' |
+ 'light-switch-on' |
+ 'arrow-down-arrow-up' |
+ 'sort-alt' |
+ 'raindrops' |
+ 'dash' |
+ 'minus-large' |
+ 'clock' |
+ 'clock-four' |
+ 'input-numeric' |
+ 'truck-tow' |
+ 'backward-step' |
+ 'step-backward' |
+ 'pallet' |
+ 'car-bolt' |
+ 'arrows-maximize' |
+ 'expand-arrows' |
+ 'faucet' |
+ 'cloud-sleet' |
+ 'lamp-street' |
+ 'list-radio' |
+ 'pen-nib-slash' |
+ 'baseball-bat-ball' |
+ 'square-up-left' |
+ 'overline' |
+ 's' |
+ 'timeline' |
+ 'keyboard' |
+ 'arrows-from-dotted-line' |
+ 'usb-drive' |
+ 'ballot' |
+ 'caret-down' |
+ 'location-dot-slash' |
+ 'map-marker-alt-slash' |
+ 'cards' |
+ 'house-chimney-medical' |
+ 'clinic-medical' |
+ 'boxing-glove' |
+ 'glove-boxing' |
+ 'temperature-three-quarters' |
+ 'temperature3' |
+ 'thermometer3' |
+ 'thermometer-three-quarters' |
+ 'bell-school' |
+ 'mobile-screen' |
+ 'mobile-android-alt' |
+ 'plane-up' |
+ 'folder-heart' |
+ 'circle-location-arrow' |
+ 'location-circle' |
+ 'face-head-bandage' |
+ 'sushi-roll' |
+ 'maki-roll' |
+ 'makizushi' |
+ 'car-bump' |
+ 'piggy-bank' |
+ 'racquet' |
+ 'car-mirrors' |
+ 'industry-windows' |
+ 'industry-alt' |
+ 'bolt-auto' |
+ 'battery-half' |
+ 'battery3' |
+ 'flux-capacitor' |
+ 'mountain-city' |
+ 'coins' |
+ 'honey-pot' |
+ 'olive' |
+ 'khanda' |
+ 'filter-list' |
+ 'outlet' |
+ 'sliders' |
+ 'sliders-h' |
+ 'cauldron' |
+ 'people' |
+ 'folder-tree' |
+ 'network-wired' |
+ 'croissant' |
+ 'map-pin' |
+ 'hamsa' |
+ 'cent-sign' |
+ 'swords-laser' |
+ 'flask' |
+ 'person-pregnant' |
+ 'square-u' |
+ 'wand-sparkles' |
+ 'router' |
+ 'ellipsis-vertical' |
+ 'ellipsis-v' |
+ 'sword-laser-alt' |
+ 'ticket' |
+ 'power-off' |
+ 'coin' |
+ 'laptop-slash' |
+ 'right-long' |
+ 'long-arrow-alt-right' |
+ 'circle-b' |
+ 'person-dress-simple' |
+ 'pipe-collar' |
+ 'lights-holiday' |
+ 'citrus' |
+ 'flag-usa' |
+ 'laptop-file' |
+ 'tty' |
+ 'teletype' |
+ 'chart-tree-map' |
+ 'diagram-next' |
+ 'person-rifle' |
+ 'clock-five-thirty' |
+ 'pipe-valve' |
+ 'arrow-up-from-arc' |
+ 'face-spiral-eyes' |
+ 'compress-wide' |
+ 'circle-phone-hangup' |
+ 'phone-circle-down' |
+ 'gear-complex-code' |
+ 'house-medical-circle-exclamation' |
+ 'badminton' |
+ 'closed-captioning' |
+ 'person-hiking' |
+ 'hiking' |
+ 'right-from-line' |
+ 'arrow-alt-from-left' |
+ 'venus-double' |
+ 'images' |
+ 'calculator' |
+ 'shuttlecock' |
+ 'user-hair' |
+ 'eye-evil' |
+ 'people-pulling' |
+ 'n' |
+ 'garage' |
+ 'cable-car' |
+ 'tram' |
+ 'shovel-snow' |
+ 'cloud-rain' |
+ 'face-lying' |
+ 'sprinkler' |
+ 'building-circle-xmark' |
+ 'person-sledding' |
+ 'sledding' |
+ 'game-console-handheld' |
+ 'ship' |
+ 'clock-six-thirty' |
+ 'battery-slash' |
+ 'tugrik-sign' |
+ 'arrows-down-to-line' |
+ 'download' |
+ 'shelves' |
+ 'inventory' |
+ 'cloud-snow' |
+ 'face-grin' |
+ 'grin' |
+ 'delete-left' |
+ 'backspace' |
+ 'oven' |
+ 'cloud-binary' |
+ 'eye-dropper' |
+ 'eye-dropper-empty' |
+ 'eyedropper' |
+ 'comment-captions' |
+ 'comments-question' |
+ 'scribble' |
+ 'rotate-exclamation' |
+ 'file-circle-check' |
+ 'glass' |
+ 'loader' |
+ 'forward' |
+ 'user-pilot' |
+ 'mobile' |
+ 'mobile-android' |
+ 'mobile-phone' |
+ 'code-pull-request-closed' |
+ 'face-meh' |
+ 'meh' |
+ 'align-center' |
+ 'book-skull' |
+ 'book-dead' |
+ 'id-card' |
+ 'drivers-license' |
+ 'face-dotted' |
+ 'face-worried' |
+ 'outdent' |
+ 'dedent' |
+ 'heart-circle-exclamation' |
+ 'house' |
+ 'home' |
+ 'home-alt' |
+ 'home-lg-alt' |
+ 'vector-circle' |
+ 'car-circle-bolt' |
+ 'calendar-week' |
+ 'flying-disc' |
+ 'laptop-medical' |
+ 'square-down-right' |
+ 'b' |
+ 'seat-airline' |
+ 'moon-over-sun' |
+ 'eclipse-alt' |
+ 'pipe' |
+ 'file-medical' |
+ 'potato' |
+ 'dice-one' |
+ 'circle-a' |
+ 'helmet-battle' |
+ 'butter' |
+ 'blanket-fire' |
+ 'kiwi-bird' |
+ 'castle' |
+ 'golf-club' |
+ 'arrow-right-arrow-left' |
+ 'exchange' |
+ 'rotate-right' |
+ 'redo-alt' |
+ 'rotate-forward' |
+ 'utensils' |
+ 'cutlery' |
+ 'arrow-up-wide-short' |
+ 'sort-amount-up' |
+ 'chart-pie-simple-circle-dollar' |
+ 'balloons' |
+ 'mill-sign' |
+ 'bowl-rice' |
+ 'timeline-arrow' |
+ 'skull' |
+ 'game-board-simple' |
+ 'game-board-alt' |
+ 'circle-video' |
+ 'video-circle' |
+ 'chart-scatter-bubble' |
+ 'house-turret' |
+ 'banana' |
+ 'hand-holding-skull' |
+ 'people-dress' |
+ 'loveseat' |
+ 'couch-small' |
+ 'tower-broadcast' |
+ 'broadcast-tower' |
+ 'truck-pickup' |
+ 'block-quote' |
+ 'up-long' |
+ 'long-arrow-alt-up' |
+ 'stop' |
+ 'code-merge' |
+ 'money-check-dollar-pen' |
+ 'money-check-edit-alt' |
+ 'up-from-line' |
+ 'arrow-alt-from-bottom' |
+ 'upload' |
+ 'hurricane' |
+ 'grid-round-2-plus' |
+ 'people-pants' |
+ 'mound' |
+ 'windsock' |
+ 'circle-half' |
+ 'brake-warning' |
+ 'toilet-portable' |
+ 'compact-disc' |
+ 'file-arrow-down' |
+ 'file-download' |
+ 'saxophone-fire' |
+ 'sax-hot' |
+ 'camera-web-slash' |
+ 'webcam-slash' |
+ 'folder-medical' |
+ 'folder-gear' |
+ 'folder-cog' |
+ 'hand-wave' |
+ 'arrow-up-arrow-down' |
+ 'sort-up-down' |
+ 'caravan' |
+ 'shield-cat' |
+ 'message-slash' |
+ 'comment-alt-slash' |
+ 'bolt' |
+ 'zap' |
+ 'trash-can-check' |
+ 'glass-water' |
+ 'oil-well' |
+ 'person-simple' |
+ 'vault' |
+ 'mars' |
+ 'toilet' |
+ 'plane-circle-xmark' |
+ 'yen-sign' |
+ 'cny' |
+ 'jpy' |
+ 'rmb' |
+ 'yen' |
+ 'gear-code' |
+ 'notes' |
+ 'ruble-sign' |
+ 'rouble' |
+ 'rub' |
+ 'ruble' |
+ 'trash-undo' |
+ 'trash-arrow-turn-left' |
+ 'champagne-glass' |
+ 'glass-champagne' |
+ 'objects-align-center-horizontal' |
+ 'sun' |
+ 'trash-can-slash' |
+ 'trash-alt-slash' |
+ 'screen-users' |
+ 'users-class' |
+ 'guitar' |
+ 'square-arrow-left' |
+ 'arrow-square-left' |
+ 'square-8' |
+ 'face-smile-hearts' |
+ 'brackets-square' |
+ 'brackets' |
+ 'laptop-arrow-down' |
+ 'hockey-stick-puck' |
+ 'house-tree' |
+ 'signal-fair' |
+ 'signal2' |
+ 'face-laugh-wink' |
+ 'laugh-wink' |
+ 'circle-dollar' |
+ 'dollar-circle' |
+ 'usd-circle' |
+ 'horse-head' |
+ 'arrows-repeat' |
+ 'repeat-alt' |
+ 'bore-hole' |
+ 'industry' |
+ 'image-polaroid' |
+ 'wave-triangle' |
+ 'person-running-fast' |
+ 'circle-down' |
+ 'arrow-alt-circle-down' |
+ 'grill' |
+ 'arrows-turn-to-dots' |
+ 'chart-mixed' |
+ 'analytics' |
+ 'florin-sign' |
+ 'arrow-down-short-wide' |
+ 'sort-amount-desc' |
+ 'sort-amount-down-alt' |
+ 'less-than' |
+ 'display-code' |
+ 'desktop-code' |
+ 'face-drooling' |
+ 'oil-temperature' |
+ 'oil-temp' |
+ 'square-question' |
+ 'question-square' |
+ 'air-conditioner' |
+ 'angle-down' |
+ 'mountains' |
+ 'omega' |
+ 'car-tunnel' |
+ 'person-dolly-empty' |
+ 'pan-food' |
+ 'head-side-cough' |
+ 'grip-lines' |
+ 'thumbs-down' |
+ 'user-lock' |
+ 'arrow-right-long' |
+ 'long-arrow-right' |
+ 'tickets-airline' |
+ 'anchor-circle-xmark' |
+ 'ellipsis' |
+ 'ellipsis-h' |
+ 'nfc-slash' |
+ 'chess-pawn' |
+ 'kit-medical' |
+ 'first-aid' |
+ 'grid-2-plus' |
+ 'bells' |
+ 'person-through-window' |
+ 'toolbox' |
+ 'envelope-dot' |
+ 'envelope-badge' |
+ 'hands-holding-circle' |
+ 'bug' |
+ 'bowl-chopsticks' |
+ 'credit-card' |
+ 'credit-card-alt' |
+ 'circle-s' |
+ 'box-ballot' |
+ 'car' |
+ 'automobile' |
+ 'hand-holding-hand' |
+ 'user-tie-hair' |
+ 'podium-star' |
+ 'user-hair-mullet' |
+ 'business-front' |
+ 'party-back' |
+ 'trian-balbot' |
+ 'microphone-stand' |
+ 'book-open-reader' |
+ 'book-reader' |
+ 'family-dress' |
+ 'circle-x' |
+ 'cabin' |
+ 'mountain-sun' |
+ 'chart-simple-horizontal' |
+ 'bluetooth' |
+ 'arrows-left-right-to-line' |
+ 'hand-back-point-left' |
+ 'message-dots' |
+ 'comment-alt-dots' |
+ 'messaging' |
+ 'file-heart' |
+ 'beer-mug' |
+ 'beer-foam' |
+ 'dice-d20' |
+ 'drone' |
+ 'truck-droplet' |
+ 'file-circle-xmark' |
+ 'temperature-arrow-up' |
+ 'temperature-up' |
+ 'medal' |
+ 'bed' |
+ 'book-copy' |
+ 'square-h' |
+ 'h-square' |
+ 'square-c' |
+ 'clock-two' |
+ 'square-ellipsis-vertical' |
+ 'calendar-users' |
+ 'podcast' |
+ 'bee' |
+ 'temperature-full' |
+ 'temperature4' |
+ 'thermometer4' |
+ 'thermometer-full' |
+ 'bell' |
+ 'candy-bar' |
+ 'chocolate-bar' |
+ 'xmark-large' |
+ 'pinata' |
+ 'arrows-from-line' |
+ 'superscript' |
+ 'bowl-spoon' |
+ 'hexagon-check' |
+ 'plug-circle-xmark' |
+ 'star-of-life' |
+ 'phone-slash' |
+ 'traffic-light-stop' |
+ 'paint-roller' |
+ 'accent-grave' |
+ 'handshake-angle' |
+ 'hands-helping' |
+ 'circle-0' |
+ 'dial-med-low' |
+ 'location-dot' |
+ 'map-marker-alt' |
+ 'crab' |
+ 'box-open-full' |
+ 'box-full' |
+ 'file' |
+ 'greater-than' |
+ 'quotes' |
+ 'pretzel' |
+ 'person-swimming' |
+ 'swimmer' |
+ 'arrow-down' |
+ 'user-robot-xmarks' |
+ 'message-quote' |
+ 'comment-alt-quote' |
+ 'candy-corn' |
+ 'folder-magnifying-glass' |
+ 'folder-search' |
+ 'notebook' |
+ 'droplet' |
+ 'tint' |
+ 'bullseye-pointer' |
+ 'eraser' |
+ 'hexagon-image' |
+ 'earth-americas' |
+ 'earth' |
+ 'earth-america' |
+ 'globe-americas' |
+ 'crate-apple' |
+ 'apple-crate' |
+ 'person-burst' |
+ 'game-board' |
+ 'hat-chef' |
+ 'hand-back-point-right' |
+ 'dove' |
+ 'snowflake-droplets' |
+ 'battery-empty' |
+ 'battery0' |
+ 'grid-4' |
+ 'socks' |
+ 'face-sunglasses' |
+ 'inbox' |
+ 'square-0' |
+ 'section' |
+ 'square-this-way-up' |
+ 'box-up' |
+ 'gauge-high' |
+ 'tachometer-alt' |
+ 'tachometer-alt-fast' |
+ 'square-ampersand' |
+ 'envelope-open-text' |
+ 'lamp-desk' |
+ 'hospital' |
+ 'hospital-alt' |
+ 'hospital-wide' |
+ 'poll-people' |
+ 'whiskey-glass-ice' |
+ 'glass-whiskey-rocks' |
+ 'wine-bottle' |
+ 'chess-rook' |
+ 'user-bounty-hunter' |
+ 'bars-staggered' |
+ 'reorder' |
+ 'stream' |
+ 'diagram-sankey' |
+ 'cloud-hail-mixed' |
+ 'circle-up-left' |
+ 'dharmachakra' |
+ 'objects-align-left' |
+ 'oil-can-drip' |
+ 'face-smiling-hands' |
+ 'broccoli' |
+ 'route-interstate' |
+ 'ear-muffs' |
+ 'hotdog' |
+ 'transporter-empty' |
+ 'person-walking-with-cane' |
+ 'blind' |
+ 'angle-90' |
+ 'rectangle-terminal' |
+ 'kite' |
+ 'drum' |
+ 'scrubber' |
+ 'ice-cream' |
+ 'heart-circle-bolt' |
+ 'fish-bones' |
+ 'deer-rudolph' |
+ 'fax' |
+ 'paragraph' |
+ 'head-side-heart' |
+ 'square-e' |
+ 'meter-fire' |
+ 'cloud-hail' |
+ 'check-to-slot' |
+ 'vote-yea' |
+ 'money-from-bracket' |
+ 'star-half' |
+ 'car-bus' |
+ 'speaker' |
+ 'timer' |
+ 'boxes-stacked' |
+ 'boxes' |
+ 'boxes-alt' |
+ 'grill-hot' |
+ 'ballot-check' |
+ 'link' |
+ 'chain' |
+ 'ear-listen' |
+ 'assistive-listening-systems' |
+ 'file-minus' |
+ 'tree-city' |
+ 'play' |
+ 'font' |
+ 'cup-togo' |
+ 'coffee-togo' |
+ 'square-down-left' |
+ 'burger-lettuce' |
+ 'rupiah-sign' |
+ 'magnifying-glass' |
+ 'search' |
+ 'table-tennis-paddle-ball' |
+ 'ping-pong-paddle-ball' |
+ 'table-tennis' |
+ 'person-dots-from-line' |
+ 'diagnoses' |
+ 'chevrons-down' |
+ 'chevron-double-down' |
+ 'trash-can-arrow-up' |
+ 'trash-restore-alt' |
+ 'signal-good' |
+ 'signal3' |
+ 'location-question' |
+ 'map-marker-question' |
+ 'floppy-disk-circle-xmark' |
+ 'floppy-disk-times' |
+ 'save-circle-xmark' |
+ 'save-times' |
+ 'naira-sign' |
+ 'peach' |
+ 'taxi-bus' |
+ 'bracket-curly' |
+ 'bracket-curly-left' |
+ 'lobster' |
+ 'cart-flatbed-empty' |
+ 'dolly-flatbed-empty' |
+ 'colon' |
+ 'cart-arrow-down' |
+ 'wand' |
+ 'walkie-talkie' |
+ 'file-pen' |
+ 'file-edit' |
+ 'receipt' |
+ 'table-picnic' |
+ 'square-pen' |
+ 'pen-square' |
+ 'pencil-square' |
+ 'circle-microphone-lines' |
+ 'microphone-circle-alt' |
+ 'display-slash' |
+ 'desktop-slash' |
+ 'suitcase-rolling' |
+ 'person-circle-exclamation' |
+ 'transporter-2' |
+ 'hands-holding-diamond' |
+ 'hand-receiving' |
+ 'money-bill-simple-wave' |
+ 'chevron-down' |
+ 'battery-full' |
+ 'battery' |
+ 'battery5' |
+ 'bell-plus' |
+ 'book-arrow-right' |
+ 'hospitals' |
+ 'club' |
+ 'skull-crossbones' |
+ 'droplet-degree' |
+ 'dewpoint' |
+ 'code-compare' |
+ 'list-ul' |
+ 'list-dots' |
+ 'hand-holding-magic' |
+ 'watermelon-slice' |
+ 'circle-ellipsis' |
+ 'school-lock' |
+ 'tower-cell' |
+ 'sd-cards' |
+ 'jug-bottle' |
+ 'down-long' |
+ 'long-arrow-alt-down' |
+ 'envelopes' |
+ 'phone-office' |
+ 'ranking-star' |
+ 'chess-king' |
+ 'nfc-pen' |
+ 'person-harassing' |
+ 'hat-winter' |
+ 'brazilian-real-sign' |
+ 'landmark-dome' |
+ 'landmark-alt' |
+ 'bone-break' |
+ 'arrow-up' |
+ 'down-from-dotted-line' |
+ 'tv' |
+ 'television' |
+ 'tv-alt' |
+ 'border-left' |
+ 'circle-divide' |
+ 'shrimp' |
+ 'list-check' |
+ 'tasks' |
+ 'diagram-subtask' |
+ 'jug-detergent' |
+ 'circle-user' |
+ 'user-circle' |
+ 'square-y' |
+ 'user-doctor-hair' |
+ 'planet-ringed' |
+ 'mushroom' |
+ 'user-shield' |
+ 'megaphone' |
+ 'wreath-laurel' |
+ 'circle-exclamation-check' |
+ 'wind' |
+ 'box-dollar' |
+ 'box-usd' |
+ 'car-burst' |
+ 'car-crash' |
+ 'y' |
+ 'user-headset' |
+ 'arrows-retweet' |
+ 'retweet-alt' |
+ 'person-snowboarding' |
+ 'snowboarding' |
+ 'square-chevron-right' |
+ 'chevron-square-right' |
+ 'lacrosse-stick-ball' |
+ 'truck-fast' |
+ 'shipping-fast' |
+ 'user-magnifying-glass' |
+ 'star-sharp' |
+ 'comment-heart' |
+ 'circle-1' |
+ 'circle-star' |
+ 'star-circle' |
+ 'fish' |
+ 'cloud-fog' |
+ 'fog' |
+ 'waffle' |
+ 'music-note' |
+ 'music-alt' |
+ 'hexagon-exclamation' |
+ 'cart-shopping-fast' |
+ 'object-union' |
+ 'user-graduate' |
+ 'starfighter' |
+ 'circle-half-stroke' |
+ 'adjust' |
+ 'arrow-right-long-to-line' |
+ 'square-arrow-down' |
+ 'arrow-square-down' |
+ 'diamond-half-stroke' |
+ 'clapperboard' |
+ 'square-chevron-left' |
+ 'chevron-square-left' |
+ 'phone-intercom' |
+ 'link-horizontal' |
+ 'chain-horizontal' |
+ 'mango' |
+ 'music-note-slash' |
+ 'music-alt-slash' |
+ 'circle-radiation' |
+ 'radiation-alt' |
+ 'face-tongue-sweat' |
+ 'globe-stand' |
+ 'baseball' |
+ 'baseball-ball' |
+ 'circle-p' |
+ 'award-simple' |
+ 'jet-fighter-up' |
+ 'diagram-project' |
+ 'project-diagram' |
+ 'pedestal' |
+ 'chart-pyramid' |
+ 'sidebar' |
+ 'snowman-head' |
+ 'frosty-head' |
+ 'copy' |
+ 'burger-glass' |
+ 'volume-xmark' |
+ 'volume-mute' |
+ 'volume-times' |
+ 'hand-sparkles' |
+ 'bars-filter' |
+ 'paintbrush-pencil' |
+ 'party-bell' |
+ 'user-vneck-hair' |
+ 'jack-o-lantern' |
+ 'grip' |
+ 'grip-horizontal' |
+ 'share-from-square' |
+ 'share-square' |
+ 'keynote' |
+ 'child-combatant' |
+ 'child-rifle' |
+ 'gun' |
+ 'square-phone' |
+ 'phone-square' |
+ 'hat-beach' |
+ 'plus' |
+ 'add' |
+ 'expand' |
+ 'computer' |
+ 'fort' |
+ 'cloud-check' |
+ 'xmark' |
+ 'close' |
+ 'multiply' |
+ 'remove' |
+ 'times' |
+ 'face-smirking' |
+ 'arrows-up-down-left-right' |
+ 'arrows' |
+ 'chalkboard-user' |
+ 'chalkboard-teacher' |
+ 'rhombus' |
+ 'claw-marks' |
+ 'peso-sign' |
+ 'face-smile-tongue' |
+ 'cart-circle-xmark' |
+ 'building-shield' |
+ 'circle-phone-flip' |
+ 'phone-circle-alt' |
+ 'baby' |
+ 'users-line' |
+ 'quote-left' |
+ 'quote-left-alt' |
+ 'tractor' |
+ 'key-skeleton' |
+ 'trash-arrow-up' |
+ 'trash-restore' |
+ 'arrow-down-up-lock' |
+ 'arrow-down-to-bracket' |
+ 'lines-leaning' |
+ 'square-q' |
+ 'ruler-combined' |
+ 'symbols' |
+ 'icons-alt' |
+ 'copyright' |
+ 'flask-gear' |
+ 'highlighter-line' |
+ 'bracket-square' |
+ 'bracket' |
+ 'bracket-left' |
+ 'island-tropical' |
+ 'island-tree-palm' |
+ 'arrow-right-from-line' |
+ 'arrow-from-left' |
+ 'h2' |
+ 'equals' |
+ 'cake-slice' |
+ 'shortcake' |
+ 'peanut' |
+ 'wrench-simple' |
+ 'blender' |
+ 'teeth' |
+ 'tally-2' |
+ 'shekel-sign' |
+ 'ils' |
+ 'shekel' |
+ 'sheqel' |
+ 'sheqel-sign' |
+ 'cars' |
+ 'axe-battle' |
+ 'user-hair-long' |
+ 'map' |
+ 'file-circle-info' |
+ 'face-disappointed' |
+ 'lasso-sparkles' |
+ 'clock-eleven' |
+ 'rocket' |
+ 'siren-on' |
+ 'clock-ten' |
+ 'candle-holder' |
+ 'video-arrow-down-left' |
+ 'photo-film' |
+ 'photo-video' |
+ 'floppy-disk-circle-arrow-right' |
+ 'save-circle-arrow-right' |
+ 'folder-minus' |
+ 'planet-moon' |
+ 'face-eyes-xmarks' |
+ 'chart-scatter' |
+ 'display-arrow-down' |
+ 'store' |
+ 'arrow-trend-up' |
+ 'plug-circle-minus' |
+ 'olive-branch' |
+ 'angle' |
+ 'vacuum-robot' |
+ 'sign-hanging' |
+ 'sign' |
+ 'square-divide' |
+ 'signal-stream-slash' |
+ 'bezier-curve' |
+ 'eye-dropper-half' |
+ 'store-lock' |
+ 'bell-slash' |
+ 'cloud-bolt-sun' |
+ 'thunderstorm-sun' |
+ 'camera-slash' |
+ 'comment-quote' |
+ 'tablet' |
+ 'tablet-android' |
+ 'school-flag' |
+ 'message-code' |
+ 'glass-half' |
+ 'glass-half-empty' |
+ 'glass-half-full' |
+ 'fill' |
+ 'message-minus' |
+ 'comment-alt-minus' |
+ 'angle-up' |
+ 'dinosaur' |
+ 'drumstick-bite' |
+ 'link-horizontal-slash' |
+ 'chain-horizontal-slash' |
+ 'holly-berry' |
+ 'nose' |
+ 'chevron-left' |
+ 'bacteria' |
+ 'clouds' |
+ 'money-bill-simple' |
+ 'hand-lizard' |
+ 'table-pivot' |
+ 'filter-slash' |
+ 'trash-can-undo' |
+ 'trash-can-arrow-turn-left' |
+ 'trash-undo-alt' |
+ 'notdef' |
+ 'disease' |
+ 'person-to-door' |
+ 'turntable' |
+ 'briefcase-medical' |
+ 'genderless' |
+ 'chevron-right' |
+ 'signal-weak' |
+ 'signal1' |
+ 'clock-five' |
+ 'retweet' |
+ 'car-rear' |
+ 'car-alt' |
+ 'pump-soap' |
+ 'computer-classic' |
+ 'frame' |
+ 'video-slash' |
+ 'battery-quarter' |
+ 'battery2' |
+ 'ellipsis-stroke' |
+ 'ellipsis-h-alt' |
+ 'radio' |
+ 'baby-carriage' |
+ 'carriage-baby' |
+ 'face-expressionless' |
+ 'down-to-dotted-line' |
+ 'cloud-music' |
+ 'traffic-light' |
+ 'cloud-minus' |
+ 'thermometer' |
+ 'shield-minus' |
+ 'vr-cardboard' |
+ 'car-tilt' |
+ 'gauge-circle-minus' |
+ 'brightness-low' |
+ 'hand-middle-finger' |
+ 'percent' |
+ 'percentage' |
+ 'truck-moving' |
+ 'glass-water-droplet' |
+ 'conveyor-belt' |
+ 'location-check' |
+ 'map-marker-check' |
+ 'coin-vertical' |
+ 'display' |
+ 'person-sign' |
+ 'face-smile' |
+ 'smile' |
+ 'phone-hangup' |
+ 'signature-slash' |
+ 'thumbtack' |
+ 'thumb-tack' |
+ 'wheat-slash' |
+ 'trophy' |
+ 'clouds-sun' |
+ 'person-praying' |
+ 'pray' |
+ 'hammer' |
+ 'face-vomit' |
+ 'speakers' |
+ 'tty-answer' |
+ 'teletype-answer' |
+ 'mug-tea-saucer' |
+ 'diagram-lean-canvas' |
+ 'alt' |
+ 'dial' |
+ 'dial-med-high' |
+ 'hand-peace' |
+ 'circle-trash' |
+ 'trash-circle' |
+ 'rotate' |
+ 'sync-alt' |
+ 'circle-quarters' |
+ 'spinner' |
+ 'tower-control' |
+ 'arrow-up-triangle-square' |
+ 'sort-shapes-up' |
+ 'whale' |
+ 'robot' |
+ 'peace' |
+ 'party-horn' |
+ 'gears' |
+ 'cogs' |
+ 'sun-bright' |
+ 'sun-alt' |
+ 'warehouse' |
+ 'conveyor-belt-arm' |
+ 'lock-keyhole-open' |
+ 'lock-open-alt' |
+ 'square-fragile' |
+ 'box-fragile' |
+ 'square-wine-glass-crack' |
+ 'arrow-up-right-dots' |
+ 'square-n' |
+ 'splotch' |
+ 'face-grin-hearts' |
+ 'grin-hearts' |
+ 'meter' |
+ 'mandolin' |
+ 'dice-four' |
+ 'sim-card' |
+ 'transgender' |
+ 'transgender-alt' |
+ 'mercury' |
+ 'up-from-bracket' |
+ 'knife-kitchen' |
+ 'border-right' |
+ 'arrow-turn-down' |
+ 'level-down' |
+ 'spade' |
+ 'card-spade' |
+ 'line-columns' |
+ 'arrow-right-to-line' |
+ 'arrow-to-right' |
+ 'person-falling-burst' |
+ 'flag-pennant' |
+ 'pennant' |
+ 'conveyor-belt-empty' |
+ 'user-group-simple' |
+ 'award' |
+ 'ticket-simple' |
+ 'ticket-alt' |
+ 'building' |
+ 'angles-left' |
+ 'angle-double-left' |
+ 'camcorder' |
+ 'video-handheld' |
+ 'pancakes' |
+ 'album-circle-user' |
+ 'qrcode' |
+ 'dice-d10' |
+ 'fireplace' |
+ 'browser' |
+ 'pen-paintbrush' |
+ 'pencil-paintbrush' |
+ 'fish-cooked' |
+ 'chair-office' |
+ 'nesting-dolls' |
+ 'clock-rotate-left' |
+ 'history' |
+ 'trumpet' |
+ 'face-grin-beam-sweat' |
+ 'grin-beam-sweat' |
+ 'fire-smoke' |
+ 'phone-missed' |
+ 'file-export' |
+ 'arrow-right-from-file' |
+ 'shield' |
+ 'shield-blank' |
+ 'arrow-up-short-wide' |
+ 'sort-amount-up-alt' |
+ 'arrows-repeat-1' |
+ 'repeat1-alt' |
+ 'gun-slash' |
+ 'avocado' |
+ 'binary' |
+ 'glasses-round' |
+ 'glasses-alt' |
+ 'phone-plus' |
+ 'ditto' |
+ 'person-seat' |
+ 'house-medical' |
+ 'golf-ball-tee' |
+ 'golf-ball' |
+ 'circle-chevron-left' |
+ 'chevron-circle-left' |
+ 'house-chimney-window' |
+ 'scythe' |
+ 'pen-nib' |
+ 'ban-parking' |
+ 'parking-circle-slash' |
+ 'tent-arrow-turn-left' |
+ 'face-diagonal-mouth' |
+ 'diagram-cells' |
+ 'cricket-bat-ball' |
+ 'cricket' |
+ 'tents' |
+ 'wand-magic' |
+ 'magic' |
+ 'dog' |
+ 'pen-line' |
+ 'atom-simple' |
+ 'atom-alt' |
+ 'ampersand' |
+ 'carrot' |
+ 'arrow-up-from-line' |
+ 'arrow-from-bottom' |
+ 'moon' |
+ 'pen-slash' |
+ 'wine-glass-empty' |
+ 'wine-glass-alt' |
+ 'square-star' |
+ 'cheese' |
+ 'send-backward' |
+ 'yin-yang' |
+ 'music' |
+ 'compass-slash' |
+ 'clock-one' |
+ 'file-music' |
+ 'code-commit' |
+ 'temperature-low' |
+ 'person-biking' |
+ 'biking' |
+ 'display-chart-up-circle-currency' |
+ 'skeleton' |
+ 'circle-g' |
+ 'circle-arrow-up-left' |
+ 'coin-blank' |
+ 'broom' |
+ 'vacuum' |
+ 'shield-heart' |
+ 'card-heart' |
+ 'lightbulb-cfl-on' |
+ 'melon' |
+ 'gopuram' |
+ 'earth-oceania' |
+ 'globe-oceania' |
+ 'container-storage' |
+ 'face-pouting' |
+ 'square-xmark' |
+ 'times-square' |
+ 'xmark-square' |
+ 'face-explode' |
+ 'exploding-head' |
+ 'hashtag' |
+ 'up-right-and-down-left-from-center' |
+ 'expand-alt' |
+ 'oil-can' |
+ 't' |
+ 'transformer-bolt' |
+ 'hippo' |
+ 'chart-column' |
+ 'cassette-vhs' |
+ 'vhs' |
+ 'infinity' |
+ 'vial-circle-check' |
+ 'chimney' |
+ 'object-intersect' |
+ 'person-arrow-down-to-line' |
+ 'voicemail' |
+ 'block-brick' |
+ 'wall-brick' |
+ 'fan' |
+ 'bags-shopping' |
+ 'paragraph-left' |
+ 'paragraph-rtl' |
+ 'person-walking-luggage' |
+ 'caravan-simple' |
+ 'caravan-alt' |
+ 'turtle' |
+ 'pencil-mechanical' |
+ 'up-down' |
+ 'arrows-alt-v' |
+ 'cloud-moon-rain' |
+ 'booth-curtain' |
+ 'calendar' |
+ 'box-heart' |
+ 'trailer' |
+ 'user-doctor-message' |
+ 'user-md-chat' |
+ 'bahai' |
+ 'haykal' |
+ 'amp-guitar' |
+ 'sd-card' |
+ 'volume-slash' |
+ 'border-bottom' |
+ 'wifi-weak' |
+ 'wifi1' |
+ 'dragon' |
+ 'shoe-prints' |
+ 'circle-plus' |
+ 'plus-circle' |
+ 'face-grin-tongue-wink' |
+ 'grin-tongue-wink' |
+ 'hand-holding' |
+ 'plug-circle-exclamation' |
+ 'link-slash' |
+ 'chain-broken' |
+ 'chain-slash' |
+ 'unlink' |
+ 'clone' |
+ 'person-walking-arrow-loop-left' |
+ 'arrow-up-z-a' |
+ 'sort-alpha-up-alt' |
+ 'fire-flame-curved' |
+ 'fire-alt' |
+ 'tornado' |
+ 'file-circle-plus' |
+ 'delete-right' |
+ 'book-quran' |
+ 'quran' |
+ 'circle-quarter' |
+ 'anchor' |
+ 'border-all' |
+ 'function' |
+ 'face-angry' |
+ 'angry' |
+ 'people-simple' |
+ 'cookie-bite' |
+ 'arrow-trend-down' |
+ 'rss' |
+ 'feed' |
+ 'face-monocle' |
+ 'draw-polygon' |
+ 'scale-balanced' |
+ 'balance-scale' |
+ 'calendar-lines' |
+ 'calendar-note' |
+ 'arrow-down-big-small' |
+ 'sort-size-down' |
+ 'gauge-simple-high' |
+ 'tachometer' |
+ 'tachometer-fast' |
+ 'do-not-enter' |
+ 'shower' |
+ 'dice-d8' |
+ 'desktop' |
+ 'desktop-alt' |
+ 'm' |
+ 'grip-dots-vertical' |
+ 'face-viewfinder' |
+ 'soft-serve' |
+ 'creemee' |
+ 'h5' |
+ 'hand-back-point-down' |
+ 'table-list' |
+ 'th-list' |
+ 'comment-sms' |
+ 'sms' |
+ 'rectangle' |
+ 'rectangle-landscape' |
+ 'clipboard-list-check' |
+ 'turkey' |
+ 'book' |
+ 'user-plus' |
+ 'ice-skate' |
+ 'check' |
+ 'battery-three-quarters' |
+ 'battery4' |
+ 'tomato' |
+ 'sword-laser' |
+ 'house-circle-check' |
+ 'buildings' |
+ 'angle-left' |
+ 'cart-flatbed-boxes' |
+ 'dolly-flatbed-alt' |
+ 'diagram-successor' |
+ 'truck-arrow-right' |
+ 'square-w' |
+ 'arrows-split-up-and-left' |
+ 'lamp' |
+ 'airplay' |
+ 'hand-fist' |
+ 'fist-raised' |
+ 'shield-quartered' |
+ 'slash-forward' |
+ 'location-pen' |
+ 'map-marker-edit' |
+ 'cloud-moon' |
+ 'pot-food' |
+ 'briefcase' |
+ 'person-falling' |
+ 'image-portrait' |
+ 'portrait' |
+ 'user-tag' |
+ 'rug' |
+ 'print-slash' |
+ 'earth-europe' |
+ 'globe-europe' |
+ 'cart-flatbed-suitcase' |
+ 'luggage-cart' |
+ 'hand-back-point-ribbon' |
+ 'rectangle-xmark' |
+ 'rectangle-times' |
+ 'times-rectangle' |
+ 'window-close' |
+ 'tire-rugged' |
+ 'lightbulb-dollar' |
+ 'cowbell' |
+ 'baht-sign' |
+ 'corner' |
+ 'chevrons-right' |
+ 'chevron-double-right' |
+ 'book-open' |
+ 'book-journal-whills' |
+ 'journal-whills' |
+ 'inhaler' |
+ 'handcuffs' |
+ 'snake' |
+ 'triangle-exclamation' |
+ 'exclamation-triangle' |
+ 'warning' |
+ 'note-medical' |
+ 'database' |
+ 'down-left' |
+ 'share' |
+ 'arrow-turn-right' |
+ 'mail-forward' |
+ 'face-thinking' |
+ 'turn-down-right' |
+ 'bottle-droplet' |
+ 'mask-face' |
+ 'hill-rockslide' |
+ 'scanner-keyboard' |
+ 'circle-o' |
+ 'grid-horizontal' |
+ 'message-dollar' |
+ 'comment-alt-dollar' |
+ 'right-left' |
+ 'exchange-alt' |
+ 'columns-3' |
+ 'paper-plane' |
+ 'road-circle-exclamation' |
+ 'dungeon' |
+ 'hand-holding-box' |
+ 'input-text' |
+ 'window-flip' |
+ 'window-alt' |
+ 'align-right' |
+ 'scanner-gun' |
+ 'scanner' |
+ 'tire' |
+ 'engine' |
+ 'money-bill-1-wave' |
+ 'money-bill-wave-alt' |
+ 'life-ring' |
+ 'hands' |
+ 'sign-language' |
+ 'signing' |
+ 'circle-caret-right' |
+ 'caret-circle-right' |
+ 'wheat' |
+ 'file-spreadsheet' |
+ 'audio-description-slash' |
+ 'calendar-day' |
+ 'water-ladder' |
+ 'ladder-water' |
+ 'swimming-pool' |
+ 'arrows-up-down' |
+ 'arrows-v' |
+ 'chess-pawn-piece' |
+ 'chess-pawn-alt' |
+ 'face-grimace' |
+ 'grimace' |
+ 'wheelchair-move' |
+ 'wheelchair-alt' |
+ 'turn-down' |
+ 'level-down-alt' |
+ 'square-s' |
+ 'rectangle-barcode' |
+ 'barcode-alt' |
+ 'person-walking-arrow-right' |
+ 'square-envelope' |
+ 'envelope-square' |
+ 'dice' |
+ 'unicorn' |
+ 'bowling-ball' |
+ 'pompebled' |
+ 'brain' |
+ 'watch-smart' |
+ 'book-user' |
+ 'sensor-cloud' |
+ 'sensor-smoke' |
+ 'clapperboard-play' |
+ 'bandage' |
+ 'band-aid' |
+ 'calendar-minus' |
+ 'circle-xmark' |
+ 'times-circle' |
+ 'xmark-circle' |
+ 'circle-4' |
+ 'gifts' |
+ 'album-collection' |
+ 'hotel' |
+ 'earth-asia' |
+ 'globe-asia' |
+ 'id-card-clip' |
+ 'id-card-alt' |
+ 'magnifying-glass-plus' |
+ 'search-plus' |
+ 'thumbs-up' |
+ 'cloud-showers' |
+ 'user-clock' |
+ 'onion' |
+ 'clock-twelve-thirty' |
+ 'arrow-down-to-dotted-line' |
+ 'hand-dots' |
+ 'allergies' |
+ 'file-invoice' |
+ 'window-minimize' |
+ 'rectangle-wide' |
+ 'comment-arrow-up' |
+ 'garlic' |
+ 'mug-saucer' |
+ 'coffee' |
+ 'brush' |
+ 'tree-decorated' |
+ 'mask' |
+ 'calendar-heart' |
+ 'magnifying-glass-minus' |
+ 'search-minus' |
+ 'flower' |
+ 'right-left-large' |
+ 'ruler-vertical' |
+ 'circles-overlap' |
+ 'user-large' |
+ 'user-alt' |
+ 'starship-freighter' |
+ 'train-tram' |
+ 'bridge-suspension' |
+ 'trash-check' |
+ 'user-nurse' |
+ 'boombox' |
+ 'syringe' |
+ 'cloud-sun' |
+ 'shield-exclamation' |
+ 'stopwatch-20' |
+ 'square-full' |
+ 'grip-dots' |
+ 'comment-exclamation' |
+ 'pen-swirl' |
+ 'falafel' |
+ 'circle-2' |
+ 'magnet' |
+ 'jar' |
+ 'gramophone' |
+ 'dice-d12' |
+ 'note-sticky' |
+ 'sticky-note' |
+ 'down' |
+ 'arrow-alt-down' |
+ 'hundred-points' |
+ '100' |
+ 'paperclip-vertical' |
+ 'wind-warning' |
+ 'wind-circle-exclamation' |
+ 'location-pin-slash' |
+ 'map-marker-slash' |
+ 'face-sad-sweat' |
+ 'bug-slash' |
+ 'cupcake' |
+ 'light-switch-off' |
+ 'toggle-large-off' |
+ 'pen-fancy-slash' |
+ 'truck-container' |
+ 'boot' |
+ 'arrow-up-from-water-pump' |
+ 'file-check' |
+ 'bone' |
+ 'cards-blank' |
+ 'circle-3' |
+ 'bench-tree' |
+ 'keyboard-brightness-low' |
+ 'ski-boot-ski' |
+ 'brain-circuit' |
+ 'user-injured' |
+ 'block-brick-fire' |
+ 'firewall' |
+ 'face-sad-tear' |
+ 'sad-tear' |
+ 'plane' |
+ 'tent-arrows-down' |
+ 'exclamation' |
+ 'arrows-spin' |
+ 'face-smile-relaxed' |
+ 'comment-xmark' |
+ 'comment-times' |
+ 'print' |
+ 'turkish-lira-sign' |
+ 'try' |
+ 'turkish-lira' |
+ 'face-nose-steam' |
+ 'circle-waveform-lines' |
+ 'waveform-circle' |
+ 'dollar-sign' |
+ 'dollar' |
+ 'usd' |
+ 'ferris-wheel' |
+ 'computer-speaker' |
+ 'skull-cow' |
+ 'x' |
+ 'magnifying-glass-dollar' |
+ 'search-dollar' |
+ 'users-gear' |
+ 'users-cog' |
+ 'person-military-pointing' |
+ 'building-columns' |
+ 'bank' |
+ 'institution' |
+ 'museum' |
+ 'university' |
+ 'circle-t' |
+ 'sack' |
+ 'grid-2' |
+ 'camera-cctv' |
+ 'cctv' |
+ 'umbrella' |
+ 'trowel' |
+ 'horizontal-rule' |
+ 'bed-front' |
+ 'bed-alt' |
+ 'd' |
+ 'stapler' |
+ 'masks-theater' |
+ 'theater-masks' |
+ 'kip-sign' |
+ 'face-woozy' |
+ 'cloud-question' |
+ 'pineapple' |
+ 'hand-point-left' |
+ 'gallery-thumbnails' |
+ 'circle-j' |
+ 'eyes' |
+ 'handshake-simple' |
+ 'handshake-alt' |
+ 'page-caret-up' |
+ 'file-caret-up' |
+ 'jet-fighter' |
+ 'fighter-jet' |
+ 'comet' |
+ 'square-share-nodes' |
+ 'share-alt-square' |
+ 'shield-keyhole' |
+ 'barcode' |
+ 'plus-minus' |
+ 'square-sliders-vertical' |
+ 'sliders-v-square' |
+ 'video' |
+ 'video-camera' |
+ 'message-middle' |
+ 'comment-middle-alt' |
+ 'graduation-cap' |
+ 'mortar-board' |
+ 'hand-holding-medical' |
+ 'person-circle-check' |
+ 'square-z' |
+ 'message-text' |
+ 'comment-alt-text' |
+ 'turn-up' |
+ 'level-up-alt';
+
+type TextContent = {
+ text: string;
+} | {
+ json: undefined;
+ text: string;
+};
+type JSONContent = {
+ json: JSONValue;
+} | {
+ json: JSONValue;
+ text: undefined;
+};
+type Content = JSONContent | TextContent;
+type JSONParser = JSON;
+interface JSONPathParser {
+ parse: (pathStr: string) => JSONPath;
+ stringify: (path: JSONPath) => string;
+}
+interface VisibleSection {
+ start: number;
+ end: number;
+}
+declare enum Mode {
+ text = "text",
+ tree = "tree",
+ table = "table"
+}
+declare enum SelectionType {
+ after = "after",
+ inside = "inside",
+ key = "key",
+ value = "value",
+ multi = "multi"
+}
+declare enum CaretType {
+ after = "after",
+ key = "key",
+ value = "value",
+ inside = "inside"
+}
+interface CaretPosition {
+ path: JSONPath;
+ type: CaretType;
+}
+interface DocumentState {
+ expandedMap: JSONPointerMap;
+ enforceStringMap: JSONPointerMap;
+ visibleSectionsMap: JSONPointerMap;
+ selection: JSONSelection | undefined;
+ sortedColumn: SortedColumn | undefined;
+}
+interface JSONPatchResult {
+ json: JSONValue;
+ previousJson: JSONValue;
+ undo: JSONPatchDocument;
+ redo: JSONPatchDocument;
+}
+type AfterPatchCallback = (patchedJson: JSONValue, patchedState: DocumentState) => {
+ json?: JSONValue;
+ state?: DocumentState;
+} | undefined;
+interface MultiSelection {
+ type: SelectionType.multi;
+ paths: JSONPath[];
+ anchorPath: JSONPath;
+ focusPath: JSONPath;
+ pointersMap: {
+ [pointer: JSONPointer]: boolean;
+ };
+}
+interface AfterSelection {
+ type: SelectionType.after;
+ anchorPath: JSONPath;
+ focusPath: JSONPath;
+ pointersMap: {
+ [pointer: JSONPointer]: boolean;
+ };
+}
+interface InsideSelection {
+ type: SelectionType.inside;
+ anchorPath: JSONPath;
+ focusPath: JSONPath;
+ pointersMap: {
+ [pointer: JSONPointer]: boolean;
+ };
+}
+interface KeySelection {
+ type: SelectionType.key;
+ anchorPath: JSONPath;
+ focusPath: JSONPath;
+ pointersMap: {
+ [pointer: JSONPointer]: boolean;
+ };
+ edit?: boolean;
+}
+interface ValueSelection {
+ type: SelectionType.value;
+ anchorPath: JSONPath;
+ focusPath: JSONPath;
+ pointersMap: {
+ [pointer: JSONPointer]: boolean;
+ };
+ edit?: boolean;
+}
+type JSONSelection = MultiSelection | AfterSelection | InsideSelection | KeySelection | ValueSelection;
+type JSONPointerMap = {
+ [pointer: JSONPointer]: T;
+};
+type ClipboardValues = Array<{
+ key: string;
+ value: JSONValue;
+}>;
+/**
+ * @deprecated Use IconDefinition instead of FontAwesomeIcon
+ */
+type FontAwesomeIcon = IconDefinition;
+interface MenuButton {
+ type: 'button';
+ onClick: () => void;
+ icon?: IconDefinition;
+ text?: string;
+ title?: string;
+ className?: string;
+ disabled?: boolean;
+}
+interface MenuDropDownButton {
+ type: 'dropdown-button';
+ main: MenuButton;
+ width?: string;
+ items: MenuButton[];
+}
+/**
+ * @deprecated: DropdownButtonItem is renamed to MenuButton
+ */
+type DropdownButtonItem = MenuButton;
+/**
+ * @deprecated: MenuButtonItem is renamed to MenuButton
+ */
+type MenuButtonItem = MenuButton;
+interface MenuLabel {
+ type: 'label';
+ text: string;
+}
+interface MenuSeparator {
+ type: 'separator';
+}
+/**
+ * @deprecated: MenuSeparatorItem is replaced with MenuSeparator
+ */
+interface MenuSeparatorItem {
+ /**
+ * @deprecated: MenuSeparatorItem is replaced with MenuSeparator
+ */
+ separator: true;
+}
+interface MenuSpace {
+ type: 'space';
+}
+/**
+ * @deprecated: MenuSpaceItem is replaced with MenuSpace
+ */
+interface MenuSpaceItem {
+ /**
+ * @deprecated: MenuSpaceItem is replaced with MenuSpace
+ */
+ space: true;
+}
+type MenuItem = MenuButton | MenuSeparator | MenuSeparatorItem | MenuSpace | MenuSpaceItem;
+type ContextMenuColumn = {
+ type: 'column';
+ items: Array;
+};
+type ContextMenuRow = {
+ type: 'row';
+ items: Array;
+};
+type ContextMenuItem = MenuButton | MenuDropDownButton | MenuSeparator | ContextMenuRow;
+interface MessageAction {
+ text: string;
+ title: string;
+ icon?: IconDefinition;
+ onClick?: () => void;
+ onMouseDown?: () => void;
+ disabled?: boolean;
+}
+declare enum ValidationSeverity {
+ info = "info",
+ warning = "warning",
+ error = "error"
+}
+interface ValidationError$1 {
+ path: JSONPath;
+ message: string;
+ severity: ValidationSeverity;
+}
+interface NestedValidationError extends ValidationError$1 {
+ isChildError?: boolean;
+}
+type Validator = (json: JSONValue) => ValidationError$1[];
+interface ParseError {
+ position: number | null;
+ line: number | null;
+ column: number | null;
+ message: string;
+}
+interface ContentParseError {
+ parseError: ParseError;
+ isRepairable: boolean;
+}
+interface ContentValidationErrors {
+ validationErrors: ValidationError$1[];
+}
+type ContentErrors = ContentParseError | ContentValidationErrors;
+interface RichValidationError extends ValidationError$1 {
+ line: number | null;
+ column: number | null;
+ from: number | null;
+ to: number | null;
+ actions: Array<{
+ name: string;
+ apply: () => void;
+ }> | null;
+}
+interface TextLocation {
+ path: JSONPath;
+ line: number;
+ column: number;
+ from: number;
+ to: number;
+}
+interface Section {
+ start: number;
+ end: number;
+}
+interface QueryLanguage {
+ id: string;
+ name: string;
+ description: string;
+ createQuery: (json: JSONValue, queryOptions: QueryLanguageOptions) => string;
+ executeQuery: (json: JSONValue, query: string, parser: JSONParser) => JSONValue;
+}
+interface QueryLanguageOptions {
+ filter?: {
+ path?: string[];
+ relation?: '==' | '!=' | '<' | '<=' | '>' | '>=';
+ value?: string;
+ };
+ sort?: {
+ path?: string[];
+ direction?: 'asc' | 'desc';
+ };
+ projection?: {
+ paths?: string[][];
+ };
+}
+type OnChangeQueryLanguage = (queryLanguageId: string) => void;
+interface OnChangeStatus {
+ contentErrors: ContentErrors | null;
+ patchResult: JSONPatchResult | null;
+}
+type OnChange = ((content: Content, previousContent: Content, status: OnChangeStatus) => void) | null;
+type OnSelect = (selection: JSONSelection) => void;
+type OnPatch = (operations: JSONPatchDocument, afterPatch?: AfterPatchCallback) => void;
+type OnChangeText = (updatedText: string, afterPatch?: AfterPatchCallback) => void;
+type OnSort = (params: {
+ operations: JSONPatchDocument;
+ rootPath: JSONPath;
+ itemPath: JSONPath;
+ direction: 1 | -1;
+}) => void;
+type OnFind = (findAndReplace: boolean) => void;
+type OnPaste = (pastedText: string) => void;
+type OnPasteJson = (pastedJson: {
+ path: JSONPath;
+ contents: JSONValue;
+}) => void;
+type OnExpand = (path: JSONPath) => boolean;
+type OnRenderValue = (props: RenderValueProps) => RenderValueComponentDescription[];
+type OnClassName = (path: JSONPath, value: JSONValue) => string | undefined;
+type OnChangeMode = (mode: Mode) => void;
+type OnContextMenu = (contextMenuProps: AbsolutePopupOptions) => void;
+type RenderMenuContext = {
+ mode: 'tree' | 'text' | 'table';
+ modal: boolean;
+};
+type OnRenderMenu = (items: MenuItem[], context: RenderMenuContext) => MenuItem[] | undefined;
+type OnRenderMenuWithoutContext = (items: MenuItem[]) => MenuItem[] | undefined;
+type OnError = (error: Error) => void;
+type OnFocus = () => void;
+type OnBlur = () => void;
+type OnSortModal = (props: SortModalCallback) => void;
+type OnTransformModal = (props: TransformModalCallback) => void;
+type OnJSONEditorModal = (props: JSONEditorModalCallback) => void;
+type FindNextInside = (path: JSONPath) => JSONSelection | undefined;
+interface SearchResult {
+ items: ExtendedSearchResultItem[];
+ itemsMap: JSONPointerMap;
+ activeItem: ExtendedSearchResultItem | undefined;
+ activeIndex: number | -1;
+}
+declare enum SearchField {
+ key = "key",
+ value = "value"
+}
+interface SearchResultItem {
+ path: JSONPath;
+ field: SearchField;
+ fieldIndex: number;
+ start: number;
+ end: number;
+}
+interface ExtendedSearchResultItem extends SearchResultItem {
+ active: boolean;
+}
+interface ValueNormalization {
+ escapeValue: (unescapedValue: unknown) => string;
+ unescapeValue: (escapedValue: string) => string;
+}
+type PastedJson = {
+ contents: JSONValue;
+ path: JSONPath;
+} | undefined;
+type EscapeValue = (value: JSONValue) => string;
+type UnescapeValue = (escapedValue: string) => string;
+interface DragInsideProps {
+ json: JSONValue;
+ selection: JSONSelection;
+ deltaY: number;
+ items: Array<{
+ path: JSONPath;
+ height: number;
+ }>;
+}
+type DragInsideAction = {
+ beforePath: JSONPath;
+ offset: number;
+} | {
+ append: true;
+ offset: number;
+};
+interface RenderedItem {
+ path: JSONPath;
+ height: number;
+}
+interface HistoryItem {
+ undo: {
+ patch: JSONPatchDocument | undefined;
+ json: JSONValue | undefined;
+ text: string | undefined;
+ state: DocumentState;
+ textIsRepaired: boolean;
+ };
+ redo: {
+ patch: JSONPatchDocument | undefined;
+ json: JSONValue | undefined;
+ text: string | undefined;
+ state: DocumentState;
+ textIsRepaired: boolean;
+ };
+}
+type InsertType = 'value' | 'object' | 'array' | 'structure';
+interface PopupEntry {
+ id: number;
+ component: SvelteComponentTyped;
+ props: Record;
+ options: AbsolutePopupOptions;
+}
+interface AbsolutePopupOptions {
+ anchor?: Element;
+ position?: 'top' | 'left';
+ left?: number;
+ top?: number;
+ width?: number;
+ height?: number;
+ offsetTop?: number;
+ offsetLeft?: number;
+ showTip?: boolean;
+ closeOnOuterClick?: boolean;
+ onClose?: () => void;
+}
+interface JSONEditorPropsOptional {
+ content?: Content;
+ readOnly?: boolean;
+ indentation?: number | string;
+ tabSize?: number;
+ mode?: Mode;
+ mainMenuBar?: boolean;
+ navigationBar?: boolean;
+ statusBar?: boolean;
+ askToFormat?: boolean;
+ escapeControlCharacters?: boolean;
+ escapeUnicodeCharacters?: boolean;
+ flattenColumns?: true;
+ parser?: JSONParser;
+ validator?: Validator | null;
+ validationParser?: JSONParser;
+ pathParser?: JSONPathParser;
+ queryLanguages?: QueryLanguage[];
+ queryLanguageId?: string;
+ onChangeQueryLanguage?: OnChangeQueryLanguage;
+ onChange?: OnChange;
+ onRenderValue?: OnRenderValue;
+ onClassName?: OnClassName;
+ onRenderMenu?: OnRenderMenu;
+ onChangeMode?: OnChangeMode;
+ onError?: OnError;
+ onFocus?: OnFocus;
+ onBlur?: OnBlur;
+}
+interface JSONEditorContext {
+ readOnly: boolean;
+ parser: JSONParser;
+ normalization: ValueNormalization;
+ getJson: () => JSONValue | undefined;
+ getDocumentState: () => DocumentState;
+ findElement: (path: JSONPath) => Element | null;
+ findNextInside: FindNextInside;
+ focus: () => void;
+ onPatch: (operations: JSONPatchDocument, afterPatch?: AfterPatchCallback) => JSONPatchResult;
+ onSelect: OnSelect;
+ onFind: OnFind;
+ onPasteJson: (newPastedJson: PastedJson) => void;
+ onRenderValue: OnRenderValue;
+}
+interface TreeModeContext extends JSONEditorContext {
+ getJson: () => JSONValue | undefined;
+ getDocumentState: () => DocumentState;
+ findElement: (path: JSONPath) => Element | null;
+ onInsert: (type: InsertType) => void;
+ onExpand: (path: JSONPath, expanded: boolean, recursive?: boolean) => void;
+ onExpandSection: (path: JSONPath, section: Section) => void;
+ onContextMenu: OnContextMenu;
+ onClassName: OnClassName;
+ onDrag: (event: Event) => void;
+ onDragEnd: () => void;
+}
+interface RenderValuePropsOptional {
+ path?: JSONPath;
+ value?: JSONValue;
+ readOnly?: boolean;
+ enforceString?: boolean;
+ selection?: JSONSelection;
+ searchResultItems?: SearchResultItem[];
+ isEditing?: boolean;
+ parser?: JSONParser;
+ normalization?: ValueNormalization;
+ onPatch?: TreeModeContext['onPatch'];
+ onPasteJson?: OnPasteJson;
+ onSelect?: OnSelect;
+ onFind?: OnFind;
+ findNextInside?: FindNextInside;
+ focus?: () => void;
+}
+interface RenderValueProps extends RenderValuePropsOptional {
+ path: JSONPath;
+ value: JSONValue;
+ readOnly: boolean;
+ enforceString: boolean;
+ selection: JSONSelection | undefined;
+ searchResultItems: SearchResultItem[] | undefined;
+ isEditing: boolean;
+ parser: JSONParser;
+ normalization: ValueNormalization;
+ onPatch: TreeModeContext['onPatch'];
+ onPasteJson: OnPasteJson;
+ onSelect: OnSelect;
+ onFind: OnFind;
+ findNextInside: FindNextInside;
+ focus: () => void;
+}
+interface JSONNodeProp {
+ key: string;
+ value: JSONValue;
+ path: JSONPath;
+ pointer: JSONPointer;
+ expandedMap: JSONPointerMap | undefined;
+ enforceStringMap: JSONPointerMap | undefined;
+ visibleSectionsMap: JSONPointerMap | undefined;
+ validationErrorsMap: JSONPointerMap | undefined;
+ keySearchResultItemsMap: ExtendedSearchResultItem[] | undefined;
+ valueSearchResultItemsMap: JSONPointerMap | undefined;
+ selection: JSONSelection | undefined;
+}
+interface JSONNodeItem {
+ index: number;
+ value: JSONValue;
+ path: JSONPath;
+ pointer: JSONPointer;
+ expandedMap: JSONPointerMap | undefined;
+ enforceStringMap: JSONPointerMap | undefined;
+ visibleSectionsMap: JSONPointerMap | undefined;
+ validationErrorsMap: JSONPointerMap | undefined;
+ searchResultItemsMap: JSONPointerMap | undefined;
+ selection: JSONSelection | undefined;
+}
+interface DraggingState {
+ initialTarget: Element;
+ initialClientY: number;
+ initialContentTop: number;
+ selectionStartIndex: number;
+ selectionItemsCount: number;
+ items: RenderedItem[];
+ offset: number;
+ didMoveItems: boolean;
+}
+interface RenderValueComponentDescription {
+ component: SvelteComponentTyped;
+ props: Record;
+}
+interface TransformModalOptions {
+ id?: string;
+ rootPath?: JSONPath;
+ onTransform?: (state: {
+ operations: JSONPatchDocument;
+ json: JSONValue;
+ transformedJson: JSONValue;
+ }) => void;
+ onClose?: () => void;
+}
+interface TransformModalCallback {
+ id: string;
+ rootPath: JSONPath;
+ json: JSONValue;
+ onTransform: (operations: JSONPatchDocument) => void;
+ onClose: () => void;
+}
+interface SortModalCallback {
+ id: string;
+ json: JSONValue;
+ rootPath: JSONPath;
+ onSort: OnSort;
+ onClose: () => void;
+}
+interface JSONEditorModalCallback {
+ content: Content;
+ path: JSONPath;
+ onPatch: OnPatch;
+ onClose: () => void;
+}
+declare enum SortDirection {
+ asc = "asc",
+ desc = "desc"
+}
+interface TableCellIndex {
+ rowIndex: number;
+ columnIndex: number;
+}
+interface SortedColumn {
+ path: JSONPath;
+ sortDirection: SortDirection;
+}
+type JSONSchema = Record;
+type JSONSchemaDefinitions = Record;
+type JSONSchemaEnum = Array;
+
+declare const __propDef$6: {
+ props: {
+ content?: Content | undefined;
+ readOnly?: boolean | undefined;
+ indentation?: string | number | undefined;
+ tabSize?: number | undefined;
+ mode?: Mode | undefined;
+ mainMenuBar?: boolean | undefined;
+ navigationBar?: boolean | undefined;
+ statusBar?: boolean | undefined;
+ askToFormat?: boolean | undefined;
+ escapeControlCharacters?: boolean | undefined;
+ escapeUnicodeCharacters?: boolean | undefined;
+ flattenColumns?: boolean | undefined;
+ parser?: JSON | undefined;
+ validator?: Validator | null | undefined;
+ validationParser?: JSON | undefined;
+ pathParser?: JSONPathParser | undefined;
+ queryLanguages?: QueryLanguage[] | undefined;
+ queryLanguageId?: string | undefined;
+ onChangeQueryLanguage?: OnChangeQueryLanguage | undefined;
+ onChange?: OnChange | undefined;
+ onRenderValue?: OnRenderValue | undefined;
+ onClassName?: OnClassName | undefined;
+ onRenderMenu?: OnRenderMenu | undefined;
+ onChangeMode?: OnChangeMode | undefined;
+ onError?: OnError | undefined;
+ onFocus?: OnFocus | undefined;
+ onBlur?: OnBlur | undefined;
+ get?: (() => Content) | undefined;
+ set?: ((newContent: Content) => Promise) | undefined;
+ update?: ((updatedContent: Content) => Promise) | undefined;
+ patch?: ((operations: JSONPatchDocument) => Promise) | undefined;
+ expand?: ((callback?: OnExpand) => Promise) | undefined;
+ transform?: ((options: TransformModalOptions) => void) | undefined;
+ validate?: (() => ContentErrors | null) | undefined;
+ acceptAutoRepair?: (() => Promise) | undefined;
+ scrollTo?: ((path: JSONPath) => Promise) | undefined;
+ findElement?: ((path: JSONPath) => Element) | undefined;
+ focus?: (() => Promise) | undefined;
+ refresh?: (() => Promise) | undefined;
+ updateProps?: ((props: JSONEditorPropsOptional) => Promise) | undefined;
+ destroy?: (() => Promise) | undefined;
+ };
+ events: {
+ [evt: string]: CustomEvent;
+ };
+ slots: {};
+};
+type JsonEditorProps = typeof __propDef$6.props;
+type JsonEditorEvents = typeof __propDef$6.events;
+type JsonEditorSlots = typeof __propDef$6.slots;
+declare class JsonEditor extends SvelteComponentTyped {
+ get get(): () => Content;
+ get set(): (newContent: Content) => Promise;
+ get update(): (updatedContent: Content) => Promise;
+ get patch(): (operations: JSONPatchDocument) => Promise;
+ get expand(): (callback?: OnExpand | undefined) => Promise;
+ get transform(): (options: TransformModalOptions) => void;
+ get validate(): () => ContentErrors | null;
+ get acceptAutoRepair(): () => Promise;
+ get scrollTo(): (path: JSONPath) => Promise;
+ get findElement(): (path: JSONPath) => Element;
+ get focus(): () => Promise;
+ get refresh(): () => Promise;
+ get updateProps(): (props: JSONEditorPropsOptional) => Promise;
+ get destroy(): () => Promise;
+}
+
+declare const __propDef$5: {
+ props: {
+ path: JSONPath;
+ value: JSONValue;
+ readOnly: boolean;
+ onPatch: OnPatch;
+ focus: () => void;
+ };
+ events: {
+ [evt: string]: CustomEvent;
+ };
+ slots: {};
+};
+type BooleanToggleProps = typeof __propDef$5.props;
+type BooleanToggleEvents = typeof __propDef$5.events;
+type BooleanToggleSlots = typeof __propDef$5.slots;
+declare class BooleanToggle extends SvelteComponentTyped {
+}
+
+declare const __propDef$4: {
+ props: {
+ path: JSONPath;
+ value: string;
+ readOnly: boolean;
+ onPatch: OnPatch;
+ focus: () => void;
+ };
+ events: {
+ [evt: string]: CustomEvent;
+ };
+ slots: {};
+};
+type ColorPickerProps = typeof __propDef$4.props;
+type ColorPickerEvents = typeof __propDef$4.events;
+type ColorPickerSlots = typeof __propDef$4.slots;
+declare class ColorPicker extends SvelteComponentTyped {
+}
+
+declare const __propDef$3: {
+ props: {
+ path: JSONPath;
+ value: JSONValue;
+ parser: JSONParser;
+ normalization: ValueNormalization;
+ enforceString: boolean;
+ onPatch: OnPatch;
+ onPasteJson: OnPasteJson;
+ onSelect: OnSelect;
+ onFind: OnFind;
+ focus: () => void;
+ findNextInside: FindNextInside;
+ };
+ events: {
+ [evt: string]: CustomEvent;
+ };
+ slots: {};
+};
+type EditableValueProps = typeof __propDef$3.props;
+type EditableValueEvents = typeof __propDef$3.events;
+type EditableValueSlots = typeof __propDef$3.slots;
+declare class EditableValue extends SvelteComponentTyped {
+}
+
+declare const __propDef$2: {
+ props: {
+ path: JSONPath;
+ value: JSONValue;
+ parser: JSONParser;
+ readOnly: boolean;
+ selection: JSONSelection | undefined;
+ onPatch: OnPatch;
+ options: {
+ value: unknown;
+ text: string;
+ }[];
+ };
+ events: {
+ [evt: string]: CustomEvent;
+ };
+ slots: {};
+};
+type EnumValueProps = typeof __propDef$2.props;
+type EnumValueEvents = typeof __propDef$2.events;
+type EnumValueSlots = typeof __propDef$2.slots;
+declare class EnumValue extends SvelteComponentTyped {
+}
+
+declare const __propDef$1: {
+ props: {
+ path: JSONPath;
+ value: JSONValue;
+ readOnly: boolean;
+ normalization: ValueNormalization;
+ parser: JSONParser;
+ onSelect: OnSelect;
+ searchResultItems: ExtendedSearchResultItem[] | undefined;
+ };
+ events: {
+ [evt: string]: CustomEvent;
+ };
+ slots: {};
+};
+type ReadonlyValueProps = typeof __propDef$1.props;
+type ReadonlyValueEvents = typeof __propDef$1.events;
+type ReadonlyValueSlots = typeof __propDef$1.slots;
+declare class ReadonlyValue extends SvelteComponentTyped {
+}
+
+declare const __propDef: {
+ props: {
+ value: number;
+ };
+ events: {
+ [evt: string]: CustomEvent;
+ };
+ slots: {};
+};
+type TimestampTagProps = typeof __propDef.props;
+type TimestampTagEvents = typeof __propDef.events;
+type TimestampTagSlots = typeof __propDef.slots;
+declare class TimestampTag extends SvelteComponentTyped {
+}
+
+declare function renderValue({ path, value, readOnly, enforceString, searchResultItems, isEditing, parser, normalization, onPatch, onPasteJson, onSelect, onFind, findNextInside, focus }: RenderValueProps): RenderValueComponentDescription[];
+
+/**
+ * Search the JSON schema for enums defined at given props.path. If found,
+ * return an EnumValue renderer. If not found, return null. In that case you
+ * have to fallback on the default valueRender function
+ */
+declare function renderJSONSchemaEnum(props: RenderValueProps, schema: JSONSchema, schemaDefinitions?: JSONSchemaDefinitions): RenderValueComponentDescription[] | null;
+
+interface URIComponents {
+ scheme?: string;
+ userinfo?: string;
+ host?: string;
+ port?: number | string;
+ path?: string;
+ query?: string;
+ fragment?: string;
+ reference?: string;
+ error?: string;
+}
+
+declare abstract class _CodeOrName {
+ abstract readonly str: string;
+ abstract readonly names: UsedNames;
+ abstract toString(): string;
+ abstract emptyStr(): boolean;
+}
+declare class Name extends _CodeOrName {
+ readonly str: string;
+ constructor(s: string);
+ toString(): string;
+ emptyStr(): boolean;
+ get names(): UsedNames;
+}
+declare class _Code extends _CodeOrName {
+ readonly _items: readonly CodeItem[];
+ private _str?;
+ private _names?;
+ constructor(code: string | readonly CodeItem[]);
+ toString(): string;
+ emptyStr(): boolean;
+ get str(): string;
+ get names(): UsedNames;
+}
+type CodeItem = Name | string | number | boolean | null;
+type UsedNames = Record;
+type Code = _Code | Name;
+
+interface NameGroup {
+ prefix: string;
+ index: number;
+}
+interface NameValue {
+ ref: ValueReference;
+ key?: unknown;
+ code?: Code;
+}
+type ValueReference = unknown;
+interface ScopeOptions {
+ prefixes?: Set;
+ parent?: Scope;
+}
+interface ValueScopeOptions extends ScopeOptions {
+ scope: ScopeStore;
+ es5?: boolean;
+ lines?: boolean;
+}
+type ScopeStore = Record;
+type ScopeValues = {
+ [Prefix in string]?: Map;
+};
+type ScopeValueSets = {
+ [Prefix in string]?: Set;
+};
+declare enum UsedValueState {
+ Started = 0,
+ Completed = 1
+}
+type UsedScopeValues = {
+ [Prefix in string]?: Map;
+};
+declare class Scope {
+ protected readonly _names: {
+ [Prefix in string]?: NameGroup;
+ };
+ protected readonly _prefixes?: Set;
+ protected readonly _parent?: Scope;
+ constructor({ prefixes, parent }?: ScopeOptions);
+ toName(nameOrPrefix: Name | string): Name;
+ name(prefix: string): Name;
+ protected _newName(prefix: string): string;
+ private _nameGroup;
+}
+interface ScopePath {
+ property: string;
+ itemIndex: number;
+}
+declare class ValueScopeName extends Name {
+ readonly prefix: string;
+ value?: NameValue;
+ scopePath?: Code;
+ constructor(prefix: string, nameStr: string);
+ setValue(value: NameValue, { property, itemIndex }: ScopePath): void;
+}
+interface VSOptions extends ValueScopeOptions {
+ _n: Code;
+}
+declare class ValueScope extends Scope {
+ protected readonly _values: ScopeValues;
+ protected readonly _scope: ScopeStore;
+ readonly opts: VSOptions;
+ constructor(opts: ValueScopeOptions);
+ get(): ScopeStore;
+ name(prefix: string): ValueScopeName;
+ value(nameOrPrefix: ValueScopeName | string, value: NameValue): ValueScopeName;
+ getValue(prefix: string, keyOrRef: unknown): ValueScopeName | undefined;
+ scopeRefs(scopeName: Name, values?: ScopeValues | ScopeValueSets): Code;
+ scopeCode(values?: ScopeValues | ScopeValueSets, usedValues?: UsedScopeValues, getCode?: (n: ValueScopeName) => Code | undefined): Code;
+ private _reduceValues;
+}
+
+type SafeExpr = Code | number | boolean | null;
+type Block = Code | (() => void);
+interface CodeGenOptions {
+ es5?: boolean;
+ lines?: boolean;
+ ownProperties?: boolean;
+}
+declare class CodeGen {
+ readonly _scope: Scope;
+ readonly _extScope: ValueScope;
+ readonly _values: ScopeValueSets;
+ private readonly _nodes;
+ private readonly _blockStarts;
+ private readonly _constants;
+ private readonly opts;
+ constructor(extScope: ValueScope, opts?: CodeGenOptions);
+ toString(): string;
+ name(prefix: string): Name;
+ scopeName(prefix: string): ValueScopeName;
+ scopeValue(prefixOrName: ValueScopeName | string, value: NameValue): Name;
+ getScopeValue(prefix: string, keyOrRef: unknown): ValueScopeName | undefined;
+ scopeRefs(scopeName: Name): Code;
+ scopeCode(): Code;
+ private _def;
+ const(nameOrPrefix: Name | string, rhs: SafeExpr, _constant?: boolean): Name;
+ let(nameOrPrefix: Name | string, rhs?: SafeExpr, _constant?: boolean): Name;
+ var(nameOrPrefix: Name | string, rhs?: SafeExpr, _constant?: boolean): Name;
+ assign(lhs: Code, rhs: SafeExpr, sideEffects?: boolean): CodeGen;
+ add(lhs: Code, rhs: SafeExpr): CodeGen;
+ code(c: Block | SafeExpr): CodeGen;
+ object(...keyValues: [Name | string, SafeExpr | string][]): _Code;
+ if(condition: Code | boolean, thenBody?: Block, elseBody?: Block): CodeGen;
+ elseIf(condition: Code | boolean): CodeGen;
+ else(): CodeGen;
+ endIf(): CodeGen;
+ private _for;
+ for(iteration: Code, forBody?: Block): CodeGen;
+ forRange(nameOrPrefix: Name | string, from: SafeExpr, to: SafeExpr, forBody: (index: Name) => void, varKind?: Code): CodeGen;
+ forOf(nameOrPrefix: Name | string, iterable: Code, forBody: (item: Name) => void, varKind?: Code): CodeGen;
+ forIn(nameOrPrefix: Name | string, obj: Code, forBody: (item: Name) => void, varKind?: Code): CodeGen;
+ endFor(): CodeGen;
+ label(label: Name): CodeGen;
+ break(label?: Code): CodeGen;
+ return(value: Block | SafeExpr): CodeGen;
+ try(tryBody: Block, catchCode?: (e: Name) => void, finallyCode?: Block): CodeGen;
+ throw(error: Code): CodeGen;
+ block(body?: Block, nodeCount?: number): CodeGen;
+ endBlock(nodeCount?: number): CodeGen;
+ func(name: Name, args?: Code, async?: boolean, funcBody?: Block): CodeGen;
+ endFunc(): CodeGen;
+ optimize(n?: number): void;
+ private _leafNode;
+ private _blockNode;
+ private _endBlockNode;
+ private _elseNode;
+ private get _root();
+ private get _currNode();
+ private set _currNode(value);
+}
+
+declare const _jsonTypes: readonly ["string", "number", "integer", "boolean", "null", "object", "array"];
+type JSONType$1 = typeof _jsonTypes[number];
+type ValidationTypes = {
+ [K in JSONType$1]: boolean | RuleGroup | undefined;
+};
+interface ValidationRules {
+ rules: RuleGroup[];
+ post: RuleGroup;
+ all: {
+ [Key in string]?: boolean | Rule;
+ };
+ keywords: {
+ [Key in string]?: boolean;
+ };
+ types: ValidationTypes;
+}
+interface RuleGroup {
+ type?: JSONType$1;
+ rules: Rule[];
+}
+interface Rule {
+ keyword: string;
+ definition: AddedKeywordDefinition;
+}
+
+declare enum Type {
+ Num = 0,
+ Str = 1
+}
+
+type SubschemaArgs = Partial<{
+ keyword: string;
+ schemaProp: string | number;
+ schema: AnySchema;
+ schemaPath: Code;
+ errSchemaPath: string;
+ topSchemaRef: Code;
+ data: Name | Code;
+ dataProp: Code | string | number;
+ dataTypes: JSONType$1[];
+ definedProperties: Set;
+ propertyName: Name;
+ dataPropType: Type;
+ jtdDiscriminator: string;
+ jtdMetadata: boolean;
+ compositeRule: true;
+ createErrors: boolean;
+ allErrors: boolean;
+}>;
+
+interface ErrorPaths {
+ instancePath?: Code;
+ schemaPath?: string;
+ parentSchema?: boolean;
+}
+
+declare class KeywordCxt implements KeywordErrorCxt {
+ readonly gen: CodeGen;
+ readonly allErrors?: boolean;
+ readonly keyword: string;
+ readonly data: Name;
+ readonly $data?: string | false;
+ schema: any;
+ readonly schemaValue: Code | number | boolean;
+ readonly schemaCode: Code | number | boolean;
+ readonly schemaType: JSONType$1[];
+ readonly parentSchema: AnySchemaObject;
+ readonly errsCount?: Name;
+ params: KeywordCxtParams;
+ readonly it: SchemaObjCxt;
+ readonly def: AddedKeywordDefinition;
+ constructor(it: SchemaObjCxt, def: AddedKeywordDefinition, keyword: string);
+ result(condition: Code, successAction?: () => void, failAction?: () => void): void;
+ failResult(condition: Code, successAction?: () => void, failAction?: () => void): void;
+ pass(condition: Code, failAction?: () => void): void;
+ fail(condition?: Code): void;
+ fail$data(condition: Code): void;
+ error(append?: boolean, errorParams?: KeywordCxtParams, errorPaths?: ErrorPaths): void;
+ private _error;
+ $dataError(): void;
+ reset(): void;
+ ok(cond: Code | boolean): void;
+ setParams(obj: KeywordCxtParams, assign?: true): void;
+ block$data(valid: Name, codeBlock: () => void, $dataValid?: Code): void;
+ check$data(valid?: Name, $dataValid?: Code): void;
+ invalid$data(): Code;
+ subschema(appl: SubschemaArgs, valid: Name): SchemaCxt;
+ mergeEvaluated(schemaCxt: SchemaCxt, toName?: typeof Name): void;
+ mergeValidEvaluated(schemaCxt: SchemaCxt, valid: Name): boolean | void;
+}
+
+type StrictNullChecksWrapper = undefined extends null ? `strictNullChecks must be true in tsconfig to use ${Name}` : Type;
+type UnionToIntersection = (U extends any ? (_: U) => void : never) extends (_: infer I) => void ? I : never;
+type UncheckedPartialSchema = Partial>;
+type JSONType = IsPartial extends true ? T | undefined : T;
+interface NumberKeywords {
+ minimum?: number;
+ maximum?: number;
+ exclusiveMinimum?: number;
+ exclusiveMaximum?: number;
+ multipleOf?: number;
+ format?: string;
+}
+interface StringKeywords {
+ minLength?: number;
+ maxLength?: number;
+ pattern?: string;
+ format?: string;
+}
+type UncheckedJSONSchemaType = (// these two unions allow arbitrary unions of types
+{
+ anyOf: readonly UncheckedJSONSchemaType[];
+} | {
+ oneOf: readonly UncheckedJSONSchemaType[];
+} | ({
+ type: readonly (T extends number ? JSONType<"number" | "integer", IsPartial> : T extends string ? JSONType<"string", IsPartial> : T extends boolean ? JSONType<"boolean", IsPartial> : never)[];
+} & UnionToIntersection) | ((T extends number ? {
+ type: JSONType<"number" | "integer", IsPartial>;
+} & NumberKeywords : T extends string ? {
+ type: JSONType<"string", IsPartial>;
+} & StringKeywords : T extends boolean ? {
+ type: JSONType<"boolean", IsPartial>;
+} : T extends readonly [any, ...any[]] ? {
+ type: JSONType<"array", IsPartial>;
+ items: {
+ readonly [K in keyof T]-?: UncheckedJSONSchemaType & Nullable;
+ } & {
+ length: T["length"];
+ };
+ minItems: T["length"];
+} & ({
+ maxItems: T["length"];
+} | {
+ additionalItems: false;
+}) : T extends readonly any[] ? {
+ type: JSONType<"array", IsPartial>;
+ items: UncheckedJSONSchemaType;
+ contains?: UncheckedPartialSchema;
+ minItems?: number;
+ maxItems?: number;
+ minContains?: number;
+ maxContains?: number;
+ uniqueItems?: true;
+ additionalItems?: never;
+} : T extends Record ? {
+ type: JSONType<"object", IsPartial>;
+ additionalProperties?: boolean | UncheckedJSONSchemaType;
+ unevaluatedProperties?: boolean | UncheckedJSONSchemaType;
+ properties?: IsPartial extends true ? Partial> : UncheckedPropertiesSchema;
+ patternProperties?: Record>;
+ propertyNames?: Omit, "type"> & {
+ type?: "string";
+ };
+ dependencies?: {
+ [K in keyof T]?: Readonly<(keyof T)[]> | UncheckedPartialSchema;
+ };
+ dependentRequired?: {
+ [K in keyof T]?: Readonly<(keyof T)[]>;
+ };
+ dependentSchemas?: {
+ [K in keyof T]?: UncheckedPartialSchema;
+ };
+ minProperties?: number;
+ maxProperties?: number;
+} & (IsPartial extends true ? {
+ required: Readonly<(keyof T)[]>;
+} : [UncheckedRequiredMembers] extends [never] ? {
+ required?: Readonly[]>;
+} : {
+ required: Readonly[]>;
+}) : T extends null ? {
+ type: JSONType<"null", IsPartial>;
+ nullable: true;
+} : never) & {
+ allOf?: Readonly[]>;
+ anyOf?: Readonly[]>;
+ oneOf?: Readonly[]>;
+ if?: UncheckedPartialSchema;
+ then?: UncheckedPartialSchema;
+ else?: UncheckedPartialSchema;
+ not?: UncheckedPartialSchema;
+})) & {
+ [keyword: string]: any;
+ $id?: string;
+ $ref?: string;
+ $defs?: Record>;
+ definitions?: Record>;
+};
+type JSONSchemaType = StrictNullChecksWrapper<"JSONSchemaType", UncheckedJSONSchemaType>;
+type Known = {
+ [key: string]: Known;
+} | [Known, ...Known[]] | Known[] | number | string | boolean | null;
+type UncheckedPropertiesSchema = {
+ [K in keyof T]-?: (UncheckedJSONSchemaType & Nullable) | {
+ $ref: string;
+ };
+};
+type UncheckedRequiredMembers = {
+ [K in keyof T]-?: undefined extends T[K] ? never : K;
+}[keyof T];
+type Nullable = undefined extends T ? {
+ nullable: true;
+ const?: null;
+ enum?: Readonly<(T | null)[]>;
+ default?: T | null;
+} : {
+ nullable?: false;
+ const?: T;
+ enum?: Readonly;
+ default?: T;
+};
+
+/** numeric strings */
+type NumberType = "float32" | "float64" | "int8" | "uint8" | "int16" | "uint16" | "int32" | "uint32";
+/** string strings */
+type StringType = "string" | "timestamp";
+/** Generic JTD Schema without inference of the represented type */
+type SomeJTDSchemaType = (// ref
+{
+ ref: string;
+} | {
+ type: NumberType | StringType | "boolean";
+} | {
+ enum: string[];
+} | {
+ elements: SomeJTDSchemaType;
+} | {
+ values: SomeJTDSchemaType;
+} | {
+ properties: Record;
+ optionalProperties?: Record;
+ additionalProperties?: boolean;
+} | {
+ properties?: Record;
+ optionalProperties: Record;
+ additionalProperties?: boolean;
+} | {
+ discriminator: string;
+ mapping: Record;
+} | {}) & {
+ nullable?: boolean;
+ metadata?: Record;
+ definitions?: Record;
+};
+/** required keys of an object, not undefined */
+type RequiredKeys = {
+ [K in keyof T]-?: undefined extends T[K] ? never : K;
+}[keyof T];
+/** optional or undifined-able keys of an object */
+type OptionalKeys = {
+ [K in keyof T]-?: undefined extends T[K] ? K : never;
+}[keyof T];
+/** type is true if T is a union type */
+type IsUnion_ = false extends (T extends unknown ? ([U] extends [T] ? false : true) : never) ? false : true;
+type IsUnion = IsUnion_;
+/** type is true if T is identically E */
+type TypeEquality = [T] extends [E] ? ([E] extends [T] ? true : false) : false;
+/** type is true if T or null is identically E or null*/
+type NullTypeEquality = TypeEquality;
+/** gets only the string literals of a type or null if a type isn't a string literal */
+type EnumString = [T] extends [never] ? null : T extends string ? string extends T ? null : T : null;
+/** true if type is a union of string literals */
+type IsEnum = null extends EnumString ? false : true;
+/** true only if all types are array types (not tuples) */
+type IsElements = false extends IsUnion ? [T] extends [readonly unknown[]] ? undefined extends T[0.5] ? false : true : false : false;
+/** true if the the type is a values type */
+type IsValues = false extends IsUnion ? TypeEquality : false;
+/** true if type is a properties type and Union is false, or type is a discriminator type and Union is true */
+type IsRecord = Union extends IsUnion ? null extends EnumString ? false : true : false;
+/** true if type represents an empty record */
+type IsEmptyRecord = [T] extends [Record] ? [T] extends [never] ? false : true : false;
+/** actual schema */
+type JTDSchemaType = Record> = (// refs - where null wasn't specified, must match exactly
+(null extends EnumString ? never : ({
+ [K in keyof D]: [T] extends [D[K]] ? {
+ ref: K;
+ } : never;
+}[keyof D] & {
+ nullable?: false;
+}) | (null extends T ? {
+ [K in keyof D]: [Exclude] extends [Exclude] ? {
+ ref: K;
+ } : never;
+}[keyof D] & {
+ nullable: true;
+} : never)) | (unknown extends T ? {
+ nullable?: boolean;
+} : never) | ((true extends NullTypeEquality ? {
+ type: NumberType;
+} : true extends NullTypeEquality ? {
+ type: "boolean";
+} : true extends NullTypeEquality ? {
+ type: StringType;
+} : true extends NullTypeEquality ? {
+ type: "timestamp";
+} : true extends IsEnum> ? {
+ enum: EnumString>[];
+} : true extends IsElements> ? T extends readonly (infer E)[] ? {
+ elements: JTDSchemaType;
+} : never : true extends IsEmptyRecord> ? {
+ properties: Record;
+ optionalProperties?: Record;
+} | {
+ optionalProperties: Record;
+} : true extends IsValues> ? T extends Record ? {
+ values: JTDSchemaType;
+} : never : true extends IsRecord, false> ? ([RequiredKeys>] extends [never] ? {
+ properties?: Record;
+} : {
+ properties: {
+ [K in RequiredKeys]: JTDSchemaType;
+ };
+}) & ([OptionalKeys>] extends [never] ? {
+ optionalProperties?: Record;
+} : {
+ optionalProperties: {
+ [K in OptionalKeys]: JTDSchemaType, D>;
+ };
+}) & {
+ additionalProperties?: boolean;
+} : true extends IsRecord, true> ? {
+ [K in keyof Exclude]-?: Exclude[K] extends string ? {
+ discriminator: K;
+ mapping: {
+ [M in Exclude[K]]: JTDSchemaType ? T : never, K>, D>;
+ };
+ } : never;
+}[keyof Exclude] : never) & (null extends T ? {
+ nullable: true;
+} : {
+ nullable?: false;
+}))) & {
+ metadata?: Record;
+ definitions?: {
+ [K in keyof D]: JTDSchemaType;
+ };
+};
+type JTDDataDef> = // ref
+(S extends {
+ ref: string;
+} ? D extends {
+ [K in S["ref"]]: infer V;
+} ? JTDDataDef : never : S extends {
+ type: NumberType;
+} ? number : S extends {
+ type: "boolean";
+} ? boolean : S extends {
+ type: "string";
+} ? string : S extends {
+ type: "timestamp";
+} ? string | Date : S extends {
+ enum: readonly (infer E)[];
+} ? string extends E ? never : [E] extends [string] ? E : never : S extends {
+ elements: infer E;
+} ? JTDDataDef[] : S extends {
+ properties: Record;
+ optionalProperties?: Record;
+ additionalProperties?: boolean;
+} ? {
+ -readonly [K in keyof S["properties"]]-?: JTDDataDef;
+} & {
+ -readonly [K in keyof S["optionalProperties"]]+?: JTDDataDef;
+} & ([S["additionalProperties"]] extends [true] ? Record : unknown) : S extends {
+ properties?: Record;
+ optionalProperties: Record;
+ additionalProperties?: boolean;
+} ? {
+ -readonly [K in keyof S["properties"]]-?: JTDDataDef;
+} & {
+ -readonly [K in keyof S["optionalProperties"]]+?: JTDDataDef;
+} & ([S["additionalProperties"]] extends [true] ? Record : unknown) : S extends {
+ values: infer V;
+} ? Record> : S extends {
+ discriminator: infer M;
+ mapping: Record;
+} ? [M] extends [string] ? {
+ [K in keyof S["mapping"]]: JTDDataDef & {
+ [KM in M]: K;
+ };
+}[keyof S["mapping"]] : never : unknown) | (S extends {
+ nullable: true;
+} ? null : never);
+type JTDDataType = S extends {
+ definitions: Record;
+} ? JTDDataDef : JTDDataDef>;
+
+declare class ValidationError extends Error {
+ readonly errors: Partial[];
+ readonly ajv: true;
+ readonly validation: true;
+ constructor(errors: Partial[]);
+}
+
+declare class MissingRefError extends Error {
+ readonly missingRef: string;
+ readonly missingSchema: string;
+ constructor(resolver: UriResolver, baseId: string, ref: string, msg?: string);
+}
+
+type Options = CurrentOptions & DeprecatedOptions;
+interface CurrentOptions {
+ strict?: boolean | "log";
+ strictSchema?: boolean | "log";
+ strictNumbers?: boolean | "log";
+ strictTypes?: boolean | "log";
+ strictTuples?: boolean | "log";
+ strictRequired?: boolean | "log";
+ allowMatchingProperties?: boolean;
+ allowUnionTypes?: boolean;
+ validateFormats?: boolean;
+ $data?: boolean;
+ allErrors?: boolean;
+ verbose?: boolean;
+ discriminator?: boolean;
+ unicodeRegExp?: boolean;
+ timestamp?: "string" | "date";
+ parseDate?: boolean;
+ allowDate?: boolean;
+ $comment?: true | ((comment: string, schemaPath?: string, rootSchema?: AnySchemaObject) => unknown);
+ formats?: {
+ [Name in string]?: Format;
+ };
+ keywords?: Vocabulary;
+ schemas?: AnySchema[] | {
+ [Key in string]?: AnySchema;
+ };
+ logger?: Logger | false;
+ loadSchema?: (uri: string) => Promise;
+ removeAdditional?: boolean | "all" | "failing";
+ useDefaults?: boolean | "empty";
+ coerceTypes?: boolean | "array";
+ next?: boolean;
+ unevaluated?: boolean;
+ dynamicRef?: boolean;
+ schemaId?: "id" | "$id";
+ jtd?: boolean;
+ meta?: SchemaObject | boolean;
+ defaultMeta?: string | AnySchemaObject;
+ validateSchema?: boolean | "log";
+ addUsedSchema?: boolean;
+ inlineRefs?: boolean | number;
+ passContext?: boolean;
+ loopRequired?: number;
+ loopEnum?: number;
+ ownProperties?: boolean;
+ multipleOfPrecision?: number;
+ int32range?: boolean;
+ messages?: boolean;
+ code?: CodeOptions;
+ uriResolver?: UriResolver;
+}
+interface CodeOptions {
+ es5?: boolean;
+ esm?: boolean;
+ lines?: boolean;
+ optimize?: boolean | number;
+ formats?: Code;
+ source?: boolean;
+ process?: (code: string, schema?: SchemaEnv) => string;
+ regExp?: RegExpEngine;
+}
+interface InstanceCodeOptions extends CodeOptions {
+ regExp: RegExpEngine;
+ optimize: number;
+}
+interface DeprecatedOptions {
+ /** @deprecated */
+ ignoreKeywordsWithRef?: boolean;
+ /** @deprecated */
+ jsPropertySyntax?: boolean;
+ /** @deprecated */
+ unicode?: boolean;
+}
+type RequiredInstanceOptions = {
+ [K in "strictSchema" | "strictNumbers" | "strictTypes" | "strictTuples" | "strictRequired" | "inlineRefs" | "loopRequired" | "loopEnum" | "meta" | "messages" | "schemaId" | "addUsedSchema" | "validateSchema" | "validateFormats" | "int32range" | "unicodeRegExp" | "uriResolver"]: NonNullable;
+} & {
+ code: InstanceCodeOptions;
+};
+type InstanceOptions = Options & RequiredInstanceOptions;
+interface Logger {
+ log(...args: unknown[]): unknown;
+ warn(...args: unknown[]): unknown;
+ error(...args: unknown[]): unknown;
+}
+declare class Ajv$1 {
+ opts: InstanceOptions;
+ errors?: ErrorObject[] | null;
+ logger: Logger;
+ readonly scope: ValueScope;
+ readonly schemas: {
+ [Key in string]?: SchemaEnv;
+ };
+ readonly refs: {
+ [Ref in string]?: SchemaEnv | string;
+ };
+ readonly formats: {
+ [Name in string]?: AddedFormat;
+ };
+ readonly RULES: ValidationRules;
+ readonly _compilations: Set;
+ private readonly _loading;
+ private readonly _cache;
+ private readonly _metaOpts;
+ static ValidationError: typeof ValidationError;
+ static MissingRefError: typeof MissingRefError;
+ constructor(opts?: Options);
+ _addVocabularies(): void;
+ _addDefaultMetaSchema(): void;
+ defaultMeta(): string | AnySchemaObject | undefined;
+ validate(schema: Schema | string, data: unknown): boolean;
+ validate(schemaKeyRef: AnySchema | string, data: unknown): boolean | Promise;
+ validate(schema: Schema | JSONSchemaType | string, data: unknown): data is T;
+ validate(schema: JTDSchemaType, data: unknown): data is T;
+ validate(schema: T, data: unknown): data is JTDDataType;
+ validate(schema: AsyncSchema, data: unknown | T): Promise;
+ validate(schemaKeyRef: AnySchema | string, data: unknown): data is T | Promise;
+ compile(schema: Schema | JSONSchemaType, _meta?: boolean): ValidateFunction;
+ compile(schema: JTDSchemaType, _meta?: boolean): ValidateFunction;
+ compile(schema: T, _meta?: boolean): ValidateFunction>;
+ compile(schema: AsyncSchema, _meta?: boolean): AsyncValidateFunction;
+ compile(schema: AnySchema, _meta?: boolean): AnyValidateFunction;
+ compileAsync(schema: SchemaObject | JSONSchemaType, _meta?: boolean): Promise>;
+ compileAsync(schema: JTDSchemaType, _meta?: boolean): Promise>;
+ compileAsync(schema: AsyncSchema, meta?: boolean): Promise>;
+ compileAsync(schema: AnySchemaObject, meta?: boolean): Promise>;
+ addSchema(schema: AnySchema | AnySchema[], // If array is passed, `key` will be ignored
+ key?: string, // Optional schema key. Can be passed to `validate` method instead of schema object or id/ref. One schema per instance can have empty `id` and `key`.
+ _meta?: boolean, // true if schema is a meta-schema. Used internally, addMetaSchema should be used instead.
+ _validateSchema?: boolean | "log"): Ajv$1;
+ addMetaSchema(schema: AnySchemaObject, key?: string, // schema key
+ _validateSchema?: boolean | "log"): Ajv$1;
+ validateSchema(schema: AnySchema, throwOrLogError?: boolean): boolean | Promise;
+ getSchema