';
@@ -1629,7 +1620,7 @@ if ($action == 'create' && $user->rights->projet->creer) {
// Presend form
$modelmail = 'project';
$defaulttopic = 'SendProjectRef';
- $diroutput = $conf->project->dir_output;
+ $diroutput = $conf->project->multidir_output[$object->entity];
$autocopy = 'MAIN_MAIL_AUTOCOPY_PROJECT_TO'; // used to know the automatic BCC to add
$trackid = 'proj'.$object->id;
diff --git a/htdocs/projet/class/project.class.php b/htdocs/projet/class/project.class.php
index b3c0c142f7a..9f00d4ce3c0 100644
--- a/htdocs/projet/class/project.class.php
+++ b/htdocs/projet/class/project.class.php
@@ -1422,6 +1422,7 @@ class Project extends CommonObject
// Initialise parameters
$this->id = 0;
$this->ref = 'SPECIMEN';
+ $this->entity = $conf->entity;
$this->specimen = 1;
$this->socid = 1;
$this->date_c = $now;
diff --git a/htdocs/projet/class/task.class.php b/htdocs/projet/class/task.class.php
index b8821fbd486..fe00eb671d9 100644
--- a/htdocs/projet/class/task.class.php
+++ b/htdocs/projet/class/task.class.php
@@ -203,7 +203,7 @@ class Task extends CommonObjectLine
$sql .= ", progress";
$sql .= ", budget_amount";
$sql .= ") VALUES (";
- $sql .= ((int) $conf->entity);
+ $sql .= (!empty($this->entity) ? (int) $this->entity : (int) $conf->entity);
$sql .= ", ".((int) $this->fk_project);
$sql .= ", ".(!empty($this->ref) ? "'".$this->db->escape($this->ref)."'" : 'null');
$sql .= ", ".((int) $this->fk_task_parent);
@@ -279,6 +279,7 @@ class Task extends CommonObjectLine
$sql = "SELECT";
$sql .= " t.rowid,";
$sql .= " t.ref,";
+ $sql .= " t.entity,";
$sql .= " t.fk_projet as fk_project,";
$sql .= " t.fk_task_parent,";
$sql .= " t.label,";
@@ -323,6 +324,7 @@ class Task extends CommonObjectLine
$this->id = $obj->rowid;
$this->ref = $obj->ref;
+ $this->entity = $obj->entity;
$this->fk_project = $obj->fk_project;
$this->fk_task_parent = $obj->fk_task_parent;
$this->label = $obj->label;
diff --git a/htdocs/projet/contact.php b/htdocs/projet/contact.php
index 43fdb1a3ca2..b0fece54827 100644
--- a/htdocs/projet/contact.php
+++ b/htdocs/projet/contact.php
@@ -247,6 +247,10 @@ if (empty($reshook)) {
* View
*/
+$form = new Form($db);
+$contactstatic = new Contact($db);
+$userstatic = new User($db);
+
$title = $langs->trans('ProjectContact').' - '.$object->ref.' '.$object->name;
if (!empty($conf->global->MAIN_HTML_TITLE) && preg_match('/projectnameonly/', $conf->global->MAIN_HTML_TITLE) && $object->name) {
$title = $object->ref.' '.$object->name.' - '.$langs->trans('ProjectContact');
@@ -256,18 +260,12 @@ $help_url = 'EN:Module_Projects|FR:Module_Projets|ES:Módulo_Proyectos|DE:
llxHeader('', $title, $help_url);
-$form = new Form($db);
-$contactstatic = new Contact($db);
-$userstatic = new User($db);
-/* *************************************************************************** */
-/* */
-/* Edition and view mode */
-/* */
-/* *************************************************************************** */
-
if ($id > 0 || !empty($ref)) {
+ /*
+ * View
+ */
if (!empty($conf->global->PROJECT_ALLOW_COMMENT_ON_PROJECT) && method_exists($object, 'fetchComments') && empty($object->comments)) {
$object->fetchComments();
}
@@ -300,10 +298,11 @@ if ($id > 0 || !empty($ref)) {
$morehtmlref = '
';
// Title
- $morehtmlref .= $object->title;
+ $morehtmlref .= dol_escape_htmltag($object->title);
+ $morehtmlref .= ' ';
// Thirdparty
if (!empty($object->thirdparty->id) && $object->thirdparty->id > 0) {
- $morehtmlref .= ' '.$object->thirdparty->getNomUrl(1, 'project');
+ $morehtmlref .= $object->thirdparty->getNomUrl(1, 'project');
}
$morehtmlref .= '
';
@@ -365,26 +364,25 @@ if ($id > 0 || !empty($ref)) {
}
print '';
- if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES) && $object->opp_status) {
+ if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES) && !empty($object->usage_opportunity)) {
// Opportunity status
print '
';
@@ -404,7 +402,7 @@ if ($id > 0 || !empty($ref)) {
$start = dol_print_date($object->date_start, 'day');
print ($start ? $start : '?');
$end = dol_print_date($object->date_end, 'day');
- print ' - ';
+ print '
';
print ($end ? $end : '?');
if ($object->hasDelay()) {
print img_warning("Late");
@@ -425,7 +423,7 @@ if ($id > 0 || !empty($ref)) {
// Description
print '
';
// Categories
diff --git a/htdocs/projet/document.php b/htdocs/projet/document.php
index bb50bf0def6..4e7620476c4 100644
--- a/htdocs/projet/document.php
+++ b/htdocs/projet/document.php
@@ -50,7 +50,7 @@ if (!empty($conf->global->PROJECT_ALLOW_COMMENT_ON_PROJECT) && method_exists($ob
}
if ($id > 0 || !empty($ref)) {
- $upload_dir = $conf->project->dir_output."/".dol_sanitizeFileName($object->ref);
+ $upload_dir = $conf->project->multidir_output[$object->entity]."/".dol_sanitizeFileName($object->ref);
}
// Get parameters
@@ -110,7 +110,7 @@ llxHeader('', $title, $help_url);
$form = new Form($db);
if ($object->id > 0) {
- $upload_dir = $conf->project->dir_output.'/'.dol_sanitizeFileName($object->ref);
+ $upload_dir = $conf->project->multidir_output[$object->entity].'/'.dol_sanitizeFileName($object->ref);
// To verify role of users
//$userAccess = $object->restrictedProjectArea($user,'read');
diff --git a/htdocs/projet/element.php b/htdocs/projet/element.php
index 3dcbbbbcddf..a737ffce640 100644
--- a/htdocs/projet/element.php
+++ b/htdocs/projet/element.php
@@ -341,7 +341,7 @@ print '
';
// Description
print ''.$langs->trans("Description").' ';
-print nl2br($object->description);
+print dol_htmlentitiesbr($object->description);
print ' ';
// Categories
diff --git a/htdocs/projet/tasks.php b/htdocs/projet/tasks.php
index 9e448b6cf45..f0f98e3df6c 100644
--- a/htdocs/projet/tasks.php
+++ b/htdocs/projet/tasks.php
@@ -344,6 +344,7 @@ if ($action == 'createtask' && $user->rights->projet->creer) {
$task = new Task($db);
$task->fk_project = $projectid;
+ $task->entity = $object->entity; // Task have the same entity of project
$task->ref = $taskref;
$task->label = $label;
$task->description = $description;
@@ -668,7 +669,7 @@ if ($id > 0 || !empty($ref)) {
// Description
print ''.$langs->trans("Description").' ';
- print nl2br($object->description);
+ print dol_htmlentitiesbr($object->description);
print ' ';
// Categories
diff --git a/htdocs/projet/tasks/document.php b/htdocs/projet/tasks/document.php
index 6a62e973a62..b8c6fd863c5 100644
--- a/htdocs/projet/tasks/document.php
+++ b/htdocs/projet/tasks/document.php
@@ -111,7 +111,7 @@ if ($id > 0 || !empty($ref)) {
$object->project = clone $projectstatic;
- $upload_dir = $conf->project->dir_output.'/'.dol_sanitizeFileName($projectstatic->ref).'/'.dol_sanitizeFileName($object->ref);
+ $upload_dir = $conf->project->multidir_output[$projectstatic->entity].'/'.dol_sanitizeFileName($projectstatic->ref).'/'.dol_sanitizeFileName($object->ref);
}
include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
diff --git a/htdocs/projet/tasks/time.php b/htdocs/projet/tasks/time.php
index fe7d2a093fd..12eb7c573ce 100644
--- a/htdocs/projet/tasks/time.php
+++ b/htdocs/projet/tasks/time.php
@@ -1051,7 +1051,7 @@ if (($id > 0 || !empty($ref)) || $projectidforalltimes > 0 || $allprojectforuser
// Description
print ''.$langs->trans("Description").' ';
- print nl2br($projectstatic->description);
+ print dol_htmlentitiesbr($projectstatic->description);
print ' ';
// Categories
diff --git a/htdocs/reception/card.php b/htdocs/reception/card.php
index 3059bac5f4e..7db91569a8d 100644
--- a/htdocs/reception/card.php
+++ b/htdocs/reception/card.php
@@ -93,6 +93,8 @@ if (GETPOST('modelselected')) {
}
$confirm = GETPOST('confirm', 'alpha');
$cancel = GETPOST('cancel', 'alpha');
+$backtopage = GETPOST('backtopage', 'alpha');
+$backtopageforcancel = GETPOST('backtopageforcancel', 'alpha');
//PDF
$hidedetails = (GETPOST('hidedetails', 'int') ? GETPOST('hidedetails', 'int') : (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS) ? 1 : 0));
@@ -178,7 +180,29 @@ if ($reshook < 0) {
}
if (empty($reshook)) {
+ /*
+ $backurlforlist = DOL_URL_ROOT.'/reception/list.php';
+
+ if (empty($backtopage) || ($cancel && empty($id))) {
+ if (empty($backtopage) || ($cancel && strpos($backtopage, '__ID__'))) {
+ if (empty($id) && (($action != 'add' && $action != 'create') || $cancel)) {
+ $backtopage = $backurlforlist;
+ } else {
+ $backtopage = dol_buildpath('/mymodule/myobject_card.php', 1).'?id='.((!empty($id) && $id > 0) ? $id : '__ID__');
+ }
+ }
+ }
+ */
+
if ($cancel) {
+ if (!empty($backtopageforcancel)) {
+ header("Location: ".$backtopageforcancel);
+ exit;
+ } elseif (!empty($backtopage)) {
+ header("Location: ".$backtopage);
+ exit;
+ }
+
$action = '';
}
@@ -315,16 +339,17 @@ if (empty($reshook)) {
}
}
+ // Loop lines to calculate $totalqty
for ($i = 1; $i <= $num; $i++) {
- $idl = "idl".$i;
+ $idl = "idl".$i; // id line source
- $sub_qty = array();
- $subtotalqty = 0;
+ //$sub_qty = array();
+ //$subtotalqty = 0;
- $j = 0;
- $batch = "batchl".$i."_0";
- $stockLocation = "ent1".$i."_0";
- $qty = "qtyl".$i;
+ //$j = 0;
+ //$batch = "batchl".$i."_0";
+ //$stockLocation = "ent1".$i."_0";
+ $qty = "qtyl".$i; // qty
//reception line for product with no batch management and no multiple stock location
if (GETPOST($qty, 'alpha') > 0) {
@@ -338,6 +363,7 @@ if (empty($reshook)) {
if ($totalqty > 0) { // There is at least one thing to ship
for ($i = 1; $i <= $num; $i++) {
+ $idl = "idl".$i; // id line source
$lineToTest = '';
$lineId = GETPOST($idl, 'int');
foreach ($objectsrc->lines as $linesrc) {
@@ -351,26 +377,28 @@ if (empty($reshook)) {
}
$qty = "qtyl".$i;
$comment = "comment".$i;
- // EATBY <-> DLUO see productbatch.class.php
- // SELLBY <-> DLC
+ // EATBY <-> DLUO and SELLBY <-> DLC, see productbatch.class.php
$eatby = "dluo".$i;
$sellby = "dlc".$i;
$batch = "batch".$i;
$cost_price = "cost_price".$i;
- //if (GETPOST($qty, 'int') > 0 || (GETPOST($qty, 'int') == 0 && getDolGlobalString('RECEPTION_GETS_ALL_ORDER_PRODUCTS')) || (GETPOST($qty, 'int') < 0 && getDolGlobalString('RECEPTION_ALLOW_NEGATIVE_QTY'))) {
- if (GETPOST($qty, 'int') > 0 || (GETPOST($qty, 'int') == 0 && $conf->global->RECEPTION_GETS_ALL_ORDER_PRODUCTS)) {
- $ent = "entl".$i;
+ //var_dump(GETPOST("productl".$i, 'int').' '.GETPOST('entl'.$i, 'int').' '.GETPOST($idl, 'int').' '.GETPOST($qty, 'int').' '.GETPOST($batch, 'alpha'));
+ //if (GETPOST($qty, 'int') > 0 || (GETPOST($qty, 'int') == 0 && getDolGlobalString('RECEPTION_GETS_ALL_ORDER_PRODUCTS')) || (GETPOST($qty, 'int') < 0 && getDolGlobalString('RECEPTION_ALLOW_NEGATIVE_QTY'))) {
+ if (GETPOST($qty, 'int') > 0 || (GETPOST($qty, 'int') == 0 && getDolGlobalString('RECEPTION_GETS_ALL_ORDER_PRODUCTS'))) {
+ $ent = "entl".$i;
$idl = "idl".$i;
$entrepot_id = is_numeric(GETPOST($ent, 'int')) ? GETPOST($ent, 'int') : GETPOST('entrepot_id', 'int');
+ /*
if (!empty($lineToTest)) {
$fk_product = $lineToTest->fk_product;
} else {
$fk_product = $linesrc->fk_product;
- }
+ }*/
+ $fk_product = GETPOST("productl".$i, 'int');
if ($entrepot_id < 0) {
$entrepot_id = '';
@@ -378,6 +406,7 @@ if (empty($reshook)) {
if (!($fk_product > 0) && empty($conf->global->STOCK_SUPPORTS_SERVICES)) {
$entrepot_id = 0;
}
+
$eatby = GETPOST($eatby, 'alpha');
$sellby = GETPOST($sellby, 'alpha');
$eatbydate = str_replace('/', '-', $eatby);
@@ -395,7 +424,6 @@ if (empty($reshook)) {
}
}
-
// Fill array 'array_options' with data from add form
$ret = $extrafields->setOptionalsFromPost(null, $object);
if ($ret < 0) {
@@ -760,6 +788,8 @@ if ($action == 'create') {
print ' ';
print ' ';
print ' ';
+ print ' ';
+ print ' ';
if (GETPOST('entrepot_id', 'int')) {
print ' ';
}
@@ -888,7 +918,7 @@ if ($action == 'create') {
if ($objectsrc->fetch_optionals() > 0) {
$recept->array_options = array_merge($recept->array_options, $objectsrc->array_options);
}
- print $object->showOptionals($extrafields, 'create', $parameters);
+ print $recept->showOptionals($extrafields, 'create', $parameters);
}
// Incoterms
@@ -915,7 +945,7 @@ if ($action == 'create') {
print dol_get_fiche_end();
- // Reception lines
+ // Number of lines show on the reception card
$numAsked = 0;
/**
@@ -928,7 +958,7 @@ if ($action == 'create') {
foreach ($_POST as $key => $value) {
// If create form is coming from the button "Create Reception" of previous page
- // without batch module enabled
+ // without batch module enabled or product with no lot/serial
$reg = array();
if (preg_match('/^product_([0-9]+)_([0-9]+)$/i', $key, $reg)) {
$numAsked++;
@@ -943,10 +973,10 @@ if ($action == 'create') {
$ent = "entrepot_" . $paramSuffix;
$pu = "pu_" . $paramSuffix; // This is unit price including discount
$fk_commandefourndet = "fk_commandefourndet_" . $paramSuffix;
- $dispatchLines[$numAsked] = array('prod' => GETPOST($prod, 'int'), 'qty' => price2num(GETPOST($qty), 'MS'), 'ent' => GETPOST($ent, 'int'), 'pu' => price2num(GETPOST($pu), 'MU'), 'comment' => GETPOST('comment'), 'fk_commandefourndet' => GETPOST($fk_commandefourndet, 'int'));
+ $dispatchLines[$numAsked] = array('paramSuffix'=>$paramSuffix, 'prod' => GETPOST($prod, 'int'), 'qty' => price2num(GETPOST($qty), 'MS'), 'ent' => GETPOST($ent, 'int'), 'pu' => price2num(GETPOST($pu), 'MU'), 'comment' => GETPOST('comment'), 'fk_commandefourndet' => GETPOST($fk_commandefourndet, 'int'));
}
- // with batch module enabled
+ // with batch module enabled and product with lot/serial
if (preg_match('/^product_batch_([0-9]+)_([0-9]+)$/i', $key, $reg)) {
$numAsked++;
$paramSuffix = $reg[1] . '_' . $reg[2];
@@ -964,11 +994,11 @@ if ($action == 'create') {
$dDLUO = dol_mktime(12, 0, 0, GETPOST('dluo_'.$paramSuffix.'month', 'int'), GETPOST('dluo_'.$paramSuffix.'day', 'int'), GETPOST('dluo_'.$paramSuffix.'year', 'int'));
$dDLC = dol_mktime(12, 0, 0, GETPOST('dlc_'.$paramSuffix.'month', 'int'), GETPOST('dlc_'.$paramSuffix.'day', 'int'), GETPOST('dlc_'.$paramSuffix.'year', 'int'));
$fk_commandefourndet = 'fk_commandefourndet_'.$paramSuffix;
- $dispatchLines[$numAsked] = array('prod' => GETPOST($prod, 'int'), 'qty' => price2num(GETPOST($qty), 'MS'), 'ent' => GETPOST($ent, 'int'), 'pu' => price2num(GETPOST($pu), 'MU'), 'comment' => GETPOST('comment'), 'fk_commandefourndet' => GETPOST($fk_commandefourndet, 'int'), 'DLC'=> $dDLC, 'DLUO'=> $dDLUO, 'lot'=> GETPOST($lot, 'alpha'));
+ $dispatchLines[$numAsked] = array('paramSuffix'=>$paramSuffix, 'prod' => GETPOST($prod, 'int'), 'qty' => price2num(GETPOST($qty), 'MS'), 'ent' => GETPOST($ent, 'int'), 'pu' => price2num(GETPOST($pu), 'MU'), 'comment' => GETPOST('comment'), 'fk_commandefourndet' => GETPOST($fk_commandefourndet, 'int'), 'DLC'=> $dDLC, 'DLUO'=> $dDLUO, 'lot'=> GETPOST($lot, 'alpha'));
}
// If create form is coming from same page, it means that post was sent but an error occured
- if (preg_match('/^productid([0-9]+)$/i', $key, $reg)) {
+ if (preg_match('/^productl([0-9]+)$/i', $key, $reg)) {
$numAsked++;
$paramSuffix = $reg[1];
$suffix2numAsked[$paramSuffix] = $numAsked;
@@ -1090,9 +1120,13 @@ if ($action == 'create') {
$product->fetch($line->fk_product);
$product->load_stock('warehouseopen'); // Load all $product->stock_warehouse[idwarehouse]->detail_batch
//var_dump($product->stock_warehouse[1]);
+ //var_dump($dispatchLines[$indiceAsked]);
print '';
print ' '; // ancre pour retourner sur la ligne
+
+ print ' ';
+
if (! array_key_exists($line->id, $arrayofpurchaselinealreadyoutput)) { // Add test to avoid to show qty twice
print ' ';
@@ -1689,7 +1723,7 @@ if ($action == 'create') {
print $langs->trans("QtyReceived").' - ';
}
if (isModEnabled('stock')) {
- print $langs->trans("WarehouseSource").' - ';
+ print $langs->trans("WarehouseTarget").' - ';
}
if (isModEnabled('productbatch')) {
print $langs->trans("Batch");
@@ -1709,7 +1743,7 @@ if ($action == 'create') {
print ' '.$langs->trans("QtyReceived").' ';
}
if (isModEnabled('stock')) {
- print ''.$langs->trans("WarehouseSource").' ';
+ print ''.$langs->trans("WarehouseTarget").' ';
}
if (isModEnabled('productbatch')) {
@@ -1953,7 +1987,7 @@ if ($action == 'create') {
print '';
print '';
$detail = $langs->trans("NA");
- if ($lines[$i]->product->status_batch && $lines[$i]->fk_product > 0) {
+ if ($lines[$i]->product->status_batch > 0 && $lines[$i]->fk_product > 0) {
require_once DOL_DOCUMENT_ROOT.'/product/stock/class/productlot.class.php';
$productlot = new Productlot($db);
$reslot = $productlot->fetch(0, $lines[$i]->fk_product, $lines[$i]->batch);
diff --git a/htdocs/reception/contact.php b/htdocs/reception/contact.php
index 97d6d19a4f9..92b0dd2f1e8 100644
--- a/htdocs/reception/contact.php
+++ b/htdocs/reception/contact.php
@@ -71,7 +71,7 @@ if ($origin == 'reception') {
$result = restrictedArea($user, $origin, $object->id);
} else {
if ($origin == 'supplierorder' || $origin == 'order_supplier') {
- $result = restrictedArea($user, 'fournisseur', $origin_id, 'commande_fournisseur', 'commande');
+ $result = restrictedArea($user, 'fournisseur', $object, 'commande_fournisseur', 'commande');
} elseif (!$user->hasRight($origin, "lire") && !$user->hasRight($origin, "read")) {
accessforbidden();
}
diff --git a/htdocs/reception/document.php b/htdocs/reception/document.php
index dbb435b15dd..56854244f7b 100644
--- a/htdocs/reception/document.php
+++ b/htdocs/reception/document.php
@@ -41,7 +41,7 @@ require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.class.php';
require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.dispatch.class.php';
// Load translation files required by the page
-$langs->loadLangs(array('companies', 'other'));
+$langs->loadLangs(array('receptions', 'companies', 'other'));
$action = GETPOST('action', 'aZ09');
$confirm = GETPOST('confirm');
diff --git a/htdocs/reception/note.php b/htdocs/reception/note.php
index 6546e839d03..6edb752ead8 100644
--- a/htdocs/reception/note.php
+++ b/htdocs/reception/note.php
@@ -90,7 +90,7 @@ if ($origin == 'reception') {
$result = restrictedArea($user, $origin, $object->id);
} else {
if ($origin == 'supplierorder' || $origin == 'order_supplier') {
- $result = restrictedArea($user, 'fournisseur', $origin_id, 'commande_fournisseur', 'commande');
+ $result = restrictedArea($user, 'fournisseur', $object, 'commande_fournisseur', 'commande');
} elseif (empty($user->rights->{$origin}->lire) && empty($user->rights->{$origin}->read)) {
accessforbidden();
}
diff --git a/htdocs/theme/common/dolibarr_box.png b/htdocs/theme/common/dolibarr_box.png
index b65586569df..4641aea4d47 100644
Binary files a/htdocs/theme/common/dolibarr_box.png and b/htdocs/theme/common/dolibarr_box.png differ
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/500px.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/500px.svg
deleted file mode 100644
index d872f24a017..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/500px.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/accessible-icon.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/accessible-icon.svg
deleted file mode 100644
index 725b9028cb1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/accessible-icon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/accusoft.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/accusoft.svg
deleted file mode 100644
index 7be2e628e70..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/accusoft.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/acquisitions-incorporated.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/acquisitions-incorporated.svg
deleted file mode 100644
index 459cb0e0676..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/acquisitions-incorporated.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/adn.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/adn.svg
deleted file mode 100644
index ee285395ff2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/adn.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/adobe.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/adobe.svg
deleted file mode 100644
index 27030e6bd01..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/adobe.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/adversal.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/adversal.svg
deleted file mode 100644
index 125dd50194f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/adversal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/affiliatetheme.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/affiliatetheme.svg
deleted file mode 100644
index d5dd4e8e8d1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/affiliatetheme.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/airbnb.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/airbnb.svg
deleted file mode 100644
index b3ca9d6b9d5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/airbnb.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/algolia.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/algolia.svg
deleted file mode 100644
index 979d7cd7186..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/algolia.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/alipay.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/alipay.svg
deleted file mode 100644
index de341fbc5eb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/alipay.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/amazon-pay.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/amazon-pay.svg
deleted file mode 100644
index 76e4c4a2d83..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/amazon-pay.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/amazon.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/amazon.svg
deleted file mode 100644
index 642fdb2d961..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/amazon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/amilia.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/amilia.svg
deleted file mode 100644
index 48c693c9775..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/amilia.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/android.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/android.svg
deleted file mode 100644
index f096167edf1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/android.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/angellist.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/angellist.svg
deleted file mode 100644
index 422885c2f97..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/angellist.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/angrycreative.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/angrycreative.svg
deleted file mode 100644
index b2624691c00..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/angrycreative.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/angular.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/angular.svg
deleted file mode 100644
index 9948fb75708..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/angular.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/app-store-ios.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/app-store-ios.svg
deleted file mode 100644
index 12fc84843ab..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/app-store-ios.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/app-store.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/app-store.svg
deleted file mode 100644
index 52e04a60e8a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/app-store.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/apper.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/apper.svg
deleted file mode 100644
index f986f504a1e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/apper.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/apple-pay.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/apple-pay.svg
deleted file mode 100644
index 5d3145ada45..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/apple-pay.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/apple.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/apple.svg
deleted file mode 100644
index e24ed63eadc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/apple.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/artstation.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/artstation.svg
deleted file mode 100644
index 2c793138e7c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/artstation.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/asymmetrik.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/asymmetrik.svg
deleted file mode 100644
index ef472962422..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/asymmetrik.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/atlassian.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/atlassian.svg
deleted file mode 100644
index c07561e7d46..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/atlassian.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/audible.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/audible.svg
deleted file mode 100644
index 7ee5aef8a68..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/audible.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/autoprefixer.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/autoprefixer.svg
deleted file mode 100644
index 912dee1b39e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/autoprefixer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/avianex.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/avianex.svg
deleted file mode 100644
index 4095309674a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/avianex.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/aviato.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/aviato.svg
deleted file mode 100644
index 064e0444996..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/aviato.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/aws.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/aws.svg
deleted file mode 100644
index 61973d34c74..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/aws.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/bandcamp.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/bandcamp.svg
deleted file mode 100644
index f1e1c204fd0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/bandcamp.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/battle-net.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/battle-net.svg
deleted file mode 100644
index 8ceec68e028..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/battle-net.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/behance-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/behance-square.svg
deleted file mode 100644
index 2d9e08bfc9a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/behance-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/behance.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/behance.svg
deleted file mode 100644
index 73e946774c4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/behance.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/bimobject.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/bimobject.svg
deleted file mode 100644
index b708fdea903..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/bimobject.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/bitbucket.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/bitbucket.svg
deleted file mode 100644
index 2902d353aef..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/bitbucket.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/bitcoin.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/bitcoin.svg
deleted file mode 100644
index 9ee5f2ef9b2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/bitcoin.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/bity.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/bity.svg
deleted file mode 100644
index cf6c63d9baa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/bity.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/black-tie.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/black-tie.svg
deleted file mode 100644
index 36f3eb79efa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/black-tie.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/blackberry.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/blackberry.svg
deleted file mode 100644
index d8308865894..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/blackberry.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/blogger-b.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/blogger-b.svg
deleted file mode 100644
index c313b521257..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/blogger-b.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/blogger.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/blogger.svg
deleted file mode 100644
index 7707557e4bc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/blogger.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/bluetooth-b.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/bluetooth-b.svg
deleted file mode 100644
index d6e3a5e121e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/bluetooth-b.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/bluetooth.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/bluetooth.svg
deleted file mode 100644
index aad75a38166..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/bluetooth.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/bootstrap.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/bootstrap.svg
deleted file mode 100644
index 35fa43cba87..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/bootstrap.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/btc.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/btc.svg
deleted file mode 100644
index 45e65158d24..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/btc.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/buffer.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/buffer.svg
deleted file mode 100644
index 90b3bcd0850..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/buffer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/buromobelexperte.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/buromobelexperte.svg
deleted file mode 100644
index f419c9091d5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/buromobelexperte.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/buy-n-large.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/buy-n-large.svg
deleted file mode 100644
index cbb298c3a35..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/buy-n-large.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/buysellads.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/buysellads.svg
deleted file mode 100644
index 5bb292db599..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/buysellads.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/canadian-maple-leaf.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/canadian-maple-leaf.svg
deleted file mode 100644
index ca96f7c46b1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/canadian-maple-leaf.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-amazon-pay.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cc-amazon-pay.svg
deleted file mode 100644
index 7a9866914fe..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-amazon-pay.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-amex.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cc-amex.svg
deleted file mode 100644
index 7d435154269..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-amex.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-apple-pay.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cc-apple-pay.svg
deleted file mode 100644
index a8a56ed58cf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-apple-pay.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-diners-club.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cc-diners-club.svg
deleted file mode 100644
index 7ade2bb53cf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-diners-club.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-discover.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cc-discover.svg
deleted file mode 100644
index 2b780e4e4f9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-discover.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-jcb.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cc-jcb.svg
deleted file mode 100644
index 8671a88448a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-jcb.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-mastercard.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cc-mastercard.svg
deleted file mode 100644
index af0753ea103..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-mastercard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-paypal.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cc-paypal.svg
deleted file mode 100644
index 6ca920055ea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-paypal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-stripe.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cc-stripe.svg
deleted file mode 100644
index 5cb2a8d21a5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-stripe.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-visa.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cc-visa.svg
deleted file mode 100644
index b5cb29a205a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cc-visa.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/centercode.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/centercode.svg
deleted file mode 100644
index 440b9c83a9e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/centercode.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/centos.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/centos.svg
deleted file mode 100644
index 72b5f203176..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/centos.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/chrome.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/chrome.svg
deleted file mode 100644
index 5ea90d91b0d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/chrome.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/chromecast.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/chromecast.svg
deleted file mode 100644
index 9857e95e125..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/chromecast.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cloudscale.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cloudscale.svg
deleted file mode 100644
index 9ad2a405512..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cloudscale.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cloudsmith.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cloudsmith.svg
deleted file mode 100644
index bd2d47041ee..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cloudsmith.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cloudversify.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cloudversify.svg
deleted file mode 100644
index 4ed2518d1ae..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cloudversify.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/codepen.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/codepen.svg
deleted file mode 100644
index 32585370835..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/codepen.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/codiepie.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/codiepie.svg
deleted file mode 100644
index dc7579c0789..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/codiepie.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/confluence.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/confluence.svg
deleted file mode 100644
index ffeb923979c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/confluence.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/connectdevelop.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/connectdevelop.svg
deleted file mode 100644
index 8588469cad2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/connectdevelop.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/contao.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/contao.svg
deleted file mode 100644
index a08f60aff08..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/contao.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cotton-bureau.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cotton-bureau.svg
deleted file mode 100644
index b3b1db8fa10..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cotton-bureau.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cpanel.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cpanel.svg
deleted file mode 100644
index c95511c1663..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cpanel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-by.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-by.svg
deleted file mode 100644
index 5432986b9fd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-by.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nc-eu.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nc-eu.svg
deleted file mode 100644
index 539c7d60338..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nc-eu.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nc-jp.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nc-jp.svg
deleted file mode 100644
index a8d89b19e38..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nc-jp.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nc.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nc.svg
deleted file mode 100644
index abb1577ad87..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nc.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nd.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nd.svg
deleted file mode 100644
index 07b5fde4bc3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-nd.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-pd-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-pd-alt.svg
deleted file mode 100644
index d36218423c0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-pd-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-pd.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-pd.svg
deleted file mode 100644
index 884fbd02ae9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-pd.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-remix.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-remix.svg
deleted file mode 100644
index 70ced8946dd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-remix.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-sa.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-sa.svg
deleted file mode 100644
index c9f41f8f63d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-sa.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-sampling-plus.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-sampling-plus.svg
deleted file mode 100644
index c06a1cd5167..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-sampling-plus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-sampling.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-sampling.svg
deleted file mode 100644
index 40a20c652b1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-sampling.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-share.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-share.svg
deleted file mode 100644
index afef40ad4cf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-share.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-zero.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-zero.svg
deleted file mode 100644
index a67d78980e9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons-zero.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons.svg
deleted file mode 100644
index e24a68f6565..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/creative-commons.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/critical-role.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/critical-role.svg
deleted file mode 100644
index d4d2cebdd75..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/critical-role.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/css3-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/css3-alt.svg
deleted file mode 100644
index 544362a1382..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/css3-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/css3.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/css3.svg
deleted file mode 100644
index 5ea43eda3b5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/css3.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/cuttlefish.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/cuttlefish.svg
deleted file mode 100644
index 92f20d8eadb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/cuttlefish.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/d-and-d-beyond.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/d-and-d-beyond.svg
deleted file mode 100644
index 195c6e9b5cf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/d-and-d-beyond.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/d-and-d.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/d-and-d.svg
deleted file mode 100644
index 9411ae0368c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/d-and-d.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/dailymotion.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/dailymotion.svg
deleted file mode 100644
index fd89872cc17..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/dailymotion.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/dashcube.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/dashcube.svg
deleted file mode 100644
index c31239b23d9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/dashcube.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/delicious.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/delicious.svg
deleted file mode 100644
index f20775421e0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/delicious.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/deploydog.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/deploydog.svg
deleted file mode 100644
index c9764e801f2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/deploydog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/deskpro.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/deskpro.svg
deleted file mode 100644
index 48ad269989b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/deskpro.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/dev.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/dev.svg
deleted file mode 100644
index 399017f56dc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/dev.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/deviantart.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/deviantart.svg
deleted file mode 100644
index 017804bc727..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/deviantart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/dhl.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/dhl.svg
deleted file mode 100644
index cc62f97d40b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/dhl.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/diaspora.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/diaspora.svg
deleted file mode 100644
index edd3ace0d6d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/diaspora.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/digg.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/digg.svg
deleted file mode 100644
index 9c580fb0e90..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/digg.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/digital-ocean.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/digital-ocean.svg
deleted file mode 100644
index 861def5bb63..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/digital-ocean.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/discord.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/discord.svg
deleted file mode 100644
index 650fe8f01a2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/discord.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/discourse.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/discourse.svg
deleted file mode 100644
index 87403975949..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/discourse.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/dochub.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/dochub.svg
deleted file mode 100644
index c336088d412..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/dochub.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/docker.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/docker.svg
deleted file mode 100644
index c4b13198268..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/docker.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/draft2digital.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/draft2digital.svg
deleted file mode 100644
index 37207200fcb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/draft2digital.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/dribbble-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/dribbble-square.svg
deleted file mode 100644
index 147f5aee60d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/dribbble-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/dribbble.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/dribbble.svg
deleted file mode 100644
index 165c90aff90..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/dribbble.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/dropbox.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/dropbox.svg
deleted file mode 100644
index cbc4787b788..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/dropbox.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/drupal.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/drupal.svg
deleted file mode 100644
index 09a90aeeb98..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/drupal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/dyalog.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/dyalog.svg
deleted file mode 100644
index 40a59c73678..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/dyalog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/earlybirds.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/earlybirds.svg
deleted file mode 100644
index 42c9f51f186..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/earlybirds.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/ebay.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/ebay.svg
deleted file mode 100644
index fe79f933f5c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/ebay.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/edge.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/edge.svg
deleted file mode 100644
index 6796e864374..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/edge.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/elementor.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/elementor.svg
deleted file mode 100644
index da050213ba6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/elementor.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/ello.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/ello.svg
deleted file mode 100644
index 4cc8b075449..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/ello.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/ember.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/ember.svg
deleted file mode 100644
index 69b7176145a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/ember.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/empire.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/empire.svg
deleted file mode 100644
index b000c8e07dd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/empire.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/envira.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/envira.svg
deleted file mode 100644
index 92aee143835..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/envira.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/erlang.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/erlang.svg
deleted file mode 100644
index 01e29ac922f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/erlang.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/ethereum.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/ethereum.svg
deleted file mode 100644
index fce0031ad06..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/ethereum.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/etsy.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/etsy.svg
deleted file mode 100644
index 1dc3634143d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/etsy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/evernote.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/evernote.svg
deleted file mode 100644
index f5834eeac87..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/evernote.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/expeditedssl.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/expeditedssl.svg
deleted file mode 100644
index a5c29368c0e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/expeditedssl.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/facebook-f.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/facebook-f.svg
deleted file mode 100644
index 40d4f1c26e3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/facebook-f.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/facebook-messenger.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/facebook-messenger.svg
deleted file mode 100644
index b1cefea918e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/facebook-messenger.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/facebook-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/facebook-square.svg
deleted file mode 100644
index dc9b9d8d9cc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/facebook-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/facebook.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/facebook.svg
deleted file mode 100644
index 6e23a941a6d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/facebook.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/fantasy-flight-games.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/fantasy-flight-games.svg
deleted file mode 100644
index f4c42759137..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/fantasy-flight-games.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/fedex.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/fedex.svg
deleted file mode 100644
index bcea5e544da..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/fedex.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/fedora.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/fedora.svg
deleted file mode 100644
index b62726fb70c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/fedora.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/figma.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/figma.svg
deleted file mode 100644
index 8c2f960cfee..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/figma.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/firefox-browser.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/firefox-browser.svg
deleted file mode 100644
index ca2613077ed..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/firefox-browser.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/firefox.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/firefox.svg
deleted file mode 100644
index 0f842172a58..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/firefox.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/first-order-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/first-order-alt.svg
deleted file mode 100644
index 86853cea882..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/first-order-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/first-order.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/first-order.svg
deleted file mode 100644
index 527e4a5a9f7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/first-order.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/firstdraft.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/firstdraft.svg
deleted file mode 100644
index c2bcd31242b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/firstdraft.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/flickr.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/flickr.svg
deleted file mode 100644
index 15dcfc6c66f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/flickr.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/flipboard.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/flipboard.svg
deleted file mode 100644
index 866f82fdd2a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/flipboard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/fly.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/fly.svg
deleted file mode 100644
index 69ee5c7b75d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/fly.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome-alt.svg
deleted file mode 100644
index f80146ae9d0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome-flag.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome-flag.svg
deleted file mode 100644
index 9f0b7a48045..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome-flag.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome-logo-full.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome-logo-full.svg
deleted file mode 100644
index 06b75a4d096..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome-logo-full.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome.svg
deleted file mode 100644
index 8c1d44528ba..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/font-awesome.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/fonticons-fi.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/fonticons-fi.svg
deleted file mode 100644
index e654422ce50..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/fonticons-fi.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/fonticons.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/fonticons.svg
deleted file mode 100644
index b9e2de54900..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/fonticons.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/fort-awesome-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/fort-awesome-alt.svg
deleted file mode 100644
index bc6d0c24e63..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/fort-awesome-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/fort-awesome.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/fort-awesome.svg
deleted file mode 100644
index a763d437b80..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/fort-awesome.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/forumbee.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/forumbee.svg
deleted file mode 100644
index d31d64118ca..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/forumbee.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/foursquare.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/foursquare.svg
deleted file mode 100644
index 130fa9b3933..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/foursquare.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/free-code-camp.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/free-code-camp.svg
deleted file mode 100644
index 626ee40baa2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/free-code-camp.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/freebsd.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/freebsd.svg
deleted file mode 100644
index 98c790fa0d8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/freebsd.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/fulcrum.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/fulcrum.svg
deleted file mode 100644
index adf033c97e4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/fulcrum.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/galactic-republic.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/galactic-republic.svg
deleted file mode 100644
index 8b91f999da3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/galactic-republic.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/galactic-senate.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/galactic-senate.svg
deleted file mode 100644
index 7ee63c16f57..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/galactic-senate.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/get-pocket.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/get-pocket.svg
deleted file mode 100644
index f6046088fa1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/get-pocket.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/gg-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/gg-circle.svg
deleted file mode 100644
index 7ff26dd6534..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/gg-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/gg.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/gg.svg
deleted file mode 100644
index cace4961aca..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/gg.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/git-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/git-alt.svg
deleted file mode 100644
index 62194af4f62..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/git-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/git-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/git-square.svg
deleted file mode 100644
index f58e30b60a9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/git-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/git.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/git.svg
deleted file mode 100644
index 40571b1f2b5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/git.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/github-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/github-alt.svg
deleted file mode 100644
index 43d2da5d238..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/github-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/github-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/github-square.svg
deleted file mode 100644
index a235d2f4e8c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/github-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/github.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/github.svg
deleted file mode 100644
index 53bd7b2d2a7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/github.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/gitkraken.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/gitkraken.svg
deleted file mode 100644
index a3bc20fc3fe..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/gitkraken.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/gitlab.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/gitlab.svg
deleted file mode 100644
index ae4efce6bde..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/gitlab.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/gitter.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/gitter.svg
deleted file mode 100644
index 6aaafd9a498..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/gitter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/glide-g.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/glide-g.svg
deleted file mode 100644
index 7517405f64a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/glide-g.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/glide.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/glide.svg
deleted file mode 100644
index 0fbdca4b3e1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/glide.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/gofore.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/gofore.svg
deleted file mode 100644
index 792de75e704..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/gofore.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/goodreads-g.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/goodreads-g.svg
deleted file mode 100644
index b35546631e5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/goodreads-g.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/goodreads.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/goodreads.svg
deleted file mode 100644
index 040163af979..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/goodreads.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/google-drive.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/google-drive.svg
deleted file mode 100644
index cd8dd52a504..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/google-drive.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/google-play.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/google-play.svg
deleted file mode 100644
index 82cffd5300c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/google-play.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/google-plus-g.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/google-plus-g.svg
deleted file mode 100644
index c4587db394a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/google-plus-g.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/google-plus-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/google-plus-square.svg
deleted file mode 100644
index f18979c9f70..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/google-plus-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/google-plus.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/google-plus.svg
deleted file mode 100644
index 46e143e6bd7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/google-plus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/google-wallet.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/google-wallet.svg
deleted file mode 100644
index 009afb61c16..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/google-wallet.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/google.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/google.svg
deleted file mode 100644
index 014b5ceb904..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/google.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/gratipay.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/gratipay.svg
deleted file mode 100644
index a35d8b19724..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/gratipay.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/grav.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/grav.svg
deleted file mode 100644
index e12bbf51ee4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/grav.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/gripfire.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/gripfire.svg
deleted file mode 100644
index 561aa2d710f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/gripfire.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/grunt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/grunt.svg
deleted file mode 100644
index a36fab819c2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/grunt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/gulp.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/gulp.svg
deleted file mode 100644
index 0bb37a27082..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/gulp.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/hacker-news-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/hacker-news-square.svg
deleted file mode 100644
index 1bb8cab450a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/hacker-news-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/hacker-news.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/hacker-news.svg
deleted file mode 100644
index 0de37e65cce..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/hacker-news.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/hackerrank.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/hackerrank.svg
deleted file mode 100644
index d2a44d1b2bb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/hackerrank.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/hips.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/hips.svg
deleted file mode 100644
index 7eb9cdf4c0c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/hips.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/hire-a-helper.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/hire-a-helper.svg
deleted file mode 100644
index 5fdb39dc2f6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/hire-a-helper.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/hooli.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/hooli.svg
deleted file mode 100644
index e4cf9298350..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/hooli.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/hornbill.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/hornbill.svg
deleted file mode 100644
index ce9375db2fc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/hornbill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/hotjar.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/hotjar.svg
deleted file mode 100644
index 7e4772964a1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/hotjar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/houzz.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/houzz.svg
deleted file mode 100644
index 1ad90a213fe..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/houzz.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/html5.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/html5.svg
deleted file mode 100644
index a06827da371..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/html5.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/hubspot.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/hubspot.svg
deleted file mode 100644
index 03f8f4e0caa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/hubspot.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/ideal.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/ideal.svg
deleted file mode 100644
index cc30e503abd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/ideal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/imdb.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/imdb.svg
deleted file mode 100644
index a4d5eb55c63..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/imdb.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/instagram-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/instagram-square.svg
deleted file mode 100644
index 55559757a36..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/instagram-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/instagram.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/instagram.svg
deleted file mode 100644
index 89c89b76f88..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/instagram.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/intercom.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/intercom.svg
deleted file mode 100644
index a36742b7240..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/intercom.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/internet-explorer.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/internet-explorer.svg
deleted file mode 100644
index 36173c0ba14..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/internet-explorer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/invision.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/invision.svg
deleted file mode 100644
index 3af871b13ec..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/invision.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/ioxhost.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/ioxhost.svg
deleted file mode 100644
index 64f31af278c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/ioxhost.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/itch-io.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/itch-io.svg
deleted file mode 100644
index c87fb703a84..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/itch-io.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/itunes-note.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/itunes-note.svg
deleted file mode 100644
index bb46e702459..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/itunes-note.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/itunes.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/itunes.svg
deleted file mode 100644
index 32736ae83d7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/itunes.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/java.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/java.svg
deleted file mode 100644
index 15fc4ddc1a3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/java.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/jedi-order.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/jedi-order.svg
deleted file mode 100644
index 990461a67d3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/jedi-order.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/jenkins.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/jenkins.svg
deleted file mode 100644
index 4c2251f1b04..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/jenkins.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/jira.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/jira.svg
deleted file mode 100644
index 467d3f6d36f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/jira.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/joget.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/joget.svg
deleted file mode 100644
index 1007ec648ef..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/joget.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/joomla.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/joomla.svg
deleted file mode 100644
index a5654303bea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/joomla.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/js-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/js-square.svg
deleted file mode 100644
index 389af1c1424..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/js-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/js.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/js.svg
deleted file mode 100644
index 1bf21b89196..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/js.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/jsfiddle.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/jsfiddle.svg
deleted file mode 100644
index 2fb27ee36f4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/jsfiddle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/kaggle.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/kaggle.svg
deleted file mode 100644
index b93394a0ff9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/kaggle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/keybase.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/keybase.svg
deleted file mode 100644
index be1135a36fa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/keybase.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/keycdn.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/keycdn.svg
deleted file mode 100644
index da19aee0281..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/keycdn.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/kickstarter-k.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/kickstarter-k.svg
deleted file mode 100644
index 4ad8ad2cbfa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/kickstarter-k.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/kickstarter.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/kickstarter.svg
deleted file mode 100644
index c765b1b40c0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/kickstarter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/korvue.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/korvue.svg
deleted file mode 100644
index c9c44a81a3f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/korvue.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/laravel.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/laravel.svg
deleted file mode 100644
index b360037fce4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/laravel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/lastfm-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/lastfm-square.svg
deleted file mode 100644
index e9febdb67bc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/lastfm-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/lastfm.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/lastfm.svg
deleted file mode 100644
index 7508067ab59..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/lastfm.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/leanpub.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/leanpub.svg
deleted file mode 100644
index 994eca34d16..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/leanpub.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/less.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/less.svg
deleted file mode 100644
index 12a0ae2a998..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/less.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/line.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/line.svg
deleted file mode 100644
index 866abd878a4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/line.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/linkedin-in.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/linkedin-in.svg
deleted file mode 100644
index b65c89fba62..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/linkedin-in.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/linkedin.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/linkedin.svg
deleted file mode 100644
index 69d8e9731a1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/linkedin.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/linode.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/linode.svg
deleted file mode 100644
index 502bdf7967d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/linode.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/linux.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/linux.svg
deleted file mode 100644
index ca9b9a851e1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/linux.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/lyft.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/lyft.svg
deleted file mode 100644
index 4283ec51a86..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/lyft.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/magento.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/magento.svg
deleted file mode 100644
index bdf6488e502..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/magento.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/mailchimp.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/mailchimp.svg
deleted file mode 100644
index 8dff9bffa15..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/mailchimp.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/mandalorian.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/mandalorian.svg
deleted file mode 100644
index 3ed75162fa8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/mandalorian.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/markdown.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/markdown.svg
deleted file mode 100644
index 843d4801eba..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/markdown.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/mastodon.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/mastodon.svg
deleted file mode 100644
index bb7c4285b75..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/mastodon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/maxcdn.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/maxcdn.svg
deleted file mode 100644
index 4f4b85da48d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/maxcdn.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/mdb.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/mdb.svg
deleted file mode 100644
index af962711ca2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/mdb.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/medapps.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/medapps.svg
deleted file mode 100644
index bb1a667aafe..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/medapps.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/medium-m.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/medium-m.svg
deleted file mode 100644
index 8305fdacd67..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/medium-m.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/medium.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/medium.svg
deleted file mode 100644
index f370e1e1948..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/medium.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/medrt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/medrt.svg
deleted file mode 100644
index 3775944604f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/medrt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/meetup.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/meetup.svg
deleted file mode 100644
index d387c4bdbfb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/meetup.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/megaport.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/megaport.svg
deleted file mode 100644
index 17faf7ce3b0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/megaport.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/mendeley.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/mendeley.svg
deleted file mode 100644
index c0f76a8d7db..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/mendeley.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/microblog.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/microblog.svg
deleted file mode 100644
index b2c426cf521..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/microblog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/microsoft.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/microsoft.svg
deleted file mode 100644
index ed898955427..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/microsoft.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/mix.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/mix.svg
deleted file mode 100644
index d131e2321f3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/mix.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/mixcloud.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/mixcloud.svg
deleted file mode 100644
index 094239bbfe4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/mixcloud.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/mixer.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/mixer.svg
deleted file mode 100644
index 3d08f42f18b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/mixer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/mizuni.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/mizuni.svg
deleted file mode 100644
index 8cb8d91850f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/mizuni.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/modx.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/modx.svg
deleted file mode 100644
index 9cbc71fde2b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/modx.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/monero.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/monero.svg
deleted file mode 100644
index c4892b6c550..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/monero.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/napster.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/napster.svg
deleted file mode 100644
index 866e31da644..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/napster.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/neos.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/neos.svg
deleted file mode 100644
index 2bece211fd1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/neos.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/nimblr.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/nimblr.svg
deleted file mode 100644
index add60b07085..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/nimblr.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/node-js.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/node-js.svg
deleted file mode 100644
index c73f1a64aeb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/node-js.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/node.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/node.svg
deleted file mode 100644
index 3bdb5eacd34..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/node.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/npm.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/npm.svg
deleted file mode 100644
index ad643c36700..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/npm.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/ns8.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/ns8.svg
deleted file mode 100644
index 1f5e2fc94d2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/ns8.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/nutritionix.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/nutritionix.svg
deleted file mode 100644
index 19eb0e0781b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/nutritionix.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/odnoklassniki-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/odnoklassniki-square.svg
deleted file mode 100644
index e2793a94e23..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/odnoklassniki-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/odnoklassniki.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/odnoklassniki.svg
deleted file mode 100644
index f426fd364ed..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/odnoklassniki.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/old-republic.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/old-republic.svg
deleted file mode 100644
index 8b62644c5fd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/old-republic.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/opencart.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/opencart.svg
deleted file mode 100644
index 2f1498a1a2d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/opencart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/openid.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/openid.svg
deleted file mode 100644
index d36573e03e0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/openid.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/opera.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/opera.svg
deleted file mode 100644
index 4fd8cb920ae..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/opera.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/optin-monster.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/optin-monster.svg
deleted file mode 100644
index cbf70491d8e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/optin-monster.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/orcid.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/orcid.svg
deleted file mode 100644
index 501fc76972d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/orcid.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/osi.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/osi.svg
deleted file mode 100644
index f362cfd1324..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/osi.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/page4.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/page4.svg
deleted file mode 100644
index e0eda5d3777..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/page4.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/pagelines.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/pagelines.svg
deleted file mode 100644
index 6722988a877..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/pagelines.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/palfed.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/palfed.svg
deleted file mode 100644
index 5c8a4b2cb4c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/palfed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/patreon.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/patreon.svg
deleted file mode 100644
index 19909571456..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/patreon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/paypal.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/paypal.svg
deleted file mode 100644
index ecf00b6d3b7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/paypal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/penny-arcade.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/penny-arcade.svg
deleted file mode 100644
index 77dea23594d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/penny-arcade.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/periscope.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/periscope.svg
deleted file mode 100644
index 9f46704c3ad..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/periscope.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/phabricator.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/phabricator.svg
deleted file mode 100644
index c51884753de..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/phabricator.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/phoenix-framework.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/phoenix-framework.svg
deleted file mode 100644
index 4542fc2f90c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/phoenix-framework.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/phoenix-squadron.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/phoenix-squadron.svg
deleted file mode 100644
index 961adc4465e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/phoenix-squadron.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/php.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/php.svg
deleted file mode 100644
index c2d86d48e41..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/php.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-alt.svg
deleted file mode 100644
index 4e8c419bd83..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-hat.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-hat.svg
deleted file mode 100644
index 2f93465dcb3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-hat.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-pp.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-pp.svg
deleted file mode 100644
index 092ca730a7c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-pp.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-square.svg
deleted file mode 100644
index d74fb980c71..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper.svg
deleted file mode 100644
index 53ef1a4bf7e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/pied-piper.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/pinterest-p.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/pinterest-p.svg
deleted file mode 100644
index 311932af8cc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/pinterest-p.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/pinterest-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/pinterest-square.svg
deleted file mode 100644
index 7a502a796fd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/pinterest-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/pinterest.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/pinterest.svg
deleted file mode 100644
index 42c1f6455aa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/pinterest.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/playstation.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/playstation.svg
deleted file mode 100644
index 3cd7fcad8a9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/playstation.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/product-hunt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/product-hunt.svg
deleted file mode 100644
index 847ac2c2122..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/product-hunt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/pushed.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/pushed.svg
deleted file mode 100644
index f7e24f0ca1a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/pushed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/python.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/python.svg
deleted file mode 100644
index cf92eb977be..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/python.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/qq.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/qq.svg
deleted file mode 100644
index 541bdd57052..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/qq.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/quinscape.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/quinscape.svg
deleted file mode 100644
index 9b37185a8a2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/quinscape.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/quora.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/quora.svg
deleted file mode 100644
index 601d815c7a8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/quora.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/r-project.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/r-project.svg
deleted file mode 100644
index ef4076e434d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/r-project.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/raspberry-pi.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/raspberry-pi.svg
deleted file mode 100644
index cce311f0c7a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/raspberry-pi.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/ravelry.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/ravelry.svg
deleted file mode 100644
index 49d511c039f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/ravelry.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/react.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/react.svg
deleted file mode 100644
index e5884106557..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/react.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/reacteurope.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/reacteurope.svg
deleted file mode 100644
index 5a626d80779..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/reacteurope.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/readme.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/readme.svg
deleted file mode 100644
index 482c337eb2a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/readme.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/rebel.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/rebel.svg
deleted file mode 100644
index 555b0533999..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/rebel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/red-river.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/red-river.svg
deleted file mode 100644
index 6e7044f2e3a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/red-river.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/reddit-alien.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/reddit-alien.svg
deleted file mode 100644
index 85b98591e02..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/reddit-alien.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/reddit-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/reddit-square.svg
deleted file mode 100644
index e940a851706..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/reddit-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/reddit.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/reddit.svg
deleted file mode 100644
index 262d0a7f85a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/reddit.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/redhat.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/redhat.svg
deleted file mode 100644
index 0c2c9b8177f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/redhat.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/renren.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/renren.svg
deleted file mode 100644
index 9706a7029ce..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/renren.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/replyd.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/replyd.svg
deleted file mode 100644
index fe526f2b17c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/replyd.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/researchgate.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/researchgate.svg
deleted file mode 100644
index db7149f4c11..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/researchgate.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/resolving.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/resolving.svg
deleted file mode 100644
index 339cbca048b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/resolving.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/rev.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/rev.svg
deleted file mode 100644
index 2574a171175..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/rev.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/rocketchat.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/rocketchat.svg
deleted file mode 100644
index b5e55fabb0a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/rocketchat.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/rockrms.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/rockrms.svg
deleted file mode 100644
index 6c41d790554..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/rockrms.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/safari.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/safari.svg
deleted file mode 100644
index 8f79dc95684..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/safari.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/salesforce.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/salesforce.svg
deleted file mode 100644
index 546e833589a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/salesforce.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/sass.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/sass.svg
deleted file mode 100644
index 5543c1c70c2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/sass.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/schlix.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/schlix.svg
deleted file mode 100644
index 413e4ff70ab..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/schlix.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/scribd.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/scribd.svg
deleted file mode 100644
index f1ecad19dd9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/scribd.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/searchengin.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/searchengin.svg
deleted file mode 100644
index 2ed72b1ac71..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/searchengin.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/sellcast.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/sellcast.svg
deleted file mode 100644
index 75b47f18ff5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/sellcast.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/sellsy.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/sellsy.svg
deleted file mode 100644
index 6119fe585f6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/sellsy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/servicestack.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/servicestack.svg
deleted file mode 100644
index 9f937eb4d98..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/servicestack.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/shirtsinbulk.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/shirtsinbulk.svg
deleted file mode 100644
index 4832095e36a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/shirtsinbulk.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/shopify.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/shopify.svg
deleted file mode 100644
index 4c5be99870d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/shopify.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/shopware.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/shopware.svg
deleted file mode 100644
index 8078f3c70e8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/shopware.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/simplybuilt.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/simplybuilt.svg
deleted file mode 100644
index fbecfe96444..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/simplybuilt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/sistrix.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/sistrix.svg
deleted file mode 100644
index e62cef61539..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/sistrix.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/sith.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/sith.svg
deleted file mode 100644
index cecd39d89e5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/sith.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/sketch.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/sketch.svg
deleted file mode 100644
index fb22f31662b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/sketch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/skyatlas.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/skyatlas.svg
deleted file mode 100644
index d2c8a3bf855..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/skyatlas.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/skype.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/skype.svg
deleted file mode 100644
index 538843cd66f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/skype.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/slack-hash.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/slack-hash.svg
deleted file mode 100644
index a465405ef9c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/slack-hash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/slack.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/slack.svg
deleted file mode 100644
index ee293d671e5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/slack.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/slideshare.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/slideshare.svg
deleted file mode 100644
index 42150926257..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/slideshare.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/snapchat-ghost.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/snapchat-ghost.svg
deleted file mode 100644
index 4497f0cf59a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/snapchat-ghost.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/snapchat-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/snapchat-square.svg
deleted file mode 100644
index c91e05ecbba..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/snapchat-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/snapchat.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/snapchat.svg
deleted file mode 100644
index 88cfa167036..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/snapchat.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/soundcloud.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/soundcloud.svg
deleted file mode 100644
index 0d9b0616030..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/soundcloud.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/sourcetree.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/sourcetree.svg
deleted file mode 100644
index 40f346dc277..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/sourcetree.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/speakap.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/speakap.svg
deleted file mode 100644
index 5123f7b8e1a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/speakap.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/speaker-deck.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/speaker-deck.svg
deleted file mode 100644
index 6816698a461..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/speaker-deck.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/spotify.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/spotify.svg
deleted file mode 100644
index dcd028a9a57..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/spotify.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/squarespace.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/squarespace.svg
deleted file mode 100644
index 6b31da58e1c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/squarespace.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/stack-exchange.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/stack-exchange.svg
deleted file mode 100644
index 3889ae23486..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/stack-exchange.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/stack-overflow.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/stack-overflow.svg
deleted file mode 100644
index e8560a30e5d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/stack-overflow.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/stackpath.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/stackpath.svg
deleted file mode 100644
index c2e53143cd2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/stackpath.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/staylinked.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/staylinked.svg
deleted file mode 100644
index 3c6b2c8f4f6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/staylinked.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/steam-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/steam-square.svg
deleted file mode 100644
index 59a6a8f61a4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/steam-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/steam-symbol.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/steam-symbol.svg
deleted file mode 100644
index f0ab74db52c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/steam-symbol.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/steam.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/steam.svg
deleted file mode 100644
index 642650a8881..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/steam.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/sticker-mule.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/sticker-mule.svg
deleted file mode 100644
index 6a23f17fa55..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/sticker-mule.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/strava.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/strava.svg
deleted file mode 100644
index 40102da3896..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/strava.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/stripe-s.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/stripe-s.svg
deleted file mode 100644
index d310daea229..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/stripe-s.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/stripe.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/stripe.svg
deleted file mode 100644
index 1688d50a240..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/stripe.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/studiovinari.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/studiovinari.svg
deleted file mode 100644
index e6e7fa8975e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/studiovinari.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/stumbleupon-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/stumbleupon-circle.svg
deleted file mode 100644
index a4b42346c90..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/stumbleupon-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/stumbleupon.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/stumbleupon.svg
deleted file mode 100644
index 999d38627eb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/stumbleupon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/superpowers.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/superpowers.svg
deleted file mode 100644
index a6f13f6d2b4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/superpowers.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/supple.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/supple.svg
deleted file mode 100644
index 5afe8792650..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/supple.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/suse.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/suse.svg
deleted file mode 100644
index adb6390d050..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/suse.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/swift.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/swift.svg
deleted file mode 100644
index 47498ffc8d7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/swift.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/symfony.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/symfony.svg
deleted file mode 100644
index 51905feb23f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/symfony.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/teamspeak.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/teamspeak.svg
deleted file mode 100644
index f430b5fb2f8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/teamspeak.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/telegram-plane.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/telegram-plane.svg
deleted file mode 100644
index a4e067b5df2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/telegram-plane.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/telegram.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/telegram.svg
deleted file mode 100644
index fc5492cc96a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/telegram.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/tencent-weibo.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/tencent-weibo.svg
deleted file mode 100644
index 30b49fc82ad..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/tencent-weibo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/the-red-yeti.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/the-red-yeti.svg
deleted file mode 100644
index f1af96f5f8c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/the-red-yeti.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/themeco.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/themeco.svg
deleted file mode 100644
index 0e706e41301..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/themeco.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/themeisle.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/themeisle.svg
deleted file mode 100644
index b9337755622..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/themeisle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/think-peaks.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/think-peaks.svg
deleted file mode 100644
index d956893c6ed..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/think-peaks.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/trade-federation.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/trade-federation.svg
deleted file mode 100644
index 07bd63b2b90..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/trade-federation.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/trello.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/trello.svg
deleted file mode 100644
index 634c6c3b3c7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/trello.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/tripadvisor.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/tripadvisor.svg
deleted file mode 100644
index 4f3e2b6dc53..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/tripadvisor.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/tumblr-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/tumblr-square.svg
deleted file mode 100644
index 96b8cf5c01d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/tumblr-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/tumblr.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/tumblr.svg
deleted file mode 100644
index da593777adb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/tumblr.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/twitch.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/twitch.svg
deleted file mode 100644
index 11f254c88e0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/twitch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/twitter-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/twitter-square.svg
deleted file mode 100644
index 0ca7e0b97e2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/twitter-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/twitter.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/twitter.svg
deleted file mode 100644
index f0ed9c5fcfd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/twitter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/typo3.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/typo3.svg
deleted file mode 100644
index 4da76b3bd6d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/typo3.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/uber.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/uber.svg
deleted file mode 100644
index 569a1cd9c1f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/uber.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/ubuntu.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/ubuntu.svg
deleted file mode 100644
index e1958dc4874..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/ubuntu.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/uikit.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/uikit.svg
deleted file mode 100644
index 26ab61104ea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/uikit.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/umbraco.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/umbraco.svg
deleted file mode 100644
index 454e1152233..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/umbraco.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/uniregistry.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/uniregistry.svg
deleted file mode 100644
index c77b4914472..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/uniregistry.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/unity.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/unity.svg
deleted file mode 100644
index 3d1b1b85aeb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/unity.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/untappd.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/untappd.svg
deleted file mode 100644
index 5e06293877b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/untappd.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/ups.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/ups.svg
deleted file mode 100644
index eecae78c2d4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/ups.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/usb.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/usb.svg
deleted file mode 100644
index a9d265eee1a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/usb.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/usps.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/usps.svg
deleted file mode 100644
index f939b3e25ea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/usps.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/ussunnah.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/ussunnah.svg
deleted file mode 100644
index 1dd9ed12571..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/ussunnah.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/vaadin.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/vaadin.svg
deleted file mode 100644
index fadce5ada7f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/vaadin.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/viacoin.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/viacoin.svg
deleted file mode 100644
index c4777d6fc82..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/viacoin.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/viadeo-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/viadeo-square.svg
deleted file mode 100644
index 9212671d070..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/viadeo-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/viadeo.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/viadeo.svg
deleted file mode 100644
index f4c1f8a1bf8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/viadeo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/viber.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/viber.svg
deleted file mode 100644
index e40506b7a90..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/viber.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/vimeo-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/vimeo-square.svg
deleted file mode 100644
index eed266e799c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/vimeo-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/vimeo-v.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/vimeo-v.svg
deleted file mode 100644
index c87152815af..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/vimeo-v.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/vimeo.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/vimeo.svg
deleted file mode 100644
index 3a0c527396c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/vimeo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/vine.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/vine.svg
deleted file mode 100644
index 53cb27f899f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/vine.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/vk.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/vk.svg
deleted file mode 100644
index 022717d16d9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/vk.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/vnv.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/vnv.svg
deleted file mode 100644
index 56cd37b49c4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/vnv.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/vuejs.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/vuejs.svg
deleted file mode 100644
index 932887c13f6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/vuejs.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/waze.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/waze.svg
deleted file mode 100644
index 237e2316825..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/waze.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/weebly.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/weebly.svg
deleted file mode 100644
index 917dabe602e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/weebly.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/weibo.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/weibo.svg
deleted file mode 100644
index 84f18c49f9a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/weibo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/weixin.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/weixin.svg
deleted file mode 100644
index cd27b19817c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/weixin.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/whatsapp-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/whatsapp-square.svg
deleted file mode 100644
index 7db67533d7a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/whatsapp-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/whatsapp.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/whatsapp.svg
deleted file mode 100644
index 6ca3eb351bf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/whatsapp.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/whmcs.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/whmcs.svg
deleted file mode 100644
index 2bbd6959f3b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/whmcs.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/wikipedia-w.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/wikipedia-w.svg
deleted file mode 100644
index 075425306f6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/wikipedia-w.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/windows.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/windows.svg
deleted file mode 100644
index 586ba25ddff..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/windows.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/wix.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/wix.svg
deleted file mode 100644
index c1bea30e0aa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/wix.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/wizards-of-the-coast.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/wizards-of-the-coast.svg
deleted file mode 100644
index 5842f47b6ce..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/wizards-of-the-coast.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/wolf-pack-battalion.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/wolf-pack-battalion.svg
deleted file mode 100644
index eb8e3127511..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/wolf-pack-battalion.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/wordpress-simple.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/wordpress-simple.svg
deleted file mode 100644
index de9795ad2f9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/wordpress-simple.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/wordpress.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/wordpress.svg
deleted file mode 100644
index 3cc2bd44dcc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/wordpress.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/wpbeginner.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/wpbeginner.svg
deleted file mode 100644
index 1f81e84450c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/wpbeginner.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/wpexplorer.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/wpexplorer.svg
deleted file mode 100644
index 706e12a940f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/wpexplorer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/wpforms.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/wpforms.svg
deleted file mode 100644
index 03a3662b1b1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/wpforms.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/wpressr.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/wpressr.svg
deleted file mode 100644
index daa6135c788..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/wpressr.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/xbox.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/xbox.svg
deleted file mode 100644
index 5420576e31e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/xbox.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/xing-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/xing-square.svg
deleted file mode 100644
index 8c9fb82929b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/xing-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/xing.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/xing.svg
deleted file mode 100644
index c4007711195..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/xing.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/y-combinator.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/y-combinator.svg
deleted file mode 100644
index d4a0f7e2c91..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/y-combinator.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/yahoo.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/yahoo.svg
deleted file mode 100644
index 22dea83de05..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/yahoo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/yammer.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/yammer.svg
deleted file mode 100644
index e9056787e54..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/yammer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/yandex-international.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/yandex-international.svg
deleted file mode 100644
index 2b1c10c792e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/yandex-international.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/yandex.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/yandex.svg
deleted file mode 100644
index d054fe043c1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/yandex.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/yarn.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/yarn.svg
deleted file mode 100644
index ed00ea94b30..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/yarn.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/yelp.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/yelp.svg
deleted file mode 100644
index d057f517970..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/yelp.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/yoast.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/yoast.svg
deleted file mode 100644
index bf2ec0f1ee1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/yoast.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/youtube-square.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/youtube-square.svg
deleted file mode 100644
index 07b9ab5934b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/youtube-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/youtube.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/youtube.svg
deleted file mode 100644
index e831b886fbb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/youtube.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/brands/zhihu.svg b/htdocs/theme/common/fontawesome-5/svgs/brands/zhihu.svg
deleted file mode 100644
index c206c266dfd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/brands/zhihu.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/address-book.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/address-book.svg
deleted file mode 100644
index 1c941ca309e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/address-book.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/address-card.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/address-card.svg
deleted file mode 100644
index 4e0179f55ca..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/address-card.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/angry.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/angry.svg
deleted file mode 100644
index f8636abe502..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/angry.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-down.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-down.svg
deleted file mode 100644
index 5f75848862d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-left.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-left.svg
deleted file mode 100644
index eb3fbdb9f0e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-right.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-right.svg
deleted file mode 100644
index 061d97266c4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-up.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-up.svg
deleted file mode 100644
index 519288e7a18..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/arrow-alt-circle-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/bell-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/bell-slash.svg
deleted file mode 100644
index 410eb75e3dd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/bell-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/bell.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/bell.svg
deleted file mode 100644
index 2b98a370fca..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/bell.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/bookmark.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/bookmark.svg
deleted file mode 100644
index bd315e488ba..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/bookmark.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/building.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/building.svg
deleted file mode 100644
index 4178db461e2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/building.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-alt.svg
deleted file mode 100644
index 130e2ab70f1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-check.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-check.svg
deleted file mode 100644
index 3d98c56370d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-check.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-minus.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-minus.svg
deleted file mode 100644
index 0b83b348769..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-minus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-plus.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-plus.svg
deleted file mode 100644
index 7715ffc400f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-plus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-times.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-times.svg
deleted file mode 100644
index 8a9a10c777f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar-times.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/calendar.svg
deleted file mode 100644
index 725e8879803..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/calendar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-down.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-down.svg
deleted file mode 100644
index 29a40ab9113..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-left.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-left.svg
deleted file mode 100644
index 5fa7f8b011b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-right.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-right.svg
deleted file mode 100644
index 03b43897395..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-up.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-up.svg
deleted file mode 100644
index b59f23b38d2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/caret-square-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/chart-bar.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/chart-bar.svg
deleted file mode 100644
index 36820b7667f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/chart-bar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/check-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/check-circle.svg
deleted file mode 100644
index 000b850f95a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/check-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/check-square.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/check-square.svg
deleted file mode 100644
index 602b375b9e9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/check-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/circle.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/circle.svg
deleted file mode 100644
index 835815e1732..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/clipboard.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/clipboard.svg
deleted file mode 100644
index a9260d17232..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/clipboard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/clock.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/clock.svg
deleted file mode 100644
index 136a550aad9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/clock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/clone.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/clone.svg
deleted file mode 100644
index c9804bf3371..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/clone.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/closed-captioning.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/closed-captioning.svg
deleted file mode 100644
index 277952b0a9a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/closed-captioning.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/comment-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/comment-alt.svg
deleted file mode 100644
index cf31f08827e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/comment-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/comment-dots.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/comment-dots.svg
deleted file mode 100644
index de4dc072210..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/comment-dots.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/comment.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/comment.svg
deleted file mode 100644
index 6fb2541d8c0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/comment.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/comments.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/comments.svg
deleted file mode 100644
index 9ab2d3879d7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/comments.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/compass.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/compass.svg
deleted file mode 100644
index 40e3c56c909..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/compass.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/copy.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/copy.svg
deleted file mode 100644
index a488ff2c842..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/copy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/copyright.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/copyright.svg
deleted file mode 100644
index 2a81ca28a28..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/copyright.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/credit-card.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/credit-card.svg
deleted file mode 100644
index f5a047fb050..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/credit-card.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/dizzy.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/dizzy.svg
deleted file mode 100644
index b84e00599ef..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/dizzy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/dot-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/dot-circle.svg
deleted file mode 100644
index eacf9b70033..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/dot-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/edit.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/edit.svg
deleted file mode 100644
index d7b191461d0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/edit.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/envelope-open.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/envelope-open.svg
deleted file mode 100644
index 0b71db8f80b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/envelope-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/envelope.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/envelope.svg
deleted file mode 100644
index a2557ef2007..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/envelope.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/eye-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/eye-slash.svg
deleted file mode 100644
index 9e6b01dd6d4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/eye-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/eye.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/eye.svg
deleted file mode 100644
index 09c934531a3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/eye.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/file-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/file-alt.svg
deleted file mode 100644
index e32217d20ea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/file-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/file-archive.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/file-archive.svg
deleted file mode 100644
index af14d23fe9c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/file-archive.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/file-audio.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/file-audio.svg
deleted file mode 100644
index 87c16005cb4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/file-audio.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/file-code.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/file-code.svg
deleted file mode 100644
index 6483b793c42..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/file-code.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/file-excel.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/file-excel.svg
deleted file mode 100644
index 481230270c4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/file-excel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/file-image.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/file-image.svg
deleted file mode 100644
index 2ca87e5c81e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/file-image.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/file-pdf.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/file-pdf.svg
deleted file mode 100644
index 3f2fa45322b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/file-pdf.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/file-powerpoint.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/file-powerpoint.svg
deleted file mode 100644
index 41e3505b3f2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/file-powerpoint.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/file-video.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/file-video.svg
deleted file mode 100644
index ed02cdc1193..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/file-video.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/file-word.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/file-word.svg
deleted file mode 100644
index 2ba4990075a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/file-word.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/file.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/file.svg
deleted file mode 100644
index 9bc15133e7f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/file.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/flag.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/flag.svg
deleted file mode 100644
index 4df2e03fd56..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/flag.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/flushed.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/flushed.svg
deleted file mode 100644
index cb201a24595..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/flushed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/folder-open.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/folder-open.svg
deleted file mode 100644
index d367d41bc0e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/folder-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/folder.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/folder.svg
deleted file mode 100644
index 7c9d6c4d23a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/folder.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/font-awesome-logo-full.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/font-awesome-logo-full.svg
deleted file mode 100644
index 06b75a4d096..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/font-awesome-logo-full.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/frown-open.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/frown-open.svg
deleted file mode 100644
index 728cc1cb326..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/frown-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/frown.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/frown.svg
deleted file mode 100644
index a8cb603711c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/frown.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/futbol.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/futbol.svg
deleted file mode 100644
index 0601465294e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/futbol.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/gem.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/gem.svg
deleted file mode 100644
index 9640cbf9ff6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/gem.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grimace.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grimace.svg
deleted file mode 100644
index 3ef8c880985..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grimace.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-alt.svg
deleted file mode 100644
index 6e8ac81eb41..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-beam-sweat.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-beam-sweat.svg
deleted file mode 100644
index 6f2213350b9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-beam-sweat.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-beam.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-beam.svg
deleted file mode 100644
index 0f8b3660120..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-beam.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-hearts.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-hearts.svg
deleted file mode 100644
index 3ecf5f4a2cf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-hearts.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-squint-tears.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-squint-tears.svg
deleted file mode 100644
index 06116746f8c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-squint-tears.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-squint.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-squint.svg
deleted file mode 100644
index b6d15a4e4b7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-squint.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-stars.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-stars.svg
deleted file mode 100644
index 8f8f2d077f1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-stars.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tears.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tears.svg
deleted file mode 100644
index fefc4237cd1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tears.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tongue-squint.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tongue-squint.svg
deleted file mode 100644
index 6434a61bbe3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tongue-squint.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tongue-wink.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tongue-wink.svg
deleted file mode 100644
index e75cdccd71c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tongue-wink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tongue.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tongue.svg
deleted file mode 100644
index 1afbcef40f5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-tongue.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-wink.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin-wink.svg
deleted file mode 100644
index ed3b703d9e9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin-wink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/grin.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/grin.svg
deleted file mode 100644
index 1630a8922a2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/grin.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-lizard.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hand-lizard.svg
deleted file mode 100644
index 6dba7ecf1a1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-lizard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-paper.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hand-paper.svg
deleted file mode 100644
index afe7adb0a1c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-paper.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-peace.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hand-peace.svg
deleted file mode 100644
index 506209b2a40..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-peace.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-down.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-down.svg
deleted file mode 100644
index 08bc8d84895..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-left.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-left.svg
deleted file mode 100644
index 82d6640399d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-right.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-right.svg
deleted file mode 100644
index 312c20933ad..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-up.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-up.svg
deleted file mode 100644
index 6f823c30e0a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-point-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-pointer.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hand-pointer.svg
deleted file mode 100644
index 1ff0b8eb0f5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-pointer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-rock.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hand-rock.svg
deleted file mode 100644
index a13011abfa2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-rock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-scissors.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hand-scissors.svg
deleted file mode 100644
index 3e0b478f28f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-scissors.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-spock.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hand-spock.svg
deleted file mode 100644
index a7a470d87ff..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hand-spock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/handshake.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/handshake.svg
deleted file mode 100644
index 1cb42aecbb2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/handshake.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hdd.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hdd.svg
deleted file mode 100644
index dbf616feeff..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hdd.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/heart.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/heart.svg
deleted file mode 100644
index 9a380831a8e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/heart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hospital.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hospital.svg
deleted file mode 100644
index 98772863763..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hospital.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/hourglass.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/hourglass.svg
deleted file mode 100644
index c89faa1df1a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/hourglass.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/id-badge.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/id-badge.svg
deleted file mode 100644
index 39008027e87..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/id-badge.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/id-card.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/id-card.svg
deleted file mode 100644
index 58ce378ba05..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/id-card.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/image.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/image.svg
deleted file mode 100644
index 4f7dd8dd4d9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/image.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/images.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/images.svg
deleted file mode 100644
index 2371a08598b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/images.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/keyboard.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/keyboard.svg
deleted file mode 100644
index 3b3705dcbbd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/keyboard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/kiss-beam.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/kiss-beam.svg
deleted file mode 100644
index 857180863aa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/kiss-beam.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/kiss-wink-heart.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/kiss-wink-heart.svg
deleted file mode 100644
index a513302e00d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/kiss-wink-heart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/kiss.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/kiss.svg
deleted file mode 100644
index 5af5fc7630e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/kiss.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/laugh-beam.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/laugh-beam.svg
deleted file mode 100644
index d9e473f2c31..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/laugh-beam.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/laugh-squint.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/laugh-squint.svg
deleted file mode 100644
index 4edf0d0c72c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/laugh-squint.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/laugh-wink.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/laugh-wink.svg
deleted file mode 100644
index 39c36954dc9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/laugh-wink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/laugh.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/laugh.svg
deleted file mode 100644
index b8524251cc1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/laugh.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/lemon.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/lemon.svg
deleted file mode 100644
index ab9ed90b966..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/lemon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/life-ring.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/life-ring.svg
deleted file mode 100644
index 2cf33268164..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/life-ring.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/lightbulb.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/lightbulb.svg
deleted file mode 100644
index abd6ebfe67a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/lightbulb.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/list-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/list-alt.svg
deleted file mode 100644
index 1113bbccad4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/list-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/map.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/map.svg
deleted file mode 100644
index a5d2e7d402b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/map.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/meh-blank.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/meh-blank.svg
deleted file mode 100644
index ebeece47928..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/meh-blank.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/meh-rolling-eyes.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/meh-rolling-eyes.svg
deleted file mode 100644
index 3fb3476fadd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/meh-rolling-eyes.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/meh.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/meh.svg
deleted file mode 100644
index 3bff8acc4f4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/meh.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/minus-square.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/minus-square.svg
deleted file mode 100644
index 6b72714efba..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/minus-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/money-bill-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/money-bill-alt.svg
deleted file mode 100644
index 4ce581e1f71..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/money-bill-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/moon.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/moon.svg
deleted file mode 100644
index 30fb1151ef3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/moon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/newspaper.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/newspaper.svg
deleted file mode 100644
index a54e3ca58a3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/newspaper.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/object-group.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/object-group.svg
deleted file mode 100644
index e483f376e87..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/object-group.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/object-ungroup.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/object-ungroup.svg
deleted file mode 100644
index 6255363036d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/object-ungroup.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/paper-plane.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/paper-plane.svg
deleted file mode 100644
index 215e2933409..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/paper-plane.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/pause-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/pause-circle.svg
deleted file mode 100644
index caebd9e969a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/pause-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/play-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/play-circle.svg
deleted file mode 100644
index 9de60df95f5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/play-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/plus-square.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/plus-square.svg
deleted file mode 100644
index dfc22ac6409..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/plus-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/question-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/question-circle.svg
deleted file mode 100644
index 9a30b85d399..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/question-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/registered.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/registered.svg
deleted file mode 100644
index e5dc8a20b6b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/registered.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/sad-cry.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/sad-cry.svg
deleted file mode 100644
index 8ab84c9f506..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/sad-cry.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/sad-tear.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/sad-tear.svg
deleted file mode 100644
index e19421ca3d4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/sad-tear.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/save.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/save.svg
deleted file mode 100644
index 16f6b82957f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/save.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/share-square.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/share-square.svg
deleted file mode 100644
index aa987488171..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/share-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/smile-beam.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/smile-beam.svg
deleted file mode 100644
index 1077160fde5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/smile-beam.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/smile-wink.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/smile-wink.svg
deleted file mode 100644
index e842eede3aa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/smile-wink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/smile.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/smile.svg
deleted file mode 100644
index 025898d4dd9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/smile.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/snowflake.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/snowflake.svg
deleted file mode 100644
index 2258d8050d0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/snowflake.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/square.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/square.svg
deleted file mode 100644
index b9a4b962057..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/star-half.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/star-half.svg
deleted file mode 100644
index 12b063fd16b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/star-half.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/star.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/star.svg
deleted file mode 100644
index a1370d23f44..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/star.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/sticky-note.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/sticky-note.svg
deleted file mode 100644
index 0882390c7d7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/sticky-note.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/stop-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/stop-circle.svg
deleted file mode 100644
index 37bf314d3df..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/stop-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/sun.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/sun.svg
deleted file mode 100644
index 78d33ba5ef4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/sun.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/surprise.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/surprise.svg
deleted file mode 100644
index 4210c378fa5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/surprise.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/thumbs-down.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/thumbs-down.svg
deleted file mode 100644
index d7b49d5342d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/thumbs-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/thumbs-up.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/thumbs-up.svg
deleted file mode 100644
index f60e4d1161c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/thumbs-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/times-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/times-circle.svg
deleted file mode 100644
index 15181d34166..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/times-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/tired.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/tired.svg
deleted file mode 100644
index 6f700be9ced..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/tired.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/trash-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/trash-alt.svg
deleted file mode 100644
index e3eb2b01880..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/trash-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/user-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/user-circle.svg
deleted file mode 100644
index 1d678d242c6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/user-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/user.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/user.svg
deleted file mode 100644
index bdc327c6983..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/user.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/window-close.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/window-close.svg
deleted file mode 100644
index 1375985563e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/window-close.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/window-maximize.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/window-maximize.svg
deleted file mode 100644
index 39c0ac06aaf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/window-maximize.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/window-minimize.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/window-minimize.svg
deleted file mode 100644
index 0986bbaa57c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/window-minimize.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/regular/window-restore.svg b/htdocs/theme/common/fontawesome-5/svgs/regular/window-restore.svg
deleted file mode 100644
index 9d1bfa7b55b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/regular/window-restore.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ad.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ad.svg
deleted file mode 100644
index 42e4a52ef72..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ad.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/address-book.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/address-book.svg
deleted file mode 100644
index f652f5a932c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/address-book.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/address-card.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/address-card.svg
deleted file mode 100644
index 628ced258c9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/address-card.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/adjust.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/adjust.svg
deleted file mode 100644
index 2616d99a963..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/adjust.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/air-freshener.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/air-freshener.svg
deleted file mode 100644
index 25713c70136..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/air-freshener.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/align-center.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/align-center.svg
deleted file mode 100644
index b4cdc131e2b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/align-center.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/align-justify.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/align-justify.svg
deleted file mode 100644
index d88b95906bf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/align-justify.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/align-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/align-left.svg
deleted file mode 100644
index 0e57ddefc76..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/align-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/align-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/align-right.svg
deleted file mode 100644
index 34b22e01c52..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/align-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/allergies.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/allergies.svg
deleted file mode 100644
index 335f5bcb0a9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/allergies.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ambulance.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ambulance.svg
deleted file mode 100644
index b35a7bc053c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ambulance.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/american-sign-language-interpreting.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/american-sign-language-interpreting.svg
deleted file mode 100644
index 8bca61450b0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/american-sign-language-interpreting.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/anchor.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/anchor.svg
deleted file mode 100644
index 792266ba85e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/anchor.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-down.svg
deleted file mode 100644
index 3228f4abcc0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-left.svg
deleted file mode 100644
index 4474d83e214..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-right.svg
deleted file mode 100644
index cdf93366686..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-up.svg
deleted file mode 100644
index 74b542f6590..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-double-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/angle-down.svg
deleted file mode 100644
index 1462342526d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/angle-left.svg
deleted file mode 100644
index 1e28c704da6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/angle-right.svg
deleted file mode 100644
index ec7fbe9f02a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/angle-up.svg
deleted file mode 100644
index 1d0bbead7d3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/angle-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/angry.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/angry.svg
deleted file mode 100644
index eca0b5d6acd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/angry.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ankh.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ankh.svg
deleted file mode 100644
index 2cab7bfdd99..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ankh.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/apple-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/apple-alt.svg
deleted file mode 100644
index 995d76e9d08..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/apple-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/archive.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/archive.svg
deleted file mode 100644
index 394dad2db22..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/archive.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/archway.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/archway.svg
deleted file mode 100644
index e5ad2f3de6f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/archway.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-down.svg
deleted file mode 100644
index a2f644f8f60..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-left.svg
deleted file mode 100644
index 8a53b226581..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-right.svg
deleted file mode 100644
index 9da44be87c8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-up.svg
deleted file mode 100644
index c650c826767..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-alt-circle-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-down.svg
deleted file mode 100644
index 08b9f13aee0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-left.svg
deleted file mode 100644
index 59be8d9e37b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-right.svg
deleted file mode 100644
index f059bab95ce..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-up.svg
deleted file mode 100644
index d9d8081c932..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-circle-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-down.svg
deleted file mode 100644
index 61b4db70f42..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-left.svg
deleted file mode 100644
index b229b8d1375..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-right.svg
deleted file mode 100644
index 1b9b05b478b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-up.svg
deleted file mode 100644
index bc571b5d9a8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrow-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrows-alt-h.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrows-alt-h.svg
deleted file mode 100644
index 0caa926d38e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrows-alt-h.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrows-alt-v.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrows-alt-v.svg
deleted file mode 100644
index ebb23acbdce..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrows-alt-v.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/arrows-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/arrows-alt.svg
deleted file mode 100644
index d885a5a680f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/arrows-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/assistive-listening-systems.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/assistive-listening-systems.svg
deleted file mode 100644
index 5071f59676f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/assistive-listening-systems.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/asterisk.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/asterisk.svg
deleted file mode 100644
index d77cbb6b676..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/asterisk.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/at.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/at.svg
deleted file mode 100644
index 6f35c426b6b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/at.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/atlas.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/atlas.svg
deleted file mode 100644
index ea31821f86e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/atlas.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/atom.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/atom.svg
deleted file mode 100644
index 2df2144c13d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/atom.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/audio-description.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/audio-description.svg
deleted file mode 100644
index 0e338ff6d35..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/audio-description.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/award.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/award.svg
deleted file mode 100644
index a8c9de1def4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/award.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/baby-carriage.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/baby-carriage.svg
deleted file mode 100644
index e8dd92b8b5d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/baby-carriage.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/baby.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/baby.svg
deleted file mode 100644
index 0313288a1cd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/baby.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/backspace.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/backspace.svg
deleted file mode 100644
index 078a9fba2fc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/backspace.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/backward.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/backward.svg
deleted file mode 100644
index b37fcc22fa4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/backward.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bacon.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bacon.svg
deleted file mode 100644
index 97bfedb047b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bacon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bahai.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bahai.svg
deleted file mode 100644
index 8ea2a693b65..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bahai.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/balance-scale-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/balance-scale-left.svg
deleted file mode 100644
index e7b692e66ea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/balance-scale-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/balance-scale-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/balance-scale-right.svg
deleted file mode 100644
index 77476a1f4fe..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/balance-scale-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/balance-scale.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/balance-scale.svg
deleted file mode 100644
index e526521ed84..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/balance-scale.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ban.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ban.svg
deleted file mode 100644
index 85f7f06f13e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ban.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/band-aid.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/band-aid.svg
deleted file mode 100644
index 4d0f5591518..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/band-aid.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/barcode.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/barcode.svg
deleted file mode 100644
index 58cbee7de1d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/barcode.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bars.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bars.svg
deleted file mode 100644
index 87d79f9eeba..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bars.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/baseball-ball.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/baseball-ball.svg
deleted file mode 100644
index bcdb0a0c47e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/baseball-ball.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/basketball-ball.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/basketball-ball.svg
deleted file mode 100644
index bb2ba238460..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/basketball-ball.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bath.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bath.svg
deleted file mode 100644
index 3bf7b36bf85..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bath.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/battery-empty.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/battery-empty.svg
deleted file mode 100644
index b4a57fac9a2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/battery-empty.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/battery-full.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/battery-full.svg
deleted file mode 100644
index 056b8189a82..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/battery-full.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/battery-half.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/battery-half.svg
deleted file mode 100644
index 16a8fc33985..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/battery-half.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/battery-quarter.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/battery-quarter.svg
deleted file mode 100644
index d48ca28bac6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/battery-quarter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/battery-three-quarters.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/battery-three-quarters.svg
deleted file mode 100644
index 43fc35adf96..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/battery-three-quarters.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bed.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bed.svg
deleted file mode 100644
index d70b022198e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/beer.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/beer.svg
deleted file mode 100644
index 692431b18e6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/beer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bell-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bell-slash.svg
deleted file mode 100644
index e36f50010d6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bell-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bell.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bell.svg
deleted file mode 100644
index e45be58cfdf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bell.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bezier-curve.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bezier-curve.svg
deleted file mode 100644
index ca10d7a7f97..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bezier-curve.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bible.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bible.svg
deleted file mode 100644
index 8c6c9532d9f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bible.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bicycle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bicycle.svg
deleted file mode 100644
index 4ef7ded2d9a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bicycle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/biking.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/biking.svg
deleted file mode 100644
index 8fb1d71b237..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/biking.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/binoculars.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/binoculars.svg
deleted file mode 100644
index d09ca73b66c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/binoculars.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/biohazard.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/biohazard.svg
deleted file mode 100644
index fddaee62d38..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/biohazard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/birthday-cake.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/birthday-cake.svg
deleted file mode 100644
index 50e92ae4f69..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/birthday-cake.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/blender-phone.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/blender-phone.svg
deleted file mode 100644
index 29733d67ede..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/blender-phone.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/blender.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/blender.svg
deleted file mode 100644
index 8357ad2766f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/blender.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/blind.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/blind.svg
deleted file mode 100644
index b1eddadfd1b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/blind.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/blog.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/blog.svg
deleted file mode 100644
index c9f8bb5bbe9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/blog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bold.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bold.svg
deleted file mode 100644
index d21f0d032f0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bold.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bolt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bolt.svg
deleted file mode 100644
index 4654a1ebbf5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bolt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bomb.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bomb.svg
deleted file mode 100644
index d7a56f2b18a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bomb.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bone.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bone.svg
deleted file mode 100644
index 1d43763ece9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bone.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bong.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bong.svg
deleted file mode 100644
index e84800ce58b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bong.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/book-dead.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/book-dead.svg
deleted file mode 100644
index 76a2ce39a32..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/book-dead.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/book-medical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/book-medical.svg
deleted file mode 100644
index e3c6c717731..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/book-medical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/book-open.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/book-open.svg
deleted file mode 100644
index 342917db590..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/book-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/book-reader.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/book-reader.svg
deleted file mode 100644
index 4d39dcbccea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/book-reader.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/book.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/book.svg
deleted file mode 100644
index d27fdae79b3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/book.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bookmark.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bookmark.svg
deleted file mode 100644
index d1c8e4a20f3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bookmark.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/border-all.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/border-all.svg
deleted file mode 100644
index 6e91245953c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/border-all.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/border-none.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/border-none.svg
deleted file mode 100644
index b21c8a94aab..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/border-none.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/border-style.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/border-style.svg
deleted file mode 100644
index fdc9a05ae11..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/border-style.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bowling-ball.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bowling-ball.svg
deleted file mode 100644
index 59602f68fea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bowling-ball.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/box-open.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/box-open.svg
deleted file mode 100644
index 0e6242c6844..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/box-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/box-tissue.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/box-tissue.svg
deleted file mode 100644
index 9ea5c28e01f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/box-tissue.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/box.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/box.svg
deleted file mode 100644
index 6cd0dc12389..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/box.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/boxes.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/boxes.svg
deleted file mode 100644
index b2da05b6db1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/boxes.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/braille.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/braille.svg
deleted file mode 100644
index 08f034ffad8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/braille.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/brain.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/brain.svg
deleted file mode 100644
index dee0d37f9ca..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/brain.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bread-slice.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bread-slice.svg
deleted file mode 100644
index 9b62b940197..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bread-slice.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/briefcase-medical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/briefcase-medical.svg
deleted file mode 100644
index f1404740f45..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/briefcase-medical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/briefcase.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/briefcase.svg
deleted file mode 100644
index 8c2882a094d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/briefcase.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/broadcast-tower.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/broadcast-tower.svg
deleted file mode 100644
index 614bc53dd58..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/broadcast-tower.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/broom.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/broom.svg
deleted file mode 100644
index 93b43c99fb4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/broom.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/brush.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/brush.svg
deleted file mode 100644
index e42b048b4ac..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/brush.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bug.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bug.svg
deleted file mode 100644
index b9185530aa9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bug.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/building.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/building.svg
deleted file mode 100644
index a109377bcf5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/building.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bullhorn.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bullhorn.svg
deleted file mode 100644
index 9c8637095b3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bullhorn.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bullseye.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bullseye.svg
deleted file mode 100644
index ec402e64471..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bullseye.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/burn.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/burn.svg
deleted file mode 100644
index 44183cf17b8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/burn.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bus-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bus-alt.svg
deleted file mode 100644
index bfaad721585..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bus-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/bus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/bus.svg
deleted file mode 100644
index 040c4a6b20b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/bus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/business-time.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/business-time.svg
deleted file mode 100644
index 74b5a1df4d9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/business-time.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/calculator.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/calculator.svg
deleted file mode 100644
index 9b367dfae5d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/calculator.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-alt.svg
deleted file mode 100644
index b07a0911c49..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-check.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-check.svg
deleted file mode 100644
index 35b590d024c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-check.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-day.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-day.svg
deleted file mode 100644
index 20f9fa09f36..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-day.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-minus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-minus.svg
deleted file mode 100644
index 78b8a3c07b4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-minus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-plus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-plus.svg
deleted file mode 100644
index 5e1b3382531..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-plus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-times.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-times.svg
deleted file mode 100644
index 4db39b2d886..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-times.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-week.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-week.svg
deleted file mode 100644
index 1bb6c9499f3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar-week.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/calendar.svg
deleted file mode 100644
index 2d3eefe8d65..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/calendar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/camera-retro.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/camera-retro.svg
deleted file mode 100644
index 67b7cfd54b6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/camera-retro.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/camera.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/camera.svg
deleted file mode 100644
index dc9f6081364..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/camera.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/campground.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/campground.svg
deleted file mode 100644
index 39719580fde..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/campground.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/candy-cane.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/candy-cane.svg
deleted file mode 100644
index 7e6600a497c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/candy-cane.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cannabis.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cannabis.svg
deleted file mode 100644
index 20ff4cd3313..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cannabis.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/capsules.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/capsules.svg
deleted file mode 100644
index 20d8ceea239..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/capsules.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/car-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/car-alt.svg
deleted file mode 100644
index 88111cfae66..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/car-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/car-battery.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/car-battery.svg
deleted file mode 100644
index 537e7d2989f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/car-battery.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/car-crash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/car-crash.svg
deleted file mode 100644
index bd9c65c8cd5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/car-crash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/car-side.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/car-side.svg
deleted file mode 100644
index 9d5ac6c4895..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/car-side.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/car.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/car.svg
deleted file mode 100644
index 9b23899005b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/car.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/caravan.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/caravan.svg
deleted file mode 100644
index 1e80ee0bded..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/caravan.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/caret-down.svg
deleted file mode 100644
index b3ee2ea9519..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/caret-left.svg
deleted file mode 100644
index 36d7191ad3d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/caret-right.svg
deleted file mode 100644
index bcd4cd106e4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-down.svg
deleted file mode 100644
index 87a4f7a0551..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-left.svg
deleted file mode 100644
index 856dcac95f3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-right.svg
deleted file mode 100644
index d69ec9fd4e8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-up.svg
deleted file mode 100644
index 005ea2c0651..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-square-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/caret-up.svg
deleted file mode 100644
index b4c7e5485a2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/caret-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/carrot.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/carrot.svg
deleted file mode 100644
index cedac22b019..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/carrot.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cart-arrow-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cart-arrow-down.svg
deleted file mode 100644
index 69e39712a7a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cart-arrow-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cart-plus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cart-plus.svg
deleted file mode 100644
index 7f5ab7f52e2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cart-plus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cash-register.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cash-register.svg
deleted file mode 100644
index eaf65d9e8b1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cash-register.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cat.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cat.svg
deleted file mode 100644
index 486bbcc4d56..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cat.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/certificate.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/certificate.svg
deleted file mode 100644
index c57ab137ac0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/certificate.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chair.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chair.svg
deleted file mode 100644
index 101e5d20045..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chair.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chalkboard-teacher.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chalkboard-teacher.svg
deleted file mode 100644
index ce1d9dc53e0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chalkboard-teacher.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chalkboard.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chalkboard.svg
deleted file mode 100644
index 6ec7e00d02f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chalkboard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/charging-station.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/charging-station.svg
deleted file mode 100644
index 2b0997f1c53..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/charging-station.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chart-area.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chart-area.svg
deleted file mode 100644
index 47c88629099..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chart-area.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chart-bar.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chart-bar.svg
deleted file mode 100644
index e08c6f7cb6c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chart-bar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chart-line.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chart-line.svg
deleted file mode 100644
index 5a0e06fec37..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chart-line.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chart-pie.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chart-pie.svg
deleted file mode 100644
index e1b476bd33b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chart-pie.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/check-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/check-circle.svg
deleted file mode 100644
index bdda551efc3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/check-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/check-double.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/check-double.svg
deleted file mode 100644
index ecfd0823875..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/check-double.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/check-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/check-square.svg
deleted file mode 100644
index 4ea6964af0c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/check-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/check.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/check.svg
deleted file mode 100644
index 2ec27cf84a6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/check.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cheese.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cheese.svg
deleted file mode 100644
index 8ffcac48e6b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cheese.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-bishop.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chess-bishop.svg
deleted file mode 100644
index 1016f12a5a4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-bishop.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-board.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chess-board.svg
deleted file mode 100644
index 8f30ead9aff..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-board.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-king.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chess-king.svg
deleted file mode 100644
index 35b0b346455..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-king.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-knight.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chess-knight.svg
deleted file mode 100644
index 390cddf2e1a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-knight.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-pawn.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chess-pawn.svg
deleted file mode 100644
index d56f83ec3b5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-pawn.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-queen.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chess-queen.svg
deleted file mode 100644
index fcc0934a80f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-queen.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-rook.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chess-rook.svg
deleted file mode 100644
index f279758c794..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chess-rook.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chess.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chess.svg
deleted file mode 100644
index e46c64d4ba0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chess.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-down.svg
deleted file mode 100644
index 4be7cea6fdf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-left.svg
deleted file mode 100644
index 60b5ac6ec0c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-right.svg
deleted file mode 100644
index 93350ee73a4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-up.svg
deleted file mode 100644
index d973a5dfa97..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-circle-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-down.svg
deleted file mode 100644
index 5962e8933ae..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-left.svg
deleted file mode 100644
index c2dcbcca906..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-right.svg
deleted file mode 100644
index 6d3e119b869..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-up.svg
deleted file mode 100644
index a38c372ad64..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/chevron-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/child.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/child.svg
deleted file mode 100644
index 8bbc718b905..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/child.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/church.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/church.svg
deleted file mode 100644
index ffe29d9ae87..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/church.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/circle-notch.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/circle-notch.svg
deleted file mode 100644
index 3cc8c0b5d4d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/circle-notch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/circle.svg
deleted file mode 100644
index c2db0b25c9d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/city.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/city.svg
deleted file mode 100644
index a27d3116e0f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/city.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/clinic-medical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/clinic-medical.svg
deleted file mode 100644
index efec191c6b2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/clinic-medical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/clipboard-check.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/clipboard-check.svg
deleted file mode 100644
index 3cdd41e99d5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/clipboard-check.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/clipboard-list.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/clipboard-list.svg
deleted file mode 100644
index f8421f08bc9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/clipboard-list.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/clipboard.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/clipboard.svg
deleted file mode 100644
index 1980a2bf1e6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/clipboard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/clock.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/clock.svg
deleted file mode 100644
index 91a5bc64acd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/clock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/clone.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/clone.svg
deleted file mode 100644
index 0f40db0744c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/clone.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/closed-captioning.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/closed-captioning.svg
deleted file mode 100644
index f0c68d04354..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/closed-captioning.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-download-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-download-alt.svg
deleted file mode 100644
index 3cd62ac2450..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-download-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-meatball.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-meatball.svg
deleted file mode 100644
index fe0a3a9807a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-meatball.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-moon-rain.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-moon-rain.svg
deleted file mode 100644
index dc164ec4199..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-moon-rain.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-moon.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-moon.svg
deleted file mode 100644
index 2caccfb1b38..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-moon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-rain.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-rain.svg
deleted file mode 100644
index 766e9ae9277..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-rain.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-showers-heavy.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-showers-heavy.svg
deleted file mode 100644
index 9b6d5b6a8b0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-showers-heavy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-sun-rain.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-sun-rain.svg
deleted file mode 100644
index eedd183b7ba..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-sun-rain.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-sun.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-sun.svg
deleted file mode 100644
index e4afd9ff109..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-sun.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-upload-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-upload-alt.svg
deleted file mode 100644
index 8cf98e907b3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud-upload-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cloud.svg
deleted file mode 100644
index 38d2dc5306b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cloud.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cocktail.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cocktail.svg
deleted file mode 100644
index b630000ba09..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cocktail.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/code-branch.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/code-branch.svg
deleted file mode 100644
index 0f33c5c5091..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/code-branch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/code.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/code.svg
deleted file mode 100644
index ea8da707c30..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/code.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/coffee.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/coffee.svg
deleted file mode 100644
index af4c0247730..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/coffee.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cog.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cog.svg
deleted file mode 100644
index fb5bd35ac96..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cogs.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cogs.svg
deleted file mode 100644
index c016886e00b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cogs.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/coins.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/coins.svg
deleted file mode 100644
index 511b03316ea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/coins.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/columns.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/columns.svg
deleted file mode 100644
index 84ec2a09e32..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/columns.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/comment-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/comment-alt.svg
deleted file mode 100644
index 5d81f790e07..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/comment-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/comment-dollar.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/comment-dollar.svg
deleted file mode 100644
index c77a6f0684f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/comment-dollar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/comment-dots.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/comment-dots.svg
deleted file mode 100644
index 5866e4194e5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/comment-dots.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/comment-medical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/comment-medical.svg
deleted file mode 100644
index 8bb1e330bb3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/comment-medical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/comment-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/comment-slash.svg
deleted file mode 100644
index b4b826fbc45..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/comment-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/comment.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/comment.svg
deleted file mode 100644
index f63328368b5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/comment.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/comments-dollar.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/comments-dollar.svg
deleted file mode 100644
index aacfa1930d1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/comments-dollar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/comments.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/comments.svg
deleted file mode 100644
index 2ea7897c85c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/comments.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/compact-disc.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/compact-disc.svg
deleted file mode 100644
index 7a583fce9c9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/compact-disc.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/compass.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/compass.svg
deleted file mode 100644
index e7f9cb9acac..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/compass.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/compress-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/compress-alt.svg
deleted file mode 100644
index cdb153697b3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/compress-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/compress-arrows-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/compress-arrows-alt.svg
deleted file mode 100644
index c06ee8f8a7b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/compress-arrows-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/compress.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/compress.svg
deleted file mode 100644
index f2faafbfd39..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/compress.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/concierge-bell.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/concierge-bell.svg
deleted file mode 100644
index 91d12a638d9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/concierge-bell.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cookie-bite.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cookie-bite.svg
deleted file mode 100644
index 42d566154dc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cookie-bite.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cookie.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cookie.svg
deleted file mode 100644
index 06ab7452477..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cookie.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/copy.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/copy.svg
deleted file mode 100644
index 02534e7caa1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/copy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/copyright.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/copyright.svg
deleted file mode 100644
index eb5d4c61b14..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/copyright.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/couch.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/couch.svg
deleted file mode 100644
index ba8c3ffb4e8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/couch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/credit-card.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/credit-card.svg
deleted file mode 100644
index 676d3586809..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/credit-card.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/crop-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/crop-alt.svg
deleted file mode 100644
index aa7438ebfc3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/crop-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/crop.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/crop.svg
deleted file mode 100644
index 5bd06a9214c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/crop.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cross.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cross.svg
deleted file mode 100644
index 86113de5053..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cross.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/crosshairs.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/crosshairs.svg
deleted file mode 100644
index 60acd3e28bf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/crosshairs.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/crow.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/crow.svg
deleted file mode 100644
index de91410af5b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/crow.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/crown.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/crown.svg
deleted file mode 100644
index 03b1f191806..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/crown.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/crutch.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/crutch.svg
deleted file mode 100644
index a32ba7e1b35..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/crutch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cube.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cube.svg
deleted file mode 100644
index a627fd549b3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cube.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cubes.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cubes.svg
deleted file mode 100644
index 208f688a3ee..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cubes.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/cut.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/cut.svg
deleted file mode 100644
index 4f626aa098b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/cut.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/database.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/database.svg
deleted file mode 100644
index a6e4982bc32..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/database.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/deaf.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/deaf.svg
deleted file mode 100644
index 25a7a86ece5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/deaf.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/democrat.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/democrat.svg
deleted file mode 100644
index 5cde060ff08..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/democrat.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/desktop.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/desktop.svg
deleted file mode 100644
index bba157e8084..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/desktop.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dharmachakra.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dharmachakra.svg
deleted file mode 100644
index 6838379bec6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dharmachakra.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/diagnoses.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/diagnoses.svg
deleted file mode 100644
index 8f56e24c2f9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/diagnoses.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-d20.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dice-d20.svg
deleted file mode 100644
index 085e3f0d9c0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-d20.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-d6.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dice-d6.svg
deleted file mode 100644
index b1d270a0f6b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-d6.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-five.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dice-five.svg
deleted file mode 100644
index 7fd8c1d234f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-five.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-four.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dice-four.svg
deleted file mode 100644
index 9cd681bd31b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-four.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-one.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dice-one.svg
deleted file mode 100644
index e5d3b5e14ed..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-one.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-six.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dice-six.svg
deleted file mode 100644
index c1ed7cfc426..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-six.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-three.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dice-three.svg
deleted file mode 100644
index c035c8043fa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-three.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-two.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dice-two.svg
deleted file mode 100644
index d6528d79e80..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dice-two.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dice.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dice.svg
deleted file mode 100644
index da8a81230ae..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dice.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/digital-tachograph.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/digital-tachograph.svg
deleted file mode 100644
index 65f4a028c19..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/digital-tachograph.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/directions.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/directions.svg
deleted file mode 100644
index aa23106ed0b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/directions.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/disease.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/disease.svg
deleted file mode 100644
index 043d7c6b200..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/disease.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/divide.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/divide.svg
deleted file mode 100644
index cb6d8b6f90c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/divide.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dizzy.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dizzy.svg
deleted file mode 100644
index d1b52469260..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dizzy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dna.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dna.svg
deleted file mode 100644
index 81cddb6a672..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dna.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dog.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dog.svg
deleted file mode 100644
index c3a9f638ebf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dollar-sign.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dollar-sign.svg
deleted file mode 100644
index 23cf69108ef..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dollar-sign.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dolly-flatbed.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dolly-flatbed.svg
deleted file mode 100644
index bb20bdebceb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dolly-flatbed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dolly.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dolly.svg
deleted file mode 100644
index 0fe3a517fb2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dolly.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/donate.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/donate.svg
deleted file mode 100644
index bacf83e672a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/donate.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/door-closed.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/door-closed.svg
deleted file mode 100644
index 00add341873..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/door-closed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/door-open.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/door-open.svg
deleted file mode 100644
index e246f1fbc72..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/door-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dot-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dot-circle.svg
deleted file mode 100644
index 5cb222ddd7b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dot-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dove.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dove.svg
deleted file mode 100644
index 86139028ffb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dove.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/download.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/download.svg
deleted file mode 100644
index da5eec408ed..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/download.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/drafting-compass.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/drafting-compass.svg
deleted file mode 100644
index c2834adb2fa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/drafting-compass.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dragon.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dragon.svg
deleted file mode 100644
index c8ed5ebeb10..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dragon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/draw-polygon.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/draw-polygon.svg
deleted file mode 100644
index 99cd9994a5e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/draw-polygon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/drum-steelpan.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/drum-steelpan.svg
deleted file mode 100644
index c4b12b485d0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/drum-steelpan.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/drum.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/drum.svg
deleted file mode 100644
index e2ba640c8e2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/drum.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/drumstick-bite.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/drumstick-bite.svg
deleted file mode 100644
index 162f621e642..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/drumstick-bite.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dumbbell.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dumbbell.svg
deleted file mode 100644
index 2fe16673cad..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dumbbell.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dumpster-fire.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dumpster-fire.svg
deleted file mode 100644
index 9bd654f4b8d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dumpster-fire.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dumpster.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dumpster.svg
deleted file mode 100644
index 74cdd3f93b9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dumpster.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/dungeon.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/dungeon.svg
deleted file mode 100644
index a367bf4ce28..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/dungeon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/edit.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/edit.svg
deleted file mode 100644
index 2313feb192c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/edit.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/egg.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/egg.svg
deleted file mode 100644
index 804ac67c94b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/egg.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/eject.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/eject.svg
deleted file mode 100644
index d240b0d1b6c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/eject.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ellipsis-h.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ellipsis-h.svg
deleted file mode 100644
index 70748ad957d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ellipsis-h.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ellipsis-v.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ellipsis-v.svg
deleted file mode 100644
index e8e713ad4ef..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ellipsis-v.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/envelope-open-text.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/envelope-open-text.svg
deleted file mode 100644
index 821168c0a08..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/envelope-open-text.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/envelope-open.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/envelope-open.svg
deleted file mode 100644
index 947ae25a5ed..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/envelope-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/envelope-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/envelope-square.svg
deleted file mode 100644
index c35055f9c51..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/envelope-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/envelope.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/envelope.svg
deleted file mode 100644
index edbcad3de46..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/envelope.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/equals.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/equals.svg
deleted file mode 100644
index 9dcbfdb5aab..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/equals.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/eraser.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/eraser.svg
deleted file mode 100644
index 1ba581e7cf1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/eraser.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ethernet.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ethernet.svg
deleted file mode 100644
index 2b391a39f1b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ethernet.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/euro-sign.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/euro-sign.svg
deleted file mode 100644
index fd18c90dedb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/euro-sign.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/exchange-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/exchange-alt.svg
deleted file mode 100644
index b22538a9e8b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/exchange-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/exclamation-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/exclamation-circle.svg
deleted file mode 100644
index 16593039812..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/exclamation-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/exclamation-triangle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/exclamation-triangle.svg
deleted file mode 100644
index 2ab53271b42..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/exclamation-triangle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/exclamation.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/exclamation.svg
deleted file mode 100644
index 89ef11a7ad4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/exclamation.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/expand-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/expand-alt.svg
deleted file mode 100644
index 05eb259352e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/expand-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/expand-arrows-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/expand-arrows-alt.svg
deleted file mode 100644
index c08ecffa096..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/expand-arrows-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/expand.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/expand.svg
deleted file mode 100644
index e8f812d47c8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/expand.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/external-link-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/external-link-alt.svg
deleted file mode 100644
index 859914bab20..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/external-link-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/external-link-square-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/external-link-square-alt.svg
deleted file mode 100644
index 099977be47a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/external-link-square-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/eye-dropper.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/eye-dropper.svg
deleted file mode 100644
index 51c3453a61a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/eye-dropper.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/eye-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/eye-slash.svg
deleted file mode 100644
index 7685eca2459..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/eye-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/eye.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/eye.svg
deleted file mode 100644
index 477e9ed9d02..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/eye.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fan.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fan.svg
deleted file mode 100644
index 7cca18739cf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fan.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fast-backward.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fast-backward.svg
deleted file mode 100644
index dfe10e5c53e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fast-backward.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fast-forward.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fast-forward.svg
deleted file mode 100644
index 57c072ae12b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fast-forward.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/faucet.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/faucet.svg
deleted file mode 100644
index 18e922a853e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/faucet.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fax.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fax.svg
deleted file mode 100644
index 9c9cc82327d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fax.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/feather-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/feather-alt.svg
deleted file mode 100644
index a04ebbd1f42..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/feather-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/feather.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/feather.svg
deleted file mode 100644
index bbdb9342807..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/feather.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/female.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/female.svg
deleted file mode 100644
index 9bfc7ad6cb7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/female.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fighter-jet.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fighter-jet.svg
deleted file mode 100644
index 3fdfe2d8b52..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fighter-jet.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-alt.svg
deleted file mode 100644
index e1f980c870c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-archive.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-archive.svg
deleted file mode 100644
index 7c60e72c455..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-archive.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-audio.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-audio.svg
deleted file mode 100644
index c491a45a4aa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-audio.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-code.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-code.svg
deleted file mode 100644
index 4036f537fc3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-code.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-contract.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-contract.svg
deleted file mode 100644
index d8b2bd69c45..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-contract.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-csv.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-csv.svg
deleted file mode 100644
index 7b0d2736614..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-csv.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-download.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-download.svg
deleted file mode 100644
index b0dfa46eb9c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-download.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-excel.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-excel.svg
deleted file mode 100644
index 62cec9dd273..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-excel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-export.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-export.svg
deleted file mode 100644
index 1590d5deb54..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-export.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-image.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-image.svg
deleted file mode 100644
index 6c87c8cf193..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-image.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-import.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-import.svg
deleted file mode 100644
index a89e8eafa71..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-import.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-invoice-dollar.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-invoice-dollar.svg
deleted file mode 100644
index 39184ce7040..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-invoice-dollar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-invoice.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-invoice.svg
deleted file mode 100644
index 5f5b2419676..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-invoice.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-medical-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-medical-alt.svg
deleted file mode 100644
index 0c0699c3e57..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-medical-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-medical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-medical.svg
deleted file mode 100644
index 748bf58f61c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-medical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-pdf.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-pdf.svg
deleted file mode 100644
index 9782667d5d8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-pdf.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-powerpoint.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-powerpoint.svg
deleted file mode 100644
index bd26fb923a8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-powerpoint.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-prescription.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-prescription.svg
deleted file mode 100644
index 563292ba919..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-prescription.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-signature.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-signature.svg
deleted file mode 100644
index 6b27b140bf3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-signature.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-upload.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-upload.svg
deleted file mode 100644
index 49b0a88dd66..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-upload.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-video.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-video.svg
deleted file mode 100644
index 8de9f6cf6fa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-video.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file-word.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file-word.svg
deleted file mode 100644
index f484a94cc3f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file-word.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/file.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/file.svg
deleted file mode 100644
index 7f495dcefd9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/file.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fill-drip.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fill-drip.svg
deleted file mode 100644
index 74346b5c6af..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fill-drip.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fill.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fill.svg
deleted file mode 100644
index b7bf4056fa5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/film.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/film.svg
deleted file mode 100644
index f120aee23b7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/film.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/filter.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/filter.svg
deleted file mode 100644
index 95861a392b7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/filter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fingerprint.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fingerprint.svg
deleted file mode 100644
index f05ea378275..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fingerprint.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fire-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fire-alt.svg
deleted file mode 100644
index d8766309c50..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fire-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fire-extinguisher.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fire-extinguisher.svg
deleted file mode 100644
index 2bd873807ec..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fire-extinguisher.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fire.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fire.svg
deleted file mode 100644
index 5ab3fa8313b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fire.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/first-aid.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/first-aid.svg
deleted file mode 100644
index 43fd522519d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/first-aid.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fish.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fish.svg
deleted file mode 100644
index 8312ff5c1e2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fish.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/fist-raised.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/fist-raised.svg
deleted file mode 100644
index 27c77705cec..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/fist-raised.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/flag-checkered.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/flag-checkered.svg
deleted file mode 100644
index acb3406a40b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/flag-checkered.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/flag-usa.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/flag-usa.svg
deleted file mode 100644
index 7cb1a625a01..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/flag-usa.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/flag.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/flag.svg
deleted file mode 100644
index eb95c9ca830..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/flag.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/flask.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/flask.svg
deleted file mode 100644
index c30929ace91..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/flask.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/flushed.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/flushed.svg
deleted file mode 100644
index 1e6e1c96eec..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/flushed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/folder-minus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/folder-minus.svg
deleted file mode 100644
index 4e554e0d2a9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/folder-minus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/folder-open.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/folder-open.svg
deleted file mode 100644
index 57dcfa604bb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/folder-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/folder-plus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/folder-plus.svg
deleted file mode 100644
index 5aaba5d05d5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/folder-plus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/folder.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/folder.svg
deleted file mode 100644
index c9607689a3c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/folder.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/font-awesome-logo-full.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/font-awesome-logo-full.svg
deleted file mode 100644
index 06b75a4d096..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/font-awesome-logo-full.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/font.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/font.svg
deleted file mode 100644
index a9f2a7a75d3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/font.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/football-ball.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/football-ball.svg
deleted file mode 100644
index 260c2914a0e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/football-ball.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/forward.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/forward.svg
deleted file mode 100644
index 5349d49fbb3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/forward.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/frog.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/frog.svg
deleted file mode 100644
index 96a9ea93b85..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/frog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/frown-open.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/frown-open.svg
deleted file mode 100644
index dac5ca2a6bf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/frown-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/frown.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/frown.svg
deleted file mode 100644
index 8207b8dd7ab..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/frown.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/funnel-dollar.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/funnel-dollar.svg
deleted file mode 100644
index d5970e14156..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/funnel-dollar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/futbol.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/futbol.svg
deleted file mode 100644
index 936fcad2e1d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/futbol.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/gamepad.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/gamepad.svg
deleted file mode 100644
index a1d2c131e33..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/gamepad.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/gas-pump.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/gas-pump.svg
deleted file mode 100644
index 0a3899549aa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/gas-pump.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/gavel.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/gavel.svg
deleted file mode 100644
index c68ac7c38bf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/gavel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/gem.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/gem.svg
deleted file mode 100644
index 6172b87111e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/gem.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/genderless.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/genderless.svg
deleted file mode 100644
index 9c9286734df..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/genderless.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ghost.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ghost.svg
deleted file mode 100644
index 91b24056dd6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ghost.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/gift.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/gift.svg
deleted file mode 100644
index d3c13490d0d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/gift.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/gifts.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/gifts.svg
deleted file mode 100644
index e132b647ede..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/gifts.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/glass-cheers.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/glass-cheers.svg
deleted file mode 100644
index 0f8de5ab3ef..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/glass-cheers.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/glass-martini-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/glass-martini-alt.svg
deleted file mode 100644
index dc4aa9c615f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/glass-martini-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/glass-martini.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/glass-martini.svg
deleted file mode 100644
index 283c3c61305..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/glass-martini.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/glass-whiskey.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/glass-whiskey.svg
deleted file mode 100644
index 27b29539536..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/glass-whiskey.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/glasses.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/glasses.svg
deleted file mode 100644
index 8b207a9be81..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/glasses.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/globe-africa.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/globe-africa.svg
deleted file mode 100644
index 50009fe52af..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/globe-africa.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/globe-americas.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/globe-americas.svg
deleted file mode 100644
index 3e4462e74e1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/globe-americas.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/globe-asia.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/globe-asia.svg
deleted file mode 100644
index 5a160176d41..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/globe-asia.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/globe-europe.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/globe-europe.svg
deleted file mode 100644
index 59823305422..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/globe-europe.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/globe.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/globe.svg
deleted file mode 100644
index 93b6178459c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/globe.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/golf-ball.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/golf-ball.svg
deleted file mode 100644
index 9e87e82a152..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/golf-ball.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/gopuram.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/gopuram.svg
deleted file mode 100644
index efe3a7cc841..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/gopuram.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/graduation-cap.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/graduation-cap.svg
deleted file mode 100644
index 101c3315f27..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/graduation-cap.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/greater-than-equal.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/greater-than-equal.svg
deleted file mode 100644
index 1c071f5d3e8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/greater-than-equal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/greater-than.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/greater-than.svg
deleted file mode 100644
index e4e3390a648..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/greater-than.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grimace.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grimace.svg
deleted file mode 100644
index dda0b7b79ad..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grimace.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-alt.svg
deleted file mode 100644
index c400d4dba87..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-beam-sweat.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-beam-sweat.svg
deleted file mode 100644
index 1e10965609b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-beam-sweat.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-beam.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-beam.svg
deleted file mode 100644
index cfde54a9517..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-beam.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-hearts.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-hearts.svg
deleted file mode 100644
index eae2d18cf5a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-hearts.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-squint-tears.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-squint-tears.svg
deleted file mode 100644
index 39073b7d277..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-squint-tears.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-squint.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-squint.svg
deleted file mode 100644
index de54800c604..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-squint.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-stars.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-stars.svg
deleted file mode 100644
index a6432aaba90..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-stars.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tears.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tears.svg
deleted file mode 100644
index 1413617a5d7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tears.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tongue-squint.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tongue-squint.svg
deleted file mode 100644
index c903494b4c8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tongue-squint.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tongue-wink.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tongue-wink.svg
deleted file mode 100644
index 49beb8452b3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tongue-wink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tongue.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tongue.svg
deleted file mode 100644
index 6aff145f19d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-tongue.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-wink.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin-wink.svg
deleted file mode 100644
index 4c8ed97b03f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin-wink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grin.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grin.svg
deleted file mode 100644
index 4ba985a078f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grin.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grip-horizontal.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grip-horizontal.svg
deleted file mode 100644
index bb19ff31847..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grip-horizontal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grip-lines-vertical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grip-lines-vertical.svg
deleted file mode 100644
index 92feba894fd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grip-lines-vertical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grip-lines.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grip-lines.svg
deleted file mode 100644
index 6fb9ce7c062..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grip-lines.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/grip-vertical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/grip-vertical.svg
deleted file mode 100644
index a383a433145..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/grip-vertical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/guitar.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/guitar.svg
deleted file mode 100644
index db1f699f955..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/guitar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/h-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/h-square.svg
deleted file mode 100644
index 0b85e2856be..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/h-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hamburger.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hamburger.svg
deleted file mode 100644
index 897f38da7fb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hamburger.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hammer.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hammer.svg
deleted file mode 100644
index 78df6b49016..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hammer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hamsa.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hamsa.svg
deleted file mode 100644
index 4ccb23adc32..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hamsa.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-heart.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-heart.svg
deleted file mode 100644
index 65ee45e7f34..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-heart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-medical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-medical.svg
deleted file mode 100644
index 907e6cb5ded..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-medical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-usd.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-usd.svg
deleted file mode 100644
index 5534433a6d7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-usd.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-water.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-water.svg
deleted file mode 100644
index 36c5c92adfb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding-water.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding.svg
deleted file mode 100644
index 1328cfd2ae3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-holding.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-lizard.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-lizard.svg
deleted file mode 100644
index 6d27f0adffe..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-lizard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-middle-finger.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-middle-finger.svg
deleted file mode 100644
index 7b896482277..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-middle-finger.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-paper.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-paper.svg
deleted file mode 100644
index f4aadf12d78..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-paper.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-peace.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-peace.svg
deleted file mode 100644
index 8ed4eede199..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-peace.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-down.svg
deleted file mode 100644
index af8513f0778..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-left.svg
deleted file mode 100644
index 5fa16c8d51c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-right.svg
deleted file mode 100644
index e3f50e124d7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-up.svg
deleted file mode 100644
index 8bf94b71105..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-point-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-pointer.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-pointer.svg
deleted file mode 100644
index e1367b6c91d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-pointer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-rock.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-rock.svg
deleted file mode 100644
index ce1f6ea32d7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-rock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-scissors.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-scissors.svg
deleted file mode 100644
index a5996614a83..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-scissors.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-sparkles.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-sparkles.svg
deleted file mode 100644
index 7dd43a178d3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-sparkles.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-spock.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hand-spock.svg
deleted file mode 100644
index a8640b580f1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hand-spock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hands-helping.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hands-helping.svg
deleted file mode 100644
index 162f45e9e03..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hands-helping.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hands-wash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hands-wash.svg
deleted file mode 100644
index c44c4d8aaf2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hands-wash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hands.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hands.svg
deleted file mode 100644
index 5f0b02d9067..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hands.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/handshake-alt-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/handshake-alt-slash.svg
deleted file mode 100644
index 285ed856c7d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/handshake-alt-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/handshake-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/handshake-slash.svg
deleted file mode 100644
index 833cd020897..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/handshake-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/handshake.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/handshake.svg
deleted file mode 100644
index bd5cf53ea1a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/handshake.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hanukiah.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hanukiah.svg
deleted file mode 100644
index b431d6aeff5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hanukiah.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hard-hat.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hard-hat.svg
deleted file mode 100644
index cbfa6acf03f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hard-hat.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hashtag.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hashtag.svg
deleted file mode 100644
index 2a6094fe141..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hashtag.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hat-cowboy-side.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hat-cowboy-side.svg
deleted file mode 100644
index 0ba999fa7c2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hat-cowboy-side.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hat-cowboy.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hat-cowboy.svg
deleted file mode 100644
index c02b9eaf13e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hat-cowboy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hat-wizard.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hat-wizard.svg
deleted file mode 100644
index 21d451091f4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hat-wizard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hdd.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hdd.svg
deleted file mode 100644
index cead9cff5fb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hdd.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-cough-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-cough-slash.svg
deleted file mode 100644
index 9496f7e7091..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-cough-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-cough.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-cough.svg
deleted file mode 100644
index 774710a5eff..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-cough.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-mask.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-mask.svg
deleted file mode 100644
index b2b2b2f06be..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-mask.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-virus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-virus.svg
deleted file mode 100644
index d6161223691..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/head-side-virus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/heading.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/heading.svg
deleted file mode 100644
index 54d7e7d72c7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/heading.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/headphones-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/headphones-alt.svg
deleted file mode 100644
index 735dc8a7e38..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/headphones-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/headphones.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/headphones.svg
deleted file mode 100644
index c97cde6a803..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/headphones.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/headset.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/headset.svg
deleted file mode 100644
index e63e7fd2ecf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/headset.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/heart-broken.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/heart-broken.svg
deleted file mode 100644
index bcc6ccfc683..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/heart-broken.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/heart.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/heart.svg
deleted file mode 100644
index d9fa587dd50..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/heart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/heartbeat.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/heartbeat.svg
deleted file mode 100644
index fa2bb9b41ad..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/heartbeat.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/helicopter.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/helicopter.svg
deleted file mode 100644
index 36c462e6411..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/helicopter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/highlighter.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/highlighter.svg
deleted file mode 100644
index b32a63a56b6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/highlighter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hiking.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hiking.svg
deleted file mode 100644
index 480a804121d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hiking.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hippo.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hippo.svg
deleted file mode 100644
index e8c2a223fc0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hippo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/history.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/history.svg
deleted file mode 100644
index 8157c31312d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/history.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hockey-puck.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hockey-puck.svg
deleted file mode 100644
index 24a0a90d4bf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hockey-puck.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/holly-berry.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/holly-berry.svg
deleted file mode 100644
index 71e156e5dd0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/holly-berry.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/home.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/home.svg
deleted file mode 100644
index 27ee7ab0cc3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/home.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/horse-head.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/horse-head.svg
deleted file mode 100644
index 98a804a95df..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/horse-head.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/horse.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/horse.svg
deleted file mode 100644
index 079d8483fcb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/horse.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hospital-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hospital-alt.svg
deleted file mode 100644
index 5229e16ce5c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hospital-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hospital-symbol.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hospital-symbol.svg
deleted file mode 100644
index 9463a88d804..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hospital-symbol.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hospital-user.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hospital-user.svg
deleted file mode 100644
index 35bd902708b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hospital-user.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hospital.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hospital.svg
deleted file mode 100644
index 5b6c7b45669..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hospital.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hot-tub.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hot-tub.svg
deleted file mode 100644
index a49145e31f9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hot-tub.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hotdog.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hotdog.svg
deleted file mode 100644
index 75962d4403c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hotdog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hotel.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hotel.svg
deleted file mode 100644
index 39a8e565dee..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hotel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass-end.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass-end.svg
deleted file mode 100644
index 4773ce65438..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass-end.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass-half.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass-half.svg
deleted file mode 100644
index adf6f26de7e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass-half.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass-start.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass-start.svg
deleted file mode 100644
index 214b6c71cb6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass-start.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass.svg
deleted file mode 100644
index cd6052ce9a5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hourglass.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/house-damage.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/house-damage.svg
deleted file mode 100644
index 6a9deccdf80..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/house-damage.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/house-user.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/house-user.svg
deleted file mode 100644
index eea549caf4f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/house-user.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/hryvnia.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/hryvnia.svg
deleted file mode 100644
index d93732606d7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/hryvnia.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/i-cursor.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/i-cursor.svg
deleted file mode 100644
index 2367160dcb7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/i-cursor.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ice-cream.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ice-cream.svg
deleted file mode 100644
index 1f1bb339f6f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ice-cream.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/icicles.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/icicles.svg
deleted file mode 100644
index 962982d5992..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/icicles.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/icons.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/icons.svg
deleted file mode 100644
index 0f161378cd2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/icons.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/id-badge.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/id-badge.svg
deleted file mode 100644
index a5ce6e1d9d7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/id-badge.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/id-card-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/id-card-alt.svg
deleted file mode 100644
index 0b21ac366e2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/id-card-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/id-card.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/id-card.svg
deleted file mode 100644
index b6be99cb215..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/id-card.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/igloo.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/igloo.svg
deleted file mode 100644
index e2d77d48f2f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/igloo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/image.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/image.svg
deleted file mode 100644
index dbf552dabe1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/image.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/images.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/images.svg
deleted file mode 100644
index efd28e2ac42..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/images.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/inbox.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/inbox.svg
deleted file mode 100644
index 761d6c7b552..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/inbox.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/indent.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/indent.svg
deleted file mode 100644
index 34084348916..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/indent.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/industry.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/industry.svg
deleted file mode 100644
index c04e11ac182..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/industry.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/infinity.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/infinity.svg
deleted file mode 100644
index d8dd3984e63..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/infinity.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/info-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/info-circle.svg
deleted file mode 100644
index a25c1632d11..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/info-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/info.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/info.svg
deleted file mode 100644
index e6b9c3f6edc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/info.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/italic.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/italic.svg
deleted file mode 100644
index f48619e8787..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/italic.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/jedi.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/jedi.svg
deleted file mode 100644
index cdc724b7d5c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/jedi.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/joint.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/joint.svg
deleted file mode 100644
index cd0c052e821..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/joint.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/journal-whills.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/journal-whills.svg
deleted file mode 100644
index e3593b3c283..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/journal-whills.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/kaaba.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/kaaba.svg
deleted file mode 100644
index 7974f2208bd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/kaaba.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/key.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/key.svg
deleted file mode 100644
index e0bd4948abe..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/key.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/keyboard.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/keyboard.svg
deleted file mode 100644
index 12686637fc4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/keyboard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/khanda.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/khanda.svg
deleted file mode 100644
index 625641bceea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/khanda.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/kiss-beam.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/kiss-beam.svg
deleted file mode 100644
index a2c3e501fb5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/kiss-beam.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/kiss-wink-heart.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/kiss-wink-heart.svg
deleted file mode 100644
index de6ecee32c3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/kiss-wink-heart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/kiss.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/kiss.svg
deleted file mode 100644
index 0f6852440de..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/kiss.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/kiwi-bird.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/kiwi-bird.svg
deleted file mode 100644
index bbc7c9af4aa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/kiwi-bird.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/landmark.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/landmark.svg
deleted file mode 100644
index 49f60927bde..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/landmark.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/language.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/language.svg
deleted file mode 100644
index e45129e4e63..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/language.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/laptop-code.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/laptop-code.svg
deleted file mode 100644
index a607c0f2c77..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/laptop-code.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/laptop-house.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/laptop-house.svg
deleted file mode 100644
index 313248922de..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/laptop-house.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/laptop-medical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/laptop-medical.svg
deleted file mode 100644
index a5f6b7dbde2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/laptop-medical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/laptop.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/laptop.svg
deleted file mode 100644
index b68aab38274..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/laptop.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/laugh-beam.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/laugh-beam.svg
deleted file mode 100644
index 9baa5495eb1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/laugh-beam.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/laugh-squint.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/laugh-squint.svg
deleted file mode 100644
index 20046e6d2c3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/laugh-squint.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/laugh-wink.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/laugh-wink.svg
deleted file mode 100644
index 1dffaa6097b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/laugh-wink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/laugh.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/laugh.svg
deleted file mode 100644
index 07d3111ede3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/laugh.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/layer-group.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/layer-group.svg
deleted file mode 100644
index 08ca4535891..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/layer-group.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/leaf.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/leaf.svg
deleted file mode 100644
index f31abe1b8f2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/leaf.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/lemon.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/lemon.svg
deleted file mode 100644
index e8f98bd68e0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/lemon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/less-than-equal.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/less-than-equal.svg
deleted file mode 100644
index 7bbf5c0847f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/less-than-equal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/less-than.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/less-than.svg
deleted file mode 100644
index db80274a74a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/less-than.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/level-down-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/level-down-alt.svg
deleted file mode 100644
index 523508722f5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/level-down-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/level-up-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/level-up-alt.svg
deleted file mode 100644
index a9672eb4028..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/level-up-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/life-ring.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/life-ring.svg
deleted file mode 100644
index da06ef4641b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/life-ring.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/lightbulb.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/lightbulb.svg
deleted file mode 100644
index b5d654ba58d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/lightbulb.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/link.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/link.svg
deleted file mode 100644
index 57caa9ffda8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/link.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/lira-sign.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/lira-sign.svg
deleted file mode 100644
index 802a0f519ad..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/lira-sign.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/list-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/list-alt.svg
deleted file mode 100644
index 5e32557c2cf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/list-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/list-ol.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/list-ol.svg
deleted file mode 100644
index 739857047dd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/list-ol.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/list-ul.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/list-ul.svg
deleted file mode 100644
index ae3ea22a096..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/list-ul.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/list.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/list.svg
deleted file mode 100644
index 68418639373..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/list.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/location-arrow.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/location-arrow.svg
deleted file mode 100644
index 853ee9c3043..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/location-arrow.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/lock-open.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/lock-open.svg
deleted file mode 100644
index 7f949963af6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/lock-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/lock.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/lock.svg
deleted file mode 100644
index 7d0e70bdc3e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/lock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-down.svg
deleted file mode 100644
index 75e69e79b79..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-left.svg
deleted file mode 100644
index b9e103b3d3f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-right.svg
deleted file mode 100644
index 2f388d537b8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-up.svg
deleted file mode 100644
index cdd5dcf7b33..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/long-arrow-alt-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/low-vision.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/low-vision.svg
deleted file mode 100644
index 5b82a1bdb98..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/low-vision.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/luggage-cart.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/luggage-cart.svg
deleted file mode 100644
index c8514212f71..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/luggage-cart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/lungs-virus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/lungs-virus.svg
deleted file mode 100644
index 5c4e19bd675..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/lungs-virus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/lungs.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/lungs.svg
deleted file mode 100644
index 9f2839152da..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/lungs.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/magic.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/magic.svg
deleted file mode 100644
index 9ee277f1962..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/magic.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/magnet.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/magnet.svg
deleted file mode 100644
index 4b68066c42b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/magnet.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mail-bulk.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mail-bulk.svg
deleted file mode 100644
index 38e5f5ae310..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mail-bulk.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/male.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/male.svg
deleted file mode 100644
index b41d026f35a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/male.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/map-marked-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/map-marked-alt.svg
deleted file mode 100644
index a45ef9ff8a1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/map-marked-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/map-marked.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/map-marked.svg
deleted file mode 100644
index 54b59531e73..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/map-marked.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/map-marker-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/map-marker-alt.svg
deleted file mode 100644
index d3d94f03a4f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/map-marker-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/map-marker.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/map-marker.svg
deleted file mode 100644
index c2047c7bab4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/map-marker.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/map-pin.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/map-pin.svg
deleted file mode 100644
index 3d710733083..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/map-pin.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/map-signs.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/map-signs.svg
deleted file mode 100644
index 5f5b9b3d68d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/map-signs.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/map.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/map.svg
deleted file mode 100644
index bb623149efe..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/map.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/marker.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/marker.svg
deleted file mode 100644
index 6ee7cec2a35..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/marker.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mars-double.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mars-double.svg
deleted file mode 100644
index 49a76e0738c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mars-double.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mars-stroke-h.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mars-stroke-h.svg
deleted file mode 100644
index 32ea3f52e08..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mars-stroke-h.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mars-stroke-v.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mars-stroke-v.svg
deleted file mode 100644
index e3c03aace5c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mars-stroke-v.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mars-stroke.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mars-stroke.svg
deleted file mode 100644
index 076d1e6d289..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mars-stroke.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mars.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mars.svg
deleted file mode 100644
index 022f88d0012..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mars.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mask.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mask.svg
deleted file mode 100644
index d4067931df8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mask.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/medal.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/medal.svg
deleted file mode 100644
index 6fe8e7ea675..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/medal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/medkit.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/medkit.svg
deleted file mode 100644
index 637d38e9ff0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/medkit.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/meh-blank.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/meh-blank.svg
deleted file mode 100644
index e98e39bbaee..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/meh-blank.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/meh-rolling-eyes.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/meh-rolling-eyes.svg
deleted file mode 100644
index 0689940592b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/meh-rolling-eyes.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/meh.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/meh.svg
deleted file mode 100644
index 198bebdedd7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/meh.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/memory.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/memory.svg
deleted file mode 100644
index 1ae9bcd2aaa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/memory.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/menorah.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/menorah.svg
deleted file mode 100644
index a6f11b97bbe..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/menorah.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mercury.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mercury.svg
deleted file mode 100644
index a9304158718..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mercury.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/meteor.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/meteor.svg
deleted file mode 100644
index 95b3f74b460..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/meteor.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/microchip.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/microchip.svg
deleted file mode 100644
index 4eb7e2d51f9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/microchip.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/microphone-alt-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/microphone-alt-slash.svg
deleted file mode 100644
index 59ad8b2759f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/microphone-alt-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/microphone-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/microphone-alt.svg
deleted file mode 100644
index dd8f50f0c65..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/microphone-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/microphone-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/microphone-slash.svg
deleted file mode 100644
index 8d3badb7386..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/microphone-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/microphone.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/microphone.svg
deleted file mode 100644
index 194b4d31620..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/microphone.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/microscope.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/microscope.svg
deleted file mode 100644
index ef714036346..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/microscope.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/minus-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/minus-circle.svg
deleted file mode 100644
index efe6e46a346..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/minus-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/minus-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/minus-square.svg
deleted file mode 100644
index 27ebb01cc5f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/minus-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/minus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/minus.svg
deleted file mode 100644
index ac83426d107..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/minus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mitten.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mitten.svg
deleted file mode 100644
index a4dca754028..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mitten.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mobile-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mobile-alt.svg
deleted file mode 100644
index e8084596d0f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mobile-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mobile.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mobile.svg
deleted file mode 100644
index 2783241d705..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mobile.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill-alt.svg
deleted file mode 100644
index 50251552d27..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill-wave-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill-wave-alt.svg
deleted file mode 100644
index f32fcfe8729..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill-wave-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill-wave.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill-wave.svg
deleted file mode 100644
index fc7823946b8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill-wave.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill.svg
deleted file mode 100644
index e1ae0f293d8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/money-bill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/money-check-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/money-check-alt.svg
deleted file mode 100644
index 08816382b64..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/money-check-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/money-check.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/money-check.svg
deleted file mode 100644
index 84bbeac2d80..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/money-check.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/monument.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/monument.svg
deleted file mode 100644
index efb4af36849..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/monument.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/moon.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/moon.svg
deleted file mode 100644
index b153f344581..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/moon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mortar-pestle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mortar-pestle.svg
deleted file mode 100644
index b6fb12c491e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mortar-pestle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mosque.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mosque.svg
deleted file mode 100644
index 396eb4ee0c5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mosque.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/motorcycle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/motorcycle.svg
deleted file mode 100644
index 148897996d0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/motorcycle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mountain.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mountain.svg
deleted file mode 100644
index af4fc8197ed..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mountain.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mouse-pointer.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mouse-pointer.svg
deleted file mode 100644
index c5f252d0acc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mouse-pointer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mouse.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mouse.svg
deleted file mode 100644
index 092d515b995..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mouse.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/mug-hot.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/mug-hot.svg
deleted file mode 100644
index 750e0861736..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/mug-hot.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/music.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/music.svg
deleted file mode 100644
index 7ad2b9bc734..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/music.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/network-wired.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/network-wired.svg
deleted file mode 100644
index 1be547c0e8b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/network-wired.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/neuter.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/neuter.svg
deleted file mode 100644
index cb7635d0f24..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/neuter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/newspaper.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/newspaper.svg
deleted file mode 100644
index 477294260df..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/newspaper.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/not-equal.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/not-equal.svg
deleted file mode 100644
index d11d13918f1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/not-equal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/notes-medical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/notes-medical.svg
deleted file mode 100644
index fc5d5962e1e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/notes-medical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/object-group.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/object-group.svg
deleted file mode 100644
index b07fcecf71c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/object-group.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/object-ungroup.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/object-ungroup.svg
deleted file mode 100644
index 4c29c1e2a7c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/object-ungroup.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/oil-can.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/oil-can.svg
deleted file mode 100644
index a4b303cb498..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/oil-can.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/om.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/om.svg
deleted file mode 100644
index acabc1da292..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/om.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/otter.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/otter.svg
deleted file mode 100644
index e546e1c3284..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/otter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/outdent.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/outdent.svg
deleted file mode 100644
index 586b77d0521..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/outdent.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pager.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pager.svg
deleted file mode 100644
index db9409ba70e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pager.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/paint-brush.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/paint-brush.svg
deleted file mode 100644
index 01d1c927330..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/paint-brush.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/paint-roller.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/paint-roller.svg
deleted file mode 100644
index 14d3b6ac3b8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/paint-roller.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/palette.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/palette.svg
deleted file mode 100644
index a75b257e6e1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/palette.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pallet.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pallet.svg
deleted file mode 100644
index 564f45be97f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pallet.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/paper-plane.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/paper-plane.svg
deleted file mode 100644
index cecb40f277d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/paper-plane.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/paperclip.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/paperclip.svg
deleted file mode 100644
index 162db7e5c01..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/paperclip.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/parachute-box.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/parachute-box.svg
deleted file mode 100644
index 80abd2ea6cb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/parachute-box.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/paragraph.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/paragraph.svg
deleted file mode 100644
index 1087303ce4d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/paragraph.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/parking.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/parking.svg
deleted file mode 100644
index 04a13736c0c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/parking.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/passport.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/passport.svg
deleted file mode 100644
index 1a7aa6f1cfd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/passport.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pastafarianism.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pastafarianism.svg
deleted file mode 100644
index 402622aa674..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pastafarianism.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/paste.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/paste.svg
deleted file mode 100644
index 1d49e2503f1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/paste.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pause-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pause-circle.svg
deleted file mode 100644
index 72a8e48c303..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pause-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pause.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pause.svg
deleted file mode 100644
index 63a15b6eea3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pause.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/paw.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/paw.svg
deleted file mode 100644
index 5cb50f82aa7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/paw.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/peace.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/peace.svg
deleted file mode 100644
index 7c5ce22fb9d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/peace.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pen-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pen-alt.svg
deleted file mode 100644
index 2b600cadb15..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pen-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pen-fancy.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pen-fancy.svg
deleted file mode 100644
index 8f4261c3382..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pen-fancy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pen-nib.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pen-nib.svg
deleted file mode 100644
index 2a4cbee616c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pen-nib.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pen-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pen-square.svg
deleted file mode 100644
index 0f30e05fd47..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pen-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pen.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pen.svg
deleted file mode 100644
index 2d043aa475b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pen.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pencil-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pencil-alt.svg
deleted file mode 100644
index 26d7daeac71..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pencil-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pencil-ruler.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pencil-ruler.svg
deleted file mode 100644
index c62f131c215..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pencil-ruler.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/people-arrows.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/people-arrows.svg
deleted file mode 100644
index a743c8358a9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/people-arrows.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/people-carry.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/people-carry.svg
deleted file mode 100644
index 98a947fbfb8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/people-carry.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pepper-hot.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pepper-hot.svg
deleted file mode 100644
index 76c1a928906..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pepper-hot.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/percent.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/percent.svg
deleted file mode 100644
index 4b1a8ff6312..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/percent.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/percentage.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/percentage.svg
deleted file mode 100644
index 574fb055486..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/percentage.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/person-booth.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/person-booth.svg
deleted file mode 100644
index dd7624fa7ac..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/person-booth.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/phone-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/phone-alt.svg
deleted file mode 100644
index aa821dd136b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/phone-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/phone-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/phone-slash.svg
deleted file mode 100644
index 0e20562e580..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/phone-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/phone-square-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/phone-square-alt.svg
deleted file mode 100644
index 989645aab71..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/phone-square-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/phone-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/phone-square.svg
deleted file mode 100644
index 39ed9693082..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/phone-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/phone-volume.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/phone-volume.svg
deleted file mode 100644
index 872d95d1e51..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/phone-volume.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/phone.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/phone.svg
deleted file mode 100644
index 2cf74a9d831..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/phone.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/photo-video.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/photo-video.svg
deleted file mode 100644
index e67e558a804..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/photo-video.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/piggy-bank.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/piggy-bank.svg
deleted file mode 100644
index 65fb510e5e8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/piggy-bank.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pills.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pills.svg
deleted file mode 100644
index eadd5aa1049..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pills.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pizza-slice.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pizza-slice.svg
deleted file mode 100644
index fcd660fca71..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pizza-slice.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/place-of-worship.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/place-of-worship.svg
deleted file mode 100644
index 7457df470f4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/place-of-worship.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/plane-arrival.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/plane-arrival.svg
deleted file mode 100644
index 32bcc18110e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/plane-arrival.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/plane-departure.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/plane-departure.svg
deleted file mode 100644
index ce73a432cbb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/plane-departure.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/plane-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/plane-slash.svg
deleted file mode 100644
index 9352a4ea03b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/plane-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/plane.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/plane.svg
deleted file mode 100644
index 6a75a9f7aa4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/plane.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/play-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/play-circle.svg
deleted file mode 100644
index ea103970464..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/play-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/play.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/play.svg
deleted file mode 100644
index d7fa87f32b2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/play.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/plug.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/plug.svg
deleted file mode 100644
index d99cc576cbe..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/plug.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/plus-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/plus-circle.svg
deleted file mode 100644
index f7a138c6e59..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/plus-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/plus-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/plus-square.svg
deleted file mode 100644
index ff058b5721e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/plus-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/plus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/plus.svg
deleted file mode 100644
index 95992e1f5c4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/plus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/podcast.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/podcast.svg
deleted file mode 100644
index 9ee3b6fada9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/podcast.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/poll-h.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/poll-h.svg
deleted file mode 100644
index c3993a99109..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/poll-h.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/poll.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/poll.svg
deleted file mode 100644
index 96d2fb67e00..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/poll.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/poo-storm.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/poo-storm.svg
deleted file mode 100644
index cf79910f7ce..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/poo-storm.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/poo.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/poo.svg
deleted file mode 100644
index 997725b532e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/poo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/poop.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/poop.svg
deleted file mode 100644
index 8adbdb89f7a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/poop.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/portrait.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/portrait.svg
deleted file mode 100644
index a62ed180179..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/portrait.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pound-sign.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pound-sign.svg
deleted file mode 100644
index 8705075f984..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pound-sign.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/power-off.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/power-off.svg
deleted file mode 100644
index 371131806d1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/power-off.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pray.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pray.svg
deleted file mode 100644
index dc87ee560a6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pray.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/praying-hands.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/praying-hands.svg
deleted file mode 100644
index 86a68f0c639..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/praying-hands.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/prescription-bottle-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/prescription-bottle-alt.svg
deleted file mode 100644
index 5757bf870a6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/prescription-bottle-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/prescription-bottle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/prescription-bottle.svg
deleted file mode 100644
index 6f2d6c36307..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/prescription-bottle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/prescription.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/prescription.svg
deleted file mode 100644
index f0cfc721775..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/prescription.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/print.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/print.svg
deleted file mode 100644
index 2c11c293dd0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/print.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/procedures.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/procedures.svg
deleted file mode 100644
index 5ccfafbe61f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/procedures.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/project-diagram.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/project-diagram.svg
deleted file mode 100644
index cb21c6f880e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/project-diagram.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pump-medical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pump-medical.svg
deleted file mode 100644
index dedc67fe16f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pump-medical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/pump-soap.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/pump-soap.svg
deleted file mode 100644
index b2a0600d8ec..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/pump-soap.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/puzzle-piece.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/puzzle-piece.svg
deleted file mode 100644
index a632d8a9255..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/puzzle-piece.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/qrcode.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/qrcode.svg
deleted file mode 100644
index c92fa7caaf0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/qrcode.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/question-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/question-circle.svg
deleted file mode 100644
index a8f424362eb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/question-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/question.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/question.svg
deleted file mode 100644
index 065e9fe738a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/question.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/quidditch.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/quidditch.svg
deleted file mode 100644
index 6d0be5eb5aa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/quidditch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/quote-left.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/quote-left.svg
deleted file mode 100644
index d73aa5e4e28..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/quote-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/quote-right.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/quote-right.svg
deleted file mode 100644
index 18537bfe4b6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/quote-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/quran.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/quran.svg
deleted file mode 100644
index 8cf9e47ecae..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/quran.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/radiation-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/radiation-alt.svg
deleted file mode 100644
index a44836cff52..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/radiation-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/radiation.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/radiation.svg
deleted file mode 100644
index c6c5b9c44a6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/radiation.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/rainbow.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/rainbow.svg
deleted file mode 100644
index ef50bef2828..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/rainbow.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/random.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/random.svg
deleted file mode 100644
index 3c23b13cac0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/random.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/receipt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/receipt.svg
deleted file mode 100644
index ea298f9c14b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/receipt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/record-vinyl.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/record-vinyl.svg
deleted file mode 100644
index b63b60c1c50..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/record-vinyl.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/recycle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/recycle.svg
deleted file mode 100644
index 1c7fa716615..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/recycle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/redo-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/redo-alt.svg
deleted file mode 100644
index f014834d59d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/redo-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/redo.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/redo.svg
deleted file mode 100644
index da6c6c14580..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/redo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/registered.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/registered.svg
deleted file mode 100644
index 115cc7043de..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/registered.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/remove-format.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/remove-format.svg
deleted file mode 100644
index 9aa73276a7c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/remove-format.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/reply-all.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/reply-all.svg
deleted file mode 100644
index 32886acb2c7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/reply-all.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/reply.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/reply.svg
deleted file mode 100644
index 50f99ff0594..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/reply.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/republican.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/republican.svg
deleted file mode 100644
index 76f70e91c66..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/republican.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/restroom.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/restroom.svg
deleted file mode 100644
index 87486b851d1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/restroom.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/retweet.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/retweet.svg
deleted file mode 100644
index 6c8111bc66e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/retweet.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ribbon.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ribbon.svg
deleted file mode 100644
index c87df5ff6c8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ribbon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ring.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ring.svg
deleted file mode 100644
index cba4ca690bc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ring.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/road.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/road.svg
deleted file mode 100644
index 78234267402..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/road.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/robot.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/robot.svg
deleted file mode 100644
index 4d80ffa2829..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/robot.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/rocket.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/rocket.svg
deleted file mode 100644
index 1d8c1cca903..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/rocket.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/route.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/route.svg
deleted file mode 100644
index 2d050c40e4e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/route.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/rss-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/rss-square.svg
deleted file mode 100644
index ff9a15a6327..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/rss-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/rss.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/rss.svg
deleted file mode 100644
index e6fa54c38e5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/rss.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ruble-sign.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ruble-sign.svg
deleted file mode 100644
index 50ec2f50bc5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ruble-sign.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ruler-combined.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ruler-combined.svg
deleted file mode 100644
index c4ceb4a6e4c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ruler-combined.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ruler-horizontal.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ruler-horizontal.svg
deleted file mode 100644
index 12c5426e2b8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ruler-horizontal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ruler-vertical.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ruler-vertical.svg
deleted file mode 100644
index 364cb31c239..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ruler-vertical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ruler.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ruler.svg
deleted file mode 100644
index 3f7a16b47a5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ruler.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/running.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/running.svg
deleted file mode 100644
index 0e4a5a19269..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/running.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/rupee-sign.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/rupee-sign.svg
deleted file mode 100644
index 52e319ca15c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/rupee-sign.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sad-cry.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sad-cry.svg
deleted file mode 100644
index 448b6df84d9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sad-cry.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sad-tear.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sad-tear.svg
deleted file mode 100644
index 4071d1026a8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sad-tear.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/satellite-dish.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/satellite-dish.svg
deleted file mode 100644
index cb27d73fe5b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/satellite-dish.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/satellite.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/satellite.svg
deleted file mode 100644
index 231d520b614..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/satellite.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/save.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/save.svg
deleted file mode 100644
index 44298e3ec3e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/save.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/school.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/school.svg
deleted file mode 100644
index 21dffefb2d5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/school.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/screwdriver.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/screwdriver.svg
deleted file mode 100644
index 04ce7786807..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/screwdriver.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/scroll.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/scroll.svg
deleted file mode 100644
index 0ba80124f70..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/scroll.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sd-card.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sd-card.svg
deleted file mode 100644
index be6da436ff7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sd-card.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/search-dollar.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/search-dollar.svg
deleted file mode 100644
index 009f332e89f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/search-dollar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/search-location.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/search-location.svg
deleted file mode 100644
index b4cbdd89874..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/search-location.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/search-minus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/search-minus.svg
deleted file mode 100644
index 7befe08baa0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/search-minus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/search-plus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/search-plus.svg
deleted file mode 100644
index e4f5984b31f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/search-plus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/search.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/search.svg
deleted file mode 100644
index 865b962e2c1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/search.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/seedling.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/seedling.svg
deleted file mode 100644
index b5e2a26eff5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/seedling.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/server.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/server.svg
deleted file mode 100644
index 4e6c50fd4da..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/server.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/shapes.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/shapes.svg
deleted file mode 100644
index ccedf71c6bf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/shapes.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/share-alt-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/share-alt-square.svg
deleted file mode 100644
index 7d48e45654a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/share-alt-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/share-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/share-alt.svg
deleted file mode 100644
index 2f3151dfa0d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/share-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/share-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/share-square.svg
deleted file mode 100644
index f66404d6f64..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/share-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/share.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/share.svg
deleted file mode 100644
index e7e262b4447..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/share.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/shekel-sign.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/shekel-sign.svg
deleted file mode 100644
index 079555e42fb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/shekel-sign.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/shield-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/shield-alt.svg
deleted file mode 100644
index 380df3001b9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/shield-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/shield-virus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/shield-virus.svg
deleted file mode 100644
index 65beed6a6ac..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/shield-virus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ship.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ship.svg
deleted file mode 100644
index 61e031519ec..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ship.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/shipping-fast.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/shipping-fast.svg
deleted file mode 100644
index 342f4d40f15..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/shipping-fast.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/shoe-prints.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/shoe-prints.svg
deleted file mode 100644
index 9f056d4af31..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/shoe-prints.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/shopping-bag.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/shopping-bag.svg
deleted file mode 100644
index 78f8a425c26..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/shopping-bag.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/shopping-basket.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/shopping-basket.svg
deleted file mode 100644
index 6eef20e6af2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/shopping-basket.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/shopping-cart.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/shopping-cart.svg
deleted file mode 100644
index d409917d20e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/shopping-cart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/shower.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/shower.svg
deleted file mode 100644
index 4a74f9b5689..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/shower.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/shuttle-van.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/shuttle-van.svg
deleted file mode 100644
index 7d75c807e38..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/shuttle-van.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sign-in-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sign-in-alt.svg
deleted file mode 100644
index 5b235c0cf7d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sign-in-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sign-language.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sign-language.svg
deleted file mode 100644
index 552cb4a60f6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sign-language.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sign-out-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sign-out-alt.svg
deleted file mode 100644
index ca9853369b1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sign-out-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sign.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sign.svg
deleted file mode 100644
index 0b2a45bb830..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sign.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/signal.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/signal.svg
deleted file mode 100644
index d929175e437..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/signal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/signature.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/signature.svg
deleted file mode 100644
index de2832b7d7e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/signature.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sim-card.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sim-card.svg
deleted file mode 100644
index 12786193b7d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sim-card.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sitemap.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sitemap.svg
deleted file mode 100644
index a7009eaffe1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sitemap.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/skating.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/skating.svg
deleted file mode 100644
index 74d50063441..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/skating.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/skiing-nordic.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/skiing-nordic.svg
deleted file mode 100644
index 1c29fc38537..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/skiing-nordic.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/skiing.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/skiing.svg
deleted file mode 100644
index 3362f8f1c29..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/skiing.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/skull-crossbones.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/skull-crossbones.svg
deleted file mode 100644
index aae294fefe1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/skull-crossbones.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/skull.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/skull.svg
deleted file mode 100644
index 72429692c85..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/skull.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/slash.svg
deleted file mode 100644
index aa5bcdbae59..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sleigh.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sleigh.svg
deleted file mode 100644
index 1ea545cb755..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sleigh.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sliders-h.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sliders-h.svg
deleted file mode 100644
index e5d7fd784d4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sliders-h.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/smile-beam.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/smile-beam.svg
deleted file mode 100644
index 38695752930..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/smile-beam.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/smile-wink.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/smile-wink.svg
deleted file mode 100644
index b85ec119123..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/smile-wink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/smile.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/smile.svg
deleted file mode 100644
index dc8784a78bc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/smile.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/smog.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/smog.svg
deleted file mode 100644
index d7f6897385a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/smog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/smoking-ban.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/smoking-ban.svg
deleted file mode 100644
index 4382b1f7b88..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/smoking-ban.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/smoking.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/smoking.svg
deleted file mode 100644
index 6dd415781bd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/smoking.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sms.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sms.svg
deleted file mode 100644
index 6a6e950c48c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sms.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/snowboarding.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/snowboarding.svg
deleted file mode 100644
index d241f40ebf3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/snowboarding.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/snowflake.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/snowflake.svg
deleted file mode 100644
index 270da5d1064..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/snowflake.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/snowman.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/snowman.svg
deleted file mode 100644
index 795a2040bd1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/snowman.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/snowplow.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/snowplow.svg
deleted file mode 100644
index 19d31e98971..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/snowplow.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/soap.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/soap.svg
deleted file mode 100644
index 8996e199220..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/soap.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/socks.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/socks.svg
deleted file mode 100644
index 1d17fa7325f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/socks.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/solar-panel.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/solar-panel.svg
deleted file mode 100644
index 2760e79288c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/solar-panel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-down-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-down-alt.svg
deleted file mode 100644
index c34b5d1cdf6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-down-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-down.svg
deleted file mode 100644
index 7800320add4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-up-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-up-alt.svg
deleted file mode 100644
index 0d6152312e0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-up-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-up.svg
deleted file mode 100644
index 36c893214b7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-alpha-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-down-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-down-alt.svg
deleted file mode 100644
index 1a817dd8892..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-down-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-down.svg
deleted file mode 100644
index 92e08a22914..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-up-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-up-alt.svg
deleted file mode 100644
index 0fa39e1bd98..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-up-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-up.svg
deleted file mode 100644
index aecbc0c64ce..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-amount-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-down.svg
deleted file mode 100644
index 2644ba2b108..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-down-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-down-alt.svg
deleted file mode 100644
index ba1de58e57a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-down-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-down.svg
deleted file mode 100644
index c7c32822055..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-up-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-up-alt.svg
deleted file mode 100644
index 415c74884e4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-up-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-up.svg
deleted file mode 100644
index 046f49c9962..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-numeric-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort-up.svg
deleted file mode 100644
index c6e1001d7d3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sort.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sort.svg
deleted file mode 100644
index 89c08354d17..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sort.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/spa.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/spa.svg
deleted file mode 100644
index d6909e85908..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/spa.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/space-shuttle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/space-shuttle.svg
deleted file mode 100644
index 1cf024de727..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/space-shuttle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/spell-check.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/spell-check.svg
deleted file mode 100644
index d3744272107..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/spell-check.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/spider.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/spider.svg
deleted file mode 100644
index a805e79ecb1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/spider.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/spinner.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/spinner.svg
deleted file mode 100644
index 4397764e046..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/spinner.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/splotch.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/splotch.svg
deleted file mode 100644
index 070a1c1cbb4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/splotch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/spray-can.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/spray-can.svg
deleted file mode 100644
index 05947c08f0f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/spray-can.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/square-full.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/square-full.svg
deleted file mode 100644
index 7bb73943d88..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/square-full.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/square-root-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/square-root-alt.svg
deleted file mode 100644
index d6f33adb342..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/square-root-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/square.svg
deleted file mode 100644
index 40338d4495b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/stamp.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/stamp.svg
deleted file mode 100644
index 591a5bba110..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/stamp.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/star-and-crescent.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/star-and-crescent.svg
deleted file mode 100644
index 6d378602397..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/star-and-crescent.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/star-half-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/star-half-alt.svg
deleted file mode 100644
index 5a9b4c3891f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/star-half-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/star-half.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/star-half.svg
deleted file mode 100644
index 6599dcbfad1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/star-half.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/star-of-david.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/star-of-david.svg
deleted file mode 100644
index d9a5e5cd398..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/star-of-david.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/star-of-life.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/star-of-life.svg
deleted file mode 100644
index 0737995ee60..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/star-of-life.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/star.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/star.svg
deleted file mode 100644
index 7cfd13b8aae..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/star.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/step-backward.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/step-backward.svg
deleted file mode 100644
index e6f0d100e1b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/step-backward.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/step-forward.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/step-forward.svg
deleted file mode 100644
index 33eb8fb617d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/step-forward.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/stethoscope.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/stethoscope.svg
deleted file mode 100644
index 10d30562c2e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/stethoscope.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sticky-note.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sticky-note.svg
deleted file mode 100644
index 4b577b881b9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sticky-note.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/stop-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/stop-circle.svg
deleted file mode 100644
index 15f56cdb8a6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/stop-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/stop.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/stop.svg
deleted file mode 100644
index 40338d4495b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/stop.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/stopwatch-20.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/stopwatch-20.svg
deleted file mode 100644
index dc6ee4bf28e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/stopwatch-20.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/stopwatch.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/stopwatch.svg
deleted file mode 100644
index 72c1345982f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/stopwatch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/store-alt-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/store-alt-slash.svg
deleted file mode 100644
index d838b7d18bd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/store-alt-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/store-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/store-alt.svg
deleted file mode 100644
index 488759f1b1f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/store-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/store-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/store-slash.svg
deleted file mode 100644
index 747ac32ef32..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/store-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/store.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/store.svg
deleted file mode 100644
index aa0281fc7a1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/store.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/stream.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/stream.svg
deleted file mode 100644
index 938cc188cca..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/stream.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/street-view.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/street-view.svg
deleted file mode 100644
index 2ae0457e639..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/street-view.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/strikethrough.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/strikethrough.svg
deleted file mode 100644
index b7c31c762bd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/strikethrough.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/stroopwafel.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/stroopwafel.svg
deleted file mode 100644
index fdea44ca9ea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/stroopwafel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/subscript.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/subscript.svg
deleted file mode 100644
index 3b326b9855f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/subscript.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/subway.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/subway.svg
deleted file mode 100644
index 19e5a3799aa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/subway.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/suitcase-rolling.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/suitcase-rolling.svg
deleted file mode 100644
index d54be1e0c62..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/suitcase-rolling.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/suitcase.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/suitcase.svg
deleted file mode 100644
index effa01c17cc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/suitcase.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sun.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sun.svg
deleted file mode 100644
index 19bc76b9bd0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sun.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/superscript.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/superscript.svg
deleted file mode 100644
index 2d7cf893ae2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/superscript.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/surprise.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/surprise.svg
deleted file mode 100644
index 478b6b0174e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/surprise.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/swatchbook.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/swatchbook.svg
deleted file mode 100644
index 58b8a87fcdf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/swatchbook.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/swimmer.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/swimmer.svg
deleted file mode 100644
index 261e60b4ad7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/swimmer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/swimming-pool.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/swimming-pool.svg
deleted file mode 100644
index 533688df9b7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/swimming-pool.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/synagogue.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/synagogue.svg
deleted file mode 100644
index 6f3d7c7d990..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/synagogue.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sync-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sync-alt.svg
deleted file mode 100644
index 3c3106d84dd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sync-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/sync.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/sync.svg
deleted file mode 100644
index 9b6d20896cd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/sync.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/syringe.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/syringe.svg
deleted file mode 100644
index 95626f7417d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/syringe.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/table-tennis.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/table-tennis.svg
deleted file mode 100644
index a7f5e9a5aca..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/table-tennis.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/table.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/table.svg
deleted file mode 100644
index 5690c5cc5ef..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/table.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tablet-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tablet-alt.svg
deleted file mode 100644
index 9e962f78361..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tablet-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tablet.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tablet.svg
deleted file mode 100644
index da45e7d2100..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tablet.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tablets.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tablets.svg
deleted file mode 100644
index 74c8265e200..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tablets.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tachometer-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tachometer-alt.svg
deleted file mode 100644
index 977e1e9ffce..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tachometer-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tag.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tag.svg
deleted file mode 100644
index 6793a2e0a1b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tag.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tags.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tags.svg
deleted file mode 100644
index 192075b9284..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tags.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tape.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tape.svg
deleted file mode 100644
index 1fbaa1da13f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tape.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tasks.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tasks.svg
deleted file mode 100644
index 645dddd3107..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tasks.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/taxi.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/taxi.svg
deleted file mode 100644
index 13f05d0dd12..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/taxi.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/teeth-open.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/teeth-open.svg
deleted file mode 100644
index f02650abdb8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/teeth-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/teeth.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/teeth.svg
deleted file mode 100644
index 17e4027e6bb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/teeth.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/temperature-high.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/temperature-high.svg
deleted file mode 100644
index e61b22b375a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/temperature-high.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/temperature-low.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/temperature-low.svg
deleted file mode 100644
index 07d2427c0ae..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/temperature-low.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tenge.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tenge.svg
deleted file mode 100644
index cc8be5c1756..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tenge.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/terminal.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/terminal.svg
deleted file mode 100644
index 85b2b5e85f1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/terminal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/text-height.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/text-height.svg
deleted file mode 100644
index 1dc01364a5d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/text-height.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/text-width.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/text-width.svg
deleted file mode 100644
index 63739852c03..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/text-width.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/th-large.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/th-large.svg
deleted file mode 100644
index 7894f58b43f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/th-large.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/th-list.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/th-list.svg
deleted file mode 100644
index 361af5425f7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/th-list.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/th.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/th.svg
deleted file mode 100644
index 73b6c92c33b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/th.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/theater-masks.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/theater-masks.svg
deleted file mode 100644
index d16e6631dbc..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/theater-masks.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-empty.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-empty.svg
deleted file mode 100644
index 5a6a6b8e90c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-empty.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-full.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-full.svg
deleted file mode 100644
index caeb8b6643b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-full.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-half.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-half.svg
deleted file mode 100644
index 8c355127481..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-half.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-quarter.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-quarter.svg
deleted file mode 100644
index 0478872ed95..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-quarter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-three-quarters.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-three-quarters.svg
deleted file mode 100644
index b5188d58f0e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer-three-quarters.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer.svg
deleted file mode 100644
index af0b9ef91d0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/thermometer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/thumbs-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/thumbs-down.svg
deleted file mode 100644
index 1cb6e676f2e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/thumbs-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/thumbs-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/thumbs-up.svg
deleted file mode 100644
index 539949dfd48..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/thumbs-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/thumbtack.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/thumbtack.svg
deleted file mode 100644
index 7b98d281ff2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/thumbtack.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/ticket-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/ticket-alt.svg
deleted file mode 100644
index 70158467dbb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/ticket-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/times-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/times-circle.svg
deleted file mode 100644
index cdee94147a7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/times-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/times.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/times.svg
deleted file mode 100644
index 571a32a1220..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/times.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tint-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tint-slash.svg
deleted file mode 100644
index df76bdf04f2..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tint-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tint.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tint.svg
deleted file mode 100644
index 8dd8f93e119..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tint.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tired.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tired.svg
deleted file mode 100644
index bdc5ce0d39c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tired.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/toggle-off.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/toggle-off.svg
deleted file mode 100644
index dce9c007b7d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/toggle-off.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/toggle-on.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/toggle-on.svg
deleted file mode 100644
index 6c4c2dc15ac..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/toggle-on.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/toilet-paper-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/toilet-paper-slash.svg
deleted file mode 100644
index 930dd8eb09c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/toilet-paper-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/toilet-paper.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/toilet-paper.svg
deleted file mode 100644
index 6201721d1aa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/toilet-paper.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/toilet.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/toilet.svg
deleted file mode 100644
index c5abd0134cf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/toilet.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/toolbox.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/toolbox.svg
deleted file mode 100644
index dc11fef6b12..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/toolbox.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tools.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tools.svg
deleted file mode 100644
index 668d558e70f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tools.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tooth.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tooth.svg
deleted file mode 100644
index 745734cb550..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tooth.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/torah.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/torah.svg
deleted file mode 100644
index 2fb1234e4f1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/torah.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/torii-gate.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/torii-gate.svg
deleted file mode 100644
index e66bce7a333..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/torii-gate.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tractor.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tractor.svg
deleted file mode 100644
index 5390d1cd68b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tractor.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/trademark.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/trademark.svg
deleted file mode 100644
index 4898eb52201..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/trademark.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/traffic-light.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/traffic-light.svg
deleted file mode 100644
index 0eb4de199d5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/traffic-light.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/trailer.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/trailer.svg
deleted file mode 100644
index 6ec4e199495..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/trailer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/train.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/train.svg
deleted file mode 100644
index 79c0266f2a3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/train.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tram.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tram.svg
deleted file mode 100644
index e3156976c04..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tram.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/transgender-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/transgender-alt.svg
deleted file mode 100644
index 6c1d1679eaa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/transgender-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/transgender.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/transgender.svg
deleted file mode 100644
index 10d73936f18..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/transgender.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/trash-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/trash-alt.svg
deleted file mode 100644
index 6305280aecd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/trash-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/trash-restore-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/trash-restore-alt.svg
deleted file mode 100644
index ba91cca8211..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/trash-restore-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/trash-restore.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/trash-restore.svg
deleted file mode 100644
index e3c351fc664..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/trash-restore.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/trash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/trash.svg
deleted file mode 100644
index dec54fa315a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/trash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tree.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tree.svg
deleted file mode 100644
index a3c7f934462..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tree.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/trophy.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/trophy.svg
deleted file mode 100644
index 6157afa002a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/trophy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/truck-loading.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/truck-loading.svg
deleted file mode 100644
index 7153afd0545..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/truck-loading.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/truck-monster.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/truck-monster.svg
deleted file mode 100644
index 8f31fd30b2b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/truck-monster.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/truck-moving.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/truck-moving.svg
deleted file mode 100644
index 18ea46f5345..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/truck-moving.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/truck-pickup.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/truck-pickup.svg
deleted file mode 100644
index 337e8aec4f3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/truck-pickup.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/truck.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/truck.svg
deleted file mode 100644
index 8b405feecc4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/truck.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tshirt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tshirt.svg
deleted file mode 100644
index 4cdf227e5eb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tshirt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tty.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tty.svg
deleted file mode 100644
index acc1e3d3560..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tty.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/tv.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/tv.svg
deleted file mode 100644
index 4e33e619969..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/tv.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/umbrella-beach.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/umbrella-beach.svg
deleted file mode 100644
index 9a75c525828..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/umbrella-beach.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/umbrella.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/umbrella.svg
deleted file mode 100644
index 83de3d7bee5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/umbrella.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/underline.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/underline.svg
deleted file mode 100644
index 332619ab686..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/underline.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/undo-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/undo-alt.svg
deleted file mode 100644
index bdc97cae109..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/undo-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/undo.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/undo.svg
deleted file mode 100644
index 44b39041224..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/undo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/universal-access.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/universal-access.svg
deleted file mode 100644
index 1079d879b8d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/universal-access.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/university.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/university.svg
deleted file mode 100644
index cf4d7859bb3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/university.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/unlink.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/unlink.svg
deleted file mode 100644
index 8cba9f8fe9f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/unlink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/unlock-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/unlock-alt.svg
deleted file mode 100644
index b38ffb6acc4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/unlock-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/unlock.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/unlock.svg
deleted file mode 100644
index 0b2258a813f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/unlock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/upload.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/upload.svg
deleted file mode 100644
index 1c880b51619..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/upload.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-alt-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-alt-slash.svg
deleted file mode 100644
index 74f8597898f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-alt-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-alt.svg
deleted file mode 100644
index 024cb44bb06..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-astronaut.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-astronaut.svg
deleted file mode 100644
index 631f1682438..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-astronaut.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-check.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-check.svg
deleted file mode 100644
index a63061186b1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-check.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-circle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-circle.svg
deleted file mode 100644
index 6e03b1bd419..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-clock.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-clock.svg
deleted file mode 100644
index 1c45c705ddd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-clock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-cog.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-cog.svg
deleted file mode 100644
index bae9930eeea..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-cog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-edit.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-edit.svg
deleted file mode 100644
index bde9c9015c9..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-edit.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-friends.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-friends.svg
deleted file mode 100644
index 2e43c5983e4..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-friends.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-graduate.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-graduate.svg
deleted file mode 100644
index 8855caaa8d0..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-graduate.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-injured.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-injured.svg
deleted file mode 100644
index 57de4b9b9ee..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-injured.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-lock.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-lock.svg
deleted file mode 100644
index b3be5dcb01f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-lock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-md.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-md.svg
deleted file mode 100644
index 583cdc397b1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-md.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-minus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-minus.svg
deleted file mode 100644
index f019e706330..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-minus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-ninja.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-ninja.svg
deleted file mode 100644
index 7bdec3603f6..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-ninja.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-nurse.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-nurse.svg
deleted file mode 100644
index e3a4da8db8a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-nurse.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-plus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-plus.svg
deleted file mode 100644
index 01c84c36333..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-plus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-secret.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-secret.svg
deleted file mode 100644
index daae530df61..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-secret.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-shield.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-shield.svg
deleted file mode 100644
index 7cfba68f3ad..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-shield.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-slash.svg
deleted file mode 100644
index 491e32a3b88..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-tag.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-tag.svg
deleted file mode 100644
index ec1a1e70040..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-tag.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-tie.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-tie.svg
deleted file mode 100644
index 9bd9f95a520..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-tie.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user-times.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user-times.svg
deleted file mode 100644
index 341b1f12075..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user-times.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/user.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/user.svg
deleted file mode 100644
index 591873a5b76..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/user.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/users-cog.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/users-cog.svg
deleted file mode 100644
index a90e8b03fcf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/users-cog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/users.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/users.svg
deleted file mode 100644
index 3f07aab0600..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/users.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/utensil-spoon.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/utensil-spoon.svg
deleted file mode 100644
index ec19dac5517..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/utensil-spoon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/utensils.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/utensils.svg
deleted file mode 100644
index 29fa05ab1aa..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/utensils.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/vector-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/vector-square.svg
deleted file mode 100644
index 848b9fb409d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/vector-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/venus-double.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/venus-double.svg
deleted file mode 100644
index 8fa1ba94ff1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/venus-double.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/venus-mars.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/venus-mars.svg
deleted file mode 100644
index 78089d807e3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/venus-mars.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/venus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/venus.svg
deleted file mode 100644
index 637ef0cc2eb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/venus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/vial.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/vial.svg
deleted file mode 100644
index e01d94aecdd..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/vial.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/vials.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/vials.svg
deleted file mode 100644
index 13e7c5ac3d1..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/vials.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/video-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/video-slash.svg
deleted file mode 100644
index d221789ffeb..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/video-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/video.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/video.svg
deleted file mode 100644
index e14b3b9361d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/video.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/vihara.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/vihara.svg
deleted file mode 100644
index d25739c192b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/vihara.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/virus-slash.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/virus-slash.svg
deleted file mode 100644
index 2084bccac27..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/virus-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/virus.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/virus.svg
deleted file mode 100644
index 6a570886bd8..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/virus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/viruses.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/viruses.svg
deleted file mode 100644
index 1894e946e44..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/viruses.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/voicemail.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/voicemail.svg
deleted file mode 100644
index 0eeddca33b3..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/voicemail.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/volleyball-ball.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/volleyball-ball.svg
deleted file mode 100644
index cd179f2838e..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/volleyball-ball.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/volume-down.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/volume-down.svg
deleted file mode 100644
index b3105c3d8a5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/volume-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/volume-mute.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/volume-mute.svg
deleted file mode 100644
index b78aad67b5f..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/volume-mute.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/volume-off.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/volume-off.svg
deleted file mode 100644
index f8962ed2e59..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/volume-off.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/volume-up.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/volume-up.svg
deleted file mode 100644
index c85f3e8d392..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/volume-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/vote-yea.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/vote-yea.svg
deleted file mode 100644
index 496a5762598..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/vote-yea.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/vr-cardboard.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/vr-cardboard.svg
deleted file mode 100644
index dd9eff58c00..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/vr-cardboard.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/walking.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/walking.svg
deleted file mode 100644
index 4e85cd5820b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/walking.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/wallet.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/wallet.svg
deleted file mode 100644
index f5842294caf..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/wallet.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/warehouse.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/warehouse.svg
deleted file mode 100644
index 2e827c02c1d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/warehouse.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/water.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/water.svg
deleted file mode 100644
index cc7a7d3c49a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/water.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/wave-square.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/wave-square.svg
deleted file mode 100644
index dba15b9608d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/wave-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/weight-hanging.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/weight-hanging.svg
deleted file mode 100644
index db2801aa7d5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/weight-hanging.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/weight.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/weight.svg
deleted file mode 100644
index 12e7df5ced5..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/weight.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/wheelchair.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/wheelchair.svg
deleted file mode 100644
index e474ae3fc3d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/wheelchair.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/wifi.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/wifi.svg
deleted file mode 100644
index 5ac43b3e32b..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/wifi.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/wind.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/wind.svg
deleted file mode 100644
index 705d74b84ef..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/wind.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/window-close.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/window-close.svg
deleted file mode 100644
index da63df918d7..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/window-close.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/window-maximize.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/window-maximize.svg
deleted file mode 100644
index d305d0ad488..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/window-maximize.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/window-minimize.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/window-minimize.svg
deleted file mode 100644
index c0e48b3f2ae..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/window-minimize.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/window-restore.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/window-restore.svg
deleted file mode 100644
index 355ce8f0001..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/window-restore.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/wine-bottle.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/wine-bottle.svg
deleted file mode 100644
index 6b66813cd8a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/wine-bottle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/wine-glass-alt.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/wine-glass-alt.svg
deleted file mode 100644
index 2822897a461..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/wine-glass-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/wine-glass.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/wine-glass.svg
deleted file mode 100644
index a27377d0f50..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/wine-glass.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/won-sign.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/won-sign.svg
deleted file mode 100644
index 4cfd37d2800..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/won-sign.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/wrench.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/wrench.svg
deleted file mode 100644
index 378cf6c656a..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/wrench.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/x-ray.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/x-ray.svg
deleted file mode 100644
index fe20d416686..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/x-ray.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/yen-sign.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/yen-sign.svg
deleted file mode 100644
index 3cdb4ec582d..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/yen-sign.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/fontawesome-5/svgs/solid/yin-yang.svg b/htdocs/theme/common/fontawesome-5/svgs/solid/yin-yang.svg
deleted file mode 100644
index 7aa88f98e7c..00000000000
--- a/htdocs/theme/common/fontawesome-5/svgs/solid/yin-yang.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/htdocs/theme/common/view-refresh.png b/htdocs/theme/common/view-refresh.png
deleted file mode 100644
index 4556b416708..00000000000
Binary files a/htdocs/theme/common/view-refresh.png and /dev/null differ
diff --git a/htdocs/user/agenda_extsites.php b/htdocs/user/agenda_extsites.php
index b6a8e11ab15..7923a4127c4 100644
--- a/htdocs/user/agenda_extsites.php
+++ b/htdocs/user/agenda_extsites.php
@@ -259,7 +259,7 @@ while ($i <= $MAXAGENDA) {
print ' ';
//print $formadmin->selectColor($conf->global->$color, "google_agenda_color".$key, $colorlist);
$color_value = (GETPOST("AGENDA_EXT_COLOR_".$id.'_'.$key) ?GETPOST("AGENDA_EXT_COLOR_".$id.'_'.$key) : (empty($object->conf->$color) ? 'ffffff' : $object->conf->$color));
- print $formother->selectColor($color_value, "AGENDA_EXT_COLOR_".$id.'_'.$key, 'extsitesconfig', 1, '', 'hideifnotset');
+ print $formother->selectColor($color_value, "AGENDA_EXT_COLOR_".$id.'_'.$key, '', 1, '', 'hideifnotset');
print ' ';
print "";
$i++;
diff --git a/htdocs/user/class/api_users.class.php b/htdocs/user/class/api_users.class.php
index bb1d9d95294..f1941b8c079 100644
--- a/htdocs/user/class/api_users.class.php
+++ b/htdocs/user/class/api_users.class.php
@@ -747,7 +747,7 @@ class Users extends DolibarrApi
unset($cleanObject->clicktodial_loaded);
unset($cleanObject->datec);
- unset($cleanObject->datem);
+ unset($cleanObject->tms);
unset($cleanObject->members);
unset($cleanObject->note);
unset($cleanObject->note_private);
diff --git a/htdocs/user/class/usergroup.class.php b/htdocs/user/class/usergroup.class.php
index 135b97bcc43..a93f7ccebfb 100644
--- a/htdocs/user/class/usergroup.class.php
+++ b/htdocs/user/class/usergroup.class.php
@@ -91,7 +91,7 @@ class UserGroup extends CommonObject
*
* @var integer
*/
- public $datem;
+ public $tms;
/**
* @var string Description
@@ -932,7 +932,7 @@ class UserGroup extends CommonObject
$this->name = 'DOLIBARR GROUP SPECIMEN';
$this->note = 'This is a note';
$this->datec = time();
- $this->datem = time();
+ $this->tms = time();
// Members of this group is just me
$this->members = array(
diff --git a/htdocs/user/group/card.php b/htdocs/user/group/card.php
index 60c1c30e9fb..b9d16874604 100644
--- a/htdocs/user/group/card.php
+++ b/htdocs/user/group/card.php
@@ -209,6 +209,7 @@ if (empty($reshook)) {
$object->name = GETPOST("nom", 'alphanohtml');
$object->note = dol_htmlcleanlastbr(trim(GETPOST("note", 'restricthtml')));
+ $object->tms = dol_now();
// Fill array 'array_options' with data from add form
$ret = $extrafields->setOptionalsFromPost(null, $object, '@GETPOSTISSET');
diff --git a/htdocs/user/group/list.php b/htdocs/user/group/list.php
index 54117de403a..85df729d00f 100644
--- a/htdocs/user/group/list.php
+++ b/htdocs/user/group/list.php
@@ -173,7 +173,7 @@ $morecss = array();
// Build and execute select
// --------------------------------------------------------------------
-$sql = "SELECT g.rowid, g.nom as name, g.note, g.entity, g.datec, g.tms as datem, COUNT(DISTINCT ugu.fk_user) as nb, COUNT(DISTINCT ugr.fk_id) as nbpermissions";
+$sql = "SELECT g.rowid, g.nom as name, g.note, g.entity, g.datec, g.tms, COUNT(DISTINCT ugu.fk_user) as nb, COUNT(DISTINCT ugr.fk_id) as nbpermissions";
$sql .= " FROM ".MAIN_DB_PREFIX."usergroup as g";
$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."usergroup_user as ugu ON ugu.fk_usergroup = g.rowid";
$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."usergroup_rights as ugr ON ugr.fk_usergroup = g.rowid";
@@ -471,7 +471,7 @@ while ($i < $imaxinloop) {
if (!$i) {
$totalarray['nbfield']++;
}
- print ''.dol_print_date($db->jdate($obj->datem), "dayhour").' ';
+ print ''.dol_print_date($db->jdate($obj->tms), "dayhour").' ';
if (!$i) {
$totalarray['nbfield']++;
}